gst/videotestsrc/: Add "colorspec" property, specifying whether to generate BT.601...
[platform/upstream/gstreamer.git] / ChangeLog
1 2008-11-18  David Schleef  <ds@schleef.org>
2
3         * gst/videotestsrc/gstvideotestsrc.c:
4         * gst/videotestsrc/gstvideotestsrc.h:
5         * gst/videotestsrc/videotestsrc.c:
6         * gst/videotestsrc/videotestsrc.h:
7           Add "colorspec" property, specifying whether to generate BT.601
8           or BT.709 video.  This only affects YCbCr values, not RGB, since
9           if you're generating a 709 test pattern, presumably you want
10           709 RGB primaries, not 601.  Also add "smpte75" pattern, which
11           uses 75% colors instead of 100%, since this is often more useful
12           for testing (and also follows the SMPTE EG-1 guideline).
13
14 2008-11-18  Alessandro Decina  <alessandro.d@gmail.com>
15
16         * gst/playback/gstdecodebin.c:
17         Add a "sink-caps" property to decodebin like it's done for decodebin2.
18         Fixes #560380.
19
20 2008-11-14  Jan Schmidt  <jan.schmidt@sun.com>
21
22         * gst/audioresample/gstaudioresample.c:
23         Guard against a NULL dereference I somehow encountered -
24         with a FLUSH_STOP arriving either before basetransform _start(),
25         or after _stop().
26
27         * gst/typefind/gsttypefindfunctions.c:
28         Make sure we never jump backwards when typefinding corrupt mov files.
29
30 2008-11-14  Jan Schmidt  <jan.schmidt@sun.com>
31
32         * gst-libs/gst/interfaces/propertyprobe.c:
33         Fix random type causing a docs warning.
34
35 2008-11-14  Stefan Kost  <ensonic@users.sf.net>
36
37         * sys/v4l/gstv4l.c:
38           Give it a minimal rank for autovideosrc.
39
40 2008-11-13  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
41
42         * gst/typefind/gsttypefindfunctions.c: (jp2_type_find),
43         (plugin_init):
44         Improve typefinding of ISO JPEG2000 mime types.
45
46 2008-11-13  Wim Taymans  <wim.taymans@collabora.co.uk>
47
48         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
49         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_setcaps),
50         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
51         * sys/xvimage/xvimagesink.h:
52         Avoid typechecking when we do trivial casts.
53         Move error handling out of the main program flow.
54         Sneak in the display-region caps property, not completely correct yet.
55         Cache the width/height in buffer_alloc instead of parsing it from the
56         caps all the time.
57
58 2008-11-13  Wim Taymans  <wim.taymans@collabora.co.uk>
59
60         * gst/playback/gstplaybin2.c: (deactivate_group):
61         don't try to unlink the selector sinkpad when we don't have it yet. This
62         can happen if an error occured before the group was complete.
63
64 2008-11-13  Wim Taymans  <wim.taymans@collabora.co.uk>
65
66         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data),
67         (gst_rtp_buffer_set_packet_len), (gst_rtp_buffer_get_packet_len),
68         (gst_rtp_buffer_get_header_len), (gst_rtp_buffer_get_version),
69         (gst_rtp_buffer_set_version), (gst_rtp_buffer_get_padding),
70         (gst_rtp_buffer_set_padding), (gst_rtp_buffer_pad_to),
71         (gst_rtp_buffer_get_extension), (gst_rtp_buffer_set_extension),
72         (gst_rtp_buffer_get_extension_data),
73         (gst_rtp_buffer_set_extension_data), (gst_rtp_buffer_get_ssrc),
74         (gst_rtp_buffer_set_ssrc), (gst_rtp_buffer_get_csrc_count),
75         (gst_rtp_buffer_get_csrc), (gst_rtp_buffer_set_csrc),
76         (gst_rtp_buffer_get_marker), (gst_rtp_buffer_set_marker),
77         (gst_rtp_buffer_get_payload_type),
78         (gst_rtp_buffer_set_payload_type), (gst_rtp_buffer_get_seq),
79         (gst_rtp_buffer_set_seq), (gst_rtp_buffer_get_timestamp),
80         (gst_rtp_buffer_set_timestamp),
81         (gst_rtp_buffer_get_payload_subbuffer),
82         (gst_rtp_buffer_get_payload_len), (gst_rtp_buffer_get_payload):
83         Avoid expensive type checks we already did as part of the 
84         _validate() function that should be called first.
85
86 2008-11-11  Wim Taymans  <wim.taymans@collabora.co.uk>
87
88         * gst-libs/gst/rtp/gstbasertpdepayload.c: (create_segment_event),
89         (gst_base_rtp_depayload_push_full),
90         (gst_base_rtp_depayload_set_gst_timestamp):
91         Fix some cases where a newsegment event was not sent.
92
93 2008-11-11  Wim Taymans  <wim.taymans@collabora.co.uk>
94
95         * gst/playback/gstplaybin2.c: (activate_group):
96         Catch state change errors and stop from the uridecodebin elements
97         instead of trying to continue in vain.
98
99 2008-11-10  Wim Taymans  <wim.taymans@collabora.co.uk>
100
101         * gst-libs/gst/audio/gstbaseaudiosink.c:
102         (gst_base_audio_sink_sync_latency), (gst_base_audio_sink_render),
103         (gst_base_audio_sink_callback):
104         Use gst_base_sink_do_preroll() to wait for PLAYING and before waiting
105         for the latency to expire, fixes #559567.
106
107 2008-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
108
109         * gst/adder/gstadder.c:
110           Change author string after seeing output of gst-inspector.
111
112 2008-11-10  Wim Taymans  <wim.taymans@collabora.co.uk>
113
114         * gst/playback/gstplaysink.c: (gst_play_sink_reconfigure):
115         Don't try to do crazy things when we only have a text pad without a
116         video pad. Fixes #559478.
117
118 2008-11-06  Wim Taymans  <wim.taymans@collabora.co.uk>
119
120         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
121         Fix case where we don't have a range for the rates or channels as is the
122         case with truespeech.
123
124 2008-11-05  Wim Taymans  <wim.taymans@collabora.co.uk>
125
126         * gst/volume/gstvolume.c: (volume_update_real_volume),
127         (gst_volume_set_volume), (gst_volume_get_volume),
128         (gst_volume_set_mute), (gst_volume_init), (volume_setup),
129         (volume_transform_ip), (volume_update_mute),
130         (volume_update_volume), (volume_get_property):
131         * gst/volume/gstvolume.h:
132         Keep negotiated state in a separate variable.
133         Protect the volume and mute properties with the object lock.
134         Protect modifying the transform with the transform lock.
135
136 2008-11-05  Wim Taymans  <wim.taymans@collabora.co.uk>
137
138         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
139         (gst_ffmpeg_pixfmt_to_caps):
140         Only convert caps to string when debug is enabled.
141
142 2008-11-04  Wim Taymans  <wim.taymans@collabora.co.uk>
143
144         * ext/theora/gsttheoradec.h:
145         * ext/theora/theoradec.c: (gst_theora_dec_init),
146         (gst_theora_dec_reset), (theora_dec_src_event),
147         (theora_dec_sink_event), (theora_handle_type_packet):
148         Copy seqnum.
149         Keep events in a pending list, like vorbisdec, instead of trying
150         to construct a segment event ourselves.
151
152         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
153         (vorbis_dec_src_event), (vorbis_dec_sink_event):
154         * ext/vorbis/vorbisdec.h:
155         Copy seqnum.
156
157 2008-11-04  Wim Taymans  <wim.taymans@collabora.co.uk>
158
159         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
160         (gst_ogg_demux_deactivate_current_chain),
161         (gst_ogg_demux_perform_seek), (gst_ogg_demux_handle_page),
162         (gst_ogg_demux_loop):
163         * ext/ogg/gstoggdemux.h:
164         Copy seqnums around to track playback segments and messages.
165
166 2008-11-03  Wim Taymans  <wim.taymans@collabora.co.uk>
167
168         Based on patch by: Matthias Kretz <kretz at kde dot org>
169
170         * ext/alsa/gstalsasink.c: (gst_alsasink_open),
171         (gst_alsasink_prepare), (gst_alsasink_unprepare),
172         (gst_alsasink_write):
173         Make all access non-blocking so that we can better handle unplugging
174         of usb devices. Fixes #559111
175
176 2008-11-03  Wim Taymans  <wim.taymans@collabora.co.uk>
177
178         Patch by: Damien Lespiau  <damien.lespiau gmail com>
179
180         * gst-libs/gst/rtsp/gstrtspconnection.c:
181         (gst_rtsp_connection_write):
182         Make the next call to poll not depend on previous calls to poll with or
183         without reading from the active descriptor. Fixes #544293.
184
185 2008-10-31  Wim Taymans  <wim.taymans@collabora.co.uk>
186
187         Patch by: Nick Haddad <nick at haddads dot net>
188
189         * gst-libs/gst/riff/riff-ids.h:
190         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
191         Add support for other fourcc codes that are commonly used for
192         'uncompressed RGB', including 'RGB ', 'RAW ', and 0.
193         Fixes #558553.
194
195 2008-10-30  Stefan Kost  <ensonic@users.sf.net>
196
197         * gst/audioresample/gstaudioresample.c:
198           Return the result of parent_class->event().
199
200 2008-10-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
201
202         * gst/audioresample/gstaudioresample.c:
203         (gst_audioresample_class_init), (audioresample_fixate_caps):
204         Fixate the rate to the nearest supported rate instead of
205         the first one. Fixes bug #549510.
206
207 2008-10-27  Wim Taymans  <wim.taymans@collabora.co.uk>
208
209         * win32/common/libgstaudio.def:
210         Add new symbols.
211
212 2008-10-23  Wim Taymans  <wim.taymans@collabora.co.uk>
213
214         * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
215         Attempt to make obfuscated code clearer.
216
217 2008-10-23  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
218
219         * docs/libs/gst-plugins-base-libs-sections.txt:
220         * gst-libs/gst/floatcast/floatcast.h:
221         Move float endianness conversion macros to core. Second part of
222         bug ##555196.
223
224 2008-10-22  Stefan Kost  <ensonic@users.sf.net>
225
226         * sys/ximage/ximagesink.h:
227         * sys/xvimage/xvimagesink.h:
228           Don't mark as gtk-doc docs as they aren't public.
229
230 2008-10-22  Stefan Kost  <ensonic@users.sf.net>
231
232         * sys/xvimage/xvimagesink.c:
233         * sys/xvimage/xvimagesink.h:
234         * tests/icles/Makefile.am:
235         * tests/icles/test-colorkey.c:
236           Allow setting colorkey if possible. Implement property probe interface
237           for optional X features (autopaint-colorkey, double-buffer and
238           colorkey). Fixes #554533
239
240 2008-10-22  Sebastian Dröge  <slomo@circular-chaos.org>
241
242         * gst-libs/gst/tag/tags.c: (gst_tag_image_data_to_image_buffer):
243         Remove useless buffer size assignment. It already has this value.
244
245 2008-10-20  Wim Taymans  <wim.taymans@collabora.co.uk>
246
247         * gst-libs/gst/audio/gstaudiosink.c:
248         (gst_audioringbuffer_class_init), (gst_audioringbuffer_acquire),
249         (gst_audioringbuffer_activate), (gst_audioringbuffer_release),
250         (gst_audioringbuffer_stop):
251         Implement a separate activate functions to start monitoring the segments
252         or, in pull mode, pulling in data.
253
254         * gst-libs/gst/audio/gstbaseaudiosink.c:
255         (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
256         (gst_base_audio_sink_query_pad), (gst_base_audio_sink_query),
257         (gst_base_audio_sink_setcaps), (gst_base_audio_sink_callback),
258         (gst_base_audio_sink_activate_pull),
259         (gst_base_audio_sink_async_play),
260         (gst_base_audio_sink_change_state):
261         Implement pad and element convert query function.
262         Activate the ringbuffer.
263         Use the segment last_stop value as the offset to pull.
264         Use new basesink _do_preroll() method to preroll in the pulling thread.
265         Take appropriate locking in the pulling thread.
266
267         * gst-libs/gst/audio/gstringbuffer.h:
268         Update some docs.
269
270 2008-10-20  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
271
272         * gst/typefind/gsttypefindfunctions.c: (mxf_type_find):
273         Improve MXF typefinding a bit by searching for a header partition
274         pack instead of just a general partition pack and checking more
275         bytes for valid values.
276
277 2008-10-20  Wim Taymans  <wim.taymans@collabora.co.uk>
278
279         * tests/icles/.cvsignore:
280         update ignore file.
281
282         * tests/icles/Makefile.am:
283         * tests/icles/test-box.c: (make_pipeline), (main):
284         Add another interactive command line experimentation suite for
285         dynamically boxing/cropping/saling an input video.
286
287 2008-10-17  Wim Taymans  <wim.taymans@collabora.co.uk>
288
289         * docs/libs/gst-plugins-base-libs-sections.txt:
290         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_convert),
291         (gst_ring_buffer_activate), (gst_ring_buffer_is_active):
292         * gst-libs/gst/audio/gstringbuffer.h:
293         Add methods to more accuratly control the pulling thread of a
294         ringbuffer.
295         Add format conversion helper code to the ringbuffer.
296         API: GstRingBuffer:gst_ring_buffer_activate()
297         API: GstRingBuffer:gst_ring_buffer_is_active()
298         API: GstRingBuffer:gst_ring_buffer_convert()
299
300 2008-10-16  Wim Taymans  <wim.taymans@collabora.co.uk>
301
302         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func),
303         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
304         (gst_audioringbuffer_stop):
305         Signal thread startup earlier so that we can immediatly go into pull
306         mode when we have to and block on preroll.
307
308 2008-10-16  Wim Taymans  <wim.taymans@collabora.co.uk>
309
310         * gst-libs/gst/audio/gstringbuffer.c:
311         (gst_ring_buffer_prepare_read):
312         In pull mode we want the callback to prepull a buffer we can preroll on
313         even when we are not yet playing.
314
315 2008-10-16  Stefan Kost  <ensonic@users.sf.net>
316
317         * ext/alsa/Makefile.am:
318         * ext/cdparanoia/Makefile.am:
319         * ext/gio/Makefile.am:
320         * ext/gnomevfs/Makefile.am:
321         * ext/libvisual/Makefile.am:
322         * ext/ogg/Makefile.am:
323         * ext/pango/Makefile.am:
324         * ext/theora/Makefile.am:
325         * ext/vorbis/Makefile.am:
326         * gst/adder/Makefile.am:
327         * gst/audioconvert/Makefile.am:
328         * gst/audiorate/Makefile.am:
329         * gst/audioresample/Makefile.am:
330         * gst/audiotestsrc/Makefile.am:
331         * gst/ffmpegcolorspace/Makefile.am:
332         * gst/gdp/Makefile.am:
333         * gst/playback/Makefile.am:
334         * gst/subparse/Makefile.am:
335         * gst/tcp/Makefile.am:
336         * gst/typefind/Makefile.am:
337         * gst/videorate/Makefile.am:
338         * gst/videoscale/Makefile.am:
339         * gst/videotestsrc/Makefile.am:
340         * gst/volume/Makefile.am:
341         * sys/v4l/Makefile.am:
342         * sys/ximage/Makefile.am:
343         * sys/xvimage/Makefile.am:
344           Don't install static libs for plugins. Fixes #550851 for base.
345
346 2008-10-16  Wim Taymans  <wim.taymans@collabora.co.uk>
347
348         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_init):
349         Set the default blocksize to -1 because we will then use the configured
350         samplesperbuffer to create our output buffer.
351
352 2008-10-15  Edward Hervey  <edward.hervey@collabora.co.uk>
353
354         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
355         (gst_riff_create_video_template_caps):
356         Add mappping for the KMVC (Karl Morton's Video) Codec.
357
358 2008-10-15  Edward Hervey  <edward.hervey@collabora.co.uk>
359
360         * gst/typefind/gsttypefindfunctions.c: (flac_type_find):
361         Don't forget to advance the offset of what we're matching against, else
362         we end up in a forever loop.
363
364 2008-10-15  Sebastian Dröge  <slomo@circular-chaos.org>
365
366         * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
367         Improve typefinding a bit. If we don't have a Unicode charset
368         try GST_SUBTITLE_ENCODING and otherwise try ISO-8859-15.
369
370 2008-10-14  Edward Hervey  <edward.hervey@collabora.co.uk>
371
372         * ext/theora/theoradec.c: (theora_dec_decode_buffer):
373         Fix build on macosx.
374
375 2008-10-13  Wim Taymans  <wim.taymans@collabora.co.uk>
376
377         Based on patch by: Robin Stocker <robin at nibor dot org>
378
379         * ext/theora/gsttheoradec.h:
380         * ext/theora/theoradec.c: (gst_theora_dec_init),
381         (theora_dec_setcaps), (theora_handle_type_packet),
382         (theora_dec_decode_buffer), (theora_dec_change_state):
383         Parse input caps and make the PAR override the encoded PAR when
384         specified by a container. Fixes #555699.
385
386 2008-10-13  Wim Taymans  <wim.taymans@collabora.co.uk>
387
388         * gst-libs/gst/rtp/gstbasertpdepayload.c:
389         (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain),
390         (gst_base_rtp_depayload_set_gst_timestamp),
391         (gst_base_rtp_depayload_change_state):
392         * gst-libs/gst/rtp/gstbasertpdepayload.h:
393         Add some more G_LIKELY
394         Fail when the setcaps function was not called.
395
396         * gst-libs/gst/rtp/gstbasertppayload.c:
397         (gst_basertppayload_set_outcaps):
398         Propagate return value of setcaps.
399
400 2008-10-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
401
402         * gst/subparse/Makefile.am:
403         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
404         (gst_sub_parse_class_init), (gst_sub_parse_init),
405         (gst_convert_to_utf8), (detect_encoding), (convert_encoding),
406         (get_next_line), (gst_sub_parse_data_format_autodetect),
407         (feed_textbuf), (handle_buffer), (gst_sub_parse_change_state),
408         (gst_subparse_type_find):
409         * gst/subparse/gstsubparse.h:
410         Add support for UTF16/UTF32 subtitles as long as the first bytes of
411         the first buffer contain the BOM. This also adds support for other
412         encodings that allow NUL bytes via the encoding property.
413         Fixes bugs #552237 and #456788.
414
415 2008-10-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
416
417         * gst-libs/gst/tag/tags.c: (gst_tag_image_data_to_image_buffer):
418         Don't drop the last byte of image tags if they're not an URI list.
419         Fixes bug #556066.
420
421 2008-10-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
422
423         * gst/typefind/gsttypefindfunctions.c: (flac_type_find):
424         For looking at the 4th byte we have to get 4 bytes of course
425         and not 3.
426
427 2008-10-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
428
429         * gst/typefind/gsttypefindfunctions.c: (flac_type_find):
430         Improve FLAC-without-headers typefinding by looking at most of the
431         frame header and checking if invalid values are used. Should prevent
432         quite some false positives compared to the old version which only
433         check if the first 14 bits are set.
434
435 2008-10-11  Stefan Kost  <ensonic@users.sf.net>
436
437         * sys/xvimage/xvimagesink.c:
438           Don't assert on caps==NULL.
439
440 2008-10-10  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
441
442         * gst/subparse/gstsubparse.c:
443         (gst_sub_parse_data_format_autodetect), (handle_buffer),
444         (gst_sub_parse_change_state):
445         * gst/subparse/gstsubparse.h:
446         * tests/check/elements/subparse.c: (GST_START_TEST):
447         Add support for subtitle files with UTF-8 BOM at the beginning
448         by simple stripping it from the first line before passing it
449         to any parsing code. Fixes bug #555257 and playback of files
450         created by Gnome Subtitles.
451
452 2008-10-10  Wim Taymans  <wim.taymans@collabora.co.uk>
453
454         * gst/audiotestsrc/gstaudiotestsrc.c:
455         (gst_audio_test_src_class_init), (gst_audio_test_src_init),
456         (gst_audio_test_src_src_fixate), (gst_audio_test_src_setcaps),
457         (gst_audio_test_src_start), (gst_audio_test_src_stop),
458         (gst_audio_test_src_do_seek), (gst_audio_test_src_check_get_range),
459         (gst_audio_test_src_create):
460         * gst/audiotestsrc/gstaudiotestsrc.h:
461         Define the default property values in the usual place.
462         Implement start/stop to reset values correctly.
463         Calculate the sample size only once when we negotiate.
464         Rename some values to make more sense.
465         Keep track of our byte range.
466         Add support for pull based scheduling. Disabled for now until we have
467         the whole stack working.
468         Set the BUFFER_OFFSET correctly.
469
470 2008-10-10  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
471
472         Based on a patch by: xavierb at gmail dot com
473
474         * gst/subparse/gstsubparse.c:
475         (gst_sub_parse_data_format_autodetect):
476         * tests/check/elements/subparse.c: (GST_START_TEST):
477         Make the detection of the used subtitle a bit less strict
478         for srt subtitles. Fixes bug #555607.
479
480 2008-10-10  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
481
482         * ext/vorbis/vorbisenc.c:
483         (gst_vorbis_enc_buffer_check_discontinuous):
484         Fix discontinuity detection which was broken by last commit.
485
486 2008-10-09  Tim-Philipp Müller  <tim.muller at collabora co uk>
487
488         * configure.ac::
489           Require core CVS for ghostpad API additions used by decodebin2.
490
491 2008-10-08  Edward Hervey  <edward.hervey@collabora.co.uk>
492
493         * gst-libs/gst/audio/gstbaseaudiosrc.c:
494         (gst_base_audio_src_create):
495         Fix debug statements (space between '%' and actual format).
496
497 2008-10-08  Wim Taymans  <wim.taymans@collabora.co.uk>
498
499         * gst/playback/gstdecodebin2.c: (gst_decode_pad_activate):
500         Remove bogus assert, the decodepad could have been created inside an
501         already existing group.
502
503 2008-10-08  Andy Wingo  <wingo@pobox.com>
504
505         * gst/playback/gstdecodebin2.c (expose_pad): Fix typo: unset
506         target instead of setting it.
507         (gst_decode_pad_activate, gst_decode_pad_unblock): This is now the
508         API for a decode pad. The bugfix is that we set the group in
509         activate(), not when the pad was created because it might be NULL
510         then.
511         (gst_decode_group_control_source_pad, gst_decode_group_expose):
512         Update to use the API.
513
514 2008-10-08  Andy Wingo  <wingo@pobox.com>
515
516         * gst/playback/gstdecodebin2.c (struct _GstDecodePad): Change to
517         be a subclass of GstGhostPad.
518         (analyze_new_pad): So, when emitting the signals that determine
519         how we do autoplugging, already create the ghost pad and use it as
520         the pad in the signal arguments. This allows applications to make
521         a connection between the pad passed in e.g. autoplug-continue, and
522         the pad passed in new-decoded-pad.
523         (connect_pad, expose_pad): Update to receive the ghosted decode
524         pad in the args, retargetting it as necessary if we have to plug
525         the target pad through a multiqueue.
526         (gst_decode_group_control_source_pad): Adapt to receive an
527         already-ghosted pad that just needs activation, blocking, and
528         drain notification.
529         (sort_end_pads): Adapt for decode pads actually being pads.
530         (gst_decode_group_expose): Adapt for decode pads actually being
531         pads. Rewrite the decode pad names so they appear in order. Adds a
532         new error case if we couldn't set the name.
533         (gst_decode_group_free, gst_decode_group_hide): Adapt cleanup
534         logic.
535         (gst_decode_pad_set_blocked, gst_decode_pad_add_drained_check):
536         New API for the decode pad, needed because we shouldn't do these
537         things inside gst_decode_pad_new(), but after.
538         (gst_decode_pad_new): Change to actually make the real pad, and
539         delay the blocking/drainage bits.
540
541 2008-10-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
542
543         Patch by: Daniel Drake <dsd at laptop dot org>
544
545         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear_collectpads):
546         Unref all buffers when clearing collectpads. Fixes bug #546955.
547
548 2008-10-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
549
550         Based on a patch by: Klaas <klaas at rivercrew dot net>
551
552         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_sink_event),
553         (gst_vorbis_enc_buffer_check_discontinuous),
554         (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
555         * ext/vorbis/vorbisenc.h:
556         Keep track of the upstream segments and use the running time on that
557         segment instead of the buffer timestamp everywhere. Fixes bug #525807.
558
559 2008-10-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
560
561         * gst/audioconvert/audioconvert.c: (audio_convert_convert):
562         Prevent overflows with big buffer when calculating the size of
563         the intermediate buffer by using gst_util_uint64_scale() instead of
564         plain arithmetics. Fixes bug #552801.
565
566 2008-10-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
567
568         Patch by: Pavel Zeldin <pzeldin at gmail dot com>
569
570         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_render_time),
571         (gst_clock_overlay_class_init), (gst_clock_overlay_finalize),
572         (gst_clock_overlay_init), (gst_clock_overlay_set_property),
573         (gst_clock_overlay_get_property):
574         * ext/pango/gstclockoverlay.h:
575         API: Add ability to specify format for date/time display by
576         adding a "time-format" property.
577         Fixes bug #554879.
578
579 2008-10-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
580
581         Patch by: Jan Gerber <j at oil21 dot org>
582
583         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
584         (gst_riff_create_video_template_caps):
585         Add FFV1 fourcc to support playback of FFMPEG lossless video
586         in AVI. Fixes bug #555319.
587
588 2008-10-08  Wim Taymans  <wim.taymans@collabora.co.uk>
589
590         Patch by: Håvard Graff <havard dot graff at tandberg dot com>
591
592         * gst-libs/gst/audio/gstbaseaudiosrc.c:
593         (gst_base_audio_src_create):
594         Implement skew clock slaving. Fixes #552559.
595
596 2008-10-08  Wim Taymans  <wim.taymans@collabora.co.uk>
597
598         * gst-libs/gst/audio/multichannel.c:
599         * gst-libs/gst/audio/testchannels.c:
600         Fix include of config.h
601
602 2008-10-06  Wim Taymans  <wim.taymans@collabora.co.uk>
603
604         Based on Patch by: Tero Saarni <tero dot saarni at gmail dot com>
605
606         * gst-libs/gst/sdp/gstsdpmessage.c: (gst_sdp_parse_line),
607         (print_media), (gst_sdp_message_dump):
608         Fix parsing of the c= field containing multicast addresses.
609         Fixes #552199.
610         Add the connection info to the session or streams.
611         Fix parsing of the bandwidth.
612         Add debugging for the connections and bandwidths for a media.
613         Add debugging for the bandwidth of the session. 
614
615 2008-10-06  Wim Taymans  <wim.taymans@collabora.co.uk>
616
617         * gst-libs/gst/rtp/gstbasertppayload.c:
618         (gst_basertppayload_change_state):
619         Configure the next seqnum and timestamp in the state change so that they
620         can be queried soon after.
621
622 2008-10-06  Wim Taymans  <wim.taymans@collabora.co.uk>
623
624         * gst-libs/gst/rtp/gstbasertpdepayload.c:
625         (gst_base_rtp_depayload_chain):
626         Improve debugging of the rtptime.
627
628 2008-10-05  Jan Schmidt  <jan.schmidt@sun.com>
629
630         * configure.ac:
631         Back to development -> 0.10.21.1
632
633 2008-10-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
634
635         * gst/typefind/gsttypefindfunctions.c: (flac_type_find),
636         (plugin_init):
637         Add typefinding for FLAC without headers in the beginning.
638         This is already handled by flacdec and friends.
639
640 2008-10-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
641
642         * gst/typefind/gsttypefindfunctions.c: (mxf_type_find),
643         (plugin_init):
644         Add typefinder for MXF.
645
646 2008-10-03  Jan Schmidt  <jan.schmidt@sun.com>
647
648         * tests/icles/Makefile.am:
649         Only build test-colorkey if GTK+ is available.
650
651 === release 0.10.21 ===
652
653 2008-10-03  Jan Schmidt <jan.schmidt@sun.com>
654
655         * configure.ac:
656           releasing 0.10.21, "We Could Be Wrong"
657
658 2008-09-28  Jan Schmidt  <jan.schmidt@sun.com>
659
660         * configure.ac:
661         0.10.20.4 pre-release
662
663 2008-09-25  Wim Taymans  <wim.taymans@collabora.co.uk>
664
665         Patch by: Vincent Penquerc'h <ogg dot k dot ogg dot k at googlemail dot com>
666
667         * ext/theora/theoraparse.c: (theora_parse_set_streamheader):
668         Set the BOS flag on the BOS packet. Fixes #553244.
669
670 2008-09-23  Wim Taymans  <wim.taymans@collabora.co.uk>
671
672         * gst-libs/gst/rtsp/gstrtspmessage.c:
673         (gst_rtsp_message_parse_request),
674         (gst_rtsp_message_parse_response):
675         Fix the g_return_val_if_fail() statements.
676
677 2008-09-22  Michael Smith <msmith@songbirdnest.com>
678
679         * gst-libs/gst/tag/gsttagdemux.c:
680           Fail to activate if there's insufficient data in the file to be usable,
681           preventing an assertion fail later. Fixes #552960
682
683 2008-09-15  Tim-Philipp Müller  <tim.muller at collabora co uk>
684
685         * gst-libs/gst/pbutils/descriptions.c:
686         * gst/typefind/gsttypefindfunctions.c:
687           Recognise Kate subtitle streams (#550582).
688
689 2008-09-13  Tim-Philipp Müller  <tim.muller at collabora co uk>
690
691         * gst-libs/gst/audio/audio.h: (GST_AUDIO_FIELD_SIGNED):
692           Remove trailing comma from enum list, which causes problems
693           with -pendantic (#550729).
694
695 2008-09-10  Jan Schmidt  <jan.schmidt@sun.com>
696
697         * configure.ac:
698         0.10.20.2 pre-release
699
700         * po/LINGUAS:
701         * po/id.po:
702         * po/pt_BR.po:
703
704         New translations.
705
706 2008-09-05  Tim-Philipp Müller  <tim.muller at collabora co uk>
707
708         * gst-libs/gst/interfaces/propertyprobe.c:
709           (gst_property_probe_get_properties),
710           (gst_property_probe_get_property),
711           (gst_property_probe_probe_property),
712           (gst_property_probe_probe_property_name),
713           (gst_property_probe_needs_probe),
714           (gst_property_probe_needs_probe_name),
715           (gst_property_probe_get_values),
716           (gst_property_probe_get_values_name),
717           (gst_property_probe_probe_and_get_values),
718           (gst_property_probe_probe_and_get_values_name):
719           More sanity checks for our second-favourite interface.
720
721 2008-09-05  Stefan Kost  <ensonic@users.sf.net>
722
723         * gst-libs/gst/interfaces/propertyprobe.c:
724           Check for NULL pointer, in the hope that this fixes #532864.
725
726 2008-09-05  Tim-Philipp Müller  <tim.muller at collabora co uk>
727
728         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_class_init):
729           No really, the next release is 0.10.21 (fix Since: tags in docs).
730
731 2008-09-04  Wim Taymans  <wim.taymans@collabora.co.uk>
732
733         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_stop):
734         Disable a code path that is now called but causes a deadlock for some
735         reason and is unneeded.
736
737 2008-09-04  Stefan Kost  <ensonic@users.sf.net>
738
739         * sys/xvimage/xvimagesink.c:
740         * sys/xvimage/xvimagesink.h:
741           Add a "draw-border" property that can be set to false to disable
742           drawing borders.
743           
744         * tests/icles/test-colorkey.c:
745         * tests/icles/Makefile.am:
746           Add new test application for the colorkey handling.
747
748 2008-09-03  Edward Hervey  <edward.hervey@collabora.co.uk>
749
750         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
751         Use a decent caps for TrueSpeech instead of a ffmpeg-specific one.
752         This will also be fixed for upcoming gst-ffmpeg release so that once
753         this release of -base is out, it will work with the latest gst-ffmpeg
754         release.
755
756 2008-09-03  Edward Hervey  <edward.hervey@collabora.co.uk>
757
758         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
759         (gst_riff_create_audio_template_caps):
760         Add Truespeech mapping for RIFF formats (AVI/WAV).
761         Fixes #550656
762
763 2008-09-03  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
764
765         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
766         Typefind video/mj2 and image/jp2 ISO JPEG2000 mime types.
767         Fixes #550638.
768
769 2008-09-03  Stefan Kost  <ensonic@users.sf.net>
770
771         * configure.ac:
772         * gst/subparse/Makefile.am:
773         * gst/subparse/gstsubparse.c:
774         * gst/subparse/samiparse.c:
775         * tests/check/elements/subparse.c:
776           Rework last change, so that we build subparse, but just disable the
777           sami parse functionality, if we're configured to not use xml. In the
778           tests only the sami test is disabled now.
779
780 2008-09-02  Stefan Kost  <ensonic@users.sf.net>
781
782         * configure.ac:
783           Disable subparse when xml is disabled. It woundn't work anyway. Fixes
784           test runs.
785
786 2008-09-02  Tim-Philipp Müller  <tim.muller at collabora co uk>
787
788         * po/POTFILES.in:
789           Add some more files with strings for translation.
790
791 2008-09-02  Stefan Kost  <ensonic@users.sf.net>
792
793         * gst-libs/gst/tag/gstvorbistag.c:
794         * tests/check/libs/tag.c:
795           Use new geo location tags from core. Fixes #481169
796
797 2008-09-01  Edward Hervey  <edward.hervey@collabora.co.uk>
798
799         * tests/check/elements/audioresample.c: (setup_audioresample),
800         (fail_unless_perfect_stream), (test_perfect_stream_instance),
801         (test_discont_stream_instance):
802         Now that GstBaseTransform is 'fixed' ... remove cruft from tests.
803         Add debugging for coherence.
804
805 2008-08-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
806
807         Patch by: Jonathan Matthew  <notverysmart gmail com>
808
809         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
810           Add typefinder for PDF documents (which is nice to have, since it's a
811           common format, but also helps prevent false positives). Fixes #549814.
812
813 2008-08-27  Wim Taymans  <wim.taymans@collabora.co.uk>
814
815         * gst/playback/gstplaybin2.c: (selector_blocked), (pad_added_cb),
816         (no_more_pads_cb):
817         Fix nasty race where multiple decodebins could start pushing data before
818         we manage to configure the sinks, resulting in not-linked errors in
819         typical RTSP streaming cases.
820
821 2008-08-26  Wim Taymans  <wim.taymans@collabora.co.uk>
822
823         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_stop):
824         Since we now call stop, we trigger this code path that causes a deadlock
825         is apparently not needed.
826
827 2008-08-26  Wim Taymans  <wim.taymans@collabora.co.uk>
828
829         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_start),
830         (gst_ring_buffer_stop):
831         Also allow the case where the ringbuffer was paused when we try to stop
832         it so that the basesrc stop function is still called.
833
834 2008-08-23  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
835
836         Patch by: Mike Ruprecht <cmaiku at gmail dot com>
837
838         * sys/v4l/gstv4lelement.c: (gst_v4l_class_probe_devices):
839         Reprobe devices again instead of taking a cached list as new
840         devices could've been plugged in. Fixes bug #549062.
841
842 2008-08-23  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
843
844         Patch by: Alessandro Dessina <alessandro nnva org>
845
846         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain),
847         (gst_ogg_demux_activate_chain):
848         Don't add pads and activate them for skeleton streams. These are already
849         handled inside oggdemux. Fixes bug #537599.
850
851 2008-08-22  Wim Taymans  <wim.taymans@collabora.co.uk>
852
853         * ext/vorbis/vorbisdec.c: (vorbis_dec_change_state):
854         Reset variable so that query and convert fail after going back to
855         READY. Fixes #548898.
856
857 2008-08-22  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
858
859         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_chain):
860         If a buffer arrives with a timestamp before the timestamp+duration
861         of the previous buffer clip it instead of dropping it completely.
862         Slight improvement for the unfixable bug #548913.
863
864 2008-08-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
865
866         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
867         Take the current timestamp instead of timestamp+duration for the offset.
868         This offset will later be used for calculating the timestamp and
869         otherwise vorbisdec will interpolate timestamps wrong if upstream
870         only sends timestamps and no granulepos.
871
872 2008-08-21  Stefan Kost  <ensonic@users.sf.net>
873
874         * tests/examples/seek/seek.c:
875           Don't crash when having no visualisations.
876
877 2008-08-16  David Schleef  <ds@schleef.org>
878
879         * gst/typefind/gsttypefindfunctions.c: DV typefinding.  Remove
880           check for a bit that is 0 in IEC 61384, but not SMPTE 314M.
881           Fixes #548065.
882
883 2008-08-15  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
884
885         * gst-libs/gst/pbutils/missing-plugins.c: (copy_and_clean_caps):
886         When cleaning up the caps fields also remove "depth" for the same
887         reason we remove "width".
888
889 2008-08-14  Tim-Philipp Müller  <tim.muller at collabora co uk>
890
891         * gst-libs/gst/pbutils/descriptions.c: (format_info_get_desc):
892           Add Lead H.264 here as well.
893
894 2008-08-14  Julien Moutte  <julien@fluendo.com>
895
896         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
897         (gst_riff_create_video_template_caps): Add Lead H.264 variant.
898
899 2008-08-13  Wim Taymans  <wim.taymans@collabora.co.uk>
900
901         * gst-libs/gst/audio/gstbaseaudiosrc.c:
902         (gst_base_audio_src_create):
903         When not slaved to another clock also subtract the base_time from our
904         internal clock time to get the running time.
905
906 2008-08-12  David Schleef  <ds@schleef.org>
907
908         * ext/theora/theoraenc.c: Remove the 2000 kbit limit to bitrate,
909           since it has no basis in libtheora.
910
911 2008-08-12  Stefan Kost  <ensonic@users.sf.net>
912
913         * gst-libs/gst/interfaces/propertyprobe.h:
914           Remove double "interface" from doc-string.
915
916         * gst-libs/gst/interfaces/xoverlay.h:
917           Document interface.
918
919         * gst-libs/gst/riff/riff.c:
920           Add basic doc blobs.
921
922 2008-08-11  Stefan Kost  <ensonic@users.sf.net>
923
924         * gst-libs/gst/audio/Makefile.am:
925           Don't try to build that example anymore.
926
927 2008-08-11  Stefan Kost  <ensonic@users.sf.net>
928
929         * gst-libs/gst/audio/.cvsignore:
930         * gst-libs/gst/audio/Makefile.am:
931         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
932         * gst-libs/gst/audio/make_filter:
933           Move audiofiltertemplate to gst-template.
934
935 2008-08-11  Stefan Kost  <ensonic@users.sf.net>
936
937         * docs/libs/gst-plugins-base-libs-sections.txt:
938         * gst-libs/gst/audio/gstaudiosrc.h:
939           More docs and shuffling. What can we do with the hundreds of #defines.
940
941 2008-08-11  Stefan Kost  <ensonic@users.sf.net>
942
943         * gst-libs/gst/audio/audio.h:
944         * gst-libs/gst/audio/gstaudiofilter.h:
945         * gst-libs/gst/audio/gstringbuffer.h:
946         * gst-libs/gst/interfaces/propertyprobe.h:
947         * gst-libs/gst/tag/gsttagdemux.h:
948           Reducing number of dundocumented symbols.
949
950 2008-08-11  Stefan Kost  <ensonic@users.sf.net>
951
952         * gst-libs/gst/audio/audio.c:
953           Fix doc comment syntax.
954
955         * gst-libs/gst/interfaces/propertyprobe.c:
956           Add more doc-comments and a FIXME: for the signal.    
957
958 2008-08-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
959
960         * ext/ogg/gstoggmux.c: (gst_ogg_mux_sink_event),
961         (gst_ogg_mux_request_new_pad):
962         * ext/ogg/gstoggmux.h:
963         Don't pretend to support NEWSEGMENT events, instead override the
964         GstCollectPads event function to return FALSE on NEWSEGMENT events
965         and do the normal work for other events.
966
967         This prevents elements like flacenc to seek to the start and rewrite
968         some data which then results in a broken Ogg packet.
969
970 2008-08-07  Tim-Philipp Müller  <tim.muller at collabora co uk>
971
972         Patch by: Frederic Crozat <fcrozat@mandriva.org>
973
974         * ext/alsa/gstalsaplugin.c: (plugin_init):
975         * ext/cdparanoia/gstcdparanoiasrc.c: (plugin_init):
976         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
977         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init):
978         * gst-libs/gst/audio/gstbaseaudiosrc.c: (_do_init):
979         * gst-libs/gst/pbutils/pbutils.c: (gst_pb_utils_init):
980         * gst-libs/gst/tag/tags.c: (gst_tag_register_tags_internal):
981         * gst/playback/gstdecodebin.c: (plugin_init):
982         * gst/playback/gstdecodebin2.c: (gst_decode_bin_plugin_init):
983         * gst/playback/gstplayback.c: (plugin_init):
984         * gst/playback/gstqueue2.c: (plugin_init):
985         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_plugin_init):
986         * sys/v4l/gstv4l.c: (plugin_init):
987         Make sure gettext returns translations in UTF-8 encoding rather
988         than in the current locale encoding (#546822).
989
990 2008-08-06  Stefan Kost  <ensonic@users.sf.net>
991
992         * gst-libs/gst/pbutils/descriptions.c:
993           Add audio/x-qdm for qtdemux.
994
995 2008-08-05  Stefan Kost  <ensonic@users.sf.net>
996
997         * ext/vorbis/vorbisdec.c:
998           Do not leak old taglist.
999
1000 2008-08-04  Stefan Kost  <ensonic@users.sf.net>
1001
1002         * tests/icles/test-scale.c:
1003           Include <stdlib.h> for atoi().
1004
1005 2008-08-04  Andy Wingo  <wingo@pobox.com>
1006
1007         * gst/audiotestsrc/gstaudiotestsrc.c: Very crucial and important
1008         documentation fix.
1009
1010 2008-08-01  Stefan Kost  <ensonic@users.sf.net>
1011
1012         * gst/adder/gstadder.c:
1013           Cleanup lots of empty lines that came from gst-indent going havoc
1014           before I added the INDENT_ON/OFF marker some time agao.
1015
1016 2008-08-01  Stefan Kost  <ensonic@users.sf.net>
1017
1018         * configure.ac:
1019         * gst-libs/gst/riff/riff-read.c:
1020           Bump requirement to latest core and use new tag for riff formats.
1021           Needed for #520694.
1022
1023 2008-08-01  Wim Taymans  <wim.taymans@collabora.co.uk>
1024
1025         * tests/examples/dynamic/Makefile.am:
1026         * tests/examples/dynamic/codec-select.c: (make_encoder),
1027         (make_pipeline), (do_switch), (my_bus_callback), (main):
1028         Add example app that dynamically switches between 3 'encoders'.
1029
1030 2008-07-31  Wim Taymans  <wim.taymans@collabora.co.uk>
1031
1032         * gst/playback/gstplaysink.c: (gst_play_sink_set_vis_plugin):
1033         Add some more comments.
1034
1035 2008-07-31  Wim Taymans  <wim.taymans@collabora.co.uk>
1036
1037         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_getcaps),
1038         (gst_video_test_src_create):
1039         Discard buffers of the wrong size after renegotiation, this is perfectly
1040         possible with things like capsfilter that could suggest caps changes
1041         upstream without knowing the size of the buffer.
1042
1043 2008-07-31  Wim Taymans  <wim.taymans@collabora.co.uk>
1044
1045         * tests/icles/.cvsignore:
1046         * tests/icles/Makefile.am:
1047         * tests/icles/test-scale.c: (make_pipeline), (main):
1048         Add dynamic rescaling tests for the new basetransform.
1049
1050 2008-07-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
1051
1052         * gst/audioconvert/Makefile.am:
1053           Dist recently-added gstfastrandom.h.
1054
1055 2008-07-30  Edward Hervey  <edward.hervey@collabora.co.uk>
1056
1057         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
1058         Fix a "may be used uninitialized in this function" which weirdly only
1059         appears on macosx (?).
1060
1061 2008-07-30  Stefan Kost  <ensonic@users.sf.net>
1062
1063         * gst-libs/gst/riff/riff-ids.h:
1064           Adding acid chunk for tempo and loop information.
1065
1066 2008-07-29  Stefan Kost  <ensonic@users.sf.net>
1067
1068         * sys/xvimage/Makefile.am:
1069           floor() needs linking to $(LIBM).
1070
1071 2008-07-29  Stefan Kost  <ensonic@users.sf.net>
1072
1073         * ext/gnomevfs/gstgnomevfssrc.c:
1074           Aggregate short reads and add some comments and debug logging.
1075           Fixes #537380
1076
1077 2008-07-29  Stefan Kost  <ensonic@users.sf.net>
1078
1079         * gst/playback/gstplaybasebin.c:
1080           Fix property doc markup (its not a signal).
1081
1082         * sys/xvimage/xvimagesink.c:
1083           Add since tag for new proeprties (also add sice tags fro the last two
1084           other additions).
1085
1086 2008-07-29  Stefan Kost  <ensonic@users.sf.net>
1087
1088         * sys/xvimage/xvimagesink.c:
1089         * sys/xvimage/xvimagesink.h:
1090           Add autofill/colorkey properties. Fixes #538656.
1091
1092 2008-07-28  David Schleef  <ds@schleef.org>
1093
1094         * sys/xvimage/xvimagesink.c:
1095           Fix rounding errors when converting colorbalance values
1096           between hardware and object property ranges.  Partial
1097           fix for #537889, however, there still seems to be a small
1098           drift problem that could be totem's fault.
1099
1100 2008-07-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1101
1102         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
1103         (gst_ogg_demux_perform_seek), (gst_ogg_demux_handle_page):
1104         Don't use GST_CLOCK_TIME_NONE as start of NEWSEGMENT events.
1105         This fixes a critical warning.
1106
1107 2008-07-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1108
1109         * ext/ogg/gstoggmux.c:
1110         Allow muxing of CELT into Ogg streams.
1111
1112 2008-07-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1113
1114         * gst/typefind/gsttypefindfunctions.c: (celt_type_find),
1115         (plugin_init):
1116         Add simple typefinder for the CELT codec (www.celt-codec.org).
1117
1118 2008-07-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1119
1120         Patch by: Jan Gerber <j at oil21 dot org>
1121
1122         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_parse_skeleton_fisbone):
1123         Fix calculation of the start time from skeleton streams.
1124         Fixes bug #530068.
1125
1126 2008-07-24  Stefan Kost  <ensonic@users.sf.net>
1127
1128         * tests/examples/seek/seek.c:
1129           Use 64 bit constant GST_CLOCK_TIME_NONE instead of plain -1.
1130
1131 2008-07-23  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1132
1133         * gst/audioconvert/audioconvert.h:
1134         * gst/audioconvert/gstaudioquantize.c:
1135         (gst_audio_quantize_setup_dither),
1136         (gst_audio_quantize_free_dither):
1137         * gst/audioconvert/gstfastrandom.h:
1138         Implement a linear congruential generator as pseudo random number
1139         generator for the dither noise. This is about 2 times faster than
1140         using GLib's mersenne twister. Also this uses only integer math for
1141         generating integers while GLib internally uses floating point math.
1142
1143 2008-07-23  Michael Smith <msmith@songbirdnest.com>
1144
1145         * configure.ac:
1146           Remove AC_ISC_POSIX; it breaks on some systems and is not needed.
1147
1148 2008-07-23  Tim-Philipp Müller  <tim.muller at collabora co uk>
1149
1150         Patch by: Damien Lespiau  <damien.lespiau gmail com>
1151
1152         * gst-libs/gst/sdp/gstsdpmessage.c: (print_media):
1153           Use GST_STR_NULL to avoid crashes with libcs that don't
1154           like NULL strings in printf args (such as the win32 one).
1155           Fixes #544306.
1156
1157 2008-07-17  Jan Schmidt  <Jan.Schmidt@sun.com>
1158
1159         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls):
1160         Oops - set the size of the image used for probing back to 1x1, for
1161         consistency with ximagesink
1162
1163 2008-07-17  Jan Schmidt  <Jan.Schmidt@sun.com>
1164
1165         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
1166         (gst_ximagesink_ximage_new):
1167         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
1168         (gst_xvimagesink_xvimage_new):
1169
1170         Apparently on Solaris and OS/X (at least), it's not legal to ask the
1171         X server to attach to a shared memory segment after we've deleted it,
1172         with the result that MIT-SHM is disabled. Instead, remove it only after 
1173         X succeeds in attaching too.
1174
1175 2008-07-16  David Schleef  <ds@schleef.org>
1176
1177         * gst/audiotestsrc/gstaudiotestsrc.c:
1178         * gst/audiotestsrc/gstaudiotestsrc.h:
1179           Add 'ticks', a 1/30 second sine wave pulse every second.
1180
1181 2008-07-15  David Schleef  <ds@schleef.org>
1182
1183         * gst-libs/gst/video/video.c: Revert ABI change.
1184
1185 2008-07-15  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1186
1187         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
1188         Make it impossible to have NULL caps at the point where we set
1189         framerate and other things. Also don't return immediately for "3ivd"
1190         video and let framerate, etc be set. Might fix bug #542508.
1191
1192 2008-07-14  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1193
1194         * gst-libs/gst/video/video.c: (gst_video_format_parse_caps):
1195         Video format can also be conveniently determined from (many)
1196         non-fixed caps.
1197
1198 2008-07-14  Jan Schmidt  <thaytan@noraisin.net>
1199
1200         * gst/playback/gstplaybasebin.c:
1201         * gst/playback/gstplaybasebin.h:
1202         * gst/playback/gstplaybin.c:
1203         * gst/playback/gststreamselector.c:
1204         First stab at integrating DVD subpicture overlay into
1205         playbin. Successfully plugs and plays, but the queues need
1206         shrinking - 3 seconds of video is too much buffering.
1207
1208 2008-07-11  Stefan Kost  <ensonic@users.sf.net>
1209
1210         * gst/audioconvert/gstaudioconvert.c:
1211           Remove now obsolete note in the docs.
1212
1213 2008-07-11  Stefan Kost  <ensonic@users.sf.net>
1214
1215         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
1216         * docs/plugins/gst-plugins-base-plugins-overrides.txt:
1217         * docs/plugins/gst-plugins-base-plugins-sections.txt:
1218         * docs/plugins/gst-plugins-base-plugins.args:
1219         * docs/plugins/gst-plugins-base-plugins.hierarchy:
1220         * docs/plugins/gst-plugins-base-plugins.interfaces:
1221         * docs/plugins/gst-plugins-base-plugins.prerequisites:
1222         * docs/plugins/gst-plugins-base-plugins.signals:
1223         * docs/plugins/inspect/plugin-adder.xml:
1224         * docs/plugins/inspect/plugin-alsa.xml:
1225         * docs/plugins/inspect/plugin-audioconvert.xml:
1226         * docs/plugins/inspect/plugin-audiorate.xml:
1227         * docs/plugins/inspect/plugin-audioresample.xml:
1228         * docs/plugins/inspect/plugin-audiotestsrc.xml:
1229         * docs/plugins/inspect/plugin-cdparanoia.xml:
1230         * docs/plugins/inspect/plugin-decodebin.xml:
1231         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
1232         * docs/plugins/inspect/plugin-gdp.xml:
1233         * docs/plugins/inspect/plugin-gnomevfs.xml:
1234         * docs/plugins/inspect/plugin-libvisual.xml:
1235         * docs/plugins/inspect/plugin-ogg.xml:
1236         * docs/plugins/inspect/plugin-pango.xml:
1237         * docs/plugins/inspect/plugin-playback.xml:
1238         * docs/plugins/inspect/plugin-queue2.xml:
1239         * docs/plugins/inspect/plugin-subparse.xml:
1240         * docs/plugins/inspect/plugin-tcp.xml:
1241         * docs/plugins/inspect/plugin-theora.xml:
1242         * docs/plugins/inspect/plugin-typefindfunctions.xml:
1243         * docs/plugins/inspect/plugin-uridecodebin.xml:
1244         * docs/plugins/inspect/plugin-video4linux.xml:
1245         * docs/plugins/inspect/plugin-videorate.xml:
1246         * docs/plugins/inspect/plugin-videoscale.xml:
1247         * docs/plugins/inspect/plugin-videotestsrc.xml:
1248         * docs/plugins/inspect/plugin-volume.xml:
1249         * docs/plugins/inspect/plugin-vorbis.xml:
1250         * docs/plugins/inspect/plugin-ximagesink.xml:
1251         * docs/plugins/inspect/plugin-xvimagesink.xml:
1252         * ext/alsa/gstalsamixer.c:
1253         * ext/alsa/gstalsasink.c:
1254         * ext/alsa/gstalsasrc.c:
1255         * ext/gio/gstgiosink.c:
1256         * ext/gio/gstgiosrc.c:
1257         * ext/gio/gstgiostreamsink.c:
1258         * ext/gio/gstgiostreamsrc.c:
1259         * ext/gnomevfs/gstgnomevfssink.c:
1260         * ext/gnomevfs/gstgnomevfssrc.c:
1261         * ext/ogg/gstoggdemux.c:
1262         * ext/ogg/gstoggmux.c:
1263         * ext/pango/gstclockoverlay.c:
1264         * ext/pango/gsttextoverlay.c:
1265         * ext/pango/gsttextrender.c:
1266         * ext/pango/gsttimeoverlay.c:
1267         * ext/theora/theoradec.c:
1268         * ext/theora/theoraenc.c:
1269         * ext/theora/theoraparse.c:
1270         * ext/vorbis/vorbisdec.c:
1271         * ext/vorbis/vorbisenc.c:
1272         * ext/vorbis/vorbisparse.c:
1273         * ext/vorbis/vorbistag.c:
1274         * gst/adder/gstadder.c:
1275         * gst/audioconvert/gstaudioconvert.c:
1276         * gst/audioresample/gstaudioresample.c:
1277         * gst/audiotestsrc/gstaudiotestsrc.c:
1278         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
1279         * gst/gdp/gstgdpdepay.c:
1280         * gst/gdp/gstgdppay.c:
1281         * gst/playback/gstdecodebin2.c:
1282         * gst/playback/gstplaybin.c:
1283         * gst/playback/gstplaybin2.c:
1284         * gst/playback/gstqueue2.c:
1285         * gst/playback/gsturidecodebin.c:
1286         * gst/tcp/gstmultifdsink.c:
1287         * gst/tcp/gsttcpserversink.c:
1288         * gst/videorate/gstvideorate.c:
1289         * gst/videoscale/gstvideoscale.c:
1290         * gst/videotestsrc/gstvideotestsrc.c:
1291         * gst/volume/gstvolume.c:
1292         * sys/ximage/ximagesink.c:
1293         * sys/xvimage/xvimagesink.c:
1294           Cleanup Plugin docs. Link to signals and properties. Fix sub-section
1295           titles. Drop mentining that all our example pipelines are "simple"
1296           pipelines.
1297
1298 2008-07-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1299
1300         * tests/examples/seek/Makefile.am:
1301         Fix out of tree build by adding all required CFLAGS.
1302
1303 2008-07-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1304
1305         * gst/playback/gstdecodebin.c: (add_raw_queue):
1306         And ref the pad before returning it again when linking to the queue
1307         failed. Otherwise we will unref the pad twice later and things break.
1308
1309 2008-07-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1310
1311         * gst/playback/gstdecodebin.c: (add_raw_queue):
1312         If linking the raw pad with a queue fails, try it without a queue
1313         instead of failing completely. This should never happen.
1314
1315 2008-07-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1316
1317         Patch by: Evgeniy Stepanov <eugeni dot stepanov at gmail dot com>
1318
1319         * gst/playback/gstdecodebin.c: (add_raw_queue), (close_pad_link):
1320         Add a queue after a demuxer if the demuxer outputs raw data. This was
1321         done before only for non-raw data but is required in this case too.
1322         Fixes bug #540215.
1323
1324         decodebin2 doesn't have this issue because all streams of a group
1325         go through multiqueue.
1326
1327 2008-07-03  Wim Taymans  <wim.taymans@collabora.co.uk>
1328
1329         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
1330
1331         * gst-libs/gst/sdp/gstsdpmessage.c:
1332         Makes libgstsdp compile with mingw32 by defining the right WINVER so
1333         that getaddrinfo() can be used. Fixes #541358.
1334
1335 2008-07-01  Wim Taymans  <wim.taymans@collabora.co.uk>
1336
1337         * gst/videotestsrc/gstvideotestsrc.c:
1338         (gst_video_test_src_class_init), (gst_video_test_src_init),
1339         (gst_video_test_src_set_property),
1340         (gst_video_test_src_get_property), (gst_video_test_src_create):
1341         * gst/videotestsrc/gstvideotestsrc.h:
1342         Cleanups, use default property values as defines.
1343         Add property to enable/disable peer buffer allocation.
1344
1345 2008-06-30  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1346
1347         * tests/check/elements/gdpdepay.c: (gdpdepay_suite):
1348         * tests/check/pipelines/streamheader.c: (streamheader_suite):
1349         Enable unit tests on PPC again as the bugs are now fixed.
1350
1351 2008-06-30  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1352
1353         * gst-libs/gst/riff/riff-ids.h:
1354         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
1355         (gst_riff_create_audio_template_caps):
1356         Add support for ADPCM IMA DK3 and DK4 variant in RIFF containers.
1357         Fixes bug #540351.
1358
1359 2008-06-30  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1360
1361         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
1362         (gst_ffmpeg_pixfmt_to_caps):
1363         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
1364         (gst_ffmpegcsp_get_unit_size):
1365         Only set/get on the PAL8 format, ffmpegcolorspace doesn't support
1366         it on other formats. Also adjust the unit size only for that format
1367         to not include the palette. Fixes bug #540497.
1368
1369 2008-06-29  Stefan Kost  <ensonic@users.sf.net>
1370
1371         * gst/adder/gstadder.c:
1372           Use GST_DEBUG_FUNCPTR and remove some extra vlnak lines.
1373
1374 2008-06-27  Stefan Kost  <ensonic@users.sf.net>
1375
1376         * ChangeLog:
1377           ChangeLog surgery.
1378   
1379         * tests/examples/seek/seek.c:
1380           Move variable into ifdef too.
1381         
1382
1383 2008-06-27  Stefan Kost  <ensonic@users.sf.net>
1384
1385         * tests/examples/seek/seek.c:
1386           Include config.h and check if we have X. Remove XInitThread(), don't
1387           think its needed. Fixes: #540334.
1388
1389 2008-06-26  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1390
1391         Patch by: Sam Morris <sam at robots dot org to uk>
1392
1393         * gst-libs/gst/interfaces/mixertrack.c:
1394         (gst_mixer_track_class_init), (gst_mixer_track_get_property),
1395         (gst_mixer_track_set_property):
1396         API: Add "index" property to GstMixerTrack to differantiate between
1397         multiple mixer tracks with the same label.
1398
1399         * ext/alsa/gstalsamixeroptions.c: (gst_alsa_mixer_options_new):
1400         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
1401         Set the "index" property of GstMixerTrack to the index given by ALSA.
1402         Fixes bug #528299.
1403
1404 2008-06-25  Stefan Kost  <ensonic@users.sf.net>
1405
1406         * tests/examples/seek/Makefile.am:
1407         * tests/examples/seek/seek.c:
1408           Remove libgstvideo usage. Use gtk_get_option_group instead of
1409           gtk_init().
1410
1411 2008-06-24  Stefan Kost  <ensonic@users.sf.net>
1412
1413         * tests/check/Makefile.am:
1414           Name the test registry format neutral.
1415
1416 2008-06-24  Stefan Kost  <ensonic@users.sf.net>
1417
1418         * gst/playback/gstqueue2.c:
1419           Do not double notify. Remove the unsued return value.
1420
1421 2008-06-24  Stefan Kost  <ensonic@users.sf.net>
1422
1423         * ext/alsa/gstalsamixer.c:
1424           Also consider "speaker" as a name for master volume. If that doesn't
1425           help look for the first non-mono volume control that also has a
1426           playback switch.
1427
1428 2008-06-24  Stefan Kost  <ensonic@users.sf.net>
1429
1430         * ChangeLog:
1431           Forgot to save the ChangeLog :/
1432
1433 2008-06-24  Stefan Kost  <ensonic@users.sf.net>
1434
1435         * tests/examples/seek/Makefile.am:
1436         * tests/examples/seek/seek.c:
1437           Embedd the xwindow. Allow to play multiple files.
1438
1439 2008-06-24  Jan Schmidt  <jan.schmidt@sun.com>
1440
1441         * sys/ximage/ximagesink.c (gst_ximagesink_ximage_put),
1442         (gst_ximagesink_setcaps):
1443         * sys/ximage/ximagesink.h:
1444         When the caps change, make sure to re-draw borders in
1445         force-aspect-ratio=true mode.
1446         * sys/xvimage/xvimagesink.c (gst_xvimagesink_xvimage_put):
1447         Don't clear the border_draw flag until we actually draw the border.
1448         * tests/check/Makefile.am:
1449         Ignore alsasink/src during the states test too, so it doesn't fail
1450         when running without access to the sound device.
1451
1452 2008-06-22  Stefan Kost  <ensonic@users.sf.net>
1453
1454         * tests/examples/seek/seek.c:
1455           Fix crasher when playing a parse-launch line the 2nd time.
1456
1457 2008-06-21  Thomas Vander Stichele  <thomas at apestaart dot org>
1458
1459         * tests/check/pipelines/oggmux.c:
1460           Properly ifdef tests to fix compilation.
1461
1462 2008-06-20  Michael Smith <msmith@songbirdnest.com>
1463
1464         * gst/playback/gstplay-marshal.list:
1465         * gst/playback/gstplaybin2.c:
1466           Add get-video-pad, get-audio-pad, get-text-pad action signals to
1467           playbin2. This allows the user to get to the selector's sinkpads, and
1468           thus inspect a range of things - caps, tags, etc. 
1469
1470 2008-06-20  Michael Smith <msmith@songbirdnest.com>
1471
1472         * gst/playback/gstplaybin2.c:
1473           Use a different constant for the convert-frame signal id.
1474           Fixes #537009.
1475
1476 2008-06-20  Michael Smith <msmith@songbirdnest.com>
1477
1478         * gst/playback/gstplaybin2.c:
1479         * gst/playback/gstplaysink.c:
1480           Fix a whole bunch of typos in comments and log statements. 
1481
1482 2008-06-20  Michael Smith <msmith@songbirdnest.com>
1483
1484         * sys/xvimage/xvimagesink.c:
1485           Don't set colour balance values on the Xv port if the user hasn't
1486           changed them (via properties or the interface). Avoids accumulating
1487           rounding errors for the common case.
1488           Partial fix for bug #537889.
1489
1490 2008-06-20  Michael Smith <msmith@songbirdnest.com>
1491
1492         * gst/playback/gstdecodebin2.c:
1493           Ensure decodebin2 emits 'drained' signal once, and only once, when all
1494           pads are drained.
1495
1496 2008-06-20  Wim Taymans  <wim.taymans@collabora.co.uk>
1497
1498         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_get_latency),
1499         (gst_vorbis_enc_src_query), (gst_vorbis_enc_chain):
1500         Report the encoder latency. Fixes #538232.
1501
1502 2008-06-20  Wim Taymans  <wim.taymans@collabora.co.uk>
1503
1504         * gst/playback/gstplaybin2.c: (gst_play_bin_get_property),
1505         (notify_source), (activate_group):
1506         Implement the source property, emit notify when it changes in the
1507         underlying uridecodebin.
1508
1509 2008-06-20  Wim Taymans  <wim.taymans@collabora.co.uk>
1510
1511         * tests/examples/seek/seek.c: (stop_cb):
1512         Free and clear the seek element list so that we don't use invalid
1513         references when seeking after recreating a gst-launch line.
1514
1515 2008-06-20  Wim Taymans  <wim.taymans@collabora.co.uk>
1516
1517         * gst-libs/gst/audio/gstbaseaudiosink.c:
1518         (gst_base_audio_sink_query), (gst_base_audio_sink_skew_slaving),
1519         (gst_base_audio_sink_render):
1520         Report latency even if we are not live instead of hiding it.
1521         Take ts-offset and render-delay of the basesink into account when
1522         scheduling samples.
1523         Rework the clipping code so that we can take the various offsets into
1524         account and still do correct clipping.
1525
1526 2008-06-20  Jan Schmidt  <jan.schmidt@sun.com>
1527
1528         * configure.ac:
1529         Bump verion back to devel -> 0.10.20.1
1530
1531 2008-06-20  Sebastian Dröge  <slomo@circular-chaos.org>
1532
1533         * gst-libs/gst/tag/tags.c: (gst_tag_image_data_to_image_buffer):
1534         Don't increase the size of non-string image buffers by one as this
1535         might in theory confuse decoders. Still increase it by one for string
1536         image buffers to append '\0'.
1537
1538 2008-06-20  Sebastian Dröge  <slomo@circular-chaos.org>
1539
1540         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
1541         
1542         * gst/gdp/gstgdppay.c: (gst_gdp_pay_reset):
1543         Fix a buffer memleak and remove a confusing and wrong debug output.
1544         Fixes bug #538663.
1545
1546 === release 0.10.20 ===
1547
1548 2008-06-18  Jan Schmidt <jan.schmidt@sun.com>
1549
1550         * configure.ac:
1551           releasing 0.10.20, "Here I Go Again"
1552
1553 2008-06-11  Jan Schmidt  <jan.schmidt@sun.com>
1554
1555         * configure.ac:
1556         0.10.19.3 pre-release
1557
1558 2008-06-11  Jan Schmidt  <jan.schmidt@sun.com>
1559
1560         * gst-libs/gst/rtsp/gstrtspconnection.c:
1561         Fix build on win32.
1562         Patch By: David Schleef <ds@schleef.org>
1563         Fixes: #536874
1564
1565 2008-06-11  Sebastian Dröge  <slomo@circular-chaos.org>
1566
1567         * ext/gio/gstgiobasesrc.c: (gst_gio_base_src_finalize),
1568         (gst_gio_base_src_create):
1569         * ext/gio/gstgiobasesrc.h:
1570         Try to read the requested number of bytes, even if the first
1571         read returns less than requested, until nothing is read anymore
1572         or we have the requested amount of bytes. This fixes playback of
1573         files via Samba as Samba only allows to read 64k at once.
1574
1575         Implement a caching algorithm that makes sure that we read at
1576         least 4k of data every time. Some elements will try to read a few
1577         bytes, then seek, read again a few bytes and so on and this is
1578         painfully slow as every operation has to go over DBus if GVfs is
1579         used as backend.
1580
1581         Fixes bug #536849 and #536848.
1582
1583         * ext/gio/gstgiosrc.c: (gst_gio_src_class_init),
1584         (gst_gio_src_check_get_range):
1585         Override check_get_range() to blacklist http/https URIs
1586         and whitelist file URIs. More to be added on demand.
1587
1588 2008-06-05  Jan Schmidt  <jan.schmidt@sun.com>
1589
1590         * configure.ac:
1591         0.10.19.2 pre-release
1592
1593 2008-06-04  Jan Schmidt  <jan.schmidt@sun.com>
1594
1595         * win32/common/libgstrtsp.def:
1596         * win32/common/libgsttag.def:
1597         Add new API functions to the dll exports
1598
1599 2008-06-04  Michael Smith <msmith@songbirdnest.com>
1600
1601         * gst/playback/gstplaybasebin.c:
1602           Disconnect signals from decodebins we created before we remove it
1603           from playbin, to avoid crashes if the decodebin is eventually
1604           disposed after the playbin itself (possible if the app takes a
1605           reference on the decodebin).
1606           Fixes #536521.
1607
1608 2008-06-04  Tim-Philipp Müller  <tim.muller at collabora co uk>
1609
1610         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
1611           (mp3_type_find), (musepack_type_find), (MULTIPART_MAX_HEADER_SIZE),
1612           (mpeg_sys_type_find), (mpeg_ts_type_find), (mpeg4_video_type_find),
1613           (h264_video_type_find), (mpeg_video_stream_type_find),
1614           (dv_type_find), (mmsh_type_find):
1615           Bunch of small clean-ups: use gst_type_find_suggest_simple(); don't
1616           copy caps for no good reason (this may be desirable to make it easier
1617           to detect leaks, but then it should probably be done for all caps
1618           in the typefinder somewhere).
1619
1620 2008-06-04  Peter Kjellerstedt  <pkj@axis.com>
1621
1622         * tests/check/Makefile.am:
1623         Do not try to run the check tests for subparse unless it has been
1624         built.
1625
1626 2008-06-04  Peter Kjellerstedt  <pkj@axis.com>
1627
1628         * tests/check/pipelines/streamheader.c: (buffer_probe_cb),
1629         (test_multifdsink_gdp_vorbisenc), (streamheader_suite):
1630         Do not try to run a test which requires vorbisenc unless we have
1631         actually built it.
1632
1633 2008-06-04  Peter Kjellerstedt  <pkj@axis.com>
1634
1635         * gst-libs/gst/rtsp/gstrtspconnection.c:
1636         (gst_rtsp_connection_set_auth), (gst_rtsp_connection_set_auth_param),
1637         (gst_rtsp_connection_clear_auth_params),
1638         (gst_rtsp_connection_set_qos_dscp), (gst_rtsp_connection_get_ip):
1639         * gst-libs/gst/rtsp/gstrtspconnection.h:
1640         Add a couple of missing argument guards.
1641         Add a way of setting the DSCP for an RTSP connection.
1642         Add an accessor method for the ip member of GstRTSPConnection as all
1643         members are supposed to be private.
1644
1645 2008-06-04  Peter Kjellerstedt  <pkj@axis.com>
1646
1647         * gst/tcp/gstmultifdsink.c: (setup_dscp_client):
1648         Fixed accidental use of IPv4 options for all IPv6 addresses.
1649
1650 2008-06-04  Tim-Philipp Müller  <tim.muller at collabora co uk>
1651
1652         * gst-libs/gst/interfaces/mixertrack.h:
1653           Document mixer track flags.
1654
1655 2008-06-04  Sebastian Dröge  <slomo@circular-chaos.org>
1656
1657         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
1658
1659         * gst/gdp/gstgdppay.c: (gst_gdp_pay_reset_streamheader):
1660         Don't set caps on the buffers that contain a copy of the buffer
1661         including the caps of them resulting in an always increasing refcount
1662         of the caps and insanely large caps. Instead include a buffer without
1663         caps in the new caps. Fixes bug #536475.
1664
1665 2008-06-04  Sebastian Dröge  <slomo@circular-chaos.org>
1666
1667         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps):
1668         Transform a given PAR to a range on the struct with the generic
1669         height/width instead of the struct with the possibly restricted
1670         height/width.
1671
1672 2008-06-04  Sebastian Dröge  <slomo@circular-chaos.org>
1673
1674         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps):
1675         Prefer the given format if it contains something stricter than [1,MAX]
1676         for height or width and only put a structure that requires rescaling
1677         as second. This makes it possible to use videoscale in pipelines where
1678         the source can actually produce the wanted height/width but usually
1679         selects a different one from the requested.
1680
1681 2008-06-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
1682
1683         Based on patch by: John Millikin <jmillikin gmail com>
1684
1685         * gst-libs/gst/tag/gstvorbistag.c: (tag_matches), (gst_vorbis_tag_add),
1686           (gst_vorbis_tag_add_coverart):
1687           Retrieve COVERART tags from vorbis comments (#512333)
1688
1689 2008-06-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
1690
1691         * gst-libs/gst/tag/tag.h:
1692         * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum):
1693           Don't forget to add new enum value here too (should probably use
1694           glib-mkenums here...).
1695
1696 2008-06-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
1697
1698         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_add_id3_image):
1699         * gst-libs/gst/tag/tag.h: (GST_TAG_IMAGE_TYPE_NONE),
1700         * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum),
1701           (gst_tag_image_type_get_type), (gst_tag_image_type_is_valid),
1702           (gst_tag_image_data_to_image_buffer):
1703           Add two utility functions to avoid code duplication (#512333):
1704           API: add gst_tag_image_data_to_image_buffer()
1705           API: add gst_tag_list_add_id3_image()
1706           API: add GST_TAG_IMAGE_TYPE_NONE enum value
1707
1708 2008-06-03  Sebastian Dröge  <slomo@circular-chaos.org>
1709
1710         * win32/common/libgstaudio.def:
1711         Add gst_audio_check_channel_positions() to the exported symbols.
1712
1713 2008-06-03  Sebastian Dröge  <slomo@circular-chaos.org>
1714
1715         * docs/libs/gst-plugins-base-libs-sections.txt:
1716         * gst-libs/gst/audio/multichannel.c:
1717         (gst_audio_check_channel_positions):
1718         * gst-libs/gst/audio/multichannel.h:
1719         API: Make gst_audio_check_channel_positions() public.
1720
1721         * tests/check/libs/audio.c: (GST_START_TEST):
1722         Add some simple checks for gst_audio_check_channel_positions().
1723
1724 2008-06-02  Tim-Philipp Müller  <tim.muller at collabora co uk>
1725
1726         * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
1727           minrange and maxrange are scaled according to the frequency
1728           multiplier.
1729
1730 2008-06-02  Tim-Philipp Müller  <tim.muller at collabora co uk>
1731
1732         * ext/pango/Makefile.am:
1733         * ext/pango/gsttextoverlay.c: (gst_text_overlay_shade_y),
1734           (gst_text_overlay_blit_yuv420), (gst_text_overlay_push_frame):
1735           Use gstvideo functions to calculate strides and plane offsets. Fixes
1736           rendering issue ('ghost' images of the text on the chroma planes)
1737           with widths or heights that are not multiples of 8 (#506659 and
1738           probably also #485729).
1739
1740         * tests/icles/test-textoverlay.c: (show_text), (test_textoverlay),
1741           (main):
1742           Test with odd height/width too.
1743
1744 2008-06-02  Sebastian Dröge  <slomo@circular-chaos.org>
1745
1746         * gst/adder/gstadder.c: (gst_adder_query_duration),
1747         (gst_adder_query_latency):
1748         When using gst_element_iterate_pads() one has to unref every pad
1749         after usage.
1750
1751 2008-05-31  Mark Nauwelaerts  <mnauw@users.sf.net>
1752
1753         * gst-libs/gst/audio/gstbaseaudiosrc.c:
1754         (gst_base_audio_src_class_init):
1755         Add a gtk-doc chunk for the new properties to have a Since: indication.
1756
1757 2008-05-31  Mark Nauwelaerts  <mnauw@users.sf.net>
1758
1759         * gst-libs/gst/audio/gstbaseaudiosrc.c:
1760         (gst_base_audio_src_class_init), (gst_base_audio_src_dispose),
1761         (gst_base_audio_src_get_property), (gst_base_audio_src_setcaps),
1762         (gst_base_audio_src_change_state):
1763         Provide readable actual-buffer-time and actual-latency-time properties
1764         that reflect the configured ringbuffer values. Fixes #524724.
1765         API: GstBaseAudioSrc:actual-buffer-time
1766         API: GstBaseAudioSrc:actual-latency-time
1767
1768 2008-05-30  Wim Taymans  <wim.taymans@collabora.co.uk>
1769
1770         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push),
1771         (gst_basertppayload_change_state):
1772         Simply converting the running time into an RTP timestamp by scaling it
1773         based on the clock-rate is good enough for making an RTP timestamp. This
1774         has the added benefit that we can later on expose a property with the
1775         RTP timestamp of running time 0, as is needed for RTSP servers to
1776         generate the response of the PLAY request.
1777
1778 2008-05-30  Sebastian Dröge  <slomo@circular-chaos.org>
1779
1780         * gst/audioconvert/gstaudioconvert.c:
1781         (structure_has_fixed_channel_positions),
1782         (gst_audio_convert_transform_caps):
1783         Allow up to 11 positioned channels now that audioconvert can handle
1784         this but add no default positions for > 8 channels.
1785         
1786         * tests/check/elements/audioconvert.c: (GST_START_TEST):
1787         Add some unit tests for the above change: Test conversion of
1788         11 positioned channels to stereo and the other way around, test
1789         conversion of 15 unpositioned channels in different ways.
1790
1791 2008-05-29  Sebastian Dröge  <slomo@circular-chaos.org>
1792
1793         * win32/common/libgstaudio.def:
1794         Add gst_audio_clock_reset to the list of exported symbols.
1795
1796 2008-05-29  Sebastian Dröge  <slomo@circular-chaos.org>
1797
1798         * tests/check/elements/vorbisdec.c: (vorbisdec_suite):
1799         Remove wrong_channels_identification_header unit test as we now
1800         support 7 (and more channels).
1801
1802 2008-05-29  Sebastian Dröge  <slomo@circular-chaos.org>
1803
1804         * gst/audioconvert/gstchannelmix.c:
1805         (gst_channel_mix_fill_one_other):
1806         If mixing left or right to center (or the other way around) only take
1807         the complete value if we don't already have the original position in
1808         the source.
1809
1810 2008-05-29  Sebastian Dröge  <slomo@circular-chaos.org>
1811
1812         * gst-libs/gst/audio/multichannel.c:
1813         (gst_audio_check_channel_positions),
1814         (gst_audio_set_structure_channel_positions_list),
1815         (gst_audio_fixate_channel_positions):
1816         Allow rear center together with rear left/right and other previously
1817         conflicting channel positions. The reason why they weren't allowed
1818         was the channel mixing implementation in audioconvert.
1819         Also take this into account when fixing channel layouts.
1820
1821         Allow setting channel positions for 1/2 channels when using
1822         gst_audio_set_structure_channel_position().
1823
1824         * gst/audioconvert/gstchannelmix.c:
1825         (gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
1826         (gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
1827         (gst_channel_mix_fill_special), (gst_channel_mix_fill_matrix):
1828         Major rewrite of the channel mixing.
1829
1830         We now allow previously conflicting channel positions to appear
1831         together (rear center and rear left/right for example).
1832         Fixes bug #533817.
1833
1834         Rework the way channels are mixed together to take more possible
1835         channel positions into account, properly mix from/to side channels
1836         and don't assume that either center, left&right or nothing of a
1837         specific position is available anymore.
1838
1839         * tests/check/elements/audioconvert.c: (GST_START_TEST):
1840         Adjust unit tests with non-standard 1/2 channel layouts to the more
1841         correct new behaviour.
1842
1843         Add a unit test for 5.1->Stereo downmixing.
1844
1845 2008-05-29  Sebastian Dröge  <slomo@circular-chaos.org>
1846
1847         * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
1848         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_generate_sink_caps):
1849         Add sane defaults for the 7 and 8 channel layouts as those are
1850         undefined in the Vorbis spec. Use NONE channel layouts when decoding
1851         more than 8 channels instead of erroring out. Fixes bug #535356.
1852
1853 2008-05-28  Wim Taymans  <wim.taymans@collabora.co.uk>
1854
1855         * docs/plugins/Makefile.am:
1856         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
1857         * docs/plugins/gst-plugins-base-plugins-sections.txt:
1858         * ext/theora/theoraparse.c:
1859         Add theoraparse to the docs and fix some docs.
1860
1861 2008-05-28  Wim Taymans  <wim.taymans@collabora.co.uk>
1862
1863         * gst-libs/gst/cdda/gstcddabasesrc.c:
1864         (gst_cdda_base_src_add_track), (gst_cdda_base_src_create):
1865         Fix EOS condition and track addition check, the track.end sector is
1866         included in the track. Fixes #533265.
1867
1868 2008-05-28  Wim Taymans  <wim.taymans@collabora.co.uk>
1869
1870         Patch by: Mark Nauwelaerts <manauw at skynet be>
1871
1872         * gst/videorate/gstvideorate.c: (gst_video_rate_reset),
1873         (gst_video_rate_flush_prev), (gst_video_rate_event),
1874         (gst_video_rate_chain):
1875         * gst/videorate/gstvideorate.h:
1876         React (more) to NEWSEGMENT
1877         Small adjustment in timestamp calculation to prevent mismatches
1878         Fixes #435633.
1879
1880 2008-05-28  Tim-Philipp Müller  <tim.muller at collabora co uk>
1881
1882         * tests/examples/seek/seek.c: (make_parselaunch_pipeline):
1883           Initialise error to NULL as we should.
1884
1885 2008-05-28  Sebastian Dröge  <slomo@circular-chaos.org>
1886
1887         * gst/adder/gstadder.c: (gst_adder_query_duration),
1888         (gst_adder_query_latency), (gst_adder_query):
1889         Implement latency query.
1890
1891 2008-05-27  Sebastian Dröge  <slomo@circular-chaos.org>
1892
1893         * gst/adder/gstadder.c: (gst_adder_query_duration):
1894         Correctly resync the iterator if gst_iterator_next() returns
1895         GST_ITERATOR_RESYNC.
1896
1897 2008-05-27  Tim-Philipp Müller  <tim.muller at collabora co uk>
1898
1899         * win32/vs6/libgstpbutils.dsp:
1900           Add pbutils-enumtypes.c to sources (#518037).
1901
1902 2008-05-27  Wim Taymans  <wim.taymans@collabora.co.uk>
1903
1904         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
1905         (gst_audio_clock_reset), (gst_audio_clock_get_internal_time):
1906         * gst-libs/gst/audio/gstaudioclock.h:
1907         Add method to inform the clock that the time starts from 0 again. We use
1908         this info to calculate a clock offset so that the time we report in
1909         internal_time is monotonically increasing, as required by the clock base
1910         class. Fixes #521761.
1911         API: GstAudioClock::gst_audio_clock_reset()
1912
1913         * gst-libs/gst/audio/gstbaseaudiosink.c:
1914         (gst_base_audio_sink_skew_slaving),
1915         (gst_base_audio_sink_change_state):
1916         * gst-libs/gst/audio/gstbaseaudiosrc.c:
1917         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
1918         Reset reported time when we (re)create the ringbuffer.
1919
1920 2008-05-27  Tim-Philipp Müller  <tim.muller at collabora co uk>
1921
1922         * ext/alsa/gstalsamixertrack.c:
1923           (gst_alsa_mixer_track_update_alsa_capabilities):
1924           Make sure playback volumes aren't accidentally overwritten by
1925           capture volumes if an alsa mixer track has both playback and
1926           capture capabilities: we create two GstMixerTracks in that
1927           case, so make sure we query only the alsa capabilities that
1928           refer to the type of GstMixerTrack we created from the dual
1929           capability alsa element. Should fix issues with Audigy2 sound
1930           cards (#518082).
1931
1932 2008-05-27  Tim-Philipp Müller  <tim.muller at collabora co uk>
1933
1934         * tests/check/pipelines/oggmux.c: (test_pipeline):
1935           Don't use deprecated function.
1936
1937 2008-05-27  Wim Taymans  <wim.taymans@collabora.co.uk>
1938
1939         * gst/playback/gstdecodebin2.c:
1940         (gst_decode_group_control_source_pad), (gst_decode_group_expose):
1941         Check for NULL cases and log them, creating ghostpads can, for example,
1942         fail when the pad returns wrong caps.
1943
1944         * gst/playback/gstplaybin2.c: (perform_eos):
1945         When pushing out the EOS event, collect the return value and warn when
1946         something failed.
1947
1948 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
1949
1950         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
1951         (gst_riff_create_video_template_caps):
1952         Add support for DVCPRO.
1953
1954 2008-05-26  Tim-Philipp Müller  <tim.muller at collabora co uk>
1955
1956         * gst/videoscale/gstvideoscale.c: (DEFAULT_PROP_METHOD):
1957           Change default scaling method from nearest-neighbour to bilinear.
1958
1959 2008-05-26  Tim-Philipp Müller  <tim.muller at collabora co uk>
1960
1961         * tests/check/libs/video.c:
1962           More checks.
1963
1964 2008-05-25  Tim-Philipp Müller  <tim.muller at collabora co uk>
1965
1966         * gst/subparse/gstsubparse.c: (parser_state_init),
1967           (gst_sub_parse_format_autodetect), (handle_buffer):
1968         * gst/subparse/gstsubparse.h:
1969         * tests/check/elements/subparse.c: (test_tmplayer_style3b):
1970           Limit duration to a maximum of five seconds for tmplayer format where
1971           we can guess the duration only from the timestamp of the next line of
1972           text. We don't want to show a text for eternities just because nothing
1973           else is being said for a while.
1974
1975 2008-05-23  Wim Taymans  <wim.taymans@collabora.co.uk>
1976
1977         * gst-libs/gst/rtp/gstbasertpdepayload.c:
1978         (gst_base_rtp_depayload_chain),
1979         (gst_base_rtp_depayload_handle_sink_event),
1980         (gst_base_rtp_depayload_push_full),
1981         (gst_base_rtp_depayload_change_state):
1982         Check sequence numbers, mark input buffers with a discont flag for the
1983         subclass when we detected a gap, drop duplicate buffers. We do this
1984         because one can use the element without a jitterbuffer in front and we
1985         don't want to feed the subclasses invalid or reordered data.
1986         Do an error when the subclass did not provide a process function instead
1987         of crashing.
1988         Some other small cleanups.
1989
1990 2008-05-22  Tim-Philipp Müller  <tim.muller at collabora co uk>
1991
1992         * gst/videotestsrc/videotestsrc.c: (paint_hline_NV12_NV21):
1993           May just as well use the precalculated uvstride here.
1994
1995 2008-05-22  Jan Schmidt  <jan.schmidt@sun.com>
1996
1997         * docs/plugins/Makefile.am:
1998         * docs/plugins/gst-plugins-base-plugins-overrides.txt:
1999         * docs/plugins/gst-plugins-base-plugins-sections.txt:
2000         * docs/plugins/gst-plugins-base-plugins.args:
2001         * docs/plugins/gst-plugins-base-plugins.hierarchy:
2002         * docs/plugins/gst-plugins-base-plugins.interfaces:
2003         * docs/plugins/gst-plugins-base-plugins.prerequisites:
2004         * docs/plugins/inspect/plugin-adder.xml:
2005         * docs/plugins/inspect/plugin-alsa.xml:
2006         * docs/plugins/inspect/plugin-audioconvert.xml:
2007         * docs/plugins/inspect/plugin-audiorate.xml:
2008         * docs/plugins/inspect/plugin-audioresample.xml:
2009         * docs/plugins/inspect/plugin-audiotestsrc.xml:
2010         * docs/plugins/inspect/plugin-cdparanoia.xml:
2011         * docs/plugins/inspect/plugin-decodebin.xml:
2012         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
2013         * docs/plugins/inspect/plugin-gdp.xml:
2014         * docs/plugins/inspect/plugin-gio.xml:
2015         * docs/plugins/inspect/plugin-gnomevfs.xml:
2016         * docs/plugins/inspect/plugin-libvisual.xml:
2017         * docs/plugins/inspect/plugin-ogg.xml:
2018         * docs/plugins/inspect/plugin-pango.xml:
2019         * docs/plugins/inspect/plugin-playback.xml:
2020         * docs/plugins/inspect/plugin-queue2.xml:
2021         * docs/plugins/inspect/plugin-subparse.xml:
2022         * docs/plugins/inspect/plugin-tcp.xml:
2023         * docs/plugins/inspect/plugin-theora.xml:
2024         * docs/plugins/inspect/plugin-typefindfunctions.xml:
2025         * docs/plugins/inspect/plugin-uridecodebin.xml:
2026         * docs/plugins/inspect/plugin-video4linux.xml:
2027         * docs/plugins/inspect/plugin-videorate.xml:
2028         * docs/plugins/inspect/plugin-videoscale.xml:
2029         * docs/plugins/inspect/plugin-videotestsrc.xml:
2030         * docs/plugins/inspect/plugin-volume.xml:
2031         * docs/plugins/inspect/plugin-vorbis.xml:
2032         * docs/plugins/inspect/plugin-ximagesink.xml:
2033         * docs/plugins/inspect/plugin-xvimagesink.xml:
2034         * ext/cdparanoia/gstcdparanoiasrc.c:
2035         * ext/ogg/gstoggdemux.c:
2036         * ext/ogg/gstoggdemux.h:
2037         * ext/ogg/gstoggmux.c:
2038         * ext/ogg/gstoggmux.h:
2039         * gst/audioconvert/audioconvert.c:
2040         * gst/audioconvert/audioconvert.h:
2041         * gst/audioconvert/gstaudioconvert.h:
2042         * gst/gdp/gstgdpdepay.h:
2043         * gst/gdp/gstgdppay.h:
2044         * gst/playback/gstdecodebin.c:
2045         * gst/playback/gstdecodebin2.c:
2046         * gst/playback/gstplaybin.c:
2047         * gst/playback/gstplaybin2.c:
2048         * gst/playback/gsturidecodebin.c:
2049         * gst/tcp/gstmultifdsink.c:
2050         * gst/tcp/gstmultifdsink.h:
2051         * gst/tcp/gsttcp.h:
2052
2053         Add some documentation comments, and some new headers to be scanned.
2054         Rename some internal enum declarations (audioconvert's DitherType and
2055         NoiseShapingType, GstUnitType from the TCP elements) to match the
2056         documented GObject type names so that the docs pick them up.
2057         Name the playbin2 docs markups properly so they get picked up. They'll
2058         need renaming back when/if playbin2 becomes playbin.
2059
2060         100% symbol coverage for the plugin docs, booya.
2061
2062 2008-05-22  Sebastian Dröge  <slomo@circular-chaos.org>
2063
2064         Patch by: Thijs Vermeir <thijsvermeir@gmail.com>
2065
2066         * gst/videotestsrc/videotestsrc.c: (paint_hline_NV12_NV21):
2067         Fix generation of NV12/NV21 frames. Fixes bug #532454.
2068
2069 2008-05-22  Wim Taymans  <wim.taymans@collabora.co.uk>
2070
2071         Patch by: Sjoerd Simons <sjoerd at luon dot net>
2072
2073         * gst/playback/gstdecodebin.c: (remove_fakesink):
2074         Lock the fakesink before setting the state to NULL and removing it from
2075         the bin so that a concurrent state change cannot interfere. 
2076         Fixes #534331.
2077
2078 2008-05-21  Felipe Contreras  <felipe.contreras@gmail.com>
2079
2080         * docs/Makefile.am:
2081         Fix installing plugin documentation when gtk-doc is disabled.
2082
2083 2008-05-21  Felipe Contreras  <felipe.contreras@gmail.com>
2084
2085         * gst-libs/gst/rtsp/Makefile.am:
2086         Distribute, don't install md5.h
2087
2088 2008-05-21  Julien Moutte  <julien@fluendo.com>
2089
2090         * gst/tcp/gstmultifdsink.c: (setup_dscp_client): Use IPPROTO_IP
2091         instead of SOL_IP, works on more platforms.
2092         * gst/typefind/gsttypefindfunctions.c: (aac_type_find): Fix printf
2093         arguments.
2094
2095 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
2096
2097         * ext/vorbis/vorbisdec.c:
2098         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform):
2099         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_show_frame):
2100         Some debug and comment fixes.
2101
2102         * tests/examples/dynamic/addstream.c: (main):
2103         Fix , to ;
2104
2105 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
2106
2107         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
2108         * gst/playback/decodetest.c: (new_decoded_pad_cb):
2109         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
2110         (try_to_link_1), (elem_is_dynamic), (close_link), (type_found),
2111         (cleanup_decodebin):
2112         * gst/playback/gstdecodebin2.c: (gst_decode_bin_init),
2113         (connect_element), (gst_decode_group_control_demuxer_pad):
2114         * gst/playback/gstplaybasebin.c: (queue_remove_probe),
2115         (queue_out_of_data), (gen_preroll_element), (preroll_unlinked),
2116         (mute_group_type):
2117         * gst/playback/gstplaybin.c: (gst_play_bin_vis_blocked),
2118         (gst_play_bin_set_property), (handoff), (gen_video_element),
2119         (gen_text_element), (gen_audio_element), (gen_vis_element),
2120         (remove_sinks), (add_sink), (setup_sinks):
2121         * gst/playback/gstplaybin2.c: (pad_added_cb), (no_more_pads_cb):
2122         * gst/playback/gstplaysink.c: (gst_play_sink_get_video_sink),
2123         (gst_play_sink_get_audio_sink), (gst_play_sink_vis_unblocked),
2124         (gst_play_sink_vis_blocked), (gst_play_sink_set_vis_plugin),
2125         (gst_play_sink_get_vis_plugin), (gst_play_sink_set_mute),
2126         (gen_video_chain), (gen_text_chain), (gen_audio_chain),
2127         (gen_vis_chain), (gst_play_sink_reconfigure),
2128         (gst_play_sink_set_font_desc), (gst_play_sink_get_font_desc),
2129         (gst_play_sink_request_pad):
2130         * gst/playback/gsturidecodebin.c: (type_found), (setup_source):
2131         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
2132         (cb_newpad):
2133         * gst/playback/test6.c: (new_decoded_pad_cb):
2134         * tests/check/elements/audioconvert.c: (GST_START_TEST):
2135         * tests/check/elements/audiorate.c: (test_injector_chain),
2136         (do_perfect_stream_test):
2137         * tests/check/elements/ffmpegcolorspace.c: (GST_START_TEST):
2138         * tests/check/elements/gdpdepay.c: (GST_START_TEST):
2139         * tests/check/elements/gnomevfssink.c:
2140         * tests/check/elements/textoverlay.c:
2141         (notgst_check_setup_src_pad2), (notgst_check_teardown_src_pad2):
2142         * tests/check/elements/videotestsrc.c: (GST_START_TEST):
2143         * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
2144         * tests/check/pipelines/oggmux.c: (test_pipeline):
2145         * tests/check/pipelines/streamheader.c: (GST_START_TEST):
2146         * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
2147         * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
2148         * tests/examples/seek/scrubby.c: (make_wav_pipeline):
2149         * tests/examples/seek/seek.c: (make_mod_pipeline),
2150         (make_dv_pipeline), (make_wav_pipeline), (make_flac_pipeline),
2151         (make_sid_pipeline), (make_parse_pipeline), (make_vorbis_pipeline),
2152         (make_theora_pipeline), (make_vorbis_theora_pipeline),
2153         (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
2154         (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline),
2155         (update_fill), (msg_buffering):
2156         Don't use bad gst_element_get_pad().
2157
2158 2008-05-21  Stefan Kost  <ensonic@users.sf.net>
2159
2160         * gst-libs/gst/riff/riff-media.c:
2161           Fix wrong method name in docs. Fix calculation of strf fields for
2162           broken mulaw/alaw.
2163   
2164         * gst-libs/gst/riff/riff-read.c:
2165           Whitespace fix and removing double ';'.
2166
2167 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
2168
2169         * docs/design/part-playbin2.txt:
2170         Add some leftover doc.
2171
2172 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
2173
2174         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_fill_others):
2175         Fix copy & paste error in last commit.
2176
2177 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
2178
2179         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_fill_others):
2180         Add support for mixing GST_AUDIO_CHANNEL_POSITION_SIDE_* from/to
2181         other channel positions when source has SIDE channels and dest doesn't
2182         or the other way around.
2183
2184 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
2185
2186         Patch by: Henrik Eriksson <henriken at axis dot com>
2187
2188         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
2189         (gst_multi_fd_sink_init), (setup_dscp_client), (setup_dscp),
2190         (gst_multi_fd_sink_add_full), (gst_multi_fd_sink_set_property),
2191         (gst_multi_fd_sink_get_property):
2192         * gst/tcp/gstmultifdsink.h:
2193         Add support for DSCP QOS. Fixes #469933.
2194
2195 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
2196
2197         * tests/check/elements/audioconvert.c: (GST_START_TEST):
2198         Add another test that checks if conversion between standard 1 and 2
2199         channel layouts with and without positions set is working.
2200
2201 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
2202
2203         * gst-libs/gst/audio/multichannel.c:
2204         (gst_audio_check_channel_positions):
2205         Allow non-standard 2 channel layouts.
2206         
2207         * tests/check/elements/audioconvert.c: (GST_START_TEST):
2208         Add some tests for converting and remapping non-standard 1 and 2
2209         channel layouts.
2210
2211 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
2212
2213         * gst/audioconvert/gstchannelmix.c:
2214         (gst_channel_mix_fill_normalize):
2215         Prevent division by zero if the channel mix matrix contains only
2216         zeroes.
2217
2218 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
2219
2220         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
2221
2222         * gst/gdp/gstgdppay.c: (gst_gdp_pay_chain):
2223         Close a buffer memory leak. Fixes bug #534071.
2224
2225 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
2226
2227         * gst-libs/gst/rtsp/gstrtsptransport.h:
2228         Make the GstRTSPTransport struct members public as there are no
2229         setters/getters and it's supposed to be changed directly.
2230         Fixes bug #533087.
2231
2232 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
2233
2234         * gst/adder/gstadder.c:
2235         Adder also doesn't support audio/x-raw-int with width!=depth so don't
2236         claim this on the pad template caps.
2237
2238 2008-05-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2239
2240         * gst-libs/gst/audio/gstbaseaudiosink.c:
2241         (gst_base_audio_sink_sync_latency):
2242         We can only use our optimal calibration if we prerolled before the
2243         latency expired.
2244
2245 2008-05-20  Tim-Philipp Müller  <tim.muller at collabora co uk>
2246
2247         * configure.ac:
2248           Require core CVS for GstBaseSrc buffer caps setting magic.
2249
2250 2008-05-20  Sebastian Dröge  <slomo@circular-chaos.org>
2251
2252         * gst/audioconvert/gstaudioconvert.c:
2253         (gst_audio_convert_fixate_channels):
2254         Fix logic in last commit.
2255
2256 2008-05-20  Sebastian Dröge  <slomo@circular-chaos.org>
2257
2258         * gst/audioconvert/gstaudioconvert.c:
2259         (gst_audio_convert_fixate_channels):
2260         Passthrough the channel positions if the number of output channels is
2261         the same as the number of input channels, the input had a channel
2262         layout and downstream requests no special one. We did this already for
2263         > 2 channels but now it's also done for 1 channel. Fixes bug #533617.
2264
2265 2008-05-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2266
2267         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_init),
2268         (gst_gnome_vfs_src_finalize),
2269         (gst_gnome_vfs_src_received_headers_callback),
2270         (gst_gnome_vfs_src_create), (gst_gnome_vfs_src_stop):
2271         * ext/gnomevfs/gstgnomevfssrc.h:
2272         Set the ICY caps on the srcpad from where they get picked up by the base
2273         class now and set on the outgoing buffers.
2274
2275         * gst-libs/gst/audio/gstbaseaudiosrc.c:
2276         (gst_base_audio_src_create):
2277         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_buffer_new):
2278         BaseSrc now sets the caps on outgoing buffers automatically.
2279
2280 2008-05-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2281
2282         * gst-libs/gst/audio/gstbaseaudiosink.c:
2283         (gst_base_audio_sink_resample_slaving),
2284         (gst_base_audio_sink_skew_slaving),
2285         (gst_base_audio_sink_sync_latency), (gst_base_audio_sink_render),
2286         (gst_base_audio_sink_async_play),
2287         (gst_base_audio_sink_change_state):
2288         Change the way in which the ringbuffer is started when dealing with a
2289         slaved clock and latency. We now sync to the clock until we reach
2290         upstream latency before starting the ringbuffer. This has the effect
2291         that we can accurately align the master and slave clocks and let the
2292         rate correction code take care of the initial drift or rounding errors
2293         instead of leaving them uncorrected with the old approach.
2294
2295 2008-05-20  Sebastian Dröge  <slomo@circular-chaos.org>
2296
2297         * gst/audioconvert/gstaudioconvert.c:
2298         (gst_audio_convert_fixate_channels):
2299         Correctly set the default channel positions when converting to 8
2300         channels.
2301
2302 2008-05-19  Tim-Philipp Müller  <tim.muller at collabora co uk>
2303
2304         * configure.ac:
2305           Error out if we don't have the required version of core.
2306
2307 2008-05-19  Tim-Philipp Müller  <tim.muller at collabora co uk>
2308
2309         * gst/typefind/gsttypefindfunctions.c: (aac_type_find):
2310           Use data scan helper in aac typefinder and stop scanning
2311           for headers when we've found a type. Also fix potential invalid
2312           memory access when calculating the frame length.
2313
2314 2008-05-19  Tim-Philipp Müller  <tim.muller at collabora co uk>
2315
2316         * gst/typefind/gsttypefindfunctions.c: (data_scan_ctx_ensure_data),
2317           (mpeg_sys_is_valid_pack):
2318           Don't modify scan context when we return FALSE in ensure_data, so
2319           it's possible to continue scanning, and we don't end up with a NULL
2320           data pointer and a positive size, which might bite us the next time
2321           we're called. Small constification.
2322
2323 2008-05-16  Sebastian Dröge  <slomo@circular-chaos.org>
2324
2325         * gst/adder/gstadder.c:
2326         Adder doesn't support 24 bit samples so don't claim it supports them
2327         in the pad template caps.
2328
2329 2008-05-14  Wim Taymans  <wim.taymans@collabora.co.uk>
2330
2331         * gst-libs/gst/rtp/gstbasertpdepayload.c:
2332         (gst_base_rtp_depayload_chain):
2333         Validate the RTP packet before further processing it. It's just too
2334         dangerous to accept random packets and people are not forced to use a
2335         jitterbuffer or session manager to filter out the bad packets.
2336
2337         * gst-libs/gst/rtp/gstrtpbuffer.c:
2338         (gst_rtp_buffer_set_extension_data),
2339         (gst_rtp_buffer_get_payload_subbuffer):
2340         Small cleanups.
2341         When setting extension data in a buffer that is too small, we fail and
2342         we should not set the extension bit.
2343         Change GST_WARNINGS into g_warning because they really are
2344         programming errors.
2345
2346         * tests/check/libs/rtp.c: (GST_START_TEST):
2347         Catch the g_warnings now in the unit tests and that fact that failing to
2348         set extension data left the extension bit untouched.
2349
2350 2008-05-14  Tim-Philipp Müller  <tim.muller at collabora co uk>
2351
2352         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init):
2353           Revert previous change which made basetransform handle buffer_alloc
2354           and which breaks things badly in the non-passthrough case since it
2355           returned buffers with a different (ie. sometimes smaller) size than
2356           the size requested.
2357
2358 2008-05-14  Wim Taymans  <wim.taymans@collabora.co.uk>
2359
2360         Patch by: Bernard B <b-gnome at largestprime dot net>
2361
2362         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_compare_seqnum):
2363         Fix seqnum compare function for bordercase values and fix the docs
2364         again. Fixes #533075.
2365
2366         * tests/check/libs/rtp.c: (GST_START_TEST), (rtp_suite):
2367         Add a testcase for seqnum compare function.
2368
2369 2008-05-14  Sebastian Dröge  <slomo@circular-chaos.org>
2370
2371         * gst/adder/gstadder.c: (gst_adder_setcaps),
2372         (gst_adder_class_init):
2373         Correctly declare the supported endianness on the pad templates
2374         and check for correct endianness in the set caps function. Adder
2375         only supports native endianness.
2376         Also use gst_element_class_set_details_simple().
2377
2378 2008-05-14  Stefan Kost  <ensonic@users.sf.net>
2379
2380         * sys/xvimage/xvimagesink.c:
2381           Better debug logging in port value handling. Merging separate port
2382           value loops into one.
2383
2384 2008-05-13  Wim Taymans  <wim.taymans@collabora.co.uk>
2385
2386         Patch by: Hannes Bistry <hannesb at gmx dot de>
2387
2388         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_start):
2389         * gst/tcp/gsttcpserversink.c:
2390         (gst_tcp_server_sink_handle_server_read),
2391         (gst_tcp_server_sink_handle_wait), (gst_tcp_server_sink_init_send):
2392         Fix regression in clientsrc because we did not add the fd to the poll
2393         set anymore. Fixes #532364.
2394         Do some cleanups here and there.
2395
2396 2008-05-13  Sebastian Dröge  <slomo@circular-chaos.org>
2397
2398         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
2399         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init):
2400         * gst/playback/gstplay-marshal.list:
2401         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_class_init):
2402         Use correct marshallers. GstCaps are a boxed type and no GObject
2403         subclass.
2404
2405 2008-05-13  Sebastian Dröge  <slomo@circular-chaos.org>
2406
2407         * win32/common/libgstrtsp.def:
2408         Add gst_rtsp_connection_(set|clear)_auth_param() to the exported
2409         symbols.
2410
2411 2008-05-13  Sebastian Dröge  <slomo@circular-chaos.org>
2412
2413         Patch by: Sjoerd Simons <sjoerd at luon dot net>
2414
2415         * tests/check/elements/audioresample.c:
2416         (live_switch_alloc_only_48000), (live_switch_get_sink_caps),
2417         (live_switch_push), (GST_START_TEST):
2418         Add unit test for the latest basetransform negotiation changes.
2419         See bug #526768.
2420
2421 2008-05-13  Sebastian Dröge  <slomo@circular-chaos.org>
2422
2423         * gst/ffmpegcolorspace/imgconvert.c: (nv12_to_nv21):
2424         Fix nv12<->nv21 conversion if stride is larger than width.
2425
2426 2008-05-13  Sebastian Dröge  <slomo@circular-chaos.org>
2427
2428         Patch by: Jan Gerber <j at oil21 dot org>
2429
2430         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_parse_skeleton_fishead),
2431         (gst_ogg_pad_parse_skeleton_fisbone):
2432         * ext/ogg/gstoggdemux.h:
2433         Parse presentation time from skeleton streams and use it as offset
2434         for the timestamps. Fixes bug #530068.
2435
2436 2008-05-12  Wim Taymans  <wim.taymans@collabora.co.uk>
2437
2438         * gst-libs/gst/audio/gstbaseaudiosink.c:
2439         (gst_base_audio_sink_render), (gst_base_audio_sink_async_play):
2440         Revert previous patch that attempted to more accurately calculate the
2441         initial offset between master and slave clock. The best thing we can do
2442         in general is take the time of both clocks as the diff since we don't
2443         know when the actual preroll happened.
2444
2445 2008-05-11  Tim-Philipp Müller  <tim.muller at collabora co uk>
2446
2447         * gst-libs/gst/pbutils/install-plugins.c:
2448           Fix docs: type and missing word.
2449
2450 2008-05-10  Tim-Philipp Müller  <tim.muller at collabora co uk>
2451
2452         * gst/typefind/gsttypefindfunctions.c: (h264_video_type_find):
2453           Don't do lots of 4-byte peeks, but use the 'new' data scan helper
2454           for this instead; don't check if we've found enough markers after
2455           each and every step, it's enough to do that only if we've actually
2456           found a new marker.
2457           Embed a G_UNLIKELY into the IS_MPEG_HEADER macro.
2458
2459 2008-05-10  Tim-Philipp Müller  <tim.muller at collabora co uk>
2460
2461         * gst/typefind/gsttypefindfunctions.c:
2462           (DATA_SCAN_CTX_CHUNK_SIZE), (DataScanCtx), (data_scan_ctx_advance),
2463           (data_scan_ctx_ensure_data), (GST_MPEGVID_TYPEFIND_TRY_SYNC),
2464           (mpeg_video_stream_type_find):
2465           Move scan helper thingy to the beginning of the file so we can use
2466           it in other typefind functions. Rename it to something more
2467           generic. Also improve handling of things towards the end of the
2468           typefind data: peek as much as we can if we know the size of the
2469           data, rather than just min_size.
2470
2471 2008-05-09  Jan Schmidt  <jan.schmidt@sun.com>
2472
2473         * docs/libs/gst-plugins-base-libs-sections.txt:
2474         * gst-libs/gst/interfaces/colorbalance.c:
2475         * gst-libs/gst/interfaces/colorbalance.h:
2476         * gst-libs/gst/interfaces/colorbalancechannel.c:
2477         * gst-libs/gst/interfaces/colorbalancechannel.h:
2478         * gst-libs/gst/interfaces/tuner.c:
2479         * gst-libs/gst/interfaces/tunerchannel.c:
2480         * gst-libs/gst/interfaces/tunerchannel.h:
2481         * gst-libs/gst/interfaces/tunernorm.c:
2482         * gst-libs/gst/interfaces/tunernorm.h:
2483         * gst-libs/gst/video/video.c:
2484         * gst-libs/gst/video/video.h:
2485         Document the GstTuner and GstColorBalance interfaces, and some
2486         other random API functions that needed it. 70% symbol coverage, woo.
2487
2488 2008-05-09  Wim Taymans  <wim.taymans@collabora.co.uk>
2489
2490         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_acquire):
2491         Choose to allocate one less segment but require one additional segment
2492         as latency. 
2493
2494         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_acquire):
2495         No need to increment the number of segments in the source.
2496
2497         * gst-libs/gst/audio/gstbaseaudiosink.c:
2498         (gst_base_audio_sink_get_time), (clock_convert_external),
2499         (gst_base_audio_sink_resample_slaving),
2500         (gst_base_audio_sink_skew_slaving),
2501         (gst_base_audio_sink_none_slaving), (gst_base_audio_sink_render),
2502         (gst_base_audio_sink_async_play):
2503         Remove adding latency when returning the internal time while subtracting
2504         it again when we use the value a little later.
2505         When calculating the end timestamp, we are making a rounding error
2506         with the current algorithm. Ensure that we don't accumulate these
2507         rounding errors when aligning samples by not resampling at all if we
2508         don't need to. Fixes #419351.
2509         Make the initial calibration of the clock slaving a little more
2510         predictable and accurate. Also handle the case where we don't do
2511         clock slaving.
2512
2513 2008-05-09  Sebastian Dröge  <slomo@circular-chaos.org>
2514
2515         Based on a patch by:
2516           Björn Benderius <bjoern dot benderius at axis dot com>
2517
2518         * gst/ffmpegcolorspace/avcodec.h:
2519         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
2520         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
2521         (gst_ffmpegcsp_avpicture_fill):
2522         * gst/ffmpegcolorspace/imgconvert.c: (nv12_to_nv21):
2523         * gst/ffmpegcolorspace/imgconvert_template.h:
2524         Add conversions from/to NV12 and NV21 and conversions between those
2525         two formats. Fixes bug #532166.
2526
2527 2008-05-08  Edward Hervey  <edward.hervey@collabora.co.uk>
2528
2529         * gst/typefind/gsttypefindfunctions.c: (h264_video_type_find):
2530         Abort the h264 typefinding as soon as _peek() doesn't return anything,
2531         which happens for example with files smaller than 128kb.
2532
2533 2008-05-08  Wim Taymans  <wim.taymans@collabora.co.uk>
2534
2535         Patch by: Wouter Cloetens <zombie at e2big dot org>
2536
2537         * gst-libs/gst/rtsp/Makefile.am:
2538         * gst-libs/gst/rtsp/gstrtspconnection.c:
2539         (gst_rtsp_connection_create), (md5_digest_to_hex_string),
2540         (auth_digest_compute_hex_urp), (auth_digest_compute_response),
2541         (add_auth_header), (gst_rtsp_connection_free),
2542         (gst_rtsp_connection_set_auth), (str_case_hash), (str_case_equal),
2543         (gst_rtsp_connection_set_auth_param),
2544         (gst_rtsp_connection_clear_auth_params):
2545         * gst-libs/gst/rtsp/gstrtspconnection.h:
2546         Add Digest authorization support for RTSP connections. See #532065.
2547
2548         * gst-libs/gst/rtsp/md5.c:
2549         * gst-libs/gst/rtsp/md5.h:
2550         Yeap, another md5 implementation until we can depend on a glib that has
2551         support for it.
2552
2553 2008-05-08  Sebastian Dröge  <slomo@circular-chaos.org>
2554
2555         Patch by: Sjoerd Simons <sjoerd at luon dot net>
2556
2557         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init):
2558         Let audioresample use the buffer allocation of basetransform instead
2559         of it's own stuff.
2560
2561         * tests/check/elements/audioresample.c: (alloc_only_48000),
2562         (GST_START_TEST), (audioresample_suite):
2563         Add unit test for the recent basetransform bugfix, where upstream
2564         changes caps to something that can't be passed through anymore.
2565
2566 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
2567
2568         * win32/common/config.h.in:
2569           Don't define GST_FUNCTION, if GLib supports MSVC we'd much rather
2570           use the real thing than having "???" unconditionally.
2571
2572 2008-05-07  Wim Taymans  <wim.taymans@collabora.co.uk>
2573
2574         * gst-libs/gst/audio/gstbaseaudiosink.c:
2575         (gst_base_audio_sink_query):
2576         Report the latency with the new seglatency parameter.
2577
2578         * gst-libs/gst/audio/gstringbuffer.c:
2579         (gst_ring_buffer_debug_spec_buff), (gst_ring_buffer_parse_caps),
2580         (gst_ring_buffer_acquire):
2581         * gst-libs/gst/audio/gstringbuffer.h:
2582         Add new field to the ringbufferspec to specify the expected latency
2583         between the underlying device read/write pointer, this is needed
2584         when writing sinks that sit a little closer to the hardware.
2585         Add some more docs for other fields.
2586
2587 2008-05-06  Sebastian Dröge  <slomo@circular-chaos.org>
2588
2589         * gst/volume/gstvolume.c: (volume_transform_ip):
2590         Return NOT_NEGOTIATED if we didn't set a process function yet for some
2591         reason instead of crashing later. Might fix bug #509125.
2592
2593 2008-05-06  Sebastian Dröge  <slomo@circular-chaos.org>
2594
2595         Based on a patch by: Tim-Philipp Müller  <tim.muller at collabora co uk>
2596
2597         * gst/audioconvert/audioconvert.c: (audio_convert_prepare_context):
2598         * gst/audioconvert/audioconvert.h:
2599         * gst/audioconvert/gstaudioconvert.c:
2600         (gst_audio_convert_parse_caps),
2601         (structure_has_fixed_channel_positions),
2602         (gst_audio_convert_transform_caps):
2603         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_fill_matrix):
2604         Add support for more than 8 channels and NONE channel layouts. For
2605         more than 8 channels no channel conversion is supported yet, only
2606         format conversions are supported. Fixes bug #398033.
2607
2608         * tests/check/elements/audioconvert.c: (verify_convert),
2609         (GST_START_TEST), (audioconvert_suite):
2610         Add some unit tests by Tim for checking the NONE channel layouts
2611         and more than 8 channels and add some more unit tests for channel
2612         conversions.
2613
2614 2008-05-06  Wim Taymans  <wim.taymans@collabora.co.uk>
2615
2616         * gst/playback/gstdecodebin2.c: (connect_pad):
2617         When autoplugging fails, set the element back to NULL before
2618         unreffing it.
2619
2620 2008-05-06  Sebastian Dröge  <slomo@circular-chaos.org>
2621
2622         * win32/common/libgstaudio.def:
2623         Add gst_base_audio_src_[sg]et_slave_method() to the exported
2624         symbols.
2625
2626 2008-05-05  Sebastian Dröge  <slomo@circular-chaos.org>
2627
2628         * gst/subparse/samiparse.c: (handle_start_sync),
2629         (end_sami_element), (characters_sami):
2630         Remove trailing, leading and double whitespaces.
2631         Correctly timestamp buffers and output the last buffer too.
2632
2633         * tests/check/elements/subparse.c: (GST_START_TEST),
2634         (subparse_suite):
2635         Add a simple unit test for SAMI parsing.
2636
2637 2008-05-05  Sebastian Dröge  <slomo@circular-chaos.org>
2638
2639         Patch by: Young-Ho Cha <ganadist at chollian dot net>
2640
2641         * gst/subparse/samiparse.c: (handle_start_sync),
2642         (start_sami_element), (end_sami_element), (characters_sami),
2643         (sami_context_reset):
2644         Only output characters inside the "sync" elements. There could be
2645         other elements like "style" that have some content but should
2646         not be printed. Fixes bug #467911.
2647
2648 2008-05-05  Sebastian Dröge  <slomo@circular-chaos.org>
2649
2650         * gst/playback/gstplaybasebin.c: (set_audio_mute),
2651         (set_active_source):
2652         * gst/playback/gstplaybasebin.h:
2653         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
2654         (playbin_set_audio_mute):
2655         Allow setting -1 as current-audio to mute the current audio stream,
2656         similar to what is done for subtitles. Fixes bug #342294.
2657
2658 2008-05-05  Edward Hervey  <edward.hervey at collabora co uk>
2659
2660         * gst-libs/gst/pbutils/descriptions.c: (formats): 
2661         It's SorensOn and not SorensEn.
2662
2663 2008-05-04  Tim-Philipp Müller  <tim.muller at collabora co uk>
2664
2665         * gst-libs/gst/pbutils/descriptions.c: (formats):
2666           Fix description of video/x-flash-video.
2667
2668 2008-05-04  Sebastian Dröge  <slomo@circular-chaos.org>
2669
2670         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func):
2671         * gst-libs/gst/audio/gstaudiosrc.c: (audioringbuffer_thread_func):
2672         * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
2673         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps_list):
2674         Remove some unused code.
2675
2676         * gst/audioconvert/gstaudioquantize.c:
2677         (gst_audio_quantize_free_noise_shaping):
2678         Don't return before freeing the noise shaping history.
2679
2680 2008-05-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
2681
2682         * tests/check/elements/subparse.c: (do_test),
2683           (test_tmplayer_style3b), (subparse_suite):
2684           Add unit test for the tmplayer variant from bug #530962.
2685
2686 2008-05-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
2687
2688         * gst/subparse/gstsubparse.c: (handle_buffer),
2689           (gst_sub_parse_sink_event):
2690         * gst/subparse/tmplayerparse.c: (tmplayer_process_buffer),
2691           (tmplayer_parse_line):
2692           Fix parsing of tmplayer subtitle variant where every single line contains
2693           text and there isn't an empty line after each line to determine the
2694           duration (#530962). Improve EOS handling for tmplayer subtitles a bit by
2695           making sure that we push out the last line of text without a duration if
2696           there's still text left in the buffer at the end.
2697
2698 2008-05-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
2699
2700         * gst/subparse/gstsubparse.c: (feed_textbuf):
2701           Fix detection of discontinuities based on the buffer offset (doesn't work
2702           so well if no buffer offset is set) and also check for the DISCONT buffer
2703           flag. This keeps the parser state from being reset after each buffer in
2704           the unit test.
2705
2706 2008-05-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
2707
2708         * gst/typefind/gsttypefindfunctions.c: (mpeg_video_stream_type_find):
2709           Further fine-tuning: don't absolutely require sequence or GOP headers
2710           (as introduced in the previous commit), but adjust the typefind
2711           probabilities returned accordingly if we don't see them. Also make sure
2712           picture header and first slice are somewhat close to each other (which
2713           is not perfect but still better than requiring a fixed offset or having
2714           no limit at all).
2715
2716 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
2717
2718         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
2719         (gst_basertppayload_sink_setcaps),
2720         (gst_basertppayload_sink_getcaps):
2721         Rename the setcaps/getcaps function internally to make it clear that
2722         they are called for the sink pad.
2723
2724 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
2725
2726         * gst-libs/gst/rtp/gstbasertpdepayload.c:
2727         (gst_base_rtp_depayload_class_init),
2728         (gst_base_rtp_depayload_handle_sink_event), (create_segment_event),
2729         (gst_base_rtp_depayload_packet_lost),
2730         (gst_base_rtp_depayload_set_gst_timestamp):
2731         * gst-libs/gst/rtp/gstbasertpdepayload.h:
2732         Catch packet-lost events from the jitterbuffer and convert them into a
2733         vmethod call (lost-packet) so that depayloaders can do something smart.
2734         Also add a default packet-lost function that sends out a segment update
2735         to the decoders.
2736
2737 2008-05-02  Stefan Kost  <ensonic@users.sf.net>
2738
2739         * gst/playback/test4.c:
2740         * gst/playback/test5.c:
2741         * gst/playback/test6.c:
2742         * gst/playback/test7.c:
2743           Also include config.h when relying on defines from it. Fixes the
2744           build. Its been a please to serve :)
2745
2746 2008-05-02  Thijs Vermeir <thijsvermeir@gmail.com>
2747
2748         * gst/videotestsrc/videotestsrc.c (paint_setup_NV12),
2749         (paint_setup_NV21), (paint_hline_NV12_NV21):
2750         Add support for NV12 and NV21 in videotestsrc
2751
2752 2008-05-02  Sebastian Dröge  <slomo@circular-chaos.org>
2753
2754         * gst/videoscale/gstvideoscale.c:
2755         * gst/videoscale/vs_4tap.c: (vs_image_scale_4tap_Y):
2756         * gst/videoscale/vs_image.c: (vs_image_scale_nearest_RGBA),
2757         (vs_image_scale_linear_RGBA), (vs_image_scale_nearest_RGB),
2758         (vs_image_scale_linear_RGB), (vs_image_scale_nearest_YUYV),
2759         (vs_image_scale_linear_YUYV), (vs_image_scale_nearest_UYVY),
2760         (vs_image_scale_linear_UYVY), (vs_image_scale_nearest_Y),
2761         (vs_image_scale_linear_Y), (vs_image_scale_nearest_RGB565),
2762         (vs_image_scale_linear_RGB565), (vs_image_scale_nearest_RGB555),
2763         (vs_image_scale_linear_RGB555):
2764         Support 1x1 images as input and output as for example the BBC HQ new
2765         streams have 1x1 GIFs in the playlists for some reason.
2766
2767 2008-05-01  Tim-Philipp Müller  <tim.muller at collabora co uk>
2768
2769         * gst/playback/gstdecodebin.c: (free_pad_probe_for_element),
2770           (try_to_link_1):
2771           If we can't activate one of the decoders we plugged in (such as,
2772           say, musepackdec) for some reason (it might not support push mode,
2773           for example), remove any pad probes that close_pad_link() might
2774           have set up. This makes sure we later don't try to remove a probe
2775           for a pad that doesn't exist any longer, and avoids nast warnings
2776           and probably other things too.
2777
2778 2008-04-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
2779
2780         * gst/typefind/gsttypefindfunctions.c:
2781           (mpeg_video_stream_ctx_ensure_data), (mpeg_video_stream_type_find),
2782           (plugin_init):
2783           Rework mpeg video stream typefinding a bit more: make sure sequence,
2784           GOP, picture and slice headers appear in the order they should and
2785           that we've in fact at least had one of each; fix picture header
2786           detection; decouple picture and slice header check - don't assume
2787           they're at a fixed offset, there may be extra data in between. Also,
2788           announce varying degrees of probability depending on what we found
2789           exactly (multiple pictures, at least one picture, just sequence and
2790           GOP headers). Finally, in _ensure_data(), take into account that we
2791           might be typefinding smaller amounts of data, such as the first
2792           buffer of a stream, so fall back to the minimum size needed as long
2793           as that's available, instead of erroring out if there's less than
2794           2kB of data. Fixes #526173. Conveniently also doesn't recognise the
2795           fuzzed file from #399342 as valid.
2796
2797 2008-04-30  Michael Smith <msmith@songbirdnest.com>
2798
2799         * ext/theora/theoradec.c:
2800           Cool kids don't divide by zero.
2801           Treat PAR of x:0 as 1:1.
2802           Fixes #530719.
2803
2804 2008-04-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
2805
2806         * gst/typefind/gsttypefindfunctions.c: (MpegVideoStreamCtx),
2807           (mpeg_video_stream_ctx_advance), (mpeg_video_stream_ctx_ensure_data),
2808           (mpeg_video_stream_type_find):
2809           Refactor a bit: use context structure to track parsing offset and
2810           size of available data and make the code a bit clearer. Fixes bad
2811           memory access in #356937.
2812
2813 2008-04-28  Michael Smith <msmith@songbirdnest.com>
2814
2815         * gst/playback/test4.c:
2816         * gst/playback/test5.c:
2817         * gst/playback/test6.c:
2818         * gst/tcp/gstmultifdsink.c:
2819           Include stdlib.h and unistd.h only if the appropriate HAVE_*_H macro
2820           is defined.
2821
2822 2008-04-28  Wim Taymans  <wim.taymans@collabora.co.uk>
2823
2824         * gst-libs/gst/audio/gstbaseaudiosink.h:
2825         Clarify some docs.
2826
2827         * gst-libs/gst/audio/gstbaseaudiosrc.c: (slave_method_get_type),
2828         (gst_base_audio_src_class_init), (gst_base_audio_src_init),
2829         (gst_base_audio_src_set_slave_method),
2830         (gst_base_audio_src_get_slave_method),
2831         (gst_base_audio_src_set_property),
2832         (gst_base_audio_src_get_property), (gst_base_audio_src_create):
2833         * gst-libs/gst/audio/gstbaseaudiosrc.h:
2834         Add property and methods for selecting the clock slave method in the
2835         source, like in the sink.
2836         We only implement "none" and "re-timestamp" for now.
2837         API: gst_base_audio_src_set_slave_method()
2838         API: gst_base_audio_src_get_slave_method()
2839
2840 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
2841
2842         * gst-libs/gst/rtp/gstrtpbuffer.c:
2843         Fix the docs about the seqnum compare function, it returns a difference.
2844
2845 2008-04-24  Edward Hervey  <edward.hervey@collabora.co.uk>
2846
2847         * ext/alsa/gstalsadeviceprobe.c:
2848         (gst_alsa_get_device_list): Don't return before freeing up
2849         the allocated structures.
2850
2851 2008-04-24  Stefan Kost  <ensonic@users.sf.net>
2852
2853         * gst/playback/gstplaybin.c:
2854           Remove obsolete streaminfo code and fix a leak. Fixes #529546
2855
2856 2008-04-23  Stefan Kost  <ensonic@users.sf.net>
2857
2858         * ext/ogg/gstoggdemux.c:
2859           Revert the event part, that should not go in.
2860
2861 2008-04-23  Stefan Kost  <ensonic@users.sf.net>
2862
2863         * ext/ogg/gstoggdemux.c:
2864           Don't leak GstPluginFeatures when filtering.
2865
2866 2008-04-23  Stefan Kost  <ensonic@users.sf.net>
2867
2868         * sys/xvimage/xvimagesink.c:
2869           Add some logging for cases when grabbing the xv failed.
2870
2871 2008-04-21  David Schleef  <ds@schleef.org>
2872
2873         * ext/ogg/gstoggmux.c:
2874           Update Ogg/Dirac muxing.  Removes the weird "KW-DIRAC" bos
2875           packet.  Should conform to what we currently think is the
2876           final Ogg/Dirac muxing spec.
2877
2878 2008-04-21  David Schleef  <ds@schleef.org>
2879
2880         * sys/xvimage/xvimagesink.c:
2881           Fix typo that causes the overlay keying color to bright green
2882           on a 16-bit display.  Dark grey good.  Bright green bad.
2883
2884 2008-04-21  Stefan Kost  <ensonic@users.sf.net>
2885
2886         * ext/gnomevfs/gstgnomevfsuri.c:
2887           Add  FIXME comment about using uri-list for source and sink.
2888
2889 2008-04-20  Sebastian Dröge  <slomo@circular-chaos.org>
2890
2891         * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header):
2892         GST_TYPE_FRACTION contains gints so correctly cast gint64 arguments to
2893         vaargs functions to gint. Otherwise the fractions will get 0 set
2894         instead of the correct value on big endian systems. Fixes bug #529018.
2895
2896 2008-04-20  Sebastian Dröge  <slomo@circular-chaos.org>
2897
2898         * ext/gnomevfs/gstgnomevfssink.c:
2899         (gst_gnome_vfs_sink_uri_get_protocols):
2900         * ext/gnomevfs/gstgnomevfssrc.c:
2901         (gst_gnome_vfs_src_uri_get_protocols):
2902         * ext/gnomevfs/gstgnomevfsuri.c: (_internal_get_supported_uris),
2903         (gst_gnomevfs_get_supported_uris):
2904         Get the list of supported URI schemes in a threadsafe way and use the
2905         same list for the source and sink.
2906
2907 2008-04-20  Sebastian Dröge  <slomo@circular-chaos.org>
2908
2909         * ext/gio/gstgio.c: (_internal_get_supported_protocols),
2910         (gst_gio_get_supported_protocols):
2911         Don't generate a new supported protocols list on each call but cache
2912         it. It's supposed to be static anyway, this way we only leak it once
2913         per process.
2914
2915         * ext/gio/gstgiosink.c: (gst_gio_sink_base_init),
2916         (gst_gio_sink_class_init), (gst_gio_sink_finalize),
2917         (gst_gio_sink_set_property), (gst_gio_sink_get_property),
2918         (gst_gio_sink_start):
2919         * ext/gio/gstgiosink.h:
2920         * ext/gio/gstgiosrc.c: (gst_gio_src_base_init),
2921         (gst_gio_src_class_init), (gst_gio_src_finalize),
2922         (gst_gio_src_set_property), (gst_gio_src_get_property),
2923         (gst_gio_src_start):
2924         * ext/gio/gstgiosrc.h:
2925         API: Add "file" properties where one can set a GFile as
2926         source/destination.
2927
2928         Add locking to the properties and use
2929         gst_element_class_set_details_simple() instead of a static
2930         GstElementDetails struct.
2931
2932 2008-04-19  Sebastian Dröge  <slomo@circular-chaos.org>
2933
2934         * gst/typefind/gsttypefindfunctions.c: (musepack_type_find),
2935         (plugin_init):
2936         Add "mpp" and "mp+" as possible extensions for MusePack files.
2937
2938         Add typefinding for MusePack StreamVersion 8 files and include the
2939         stream version in the caps.
2940
2941 2008-04-19  Sebastian Dröge  <slomo@circular-chaos.org>
2942
2943         * gst-libs/gst/rtp/gstrtppayloads.c:
2944         (gst_rtp_payload_info_for_name):
2945         Use g_ascii_strcasecmp() instead of the deprecated g_strcasecmp().
2946
2947 2008-04-18  Tim-Philipp Müller  <tim at centricular dot net>
2948
2949         * configure.ac:
2950           Bump Gtk+ requirement to 2.12.0 for gtk_range_set_fill_level
2951           (NB: this only affects compilation of some of the examples).
2952           Remove some configure.ac cruft that's not needed any longer.
2953
2954 2008-04-18  Edward Hervey  <edward.hervey@collabora.co.uk>
2955
2956         * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_chain):
2957         Don't validate the payload if there isn't any.
2958         Fixes #525915
2959
2960 2008-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
2961
2962         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_may_start):
2963         Use g_atomic_int_set() instead of gst_atomic_int_set().
2964
2965 2008-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
2966
2967         * ext/gio/gstgio.c: (gst_gio_get_supported_protocols):
2968         Return NULL instead of a gchar * array with one NULL element if we
2969         don't get any supported URI schemes from GIO.
2970
2971 2008-04-15  Stefan Kost  <ensonic@users.sf.net>
2972
2973         * gst/audiotestsrc/gstaudiotestsrc.c:
2974           Remove cpp style commented old code.
2975
2976 2008-04-15  Stefan Kost  <ensonic@users.sf.net>
2977
2978         * gst/playback/gstdecodebin2.c:
2979           Fix signal docs.
2980
2981 2008-04-14  Tim-Philipp Müller  <tim at centricular dot net>
2982
2983         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init),
2984           (gst_text_overlay_init):
2985           Fix textoverlay unit test again by making the supposed default
2986           value for the wait-text property the actual default value.
2987           Also fix Since: tag for new property.
2988
2989 2008-04-11  Tim-Philipp Müller  <tim at centricular dot net>
2990
2991         * gst-libs/gst/video/video.c: (gst_video_format_new_caps),
2992           (gst_video_format_to_fourcc), (gst_video_format_get_row_stride),
2993           (gst_video_format_get_pixel_stride),
2994           (gst_video_format_get_component_width),
2995           (gst_video_format_get_component_height),
2996           (gst_video_format_get_component_offset), (gst_video_format_get_size),
2997           (gst_video_format_convert):
2998           Add guards to these functions to ensure sane input values.
2999
3000         * tests/check/libs/video.c:
3001           Fix unit test not to create caps with width=0 and height=0.
3002
3003 2008-04-11  Wim Taymans  <wim.taymans@collabora.co.uk>
3004
3005         * docs/design/draft-keyframe-force.txt:
3006         Fix typo.
3007
3008         * gst/playback/gstqueue2.c: (update_buffering),
3009         (gst_queue_handle_src_query):
3010         Set buffering mode in the messages.
3011         Set buffering percent in the query.
3012
3013         * tests/examples/seek/seek.c: (update_fill), (msg_state_changed),
3014         (do_stream_buffering), (do_download_buffering), (msg_buffering):
3015         Do some more fancy things based on the buffering method in use.
3016
3017 2008-04-09  Wim Taymans  <wim.taymans@collabora.co.uk>
3018
3019         * tests/examples/seek/seek.c: (update_fill), (set_update_fill),
3020         (play_cb), (pause_cb), (stop_cb), (msg_state_changed),
3021         (msg_buffering), (main):
3022         Add basic download reports to seek using the new buffering API.
3023
3024 2008-04-09  Wim Taymans  <wim.taymans@collabora.co.uk>
3025
3026         * gst/playback/gstqueue2.c: (update_buffering),
3027         (gst_queue_close_temp_location_file), (gst_queue_handle_src_query),
3028         (gst_queue_src_checkgetrange_function):
3029         Include extra buffering stats in the buffering message.
3030         Implement BUFFERING query.
3031
3032         * gst/playback/gsturidecodebin.c: (do_async_start),
3033         (do_async_done), (type_found), (setup_streaming), (setup_source),
3034         (gst_uri_decode_bin_change_state):
3035         Only add decodebin2 when the type is found in streaming mode.
3036         Make uridecodebin async to PAUSED even when we don't have decodebin2
3037         added yet.
3038
3039 2008-04-09  Sebastian Dröge  <slomo@circular-chaos.org>
3040
3041         * ext/gio/gstgio.c: (gst_gio_get_supported_protocols):
3042         Filter cdda from the supported URI schemes. We can't support
3043         musicbrainz tags and everything else one expects from a cdda source
3044         with GIO. Fixes bug #526794.
3045
3046 2008-04-07  Jan Schmidt  <jan.schmidt@sun.com>
3047
3048         * sys/xvimage/xvimagesink.c (gst_xvimagesink_xvimage_new),
3049         (gst_xvimagesink_buffer_alloc):
3050         Fix calculation of 'expected size' for YV12 buffers.
3051         Be a little more verbose in the debug output for buffer-alloc'ed
3052         buffers which turn out to have the wrong size.
3053
3054 2008-04-07  Tim-Philipp Müller  <tim at centricular dot net>
3055
3056         * NEWS:
3057         * RELEASE:
3058         * gst-plugins-base.doap:
3059           Merge other changes from 0.10.19 release branch.
3060
3061 2008-04-06  Tim-Philipp Müller  <tim at centricular dot net>
3062
3063         * gst-libs/gst/audio/gstbaseaudiosink.c:
3064           (gst_base_audio_sink_class_init):
3065         * gst-libs/gst/audio/gstbaseaudiosrc.c:
3066           (gst_base_audio_src_class_init):
3067         * gst/playback/gstplayback.c: (plugin_init):
3068         * gst/volume/gstvolume.c: (plugin_init):
3069           Work around missing bits of thread-safety on older GLibs some
3070           more to avoid assertions when starting up multiple playbin
3071           objects concurrently (see #512382).
3072
3073 2008-04-06  Tim-Philipp Müller  <tim at centricular dot net>
3074
3075         * gst-libs/gst/pbutils/missing-plugins.c: (copy_and_clean_caps):
3076           Remove some more fields.
3077
3078 2008-04-06  Sebastian Dröge  <slomo@circular-chaos.org>
3079
3080         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
3081
3082         * configure.ac:
3083         Actually build dlls when cross-compiling with mingw32.
3084         Fixes bug #526247.
3085
3086 2008-04-03  Tim-Philipp Müller  <tim at centricular dot net>
3087
3088         * configure.ac:
3089           Bump version to 0.10.19.1 after the unplanned 0.10.19 release.
3090
3091 2008-04-03  Wim Taymans  <wim.taymans@collabora.co.uk>
3092
3093         * tests/examples/seek/seek.c: (play_cb), (pause_cb), (stop_cb),
3094         (msg_buffering), (connect_bus_signals), (main):
3095         Add statusbar.
3096         Add buffering support with feedback in the statusbar.
3097
3098 2008-04-03  Tim-Philipp Müller  <tim at centricular dot net>
3099
3100         * ext/ogg/gstoggmux.c:
3101           Fix sample pipeline description.
3102
3103 2008-04-03  Stefan Kost  <ensonic@users.sf.net>
3104
3105         * docs/plugins/Makefile.am:
3106         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
3107         * docs/plugins/gst-plugins-base-plugins-overrides.txt:
3108         * docs/plugins/gst-plugins-base-plugins-sections.txt:
3109           Add playbin, playbin2, decodebin, decodebin2, uridecodebin and oggmux
3110
3111         * docs/plugins/gst-plugins-base-plugins.args:
3112         * docs/plugins/gst-plugins-base-plugins.hierarchy:
3113         * docs/plugins/gst-plugins-base-plugins.interfaces:
3114         * docs/plugins/gst-plugins-base-plugins.prerequisites:
3115         * docs/plugins/inspect/plugin-adder.xml:
3116         * docs/plugins/inspect/plugin-alsa.xml:
3117         * docs/plugins/inspect/plugin-audioconvert.xml:
3118         * docs/plugins/inspect/plugin-audiorate.xml:
3119         * docs/plugins/inspect/plugin-audioresample.xml:
3120         * docs/plugins/inspect/plugin-audiotestsrc.xml:
3121         * docs/plugins/inspect/plugin-cdparanoia.xml:
3122         * docs/plugins/inspect/plugin-decodebin.xml:
3123         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
3124         * docs/plugins/inspect/plugin-gdp.xml:
3125         * docs/plugins/inspect/plugin-gnomevfs.xml:
3126         * docs/plugins/inspect/plugin-libvisual.xml:
3127         * docs/plugins/inspect/plugin-ogg.xml:
3128         * docs/plugins/inspect/plugin-pango.xml:
3129         * docs/plugins/inspect/plugin-playback.xml:
3130         * docs/plugins/inspect/plugin-queue2.xml:
3131         * docs/plugins/inspect/plugin-subparse.xml:
3132         * docs/plugins/inspect/plugin-tcp.xml:
3133         * docs/plugins/inspect/plugin-theora.xml:
3134         * docs/plugins/inspect/plugin-typefindfunctions.xml:
3135         * docs/plugins/inspect/plugin-uridecodebin.xml:
3136         * docs/plugins/inspect/plugin-video4linux.xml:
3137         * docs/plugins/inspect/plugin-videorate.xml:
3138         * docs/plugins/inspect/plugin-videoscale.xml:
3139         * docs/plugins/inspect/plugin-videotestsrc.xml:
3140         * docs/plugins/inspect/plugin-volume.xml:
3141         * docs/plugins/inspect/plugin-vorbis.xml:
3142         * docs/plugins/inspect/plugin-ximagesink.xml:
3143         * docs/plugins/inspect/plugin-xvimagesink.xml:
3144           Update introspection data.
3145
3146         * ext/ogg/gstoggmux.c:
3147           Document oggmux.
3148
3149         * gst/playback/gstdecodebin2.c:
3150           Don't use gtk-doc style comment start for private stuff, but make it
3151           formatted like this for consistency.
3152
3153 2008-04-03  Wim Taymans  <wim.taymans@collabora.co.uk>
3154
3155         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init),
3156         (gst_decode_bin_init), (gst_decode_bin_dispose),
3157         (gst_decode_bin_set_sink_caps), (gst_decode_bin_get_sink_caps),
3158         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
3159         (analyze_new_pad), (connect_pad), (expose_pad),
3160         (gst_decode_group_new), (gst_decode_group_control_demuxer_pad),
3161         (gst_decode_group_expose), (gst_decode_group_free),
3162         (do_async_start), (do_async_done), (gst_decode_bin_change_state):
3163         Remove fakesink hack, we can now implement this more elegantly.
3164         Added property to bypass typefinding.
3165         Removed underrun callback and demuxer pad probe, we now use the srcpad
3166         probe to expose groups.
3167         API::sink-caps property
3168
3169         * gst/playback/gstplaybin2.c: (no_more_pads_cb):
3170         Guard against multiple emissions of the no_more_pads signal, which
3171         happens when we are dealing with chained oggs.
3172
3173         * gst/playback/gsturidecodebin.c: (remove_decoders),
3174         (make_decoder), (type_found), (setup_streaming), (source_new_pad),
3175         (setup_source):
3176         For streams, use our own typefind element and plug our queue after it.
3177         We will need this to determine the type of buffering to use for the
3178         queue soon.
3179
3180 2008-04-03  Wim Taymans  <wim.taymans@collabora.co.uk>
3181
3182         * gst-libs/gst/audio/gstbaseaudiosink.c:
3183         (gst_base_audio_sink_skew_slaving), (gst_base_audio_sink_render):
3184         Guard against over and underflows because of clock slaving.
3185         When we are using our own clock, still compensate for any calibrations
3186         that we might have done to our clock.
3187
3188 2008-04-03  Wim Taymans  <wim.taymans@collabora.co.uk>
3189
3190         * ext/theora/theoradec.c: (theora_handle_type_packet),
3191         (theora_dec_chain):
3192         Don't try to do anything fancy with the return code from pushing an
3193         event, it does not have enough information to turn it into a
3194         GST_FLOW_ERROR.
3195
3196 2008-04-03  Wim Taymans  <wim.taymans@collabora.co.uk>
3197
3198         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_reset),
3199         (gst_ogg_demux_chain_elem_pad):
3200         Add small debug line.
3201         Pass return code from the internal decoder instead of the too generic
3202         GST_FLOW_ERROR.
3203
3204 2008-04-03  Sebastian Dröge  <slomo@circular-chaos.org>
3205
3206         * gst-libs/gst/cdda/Makefile.am:
3207         * gst-libs/gst/cdda/base64.c:
3208         * gst-libs/gst/cdda/base64.h:
3209         * gst-libs/gst/cdda/gstcddabasesrc.c:
3210         (gst_cddabasesrc_calculate_musicbrainz_discid):
3211         Use GLib's base64 implementation instead of our own.
3212
3213 2008-04-02  Wim Taymans  <wim.taymans@collabora.co.uk>
3214
3215         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
3216         (gst_ogg_demux_read_chain):
3217         Refix oggdemux, we only have a problem if we failed to find a chain and
3218         we are not EOF.
3219
3220 2008-04-02  Wim Taymans  <wim.taymans@collabora.co.uk>
3221
3222         Patch by: Victor STINNER <victor dot stinner at haypocalc dot com>
3223
3224         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
3225         (gst_ogg_demux_read_chain):
3226         When we fail to find a BOS page and we and up with no chain, error out
3227         properly instead of segfaulting. Fixes #525665.
3228
3229 2008-04-02  Wim Taymans  <wim.taymans@collabora.co.uk>
3230
3231         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
3232         (gst_ogg_demux_read_chain), (gst_ogg_demux_handle_page):
3233         The new-pad-group sequence is add-pads, no-more-pads, add-pads,
3234         no-more-pads...
3235
3236 2008-04-02  Wim Taymans  <wim.taymans@collabora.co.uk>
3237
3238         * gst/playback/gstqueue2.c: (update_out_rates),
3239         (gst_queue_open_temp_location_file),
3240         (gst_queue_close_temp_location_file), (gst_queue_handle_src_event),
3241         (gst_queue_handle_src_query), (gst_queue_set_property):
3242         Update the estimated input data when we push out a buffer.
3243         Add some debug info about the temp file.
3244         Only forward src events when we are not using a temp file.
3245         Don't block the duration query, we need to find something better.
3246         Don't leak the temp filename.
3247
3248 2008-04-01  Sebastian Dröge  <slomo@circular-chaos.org>
3249
3250         * configure.ac:
3251         Require GLib 2.12 and liboil 0.3.14.
3252
3253         * gst/volume/gstvolume.c: (volume_process_double):
3254         Unconditionally use liboil 0.3.14 function.
3255
3256 2008-03-31  Wim Taymans  <wim.taymans@collabora.co.uk>
3257
3258         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
3259         ms-gsm can have arbitrarty sample rates. See #481354.
3260
3261 2008-03-28  Wim Taymans  <wim.taymans@collabora.co.uk>
3262
3263         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
3264         MP4S is generic MPEG-4, not a microsoft variant.
3265
3266 2008-03-27  Michael Smith <msmith@fluendo.com>
3267
3268         * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_chain):
3269           Check the body CRC (if set) when depayloading.
3270           Fixes #522401.
3271
3272 2008-03-24  Tim-Philipp Müller  <tim at centricular dot net>
3273
3274         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init):
3275           Fix Since: version for new property.
3276
3277 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
3278
3279         * gst-libs/gst/rtsp/gstrtspconnection.c:
3280         (gst_rtsp_connection_connect), (gst_rtsp_connection_write),
3281         (gst_rtsp_connection_read_internal), (gst_rtsp_connection_poll):
3282         Don't error when poll_wait returns EAGAIN.
3283
3284 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
3285
3286         * gst/playback/gstqueue2.c: (gst_queue_is_filled):
3287         The queue is never filled when there are no buffers in the queue at all.
3288         Fixes #523993.
3289
3290 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
3291
3292         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
3293         (init_group), (free_group), (gst_play_bin_init),
3294         (gst_play_bin_finalize), (gst_play_bin_set_uri),
3295         (gst_play_bin_set_suburi), (gst_play_bin_get_video_tags),
3296         (gst_play_bin_get_audio_tags), (gst_play_bin_get_text_tags),
3297         (gst_play_bin_set_current_video_stream),
3298         (gst_play_bin_set_current_audio_stream),
3299         (gst_play_bin_set_current_text_stream),
3300         (gst_play_bin_set_encoding), (gst_play_bin_set_property),
3301         (gst_play_bin_get_property), (pad_added_cb), (pad_removed_cb),
3302         (no_more_pads_cb), (perform_eos), (autoplug_select_cb),
3303         (activate_group), (deactivate_group), (setup_next_source),
3304         (save_current_group), (gst_play_bin_change_state):
3305         Update some docs.
3306         Add new locks and conds to protect pipeline creation and group
3307         switching.
3308         Implement the sub-uri property.
3309         Keep track of pending uridecodebin creation and configure the output
3310         pipeline after all streams are configured.
3311         Propagate subtitle encoding to the uridecodebins.
3312         Implement getting the video/audio/visualisation elements.
3313         Use input-selector for stream switching.
3314         If we are asked to do visualisation, prefer to autoplug raw sinks
3315         instead of sinks that accept encoded data.
3316
3317 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
3318
3319         * gst/playback/gstplaysink.c: (gst_play_sink_class_init),
3320         (gst_play_sink_init), (gst_play_sink_dispose),
3321         (gst_play_sink_set_video_sink), (gst_play_sink_get_video_sink),
3322         (gst_play_sink_set_audio_sink), (gst_play_sink_get_audio_sink),
3323         (gst_play_sink_vis_unblocked), (gst_play_sink_vis_blocked),
3324         (gst_play_sink_set_vis_plugin), (gst_play_sink_get_vis_plugin),
3325         (gst_play_sink_set_volume), (gst_play_sink_get_volume),
3326         (gst_play_sink_set_mute), (gen_video_chain), (gen_text_chain),
3327         (gen_audio_chain), (gen_vis_chain), (gst_play_sink_reconfigure),
3328         (gst_play_sink_set_font_desc), (gst_play_sink_get_font_desc),
3329         (gst_play_sink_send_event_to_sink), (gst_play_sink_change_state):
3330         * gst/playback/gstplaysink.h:
3331         Add methods to get audio/video/vis elements.
3332         Add methods to set the font description for the overlay.
3333         Remove properties, we're using this element with its methods only.
3334         Add support for subtitles.
3335         Rearrange the locking a bit to not use the object lock for protecting
3336         the pipeline construction.
3337         Try to use the volume and mute property on the sink when its available.
3338         Implement the mute option with volume when the sink does not have a mute
3339         property.
3340         Only add volume element when the sink has no volume property.
3341         Only do visualisations with raw audio pads.
3342
3343 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
3344
3345         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init),
3346         (gst_text_overlay_init), (gst_text_overlay_set_property),
3347         (gst_text_overlay_get_property), (gst_text_overlay_src_event),
3348         (gst_text_overlay_text_event), (gst_text_overlay_video_event),
3349         (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
3350         (gst_text_overlay_change_state):
3351         * ext/pango/gsttextoverlay.h:
3352         Add property to configure waiting for text on the textpad or not, with
3353         the default behaviour being the old one (always wait for text before
3354         rendering the video). This default behaviour is usually not the best one
3355         because the text stream can very sparse and could require queueing a lot
3356         of video.
3357         Fix the flushing and EOS handing so that we don't mix up their meaning.
3358
3359 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
3360
3361         * gst/playback/gsturidecodebin.c:
3362         (gst_uri_decode_bin_autoplug_factories),
3363         (gst_uri_decode_bin_class_init), (gst_uri_decode_bin_init),
3364         (gst_uri_decode_bin_finalize), (gst_uri_decode_bin_set_encoding),
3365         (gst_uri_decode_bin_set_property),
3366         (gst_uri_decode_bin_get_property), (no_more_pads_full),
3367         (new_decoded_pad_cb), (gen_source_element), (remove_decoders),
3368         (proxy_autoplug_factories_signal), (make_decoder),
3369         (source_new_pad), (setup_source):
3370         Add a readonly source property and notify.
3371         Add new lock for protecting the construction of the pipeline.
3372         Keep track of the decodebins we plugged.
3373         Correctly proxy the autoplug signal so that it actually continues.
3374         Proxy subtitle-encoding to the decodebins.
3375
3376 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
3377
3378         * tests/examples/seek/seek.c: (audio_toggle_cb), (video_toggle_cb),
3379         (text_toggle_cb), (update_streams), (main):
3380         Rearrange some buttons in playbin2 and make some other boxes insensitive
3381         when needed.
3382         Add language codes to subtitle selection boxes when we gind the right
3383         tags for the streams.
3384
3385 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
3386
3387         * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose),
3388         (gst_decode_bin_set_caps), (gst_decode_bin_get_caps),
3389         (gst_decode_bin_set_subs_encoding),
3390         (gst_decode_bin_get_subs_encoding),
3391         (gst_decode_bin_autoplug_factories), (connect_pad), (are_raw_caps),
3392         (deactivate_free_recursive):
3393         Protect caps property with the object lock.
3394         Protect encoding property with the object lock.
3395         Keep list of elements we added that have the subtitle-encoding property.
3396         Distribute the subtitle-encoding to all of the elements when it
3397         changes.
3398
3399 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
3400
3401         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_release):
3402         Small debug improvement.
3403
3404         * gst-libs/gst/audio/gstbaseaudiosink.c:
3405         (gst_base_audio_sink_render):
3406         Fix bug in determining the sample start/stop position, we want to base
3407         this decision on the fact that we are going forwards or backwards, not
3408         slower or faster. This fixes some ugly resync warnings when playing at
3409         very slow speeds.
3410
3411 2008-03-23  Sebastian Dröge  <slomo@circular-chaos.org>
3412
3413         * ext/gio/gstgio.c: (gst_gio_get_supported_protocols):
3414         Correctly set the supported URI schemes and don't leave
3415         some schemes in the middle or at the start at NULL.
3416
3417 2008-03-23  Tim-Philipp Müller  <tim at centricular dot net>
3418
3419         * tests/check/elements/gdpdepay.c:
3420           Make test compile without unused function/variable warnings on PPC.
3421  
3422 2008-03-22  Sebastian Dröge  <slomo@circular-chaos.org>
3423
3424         * configure.ac:
3425         * ext/alsa/gstalsamixerelement.c:
3426         (gst_alsa_mixer_element_class_init):
3427         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init):
3428         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init):
3429         * ext/cdparanoia/gstcdparanoiasrc.c:
3430         (gst_cd_paranoia_src_class_init):
3431         * ext/gio/gstgiosink.c: (gst_gio_sink_class_init):
3432         * ext/gio/gstgiosrc.c: (gst_gio_src_class_init):
3433         * ext/gio/gstgiostreamsink.c: (gst_gio_stream_sink_class_init):
3434         * ext/gio/gstgiostreamsrc.c: (gst_gio_stream_src_class_init):
3435         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
3436         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init):
3437         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init):
3438         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init):
3439         * ext/pango/gsttextrender.c: (gst_text_render_class_init):
3440         * ext/theora/theoradec.c: (gst_theora_dec_class_init):
3441         * ext/theora/theoraenc.c: (gst_theora_enc_class_init):
3442         * ext/theora/theoraparse.c: (gst_theora_parse_class_init):
3443         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_class_init):
3444         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
3445         (gst_audio_filter_template_class_init):
3446         * gst-libs/gst/audio/gstbaseaudiosink.c:
3447         (gst_base_audio_sink_class_init):
3448         * gst-libs/gst/audio/gstbaseaudiosrc.c:
3449         (gst_base_audio_src_class_init):
3450         * gst-libs/gst/cdda/gstcddabasesrc.c:
3451         (gst_cdda_base_src_class_init):
3452         * gst-libs/gst/interfaces/mixertrack.c:
3453         (gst_mixer_track_class_init):
3454         * gst-libs/gst/rtp/gstbasertpdepayload.c:
3455         (gst_base_rtp_depayload_class_init):
3456         * gst-libs/gst/rtp/gstbasertppayload.c:
3457         (gst_basertppayload_class_init):
3458         * gst/audioconvert/gstaudioconvert.c:
3459         (gst_audio_convert_class_init):
3460         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_class_init):
3461         * gst/audioresample/gstaudioresample.c:
3462         (gst_audioresample_class_init):
3463         * gst/audiotestsrc/gstaudiotestsrc.c:
3464         (gst_audio_test_src_class_init):
3465         * gst/gdp/gstgdppay.c: (gst_gdp_pay_class_init):
3466         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init):
3467         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
3468         (preroll_unlinked):
3469         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
3470         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init):
3471         * gst/playback/gstplaysink.c: (gst_play_sink_class_init):
3472         * gst/playback/gstqueue2.c: (gst_queue_class_init):
3473         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init):
3474         * gst/playback/gststreamselector.c: (gst_selector_pad_class_init),
3475         (gst_stream_selector_class_init):
3476         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_class_init):
3477         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
3478         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
3479         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
3480         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_class_init):
3481         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_class_init):
3482         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_class_init):
3483         * gst/videorate/gstvideorate.c: (gst_video_rate_class_init):
3484         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init):
3485         * gst/videotestsrc/gstvideotestsrc.c:
3486         (gst_video_test_src_class_init):
3487         * gst/volume/gstvolume.c: (gst_volume_class_init):
3488         * sys/v4l/gstv4lelement.c: (gst_v4lelement_class_init):
3489         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
3490         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
3491         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init):
3492         * sys/ximage/ximagesink.c: (gst_ximagesink_class_init):
3493         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_class_init):
3494         Use G_PARAM_STATIC_STRINGS everywhere for GParamSpecs that use
3495         static strings (i.e. all). This gives us less memory usage,
3496         fewer allocations and thus less memory defragmentation. Depend
3497         on core CVS for this. Fixes bug #523806.
3498
3499 2008-03-22  Sebastian Dröge  <slomo@circular-chaos.org>
3500
3501         * ext/gio/gstgio.c: (gst_gio_get_supported_protocols):
3502         Filter http and https protocols. GIO/GVfs handles them but it's
3503         impossible to implement iradio/icecast with it. Better use
3504         souphttpsrc or something else for this.
3505
3506         * ext/gio/gstgiobasesrc.c: (gst_gio_base_src_get_size):
3507         If getting the file informations by a query fails try it with the
3508         seek-to-end trick too.
3509
3510 2008-03-21  Sebastian Dröge  <slomo@circular-chaos.org>
3511
3512         * gst/volume/gstvolume.c: (gst_volume_interface_supported),
3513         (gst_volume_base_init), (gst_volume_class_init),
3514         (volume_process_double), (volume_process_float),
3515         (volume_transform_ip), (plugin_init):
3516         memset buffers to zero if we get a GAP buffer. We usually see a
3517         buffer as one unit so let's handle it as one and don't care about
3518         volume changes while processing one buffer.
3519         Also clean up some stuff a bit.
3520
3521 2008-03-21  Sebastian Dröge  <slomo@circular-chaos.org>
3522
3523         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
3524         (gst_audio_convert_create_silence_buffer),
3525         (gst_audio_convert_transform):
3526         Make audioconvert GAP-aware by outputting silence buffers when the
3527         input has the GAP flag set. This is up to 8x faster.
3528         Based on a patch by Stefan Kost. Fixes bug #517813.
3529
3530 2008-03-21  Sebastian Dröge  <slomo@circular-chaos.org>
3531
3532         * gst/volume/gstvolume.c: (volume_process_double):
3533         Use oil_scalarmultiply_f64_ns() for double processing when it's
3534         available at compile time.
3535
3536 2008-03-21  Sebastian Dröge  <slomo@circular-chaos.org>
3537
3538         * configure.ac:
3539         Fix lrint/lrintf checks to actually work. These functions are
3540         in libm on Linux at least so try to link to it.
3541
3542 2008-03-21  Jan Schmidt  <jan.schmidt@sun.com>
3543
3544         * configure.ac:
3545         Back to development - 0.10.18.1
3546
3547 === release 0.10.18 ===
3548
3549 2008-03-20  Jan Schmidt <jan.schmidt@sun.com>
3550
3551         * configure.ac:
3552           releasing 0.10.18, "I will follow"
3553
3554 2008-03-18  Jan Schmidt  <jan.schmidt@sun.com>
3555
3556         * configure.ac:
3557         * win32/common/config.h:
3558         0.10.17.4 pre-release
3559
3560 2008-03-18  Wim Taymans  <wim.taymans@collabora.co.uk>
3561
3562         * gst-libs/gst/sdp/gstsdpmessage.c: (gst_sdp_message_dump):
3563         Use GST_STR_NULL when trying to print strings that could be NULL because
3564         this might crash on some platforms. See #520808.
3565
3566 2008-03-18  Wim Taymans  <wim.taymans@collabora.co.uk>
3567
3568         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
3569
3570         * gst-libs/gst/rtsp/gstrtspconnection.c:
3571         (gst_rtsp_connection_connect), (gst_rtsp_connection_write),
3572         (read_line), (gst_rtsp_connection_read_internal):
3573         Generic Windows fixes that makes libgstrtsp work on Windows when
3574         coupled with the new GstPoll API. See #520808.
3575
3576 2008-03-17  Sebastian Dröge  <slomo@circular-chaos.org>
3577
3578         Patch by: Milosz Derezynski <internalerror at gmail dot com>
3579
3580         * ext/gio/gstgiobasesrc.c: (gst_gio_base_src_create):
3581           If seeking to a new position succeeds don't simply return from
3582           create() without creating a buffer. Do this only in the case
3583           seeking to the new position fails. Fixes bug #523054.
3584
3585 2008-03-17  Tim-Philipp Müller  <tim at centricular dot net>
3586
3587         * gst-libs/gst/video/video.c: (gst_video_format_parse_caps),
3588           (gst_video_format_from_rgba32_masks):
3589           Fix gst_video_format_parse_caps() for RGB caps with alpha channel
3590           (#522635).
3591
3592         * tests/check/libs/video.c: (test_parse_caps_rgb), (video_suite):
3593           Add unit test for the RGB caps parsing and creation, checking for
3594           internal consistency of the new API and consistency of the API with
3595           the old GST_VIDEO_CAPS_* defines.
3596
3597 2008-03-14  David Schleef  <ds@schleef.org>
3598
3599         * gst/videotestsrc/videotestsrc.c:  Oops, revert last change
3600           because -base is in freeze.
3601
3602 2008-03-14  David Schleef  <ds@schleef.org>
3603
3604         Patch by: William M. Brack
3605
3606         * gst/videotestsrc/videotestsrc.c: Fix Bayer pattern generation.
3607
3608 2008-03-14  Wim Taymans  <wim.taymans@collabora.co.uk>
3609
3610         * gst/playback/gststreamselector.c: (gst_selector_pad_event),
3611         (gst_selector_pad_chain):
3612         * gst/playback/gststreamselector.h:
3613         Revert change that caused regression until a real fix is found.
3614         Fixes #522203.
3615
3616 2008-03-12  Michael Smith <msmith@fluendo.com>
3617
3618         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps):
3619         * gst-libs/gst/audio/gstringbuffer.h:
3620           Rename recently added buffer types to make more sense.
3621         * ext/alsa/gstalsasink.c: (alsasink_parse_spec),
3622         (gst_alsasink_write):
3623           Adapt for above API changes.
3624           Fixes bug #520523.
3625
3626 2008-03-11  Sebastian Dröge  <slomo@circular-chaos.org>
3627
3628         * win32/common/libgstnetbuffer.def:
3629         Add new symbol gst_netaddress_equal. Fixes bug #521743.
3630
3631 2008-03-11  Jan Schmidt  <jan.schmidt@sun.com>
3632
3633         * configure.ac:
3634         * win32/common/config.h:
3635         0.10.17.3 pre-release
3636
3637 2008-03-10  Wim Taymans  <wim.taymans@collabora.co.uk>
3638
3639         * gst-libs/gst/audio/gstbaseaudiosrc.c:
3640         (gst_base_audio_src_create):
3641         Fix duration when no clock was provided. Fixes #520300.
3642
3643 2008-03-07  Wim Taymans  <wim.taymans@collabora.co.uk>
3644
3645         Patch by: Olivier Crete  <tester at tester ca>
3646
3647         * docs/libs/gst-plugins-base-libs-sections.txt:
3648         * gst-libs/gst/netbuffer/gstnetbuffer.c: (gst_netaddress_equal):
3649         * gst-libs/gst/netbuffer/gstnetbuffer.h:
3650         Add trivial function to compare GstNetAddress. See #520626.
3651         API: GstNetBuffer::gst_netaddress_equal
3652
3653 2008-03-07  Wim Taymans  <wim.taymans@collabora.co.uk>
3654
3655         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
3656         Update mode property docs, it's deprecated now.
3657
3658 2008-03-07  Wim Taymans  <wim.taymans@collabora.co.uk>
3659
3660         * gst-libs/gst/rtsp/gstrtspconnection.c:
3661         (gst_rtsp_connection_create):
3662         * gst/tcp/gstmultifdsink.c: (gst_fdset_mode_get_type),
3663         (gst_multi_fd_sink_class_init), (gst_multi_fd_sink_start):
3664         * gst/tcp/gstmultifdsink.h:
3665         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_start):
3666         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_start):
3667         Remove GstPollMode from gstpoll constructor.
3668
3669 2008-03-04  Jan Schmidt  <jan.schmidt@sun.com>
3670
3671         * configure.ac:
3672         * win32/common/config.h:
3673         0.10.17.2 pre-release
3674
3675 2008-03-03  Jan Schmidt  <jan.schmidt@sun.com>
3676
3677         * gst/Makefile.am:
3678         GST_PLUGINS_ALL correctly lists subparse and tcp now, don't distclean
3679         them twice
3680
3681         * win32/common/libgstinterfaces.def:
3682         * win32/common/libgstrtp.def:
3683         Add new API to the defs
3684
3685 2008-03-03  Peter Kjellerstedt  <pkj@axis.com>
3686
3687         Patch by: Mersad Jelacic  <mersad at axis dot com>
3688
3689         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
3690         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
3691         API: add gst_base_rtp_audio_payload_set_samplebits_options() to make it
3692         possible to specify the sample size in bits. (#509637)
3693
3694 2008-03-03  Tim-Philipp Müller  <tim at centricular dot net>
3695
3696         * tests/check/libs/mixer.c:
3697           Add a few simple checks for the new message types.
3698
3699 2008-03-03  Tim-Philipp Müller  <tim at centricular dot net>
3700
3701         * docs/libs/gst-plugins-base-libs-sections.txt:
3702         * gst-libs/gst/interfaces/mixer.c: (gst_mixer_option_changed),
3703           (gst_mixer_options_list_changed), (gst_mixer_mixer_changed),
3704           (gst_mixer_message_get_type),
3705           (gst_mixer_message_parse_option_changed),
3706           (gst_mixer_message_parse_options_list_changed):
3707         * gst-libs/gst/interfaces/mixer.h: (GstMixerType),
3708           (GST_MIXER_MESSAGE_OPTION_CHANGED),
3709           (GST_MIXER_MESSAGE_OPTIONS_LIST_CHANGED),
3710           (GST_MIXER_MESSAGE_MIXER_CHANGED):
3711           API: add gst_mixer_options_list_changed(), gst_mixer_mixer_changed()
3712           and gst_mixer_message_parse_options_list_changed(). Fixes #519916.
3713
3714 2008-03-03  Tim-Philipp Müller  <tim at centricular dot net>
3715
3716         * gst-libs/gst/interfaces/mixeroptions.c: (gst_mixer_options_init),
3717           (gst_mixer_options_get_values):
3718         * gst-libs/gst/interfaces/mixeroptions.h:
3719           (GST_MIXER_OPTIONS_GET_CLASS), (GstMixerOptionsClass),
3720           (_GstMixerOptions), (_GstMixerOptionsClass):
3721           API: add GstMixerOptions::get_values vfunc (#519906)
3722
3723 2008-03-03  Peter Kjellerstedt  <pkj@axis.com>
3724
3725         * configure.ac:
3726         Use AG_GST_CHECK_PLUGIN and AG_GST_DISABLE_PLUGIN to simplify which
3727         plug-ins are included/excluded. (#498222)
3728
3729 2008-03-03  Sebastian Dröge  <slomo@circular-chaos.org>
3730
3731         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
3732         Add typefinder for IMelody files, using audio/x-imelody.
3733         See bug #519516.
3734
3735 2008-03-03  Sebastian Dröge  <slomo@circular-chaos.org>
3736
3737         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_get_type):
3738         * ext/alsa/gstalsasink.c: (set_hwparams):
3739         * ext/alsa/gstalsasrc.c: (set_hwparams):
3740         * ext/gio/gstgio.c: (gst_gio_uri_handler_get_uri):
3741         * ext/ogg/gstoggmux.h:
3742         * ext/ogg/gstogmparse.c:
3743         * gst-libs/gst/audio/audio.c:
3744         * gst-libs/gst/fft/kiss_fft_f64.c: (kiss_fft_f64_alloc):
3745         * gst-libs/gst/pbutils/missing-plugins.c:
3746         (gst_missing_uri_sink_message_new),
3747         (gst_missing_element_message_new),
3748         (gst_missing_decoder_message_new),
3749         (gst_missing_encoder_message_new):
3750         * gst-libs/gst/rtp/gstbasertppayload.c:
3751         * gst-libs/gst/rtp/gstrtcpbuffer.c:
3752         (gst_rtcp_packet_bye_get_reason):
3753         * gst/audioconvert/gstaudioconvert.c:
3754         * gst/audioresample/gstaudioresample.c:
3755         * gst/ffmpegcolorspace/imgconvert.c:
3756         * gst/playback/test.c: (gen_video_element), (gen_audio_element):
3757         * gst/typefind/gsttypefindfunctions.c:
3758         * gst/videoscale/vs_4tap.c:
3759         * gst/videoscale/vs_4tap.h:
3760         * sys/v4l/gstv4lelement.c:
3761         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_any_caps):
3762         * sys/v4l/v4l_calls.c:
3763         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init),
3764         (gst_v4lsrc_try_capture):
3765         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
3766         (gst_ximagesink_ximage_new):
3767         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
3768         (gst_xvimagesink_xvimage_new):
3769         * tests/check/elements/audioconvert.c:
3770         * tests/check/elements/audioresample.c:
3771         (fail_unless_perfect_stream):
3772         * tests/check/elements/audiotestsrc.c: (setup_audiotestsrc):
3773         * tests/check/elements/decodebin.c:
3774         * tests/check/elements/gdpdepay.c: (setup_gdpdepay),
3775         (setup_gdpdepay_streamheader):
3776         * tests/check/elements/gdppay.c: (setup_gdppay), (GST_START_TEST),
3777         (setup_gdppay_streamheader):
3778         * tests/check/elements/gnomevfssink.c: (setup_gnomevfssink):
3779         * tests/check/elements/multifdsink.c: (setup_multifdsink):
3780         * tests/check/elements/textoverlay.c:
3781         * tests/check/elements/videorate.c: (setup_videorate):
3782         * tests/check/elements/videotestsrc.c: (setup_videotestsrc):
3783         * tests/check/elements/volume.c: (setup_volume):
3784         * tests/check/elements/vorbisdec.c: (setup_vorbisdec):
3785         * tests/check/elements/vorbistag.c:
3786         * tests/check/generic/clock-selection.c:
3787         * tests/check/generic/states.c: (setup), (teardown):
3788         * tests/check/libs/cddabasesrc.c:
3789         * tests/check/libs/video.c:
3790         * tests/check/pipelines/gio.c:
3791         * tests/check/pipelines/oggmux.c:
3792         * tests/check/pipelines/simple-launch-lines.c:
3793         (simple_launch_lines_suite):
3794         * tests/check/pipelines/streamheader.c:
3795         * tests/check/pipelines/theoraenc.c:
3796         * tests/check/pipelines/vorbisdec.c:
3797         * tests/check/pipelines/vorbisenc.c:
3798         * tests/examples/seek/scrubby.c:
3799         * tests/examples/seek/seek.c: (query_positions_elems),
3800         (query_positions_pads):
3801         * tests/icles/stress-xoverlay.c: (myclock):
3802         Correct all relevant warnings found by the sparse semantic code
3803         analyzer. This include marking several symbols static, using
3804         NULL instead of 0 for pointers and using "foo (void)" instead
3805         of "foo ()" for declarations.
3806
3807         * win32/common/libgstrtp.def:
3808         Add gst_rtp_buffer_set_extension_data to the symbol definition file.
3809
3810 2008-03-02  Tim-Philipp Müller  <tim at centricular dot net>
3811
3812         Patch by: José Alburquerque <jaalburqu svn gnome org>
3813
3814         * gst/playback/gstplaybin2.c:
3815           Make the function signature of the _get_*_tags() functions match
3816           the signature of the vfuncs they implement, ie. return a
3817           GstTagList rather than a GstStructure, which is more correct,
3818           even if one is typedef'ed to the other (#518940).
3819
3820 2008-03-02  Tim-Philipp Müller  <tim at centricular dot net>
3821
3822         * gst-libs/gst/rtsp/gstrtspconnection.c:
3823           Don't include unix headers unconditionally (fixes #518037).
3824
3825 2008-03-02  Tim-Philipp Müller  <tim at centricular dot net>
3826
3827         * tests/check/libs/video.c: (paintinfo), (paintinfo_struct),
3828           (fourcc_list_struct), (fourcc_list), (fourcc_get_size),
3829           (paint_setup_I420), (paint_setup_YV12), (paint_setup_AYUV),
3830           (paint_setup_YUY2), (paint_setup_UYVY), (paint_setup_YVYU),
3831           (paint_setup_IYU2), (paint_setup_Y41B), (paint_setup_Y42B),
3832           (paint_setup_Y800), (paint_setup_YVU9), (paint_setup_YUV9),
3833           (gst_video_format_is_packed), (video_format_is_packed):
3834           Add unit test that makes sure that the strides, offsets and
3835           sizes returned for the various YUV formats by the new video API
3836           match the old reference implementation in videotestsrc.
3837
3838 2008-03-02  Tim-Philipp Müller  <tim at centricular dot net>
3839
3840         * gst-libs/gst/video/video.c: (gst_video_calculate_display_ratio),
3841           (gst_video_format_from_fourcc), (gst_video_format_to_fourcc),
3842           (gst_video_format_is_rgb), (gst_video_format_is_yuv),
3843           (gst_video_format_has_alpha), (gst_video_format_get_row_stride),
3844           (gst_video_format_get_pixel_stride),
3845           (gst_video_format_get_component_width),
3846           (gst_video_format_get_component_height),
3847           (gst_video_format_get_component_offset), (gst_video_format_get_size):
3848         * gst-libs/gst/video/video.h: (GST_VIDEO_FORMAT_Y41B),
3849           (GST_VIDEO_FORMAT_Y42B):
3850           API: add GST_VIDEO_FORMAT_Y41B and GST_VIDEO_FORMAT_Y42B.
3851
3852 2008-03-02  Tim-Philipp Müller  <tim at centricular dot net>
3853
3854         * gst-libs/gst/video/video.c: (gst_video_format_get_component_offset):
3855           YV12 is I420 with swapped components 1 and 2, so the offset of
3856           component 1 for I420 should be the offset for component 2 for YV12
3857           and vice versa.
3858
3859 2008-02-29  Rene Stadler  <mail@renestadler.de>
3860
3861         * sys/v4l/gstv4lelement.c:
3862         Add missing semicolon to fix indentation.
3863
3864 2008-02-29  Julien Moutte  <julien@fluendo.com>
3865
3866         * ext/alsa/gstalsa.c: (gst_alsa_open_iec958_pcm),
3867         (gst_alsa_probe_supported_formats): Probe for IEC958 pcm to detect
3868         if we can do SPDIF output.
3869         * ext/alsa/gstalsa.h:
3870         * ext/alsa/gstalsasink.c: (set_hwparams), (alsasink_parse_spec),
3871         (gst_alsasink_prepare), (gst_alsasink_close), (gst_alsasink_write):
3872         * ext/alsa/gstalsasink.h: Initial support for SPDIF.
3873         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps):
3874         * gst-libs/gst/audio/gstringbuffer.h: Add non linear buffer types
3875         to support AC3, EC3 and IEC958 buffers.
3876
3877 2008-02-29  Tim-Philipp Müller  <tim at centricular dot net>
3878
3879         * gst-libs/gst/interfaces/mixer.c: (GST_MIXER_MESSAGE_HAS_TYPE),
3880           (gst_mixer_message_parse_mute_toggled),
3881           (gst_mixer_message_parse_record_toggled),
3882           (gst_mixer_message_parse_volume_changed),
3883           (gst_mixer_message_parse_option_changed):
3884           De-cruft and fix message type assertions (NULL is not a really
3885           valid mixer message type string).
3886
3887 2008-02-29  Wim Taymans  <wim.taymans@collabora.co.uk>
3888
3889         * ext/libvisual/visual.c: (gst_vis_src_negotiate):
3890         When negotiating, actually start from a format that we can support
3891         instead of from the too generic template.
3892
3893 2008-02-29  Wim Taymans  <wim.taymans@collabora.co.uk>
3894
3895         * gst/playback/gstplaybin2.c: (gst_play_bin_set_property):
3896         Enable vis setting.
3897
3898         * gst/playback/gstplaysink.c: (gst_play_sink_init),
3899         (gst_play_sink_dispose), (gst_play_sink_vis_unblocked),
3900         (gst_play_sink_vis_blocked), (gst_play_sink_set_vis_plugin),
3901         (gen_vis_chain):
3902         Implement vis switching while playing.
3903
3904 2008-02-28  David Schleef  <ds@schleef.org>
3905
3906         * gst-libs/gst/riff/riff-media.c: Add Dirac mapping
3907
3908 2008-02-28  Wim Taymans  <wim.taymans@collabora.co.uk>
3909
3910         Patch by: Peter Kjellerstedt  <pkj at axis com>
3911
3912         * gst/tcp/Makefile.am:
3913         * gst/tcp/fdsetstress.c:
3914         * gst/tcp/gstfdset.c:
3915         * gst/tcp/gstfdset.h:
3916         Removed fdset and stress test, they are now known as GstPoll in
3917         core. 
3918
3919         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
3920         (gst_multi_fd_sink_add_full), (gst_multi_fd_sink_remove),
3921         (gst_multi_fd_sink_clear), (gst_multi_fd_sink_remove_client_link),
3922         (gst_multi_fd_sink_handle_client_write),
3923         (gst_multi_fd_sink_queue_buffer),
3924         (gst_multi_fd_sink_handle_clients), (gst_multi_fd_sink_start),
3925         (gst_multi_fd_sink_stop):
3926         * gst/tcp/gstmultifdsink.h:
3927         * gst/tcp/gsttcp.c: (gst_tcp_socket_read), (gst_tcp_socket_close),
3928         (gst_tcp_read_buffer), (gst_tcp_gdp_read_buffer),
3929         (gst_tcp_gdp_read_caps):
3930         * gst/tcp/gsttcp.h:
3931         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_init),
3932         (gst_tcp_client_sink_setcaps), (gst_tcp_client_sink_render),
3933         (gst_tcp_client_sink_start), (gst_tcp_client_sink_stop):
3934         * gst/tcp/gsttcpclientsink.h:
3935         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_init),
3936         (gst_tcp_client_src_create), (gst_tcp_client_src_start),
3937         (gst_tcp_client_src_stop), (gst_tcp_client_src_unlock):
3938         * gst/tcp/gsttcpclientsrc.h:
3939         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_handle_wait),
3940         (gst_tcp_server_sink_init_send), (gst_tcp_server_sink_close):
3941         * gst/tcp/gsttcpserversink.h:
3942         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_init),
3943         (gst_tcp_server_src_create), (gst_tcp_server_src_start),
3944         (gst_tcp_server_src_stop), (gst_tcp_server_src_unlock):
3945         * gst/tcp/gsttcpserversrc.h:
3946         Port to GstPoll. See #505417.
3947
3948 2008-02-28  Wim Taymans  <wim.taymans@collabora.co.uk>
3949
3950         Patch by: Peter Kjellerstedt  <pkj at axis com>
3951
3952         * gst-libs/gst/rtsp/gstrtspconnection.c:
3953         (gst_rtsp_connection_create), (gst_rtsp_connection_connect),
3954         (gst_rtsp_connection_write), (gst_rtsp_connection_read_internal),
3955         (gst_rtsp_connection_receive), (gst_rtsp_connection_close),
3956         (gst_rtsp_connection_free), (gst_rtsp_connection_poll),
3957         (gst_rtsp_connection_flush):
3958         * gst-libs/gst/rtsp/gstrtspconnection.h:
3959         Use GstPoll for the rtsp connection. See #505417.
3960
3961 2008-02-27  Wim Taymans  <wim.taymans@collabora.co.uk>
3962
3963         * tests/examples/seek/seek.c: (vis_toggle_cb), (filter_features),
3964         (init_visualization_features), (vis_combo_cb), (shot_cb), (main):
3965         Add combo box for visualisations, populate it with a factory list
3966         of all visualisation plugins, configure vis plugin instance in
3967         playbin2. 
3968
3969 2008-02-27  Wim Taymans  <wim.taymans@collabora.co.uk>
3970
3971         * tests/check/libs/rtp.c: (GST_START_TEST):
3972         Add check for RTP buffer defaults, padding and marker bit API.
3973
3974 2008-02-27  Sebastian Dröge  <slomo@circular-chaos.org>
3975
3976         * gst-libs/gst/cdda/sha1.c: (sha_transform):
3977         Use memcpy() instead of upcasting a byte array to long *. This
3978         fixes an unaligned memory access, resulting in SIGBUS on IA64.
3979         This should be ported to GCheckSum once we can use GLib 2.16.
3980         Partially fixes bug #500833.
3981
3982 2008-02-27  Tim-Philipp Müller  <tim at centricular dot net>
3983
3984         * gst-libs/gst/tag/gsttagdemux.c: (gst_tag_demux_chain):
3985           Push tag event after the newsegment event. Log the pointer of
3986           the buffer we're actually going to push rather than the buffer
3987           we're feeding to _make_metadata_writable().
3988
3989 2008-02-25  Sebastian Dröge  <slomo@circular-chaos.org>
3990
3991         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
3992         Comment smoke typefinder for now. The smokedec plugin needs one
3993         frame per buffer but we have no parser yet, thus it simply crashes
3994         in most situations.
3995
3996 2008-02-25  Sebastian Dröge  <slomo@circular-chaos.org>
3997
3998         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
3999         Add typefinder for the smoke video codec. Copied from the jpeg plugin.
4000
4001 2008-02-25  Sebastian Dröge  <slomo@circular-chaos.org>
4002
4003         * gst/typefind/gsttypefindfunctions.c: (mid_type_find),
4004         (plugin_init):
4005         Add midi typefinder, copied from the timidity plugin.
4006
4007 2008-02-23  Tim-Philipp Müller  <tim at centricular dot net>
4008
4009         Based on patch by: Tomasz Sałaciński <tsalacinski gmail com>
4010
4011         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
4012         * tests/check/elements/subparse.c: (test_microdvd_with_italics),
4013           (subparse_suite):
4014           Forward slashes at the beginning and end of a line also signify
4015           italics (Fixes: #518162).
4016
4017 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
4018
4019         * tests/check/gst-plugins-base.supp:
4020         Add a suppression for a cached value in GIO that wasn't moved
4021         while moving gio from -bad to -base.
4022
4023 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
4024
4025         Patch by: Brian Cameron <brian dot cameron at sun dot com>
4026
4027         * configure.ac:
4028         Don't hardcode -Wall and -Werror for configure checks, this fails
4029         with non-GCC compilers. Fixes bug #517991.
4030
4031 2008-02-21  Stefan Kost  <ensonic@users.sf.net>
4032
4033         * gst/audioconvert/gstaudioconvert.c:
4034         * gst/audioconvert/gstaudioquantize.c:
4035         * gst/audioconvert/gstaudioquantize.h:
4036           Make audioconvert gap aware. If noiseshaping is used, wait for
4037           noiseshaping to converge before marking as GAP. Fixes #517813.
4038
4039 2008-02-21  Stefan Kost  <ensonic@users.sf.net>
4040
4041         * gst/audiotestsrc/gstaudiotestsrc.c:
4042           Mark buffers as GAP,if volume is 0.0 and fix the previous logic.
4043
4044 2008-02-20  Sebastian Dröge  <slomo@circular-chaos.org>
4045
4046         * ext/gnomevfs/gstgnomevfssink.c:
4047         (gst_gnome_vfs_sink_handle_event):
4048         Return FALSE when seeking for a new segment fails instead
4049         of silently ignoring the failure and appending every buffer
4050         that comes for the new segment.
4051
4052 2008-02-20  Wim Taymans  <wim.taymans@collabora.co.uk>
4053
4054         * gst/playback/gstplaysink.c: (find_property),
4055         (gst_play_sink_find_property), (gen_video_chain),
4056         (gst_play_sink_reconfigure), (gst_play_sink_get_last_frame):
4057         Recursively search the sink element for a last-frame property so that we
4058         can also find the property in autovideosink and friends that don't
4059         always proxy the internal sink properties.
4060
4061 2008-02-19  Tim-Philipp Müller  <tim at centricular dot net>
4062
4063         * gst-libs/gst/audio/multichannel.c:
4064           (GST_AUDIO_CHANNEL_POSITIONS_FIELD_NAME),
4065           (gst_audio_get_channel_positions), (gst_audio_set_channel_positions),
4066           (gst_audio_set_structure_channel_positions_list),
4067           (add_list_to_struct), (gst_audio_set_caps_channel_positions_list),
4068           (gst_audio_fixate_channel_positions):
4069           Fix confusing terminology in docs and code: structure fields are
4070           'fields' and not 'properties'.
4071
4072 2008-02-19  Tim-Philipp Müller  <tim at centricular dot net>
4073
4074         * gst-libs/gst/audio/multichannel.c:
4075           (gst_audio_check_channel_positions), (add_list_to_struct):
4076           Give more useful warning messages if one of the channel
4077           layout enums passed to us is invalid and if the "channels"
4078           field in the caps has a GType we don't expect.
4079
4080 2008-02-19  Tim-Philipp Müller  <tim at centricular dot net>
4081
4082         * gst-libs/gst/audio/multichannel.c:
4083           Fix typo in docs blurb.
4084
4085 2008-02-19  Julien Moutte  <julien@fluendo.com>
4086
4087         Patch by: Josep Torra Valles <josep@fluendo.com>
4088
4089         * gst/typefind/gsttypefindfunctions.c: Increase the MPEG PS
4090         typefind lookup to fix typefinding on HD clips.
4091
4092 2008-02-19  Tim-Philipp Müller  <tim at centricular dot net>
4093
4094         * gst/playback/gstscreenshot.c:
4095         * gst/playback/gstscreenshot.h:
4096           Fix up copyright (I rewrote the GStreamer-0.10 code for
4097           this from scratch back in the days).
4098
4099 2008-02-19  Wim Taymans  <wim.taymans@collabora.co.uk>
4100
4101         * gst/playback/Makefile.am:
4102         * gst/playback/gstscreenshot.c: (feed_fakesrc), (save_result),
4103         (create_element), (gst_play_frame_conv_convert):
4104         * gst/playback/gstscreenshot.h:
4105         Add screenshot conversion code from totem.
4106
4107         * gst/playback/gstplay-marshal.list:
4108         * gst/playback/gstplaybin2.c: (gst_play_marshal_BUFFER__BOXED),
4109         (gst_play_bin_class_init), (gst_play_bin_convert_frame),
4110         (gst_play_bin_get_property), (no_more_pads_cb), (activate_group):
4111         Implement frame property to get a color-unconverted snapshot.
4112         Implement convert-frame action signal to get a converted snapshot image.
4113         Configure connection speed in uridecodebin.
4114         Document some more properties.
4115
4116         * gst/playback/gstplaysink.c: (gst_play_sink_class_init),
4117         (gen_video_chain), (gen_audio_chain), (gst_play_sink_reconfigure),
4118         (gst_play_sink_get_last_frame):
4119         * gst/playback/gstplaysink.h:
4120         Use last-buffer property of the video sink to get a video snapshot.
4121
4122         * tests/examples/seek/seek.c: (shot_cb), (main):
4123         Add snapshot button for playbin2 and use the frame property to save the
4124         frame as a png in the current directory.
4125
4126 2008-02-19  Sebastian Dröge  <slomo@circular-chaos.org>
4127
4128         Patch by: Josep Torra Valles <josep at fluendo dot com>
4129
4130         * gst/typefind/gsttypefindfunctions.c: (h264_video_type_find),
4131         (plugin_init):
4132         Add typefinding support for h264 elementary streams.
4133         Fixes bug #517420.
4134
4135 2008-02-18  Stefan Kost  <ensonic@users.sf.net>
4136
4137         * configure.ac:
4138           Require CVS of core for new API in collectpads.
4139
4140         * gst/adder/gstadder.c:
4141           Use new API to make adder sparse stream aware.
4142
4143 2008-02-18  Wim Taymans  <wim.taymans@collabora.co.uk>
4144
4145         * gst/playback/gstplaybin2.c: (pad_added_cb), (pad_removed_cb),
4146         (no_more_pads_cb):
4147         Get the object data correct so that we can remove our channels
4148         correctly.
4149
4150         * gst/playback/gstplaysink.c: (gen_video_chain), (gen_audio_chain),
4151         (gen_vis_chain), (gst_play_sink_reconfigure),
4152         (gst_play_sink_request_pad):
4153         Add option to disable async behaviour in the sinks when possible. This
4154         makes it possible to avoid an audio queue when dealing with
4155         visualisations.
4156         Add option to add a queue for the audio path.
4157
4158         * tests/examples/seek/seek.c: (clear_streams), (update_streams),
4159         (main):
4160         Disable the vis checkbox to match the defaults of playbin2.
4161         Only get the stream info when we need to.
4162
4163 2008-02-17  Sebastian Dröge  <slomo@circular-chaos.org>
4164
4165         * ext/gio/gstgiobasesink.c: (gst_gio_base_sink_stop),
4166         (gst_gio_base_sink_set_stream):
4167         * ext/gio/gstgiobasesrc.c: (gst_gio_base_src_stop),
4168         (gst_gio_base_src_set_stream):
4169         * ext/gio/gstgiosink.c: (gst_gio_sink_start):
4170         * ext/gio/gstgiosrc.c: (gst_gio_src_start):
4171         Don't use async operations as they require a running main loop.
4172         This makes us block again when closing streams and unable
4173         to mount the enclosing volume of an URI if it isn't yet.
4174
4175 2008-02-15  Wim Taymans  <wim.taymans@collabora.co.uk>
4176
4177         * gst/playback/gstplaysink.c: (gst_play_sink_set_mute),
4178         (gst_play_sink_get_mute), (gen_video_chain), (gen_audio_chain),
4179         (gen_vis_chain), (gst_play_sink_reconfigure),
4180         (gst_play_sink_request_pad):
4181         Move tee in front of the audio and vis pipelines.
4182         Add queue for audio for now.
4183         Add visualisation support.
4184
4185         * tests/examples/seek/seek.c: (main):
4186         Visualisation is by default disabled.
4187
4188 2008-02-15  Sebastian Dröge  <slomo@circular-chaos.org>
4189
4190         * ext/gio/gstgiobasesink.c: (close_stream_cb):
4191         * ext/gio/gstgiobasesrc.c: (close_stream_cb):
4192         Improve debugging a bit.
4193
4194         * ext/gio/gstgiosink.c: (mount_cb), (gst_gio_sink_start):
4195         * ext/gio/gstgiosink.h:
4196         * ext/gio/gstgiosrc.c: (mount_cb), (gst_gio_src_start):
4197         * ext/gio/gstgiosrc.h:
4198         Try to mount the enclosing volume of a GFile if it isn't mounted
4199         yet. This requires us to wait for an async operation to finish, done
4200         with an nested GMainLoop. Authentication is not supported yet, will
4201         come later.
4202
4203 2008-02-14  Wim Taymans  <wim.taymans@collabora.co.uk>
4204
4205         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
4206         (gst_play_bin_set_property), (gst_play_bin_get_property),
4207         (pad_added_cb), (pad_removed_cb), (no_more_pads_cb):
4208         * gst/playback/gstplaysink.c: (gst_play_sink_set_mute),
4209         (gst_play_sink_get_mute), (gen_audio_chain):
4210         * gst/playback/gstplaysink.h:
4211         Add mute property.
4212
4213         * gst/playback/gststreamselector.c: (gst_selector_pad_event),
4214         (gst_selector_pad_chain):
4215         * gst/playback/gststreamselector.h:
4216         Make sure we forward the event only once.
4217
4218         * tests/examples/seek/seek.c: (stop_cb), (mute_toggle_cb), (main):
4219         Add and implement the mute button for playbin2.
4220
4221 2008-02-13  Wim Taymans  <wim.taymans@collabora.co.uk>
4222
4223         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
4224
4225         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_delay):
4226         Add some more debug info.
4227         Make sure we never return a negative delay. Fixes #516246.
4228
4229 2008-02-12  Tim-Philipp Müller  <tim at centricular dot net>
4230
4231         * ext/alsa/gstalsasink.c: (gst_alsasink_delay):
4232           Revert patch that makes the sink hold the object lock when
4233           calling snd_pcm_delay(), since it breaks playback for me.
4234
4235 2008-02-12  Julien Moutte  <julien@fluendo.com>
4236
4237         * tests/examples/seek/seek.c: (rate_spinbutton_changed_cb): Add
4238         some seek flags when changing rate.
4239
4240 2008-02-12  Wim Taymans  <wim.taymans@collabora.co.uk>
4241
4242         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
4243         (gst_base_rtp_audio_payload_handle_frame_based_buffer),
4244         (gst_base_rtp_audio_payload_handle_sample_based_buffer):
4245         Fix potential leaks.
4246
4247         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_chain):
4248         Fix leak when there is no function configured.
4249
4250 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
4251
4252         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_buffer_class_init),
4253         (gst_v4lsrc_buffer_finalize):
4254         Correctly chain up the finalize method.
4255
4256 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
4257
4258         * ext/gio/gstgiostreamsink.c:
4259         * ext/gio/gstgiostreamsrc.c:
4260         Add documentation and example code for giostreamsink/giostreamsrc.
4261
4262         * tests/check/pipelines/gio.c: (GST_START_TEST):
4263         Ask the GMemoryOutputStream for the data instead of assuming that
4264         the pointer to the data stayed the same. It could've been realloc'ed.
4265
4266 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
4267
4268         * ext/gio/gstgiosink.c:
4269         * ext/gio/gstgiosrc.c:
4270         Make the documentation of giosink/giosrc complete, large parts
4271         are based on the gnomevfssink/gnomevfssrc docs.
4272
4273 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
4274
4275         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
4276         * docs/plugins/gst-plugins-base-plugins-sections.txt:
4277         * docs/plugins/gst-plugins-base-plugins.args:
4278         * docs/plugins/gst-plugins-base-plugins.hierarchy:
4279         * docs/plugins/gst-plugins-base-plugins.interfaces:
4280         * docs/plugins/gst-plugins-base-plugins.prerequisites:
4281         * docs/plugins/gst-plugins-base-plugins.signals:
4282         * docs/plugins/inspect/plugin-adder.xml:
4283         * docs/plugins/inspect/plugin-audioconvert.xml:
4284         * docs/plugins/inspect/plugin-audiorate.xml:
4285         * docs/plugins/inspect/plugin-audioresample.xml:
4286         * docs/plugins/inspect/plugin-decodebin.xml:
4287         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
4288         * docs/plugins/inspect/plugin-gdp.xml:
4289         * docs/plugins/inspect/plugin-gio.xml:
4290         * docs/plugins/inspect/plugin-gnomevfs.xml:
4291         * docs/plugins/inspect/plugin-libvisual.xml:
4292         * docs/plugins/inspect/plugin-ogg.xml:
4293         * docs/plugins/inspect/plugin-pango.xml:
4294         * docs/plugins/inspect/plugin-playback.xml:
4295         * docs/plugins/inspect/plugin-queue2.xml:
4296         * docs/plugins/inspect/plugin-subparse.xml:
4297         * docs/plugins/inspect/plugin-theora.xml:
4298         * docs/plugins/inspect/plugin-uridecodebin.xml:
4299         * docs/plugins/inspect/plugin-videorate.xml:
4300         * docs/plugins/inspect/plugin-videoscale.xml:
4301         * docs/plugins/inspect/plugin-volume.xml:
4302         * docs/plugins/inspect/plugin-vorbis.xml:
4303         Add the GIO documentation again and while at that run make update.
4304
4305 2008-02-11  Tim-Philipp Müller  <tim at centricular dot net>
4306
4307         * ext/alsa/gstalsa.h: (GST_CHECK_ALSA_VERSION):
4308         * ext/alsa/gstalsasink.c: (set_swparams):
4309         * ext/alsa/gstalsasrc.c: (set_swparams), (gst_alsasrc_open):
4310           Don't use snd_pcm_sw_params_set_xfer_align() if we're compiling
4311           against libasound >= 1.0.16, since it's been deprecated in
4312           0.10.16, and alignment is always 1 then, apparently. (#512899)
4313
4314 2008-02-11  Tim-Philipp Müller  <tim at centricular dot net>
4315
4316         * gst/playback/gstplaybin.c: (gen_audio_element):
4317         * gst/playback/gstplaysink.c: (gen_audio_chain):
4318           Handle case where we can't create the volume element a bit
4319           better (#514307).
4320
4321 2008-02-11  Tim-Philipp Müller  <tim at centricular dot net>
4322
4323         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_check_get_range):
4324         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
4325           Add support for https protocol. Fixes #510229.
4326
4327 2008-02-11  Julien Moutte  <julien@fluendo.com>
4328         
4329         Patch by: Alan Peevers <peeves@pacbell.net>
4330
4331         * ext/alsa/gstalsasink.c: (gst_alsasink_delay): Take appropriate
4332         lock when calling alsa methods.
4333
4334 2008-02-11  Tim-Philipp Müller  <tim at centricular dot net>
4335
4336         * gst/typefind/gsttypefindfunctions.c:
4337           Bump rank of jpeg and png typefinders, which will return maximum
4338           probability in the most common cases (thus short-circuiting more
4339           expensive typefinders like the mp3 one for these two quite common
4340           image types).
4341
4342 2008-02-11  Sebastian Dröge  <slomo@circular-chaos.org>
4343
4344         * ext/theora/theoraparse.c:
4345         Fix long description of the theora parser to be more verbose than just
4346         the type name.
4347
4348 2008-02-11  Sebastian Dröge  <slomo@circular-chaos.org>
4349
4350         Patch by: Branko Čibej <brane at xbc dot nu>
4351
4352         * sys/xvimage/xvimagesink.c:
4353         Fix build of xvimagesink if we don't have XShm, e.g. on Mac OS X.
4354         Fixes bug #515654.
4355
4356 2008-02-09  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4357
4358         * gst/playback/gstplaybasebin.c:
4359         Set is_dynamic as True if there are elements with both request
4360         and sometimes src pad templates instead of breaking out when it
4361         finds the first pad template that is a src.
4362
4363 2008-02-08  Wim Taymans  <wim.taymans@collabora.co.uk>
4364
4365         * tests/examples/seek/seek.c: (stop_cb), (clear_streams),
4366         (update_streams), (video_combo_cb), (audio_combo_cb),
4367         (text_combo_cb), (volume_spinbutton_changed_cb), (main):
4368         Add some stream switching and volume gui for playbin2.
4369
4370 2008-02-08  Wim Taymans  <wim.taymans@collabora.co.uk>
4371
4372         * gst/playback/gstplay-marshal.list:
4373         Added marshal for streamselector Tags.
4374
4375         * gst/playback/gstplaybasebin.c: (set_active_source):
4376         Streamselector now selects pads based on the pad object instead of its
4377         name.
4378
4379         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
4380         (init_group), (gst_play_bin_init), (get_group), (get_tags),
4381         (gst_play_bin_get_video_tags), (gst_play_bin_get_audio_tags),
4382         (gst_play_bin_get_text_tags),
4383         (gst_play_bin_set_current_video_stream),
4384         (gst_play_bin_set_current_audio_stream),
4385         (gst_play_bin_set_current_text_stream),
4386         (gst_play_bin_set_property), (gst_play_bin_get_property),
4387         (pad_added_cb), (pad_removed_cb), (autoplug_select_cb):
4388         Remove option to mute streams with the current-a/v/t property, we have
4389         this functionality in the flags.
4390         Add signals to notify when the number of A/V/T channels changed.
4391         Add action signals to get tags for the A/V/T streams.
4392         Implement setting the current A/V/T stream.
4393         Rearrange some things to simplify stream selection.
4394         Implement volume.
4395
4396         * gst/playback/gstplaysink.c: (gst_play_sink_set_volume),
4397         (gst_play_sink_get_volume), (gst_play_sink_set_property),
4398         (gst_play_sink_get_property), (gen_video_chain), (gen_audio_chain),
4399         (activate_vis), (gst_play_sink_reconfigure):
4400         * gst/playback/gstplaysink.h:
4401         Add and implement volume setting methods.
4402
4403         * gst/playback/gststreamselector.c: (gst_selector_pad_class_init),
4404         (gst_selector_pad_finalize), (gst_selector_pad_get_property),
4405         (gst_selector_pad_event), (gst_stream_selector_class_init),
4406         (gst_stream_selector_init), (gst_stream_selector_finalize),
4407         (gst_stream_selector_set_property),
4408         (gst_stream_selector_get_property),
4409         (gst_stream_selector_get_linked_pad),
4410         (gst_stream_selector_request_new_pad):
4411         * gst/playback/gststreamselector.h:
4412         Add pad properties for tags and status of pads.
4413         Keep tags on pads.
4414         Make active pad selection based on pad object instead of name.
4415
4416 2008-02-08  Stefan Kost  <ensonic@users.sf.net>
4417
4418         * configure.ac:
4419           Revert last change as we now check in gtk-doc.m4 for sed.
4420
4421 2008-02-08  Jan Schmidt  <Jan.Schmidt@sun.com>
4422
4423         * configure.ac:
4424         Find and subst SED when building the docs.
4425
4426 2008-02-08  Julien Moutte  <julien@fluendo.com>
4427
4428         * tests/examples/seek/seek.c: (stop_cb), (connect_bus_signals),
4429         (main): Make sure bus signals are reconnected when pressing STOP
4430         and then PLAY again for a parse launch pipeline. Fix a ref leak
4431         on the bus.
4432         * win32/common/config.h: Updated.
4433
4434 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
4435
4436         * configure.ac:
4437         Make DISABLE_DEPRECATED defined *only* during CVS, not during
4438         pre-releases or releases.
4439
4440 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
4441
4442         * configure.ac:
4443         * ext/gio/Makefile.am:
4444         Subst GIO_LDFLAGS to avoid undefined Makefile var error Zaheer is
4445         reporting
4446
4447 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
4448
4449         * docs/plugins/Makefile.am:
4450         Add the headers which need scanning for the GIO plugin. The rest of
4451         the docs still need migrating.
4452
4453 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
4454
4455         * ext/Makefile.am:
4456         * tests/check/Makefile.am:
4457         * tests/check/pipelines/.cvsignore:
4458         Add gio in a few more places.
4459
4460 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
4461
4462         * configure.ac:
4463         * ext/Makefile.am:
4464         * tests/check/Makefile.am:
4465         Move gio plugin from -bad and mark as experimental.
4466
4467 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
4468
4469         * gst-libs/gst/interfaces/mixeroptions.c:
4470         * gst-libs/gst/interfaces/mixertrack.c:
4471         Comment out a couple of other things which break the build when
4472         GST_DISABLE_DEPRECATED isn't on but -Werror is.
4473
4474 2008-02-07  Tim-Philipp Müller  <tim at centricular dot net>
4475
4476         * docs/libs/gst-plugins-base-libs-sections.txt:
4477           Fix pbutils header.
4478
4479 2008-02-07  Wim Taymans  <wim.taymans@collabora.co.uk>
4480
4481         * gst-libs/gst/rtsp/gstrtspmessage.c: (gst_rtsp_message_unset):
4482         Fix compiler warning.
4483
4484 2008-02-07  Wim Taymans  <wim.taymans@collabora.co.uk>
4485
4486         Patch by: Peter Kjellerstedt  <pkj at axis com>
4487
4488         * gst-libs/gst/sdp/gstsdpmessage.c: (is_multicast_address):
4489         Clear the addrinfo struct using memset. Fixes #514937.
4490
4491 2008-02-06  Wim Taymans  <wim.taymans@collabora.co.uk>
4492
4493         * gst/tcp/gstfdset.h:
4494         Remove unused field to same some memory.
4495
4496         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
4497         Mark action signals as such.
4498
4499 2008-02-06  Michael Smith <msmith@fluendo.com>
4500
4501         * ext/theora/theoradec.c: (_theora_granule_frame),
4502         (_inc_granulepos):
4503           Increment granulepos for new-bitstream versions appropriately.
4504           Fixes #514623.
4505
4506 2008-02-04  Wim Taymans  <wim.taymans@collabora.co.uk>
4507
4508         * tests/examples/seek/seek.c: (do_seek),
4509         (rate_spinbutton_changed_cb), (update_streams), (main):
4510         Remove obsolete stream_time reset after flushing seek, core does that
4511         automatically now.
4512         Improve accuracy of speed spinbutton.
4513         Only do playbin2 stuff when we actually use it.
4514
4515 2008-02-02  Tim-Philipp Müller  <tim at centricular dot net>
4516
4517         * tests/check/Makefile.am:
4518           Revert previous change of the test environment's GST_PLUGIN_PATH.
4519           The problem is not with the plugins, but with element factories
4520           and only occurs if elements are split out from existing plugins
4521           or if plugins change name (see #512740).
4522
4523 2008-02-02  Tim-Philipp Müller  <tim at centricular dot net>
4524
4525         * tests/check/Makefile.am:
4526           Fix the tests environment's GST_PLUGIN_PATH: we want the directory
4527           with the core's plugins first and our local build directories last,
4528           since we might be building against an installed core, and that
4529           core's plugin directory may contain older or other versions of
4530           our own -base plugins, but we really do want to test our local
4531           ones (if there are multiple plugins or element factories with the
4532           same name, those inspected last will trump those read in earlier).
4533           Fixes #512740 for the most part.
4534
4535 2008-02-02  Sebastian Dröge  <slomo@circular-chaos.org>
4536
4537         * configure.ac:
4538         * gst-libs/gst/rtsp/gstrtspconnection.c: (add_date_header):
4539         Use gmtime_r if available as gmtime is not MT-safe.
4540         Fixes bug #511810.
4541
4542 2008-02-02  Sebastian Dröge  <slomo@circular-chaos.org>
4543
4544         * gst-libs/gst/rtsp/gstrtspconnection.c: (add_date_header):
4545         Cast glong to time_t as time_t might have a different type on
4546         other platforms, like FreeBSD, and we get a compiler warning
4547         otherwise. Fixes bug #511825.
4548
4549 2008-02-01  Wim Taymans  <wim.taymans@collabora.co.uk>
4550
4551         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
4552         (get_group), (get_n_pads), (gst_play_bin_get_property),
4553         (pad_added_cb), (no_more_pads_cb), (perform_eos),
4554         (autoplug_select_cb), (deactivate_group):
4555         Remove stream-info, we going for something easier.
4556         Refactor getting the current group.
4557         Implement getting the number of audio/video/text streams.
4558
4559         * gst/playback/gststreamselector.c:
4560         (gst_stream_selector_class_init), (gst_stream_selector_init),
4561         (gst_stream_selector_get_property),
4562         (gst_stream_selector_request_new_pad),
4563         (gst_stream_selector_release_pad):
4564         * gst/playback/gststreamselector.h:
4565         Add property for number of pads.
4566
4567         * tests/examples/seek/seek.c: (set_scale), (update_flag),
4568         (vis_toggle_cb), (audio_toggle_cb), (video_toggle_cb),
4569         (text_toggle_cb), (update_streams), (msg_async_done),
4570         (msg_state_changed), (main):
4571         Block slider callback when updating the slider position.
4572         Add gui elements for controlling playbin2.
4573         Add callback for async_done that updates position/duration.
4574
4575 2008-02-01  Stefan Kost  <ensonic@users.sf.net>
4576
4577         * docs/plugins/Makefile.am:
4578         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
4579         * docs/plugins/gst-plugins-base-plugins-sections.txt:
4580         * docs/plugins/gst-plugins-base-plugins.hierarchy:
4581         * docs/plugins/gst-plugins-base-plugins.interfaces:
4582         * docs/plugins/gst-plugins-base-plugins.prerequisites:
4583           First round of plugin docs cleansups.
4584
4585         * docs/plugins/inspect/plugin-adder.xml:
4586         * docs/plugins/inspect/plugin-alsa.xml:
4587         * docs/plugins/inspect/plugin-audioconvert.xml:
4588         * docs/plugins/inspect/plugin-audiorate.xml:
4589         * docs/plugins/inspect/plugin-audioresample.xml:
4590         * docs/plugins/inspect/plugin-audiotestsrc.xml:
4591         * docs/plugins/inspect/plugin-cdparanoia.xml:
4592         * docs/plugins/inspect/plugin-decodebin.xml:
4593         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
4594         * docs/plugins/inspect/plugin-gdp.xml:
4595         * docs/plugins/inspect/plugin-gnomevfs.xml:
4596         * docs/plugins/inspect/plugin-libvisual.xml:
4597         * docs/plugins/inspect/plugin-ogg.xml:
4598         * docs/plugins/inspect/plugin-pango.xml:
4599         * docs/plugins/inspect/plugin-subparse.xml:
4600         * docs/plugins/inspect/plugin-tcp.xml:
4601         * docs/plugins/inspect/plugin-theora.xml:
4602         * docs/plugins/inspect/plugin-typefindfunctions.xml:
4603         * docs/plugins/inspect/plugin-video4linux.xml:
4604         * docs/plugins/inspect/plugin-videorate.xml:
4605         * docs/plugins/inspect/plugin-videoscale.xml:
4606         * docs/plugins/inspect/plugin-videotestsrc.xml:
4607         * docs/plugins/inspect/plugin-volume.xml:
4608         * docs/plugins/inspect/plugin-vorbis.xml:
4609         * docs/plugins/inspect/plugin-ximagesink.xml:
4610         * docs/plugins/inspect/plugin-xvimagesink.xml:
4611           Regenerate.
4612
4613         * ext/ogg/Makefile.am:
4614         * ext/ogg/gstoggmux.c:
4615         * ext/ogg/gstoggmux.h:
4616           Add header for oggmux. the c-file needs a doc blob still.
4617
4618 2008-02-01  Wim Taymans  <wim.taymans@collabora.co.uk>
4619
4620         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
4621
4622         * gst-libs/gst/rtp/gstrtpbuffer.c:
4623         (gst_rtp_buffer_set_extension_data):
4624         * gst-libs/gst/rtp/gstrtpbuffer.h:
4625         * tests/check/libs/rtp.c: (GST_START_TEST), (rtp_suite):
4626         Add gst_rtp_buffer_set_extension_data() 
4627         Add a unit test for this addition. Fixes #511478.
4628         API: GstRTPBuffer:gst_rtp_buffer_set_extension_data()
4629
4630 2008-01-30  Jan Schmidt  <jan.schmidt@sun.com>
4631
4632         * configure.ac:
4633         Back to CVS
4634
4635 === release 0.10.17 ===
4636
4637 2008-01-30  Jan Schmidt <jan.schmidt@sun.com>
4638
4639         * configure.ac:
4640           releasing 0.10.17, "Peanut Butter and Jelly"
4641
4642 2008-01-30  Jan Schmidt  <jan.schmidt@sun.com>
4643
4644         * gst-libs/gst/interfaces/mixeroptions.c:
4645         * gst-libs/gst/interfaces/mixertrack.c:
4646         Also remove the conditional registration of the signals
4647         that disappeared with the ABI change in 0.10.14
4648
4649 2008-01-30  Jan Schmidt  <jan.schmidt@sun.com>
4650
4651         * gst-libs/gst/rtsp/gstrtspconnection.c:
4652         Revert patch to gstrtspconnection.c for brown paper bag
4653         release of -base. Re-opens: #511825
4654
4655 2008-01-30  Jan Schmidt  <jan.schmidt@sun.com>
4656
4657         * gst-libs/gst/interfaces/mixeroptions.h:
4658         * gst-libs/gst/interfaces/mixertrack.h:
4659         Change the way these deprecated function pointers are removed
4660         so that the compiled ABI is unconditionally smaller. This 
4661         sets in stone an ABI break that actually occurred when the
4662         things were deprecated in 0.10.14, which seems to be the best
4663         fix as the only known users are oss-mixer and sunaudio-mixer in 
4664         gst-plugins-good.
4665         Fixes: #513018
4666
4667 2008-01-30  Tim-Philipp Müller  <tim at centricular dot net>
4668
4669         * win32/common/libgstpbutils.def:
4670           Export the two new _get_type() functions which are needed
4671           by the python bindings.
4672
4673 2008-01-29  Sebastian Dröge  <slomo@circular-chaos.org>
4674
4675         * gst-libs/gst/rtsp/gstrtspconnection.c: (add_date_header):
4676         Cast glong to time_t as time_t might have a different type on
4677         other platforms, like FreeBSD, and we get a compiler warning
4678         otherwise. Fixes bug #511825.
4679
4680 2008-01-29  Sebastian Dröge  <slomo@circular-chaos.org>
4681
4682         * gst-libs/gst/audio/gstaudiofilter.c:
4683         (gst_audio_filter_class_init):
4684         Initialize the GstRingerBuffer class to get it's debug category
4685         initialized. gst_ring_buffer_parse_caps() uses the ringbuffer debug
4686         category and otherwise we get some g_critical(). Fixes bug #512334.
4687
4688 2008-01-28  Jan Schmidt  <jan.schmidt@sun.com>
4689
4690         * configure.ac:
4691         Back to CVS
4692
4693 === release 0.10.16 ===
4694
4695 2008-01-28  Jan Schmidt <jan.schmidt@sun.com>
4696
4697         * configure.ac:
4698           releasing 0.10.16, "Scheduled Interruption"
4699
4700 2008-01-22  Wim Taymans  <wim.taymans@collabora.co.uk>
4701
4702         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
4703
4704         * gst-libs/gst/rtp/gstrtpbuffer.c:
4705         (gst_rtp_buffer_get_extension_data):
4706         Fix typos and wrong extension check. Fixes #511274.
4707
4708 2008-01-18  Jan Schmidt  <jan.schmidt@sun.com>
4709
4710         * po/sk.po:
4711         Oops - add new sk.po mentioned in the LINGUAS I just committed
4712
4713 2008-01-17  Jan Schmidt  <jan.schmidt@sun.com>
4714
4715         * po/LINGUAS:
4716         Add ca translation to the disted list.
4717
4718         * win32/vs6/libgstsdp.dsp:
4719         Convert line endings to CRLF
4720
4721 2008-01-17  Sebastien Moutte <sebastien@moutte.net>
4722
4723         * win32/MANIFEST:
4724         Add win32/vs6/libgstrtsp.dsp to MANIFEST
4725
4726 2008-01-14  Jan Schmidt  <jan.schmidt@sun.com>
4727
4728         * win32/common/libgstsdp.def:
4729         * win32/common/libgstvideo.def:
4730         Add new API declarations
4731
4732 2008-01-14  Jan Schmidt  <jan.schmidt@sun.com>
4733
4734         * ext/theora/gsttheoradec.h:
4735         * ext/theora/gsttheoraparse.h:
4736         * ext/theora/theoradec.c:
4737         * ext/theora/theoraparse.c:
4738         Take a 2nd stab at handling libtheora granulepos changes in the decoder
4739         and parser by inspecting the bitstream version of the incoming data.
4740
4741 2008-01-14  Sebastian Dröge  <slomo@circular-chaos.org>
4742
4743         * configure.ac:
4744         * pkgconfig/Makefile.am:
4745         * pkgconfig/gstreamer-audio-uninstalled.pc.in:
4746         * pkgconfig/gstreamer-audio.pc.in:
4747         * pkgconfig/gstreamer-cdda-uninstalled.pc.in:
4748         * pkgconfig/gstreamer-cdda.pc.in:
4749         * pkgconfig/gstreamer-fft-uninstalled.pc.in:
4750         * pkgconfig/gstreamer-fft.pc.in:
4751         * pkgconfig/gstreamer-floatcast-uninstalled.pc.in:
4752         * pkgconfig/gstreamer-floatcast.pc.in:
4753         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
4754         * pkgconfig/gstreamer-interfaces.pc.in:
4755         * pkgconfig/gstreamer-netbuffer-uninstalled.pc.in:
4756         * pkgconfig/gstreamer-netbuffer.pc.in:
4757         * pkgconfig/gstreamer-pbutils-uninstalled.pc.in:
4758         * pkgconfig/gstreamer-pbutils.pc.in:
4759         * pkgconfig/gstreamer-riff-uninstalled.pc.in:
4760         * pkgconfig/gstreamer-riff.pc.in:
4761         * pkgconfig/gstreamer-rtp-uninstalled.pc.in:
4762         * pkgconfig/gstreamer-rtp.pc.in:
4763         * pkgconfig/gstreamer-rtsp-uninstalled.pc.in:
4764         * pkgconfig/gstreamer-rtsp.pc.in:
4765         * pkgconfig/gstreamer-sdp-uninstalled.pc.in:
4766         * pkgconfig/gstreamer-sdp.pc.in:
4767         * pkgconfig/gstreamer-tag-uninstalled.pc.in:
4768         * pkgconfig/gstreamer-tag.pc.in:
4769         * pkgconfig/gstreamer-video-uninstalled.pc.in:
4770         * pkgconfig/gstreamer-video.pc.in:
4771         Provide one pkg-config file for every gst-plugins-base library.
4772         This makes linking to those libraries much more intuitive and
4773         provides standard pkg-config behaviour for them. Fixes bug #499697.
4774
4775 2008-01-13  David Schleef  <ds@schleef.org>
4776
4777         * gst/videoscale/vs_4tap.c:
4778           Fix valgrind error on 4tap scaling method.
4779
4780 2008-01-13  Sebastien Moutte  <sebastien@moutte.net>
4781
4782         * gst-libs/gst/sdp/gstsdpmessage.c: (is_multicast_address):
4783         Include Winsock2.h for VS6 and use a different way initialize
4784         hints structure so it can build with VS6.
4785         * win32/MANIFEST:
4786         * win32/vs6/libgstsdp.dsp:
4787         * win32/common/libgstsdp.def:
4788         Add new files for libgstsdp.
4789         * win32/vs6/grammar.dsp:
4790         Copy pbutils-enumtypes* from win32/common to pbutils sources folder.
4791         * win32/vs6/gst_plugins_base.dsw:
4792         * win32/vs6/libgstdecodebin.dsp:
4793         * win32/vs6/libgstdecodebin2.dsp:
4794         * win32/vs6/libgstplaybin.dsp:
4795         * win32/vs6/libgstvolume.dsp:
4796         Add new dependencies to the link list.
4797
4798 2008-01-13  Julien Moutte  <julien@fluendo.com>
4799
4800         * win32/common/config.h:
4801         * win32/common/gstrtsp-enumtypes.c: (gst_rtsp_result_get_type),
4802         (gst_rtsp_event_get_type), (gst_rtsp_family_get_type),
4803         (gst_rtsp_state_get_type), (gst_rtsp_version_get_type),
4804         (gst_rtsp_method_get_type), (gst_rtsp_auth_method_get_type),
4805         (gst_rtsp_header_field_get_type), (gst_rtsp_status_code_get_type):
4806         * win32/common/interfaces-enumtypes.c:
4807         (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
4808         (gst_mixer_message_type_get_type), (gst_mixer_flags_get_type),
4809         (gst_mixer_track_flags_get_type),
4810         (gst_tuner_channel_flags_get_type):
4811         * win32/common/multichannel-enumtypes.c:
4812         (gst_audio_channel_position_get_type):
4813         * win32/common/pbutils-enumtypes.c:
4814         (gst_install_plugins_return_get_type):
4815         * win32/common/pbutils-enumtypes.h: Update/Add generated files
4816         in the win32 build directory.
4817
4818 2008-01-12  Jan Schmidt  <Jan.Schmidt@sun.com>
4819
4820         * tests/check/Makefile.am:
4821         Fix CFLAGS to also pull in the gstcheck cflags from AM_CFLAGS.
4822
4823         * tests/check/elements/audiorate.c: (do_perfect_stream_test):
4824         * tests/check/elements/playbin.c:
4825         * tests/check/libs/mixer.c: (test_element_interface_supported),
4826         (gst_implements_interface_init):
4827         * tests/check/libs/rtp.c: (GST_START_TEST):
4828         Fix various assignment type mismatches.
4829
4830 2008-01-12  Jan Schmidt  <Jan.Schmidt@sun.com>
4831
4832         * configure.ac:
4833         * gst-libs/gst/rtsp/Makefile.am:
4834         Add test to see if hstrerror is available or if we need libresolv
4835         (Solaris) for it, then use it in libgstrtsp.
4836
4837 2008-01-12  Jan Schmidt  <Jan.Schmidt@sun.com>
4838
4839         * gst-libs/gst/tag/Makefile.am:
4840         Fix include path order
4841
4842 2008-01-11  Edward Hervey  <edward.hervey@collabora.co.uk>
4843
4844         * gst-libs/gst/pbutils/install-plugins.c:
4845         (gst_install_plugins_context_copy),
4846         (gst_install_plugins_context_get_type):
4847         * gst-libs/gst/pbutils/install-plugins.h:
4848         Add GBoxed GType for GstInstallPluginsContext, this eases the wrapping
4849         for bindings.
4850
4851 2008-01-11  Michael Smith <msmith@fluendo.com>
4852
4853         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
4854         (_theora_granule_frame), (_theora_granule_start_time),
4855         (theora_dec_sink_convert), (theora_dec_decode_buffer):
4856           Adapt for post-alpha meaning of granulepos, when we
4857           have a newer version of libtheora.
4858         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
4859         (theora_enc_get_ogg_packet_end_time), (theora_enc_sink_event),
4860         (theora_enc_is_discontinuous), (theora_enc_chain):
4861           Likewise.
4862         * tests/check/Makefile.am:
4863           Link libtheora into theoraenc test so we can check which version of
4864           libtheora we're testing against.
4865         * tests/check/pipelines/theoraenc.c: (check_libtheora),
4866         (check_buffer_granulepos),
4867         (check_buffer_granulepos_from_starttime), (GST_START_TEST),
4868         (theoraenc_suite):
4869           Adapt tests to check the values that are now defined for theora; make
4870           the tests backwards-adapt the passed values if we're running against an
4871           old libtheora.
4872           Fixes #497964
4873
4874 2008-01-10  Tim-Philipp Müller  <tim at centricular dot net>
4875
4876         * gst-libs/gst/audio/gstbaseaudiosink.c:
4877           (gst_base_audio_sink_class_init):
4878         * gst-libs/gst/audio/gstbaseaudiosrc.c:
4879           (gst_base_audio_src_class_init):
4880           Ref audio clock class from a thread-safe context to make sure
4881           we're not bit by GObjects lack of thread-safety here (#349410),
4882            however unlikely that may be in practice.
4883
4884 2008-01-10  Sebastian Dröge  <slomo@circular-chaos.org>
4885
4886         * autogen.sh:
4887           Add -Wno-portability to the automake parameters to stop warnings
4888           about GNU make extensions being used. We require GNU make in almost
4889           every Makefile anyway.
4890           
4891         * configure.ac:
4892           Use AM_PROG_CC_C_O as a compiler that accepts both -c and -o
4893           at the same time is required for per target flags.
4894
4895 2008-01-08  Tim-Philipp Müller  <tim at centricular dot net>
4896
4897         * gst-libs/gst/tag/gsttagdemux.c: (gst_tag_demux_pull_start_tag):
4898           Post an error message if we can't pull as many bytes as we need
4899           for the tag. This makes sure the user gets to see a proper error
4900           message if a file with a partial ID3 tag is fed to decodebin, and
4901           not a 'no ID3 tag demuxer' error, which would be confusing
4902           (see #508138).
4903
4904 2008-01-08  Tim-Philipp Müller  <tim at centricular dot net>
4905
4906         * gst-libs/gst/pbutils/descriptions.c: (formats):
4907           Add description strings for ID3, APE, and ICY tags.
4908
4909 2008-01-08  Tim-Philipp Müller  <tim at centricular dot net>
4910
4911         * gst/playback/gstdecodebin.c: (try_to_link_1):
4912           Make sure we error out correctly if we can't activate one of
4913           the elements we've added.  Fixes #508138.
4914           
4915 2008-01-07  Tim-Philipp Müller  <tim at centricular dot net>
4916
4917         Patch by: Bastien Nocera <hadess at hadess net>
4918
4919         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume),
4920           (check_if_volumes_are_the_same), (gst_alsa_mixer_set_volume):
4921           Use snd_mixer_selem_set_{playback|capture}_volume_all() if
4922           the volume is the same for all channels. This works around
4923           some problem in alsa that leaves us with inconsistent state
4924           for some reason (#486840).
4925
4926 2008-01-07  Tim-Philipp Müller  <tim at centricular dot net>
4927
4928         Patch by: Jerone Young <jerone at gmail com>
4929
4930         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_find_master_mixer):
4931           If there's no mixer track by the name of 'Master' or 'Front',
4932           check if there's one called 'PCM' before trying the generic
4933           fallback logic (fixes #506928, where we pick 'Mic' as master
4934           track for the AD1984 card in a Thinkpad T61/X61 laptop).
4935
4936 2008-01-07  Wim Taymans  <wim.taymans@collabora.co.uk>
4937
4938         * gst/playback/gstplay-enum.c:
4939         (register_gst_autoplug_select_result),
4940         (gst_autoplug_select_result_get_type), (register_gst_play_flags),
4941         (gst_play_flags_get_type):
4942         * gst/playback/gstplay-enum.h:
4943         Add enums for configuration flags.
4944
4945         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
4946         (init_group), (gst_play_bin_init), (gst_play_bin_set_property),
4947         (gst_play_bin_get_property), (no_more_pads_cb),
4948         (autoplug_select_cb), (gst_play_bin_change_state):
4949         Merge mode with flags.
4950         Add more property getters/setters, defaults and docs.
4951         Add properties to get number of audio/video/text streams.
4952         Create sink object in _init so that we can always rely on it being
4953         there.
4954
4955         * gst/playback/gstplaysink.c: (gst_play_sink_init),
4956         (gen_video_chain), (gen_audio_chain), (gen_vis_chain),
4957         (activate_vis), (gst_play_sink_reconfigure),
4958         (gst_play_sink_set_flags), (gst_play_sink_get_flags),
4959         (gst_play_sink_change_state):
4960         * gst/playback/gstplaysink.h:
4961         Use flags to configure the sink pipelines.
4962         Add tee before audio pipeline so that we can use it for visualisations.
4963         Start working on integrating visualisations.
4964         Remove mode, we can do everything with the flags now.
4965         Add method to configue the sink pipeline.
4966
4967 2008-01-06  Tim-Philipp Müller  <tim at centricular dot net>
4968
4969         * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
4970           (check_buffer_timestamp), (check_buffer_duration):
4971           Turn these functions into macros so we can see right away
4972           where the failure occured.
4973
4974 2008-01-05  Julien Moutte  <julien@fluendo.com>
4975
4976         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new): Add
4977         debugging information to understand how X calculates the stride
4978         for XvImages.
4979
4980 2008-01-03  Sebastian Dröge  <slomo@circular-chaos.org>
4981
4982         * gst/volume/Makefile.am:
4983         * gst/volume/gstvolume.c: (volume_choose_func),
4984         (gst_volume_base_init), (gst_volume_class_init), (gst_volume_init),
4985         (volume_setup):
4986         * gst/volume/gstvolume.h:
4987         Use GstAudioFilter as base class for the volume element instead of
4988         plain GstBaseTransform.
4989
4990 2008-01-03  Sebastian Dröge  <slomo@circular-chaos.org>
4991
4992         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type):
4993         Don't set element details for the abstract GstAudioFilter class.
4994
4995 2008-01-02  Sebastian Dröge  <slomo@circular-chaos.org>
4996
4997         * gst-libs/gst/audio/gstaudiofilter.c:
4998         (gst_audio_filter_class_init), (gst_audio_filter_get_unit_size):
4999         Implement get_unit_size() vmethod of GstBaseTransform.
5000
5001 2008-01-01  Edward Hervey  <edward.hervey@collabora.co.uk>
5002
5003         * gst-libs/gst/pbutils/Makefile.am:
5004         * gst-libs/gst/pbutils/pbutils.h:
5005         Use glib-enum generator to have a proper enum GType for
5006         GST_TYPE_INSTALL_PLUGINS_RETURN so we can easily wrap it in bindings.
5007
5008 2007-12-31  David Schleef  <ds@schleef.org>
5009
5010         * tests/check/Makefile.am:
5011         * tests/check/pipelines/theoraenc.c:
5012           Reenable theoraenc test, which fails on the buildbot but
5013           not locally.
5014
5015 2007-12-31  David Schleef  <ds@schleef.org>
5016
5017         * docs/libs/.cvsignore:
5018         * docs/plugins/.cvsignore:
5019           Add *-undeclared.txt to fix buildbot.
5020
5021 2007-12-31  David Schleef  <ds@schleef.org>
5022
5023         * tests/check/Makefile.am:
5024           Second attempt at disabling theoraenc test long enough to
5025           get buildbot to compile -base.
5026
5027 2007-12-31  David Schleef  <ds@schleef.org>
5028
5029         * tests/check/pipelines/theoraenc.c:
5030           Disable theoraenc test long enough to get the buildbot to
5031           compile a recent -base.
5032
5033 2007-12-31  Wim Taymans  <wim.taymans@collabora.co.uk>
5034
5035         * tests/examples/seek/seek.c: (stop_cb):
5036         Make sure we reset the slider value to 0.0 without racing against a
5037         possible g_idle that sets it to something else.
5038
5039 2007-12-31  Thijs Vermeir  <thijsvermeir@gmail.com>
5040
5041         * sys/ximage/ximagesink.c:
5042         fix typo
5043
5044 2007-12-30  Wim Taymans  <wim.taymans@collabora.co.uk>
5045
5046         * gst-libs/gst/rtsp/gstrtspdefs.c: (rtsp_init_status):
5047         * gst-libs/gst/rtsp/gstrtspdefs.h:
5048         Add Location header so that we can start implementing redirects.
5049         See #506025.
5050
5051 2007-12-29  Thijs Vermeir  <thijsvermeir@gmail.com>
5052
5053         * gst/subparse/gstssaparse.c:
5054         combine if's
5055
5056 2007-12-29  Thijs Vermeir  <thijsvermeir@gmail.com>
5057
5058         * gst/subparse/gstssaparse.c:
5059         remove duplicate log message
5060
5061 2007-12-29  Sebastian Dröge  <slomo@circular-chaos.org>
5062
5063         * ext/libvisual/visual.c: (gst_visual_chain):
5064         Fix 'xyz may be used uninitialized' compiler warnings caused
5065         by broken g_assert_not_reached() macro in GLib-2.15.x and don't
5066         abort() in any case but properly report the error.
5067
5068 2007-12-28  Wim Taymans  <wim.taymans@collabora.co.uk>
5069
5070         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
5071         (gst_play_bin_finalize), (gst_play_bin_set_uri),
5072         (gst_play_bin_set_suburi), (gst_play_bin_set_property),
5073         (gst_play_bin_get_property), (pad_removed_cb), (drained_cb),
5074         (autoplug_select_cb), (activate_group), (deactivate_group),
5075         (setup_next_source), (save_current_group),
5076         (gst_play_bin_change_state):
5077         Code cleanups.
5078         Remove next-uri, we can use the uri property just fine.
5079         Fix some crasher.
5080         Unref uridecodebin when switching.
5081         Fix going to READY.
5082
5083         * gst/playback/gstplaysink.c: (gst_play_sink_class_init),
5084         (gst_play_sink_init), (gst_play_sink_dispose),
5085         (gst_play_sink_finalize), (gst_play_sink_vis_unblocked),
5086         (gst_play_sink_vis_blocked), (gst_play_sink_set_video_sink),
5087         (gst_play_sink_set_audio_sink), (gst_play_sink_set_vis_plugin),
5088         (gst_play_sink_set_property), (gst_play_sink_get_property),
5089         (gen_video_chain), (gen_text_element), (gen_audio_chain),
5090         (gen_vis_element), (gst_play_sink_get_mode),
5091         (gst_play_sink_set_mode), (gst_play_sink_set_flags),
5092         (gst_play_sink_get_flags), (gst_play_sink_request_pad),
5093         (gst_play_sink_release_pad), (gst_play_sink_send_event_to_sink),
5094         (gst_play_sink_change_state):
5095         * gst/playback/gstplaysink.h:
5096         Add some locking to make things threadsafe.
5097
5098         * gst/playback/test7.c: (about_to_finish_cb):
5099         Fix test.
5100
5101 2007-12-22  Tim-Philipp Müller  <tim at centricular dot net>
5102
5103         * gst/videoscale/gstvideoscale.c: (gst_video_scale_set_property),
5104           (gst_video_scale_get_property), (gst_video_scale_transform_caps),
5105           (gst_video_scale_transform):
5106           Don't claim to be able to handle/transform caps that can't really
5107           be handled by the currently selected scaling method (here: RGB or
5108           packed YUV with 4-tap method). Also add locking to method property.
5109
5110         * tests/check/pipelines/simple-launch-lines.c: (setup_pipeline),
5111           (test_basetransform_based):
5112           Some test pipelines for the above (not entirely valgrind clean yet
5113           apparently).
5114
5115 2007-12-21  David Schleef  <ds@schleef.org>
5116
5117         * gst-libs/gst/video/video.c:
5118         * gst-libs/gst/video/video.h:
5119           Add additional RGBA and RGB-24 video formats.
5120
5121 2007-12-21  Tim-Philipp Müller  <tim at centricular dot net>
5122
5123         * tests/check/elements/playbin.c: (test_sink_usage_video_only_stream),
5124           (test_suburi_error_unknowntype), (test_suburi_error_invalidfile),
5125           (test_suburi_error_wrongproto), (test_missing_primary_decoder):
5126         * tests/check/libs/cddabasesrc.c: (GST_START_TEST), (GST_START_TEST),
5127           (cddabasesrc_suite):
5128           Don't use GST_PLUGIN_DEFINE_STATIC, it's not portable and will be
5129           deprecated in the future (see #498924).
5130
5131 2007-12-21  Tim-Philipp Müller  <tim at centricular dot net>
5132
5133         * gst/playback/gststreamselector.c: (gst_selector_pad_event):
5134           Don't leak event.
5135
5136 2007-12-20  Thijs Vermeir <thijsvermeir@gmail.com>
5137
5138         * gst-libs/gst/riff/riff-read.c:
5139         Use GST_ROUND_UP_2 macro
5140
5141 2007-12-20  Tim-Philipp Müller  <tim at centricular dot net>
5142
5143         * gst/playback/.cvsignore:
5144           Ignore more.
5145
5146 2007-12-20  Tim-Philipp Müller  <tim at centricular dot net>
5147
5148         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init):
5149         * gst/playback/gstplaybasebin.c: (set_subtitles_visible),
5150           (set_active_source):
5151         * gst/playback/gstplaybasebin.h:
5152         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
5153           (setup_sinks), (playbin_set_subtitles_visible):
5154           Make switching off of subtitles work. To avoid all kind of
5155           problems with unlinking of the subtitle input, we just keep
5156           the subtitle inputs linked as they are and tell textoverlay
5157           not to render them. Fixes #373011.
5158           Other subtitle switching issues (esp. when there are both
5159           external and in-stream subtitles) remain. They'll be solved
5160           in playbin2.
5161
5162 2007-12-18  Wim Taymans  <wim.taymans@collabora.co.uk>
5163
5164         * gst/playback/gststreamselector.c: (gst_selector_pad_init):
5165         Init the pad segment too.
5166
5167 2007-12-18  Wim Taymans  <wim.taymans@collabora.co.uk>
5168
5169         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func),
5170         (gst_audioringbuffer_open_device),
5171         (gst_audioringbuffer_close_device), (gst_audioringbuffer_acquire),
5172         (gst_audioringbuffer_release), (gst_audioringbuffer_start),
5173         (gst_audioringbuffer_pause), (gst_audioringbuffer_stop),
5174         (gst_audio_sink_create_ringbuffer):
5175         Improve debug output.
5176
5177         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_start),
5178         (gst_ring_buffer_pause), (gst_ring_buffer_delay):
5179         Prevent some functions from doing things and failing when the
5180         ringbuffer is not yet acquired.
5181
5182 2007-12-18  Sebastian Dröge  <slomo@circular-chaos.org>
5183
5184         * gst-libs/gst/interfaces/interfaces.h:
5185           Also remove interfaces.h from CVS as it is not needed anymore.
5186
5187 2007-12-18  Sebastian Dröge  <slomo@circular-chaos.org>
5188
5189         * gst-libs/gst/interfaces/Makefile.am:
5190           interfaces.h is not used anymore so remove it from the build
5191           process.
5192
5193 2007-12-17  David Schleef  <ds@schleef.org>
5194
5195         * gst/videotestsrc/gstvideotestsrc.c:
5196         * gst/videotestsrc/gstvideotestsrc.h:
5197           Add a "blink" pattern.  Turn on the pain.  Apologies.  It's useful
5198           for testing vertical refresh synchronization.
5199
5200 2007-12-17  David Schleef  <ds@schleef.org>
5201
5202         * docs/libs/gst-plugins-base-libs-sections.txt:
5203         * gst-libs/gst/video/video.c:
5204         * gst-libs/gst/video/video.h:
5205           Add new GstVideFormat enum and write a bunch of helper functions
5206           based around it.
5207
5208 2007-12-17  Tim-Philipp Müller  <tim at centricular dot net>
5209
5210         * Makefile.am:
5211           Use new common/win32.mak.
5212
5213 2007-12-17  Wim Taymans  <wim.taymans@collabora.co.uk>
5214
5215         * gst-libs/gst/audio/gstbaseaudiosrc.c:
5216         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
5217         Add debug info.
5218         When going from PLAYING to PAUSED, pause the ringbuffer before calling
5219         the parent state change function, just like the audiosink, because the
5220         parent waits for the element to finish its processing before completing
5221         the state change. This makes going to PAUSED a lot snappier.
5222         When going from READY to PAUSED, don't allow the ringbuffer to start
5223         yet.
5224
5225 2007-12-17  Edward Hervey  <edward.hervey@collabora.co.uk>
5226
5227         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
5228         Yet another fix for broken software that produce files with an empty
5229         blockalign field. Instead of completely failing, make a second attempt
5230         at guessing the width/depth by looking at strf->size.
5231
5232 2007-12-16  Tim-Philipp Müller  <tim at centricular dot net>
5233
5234         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_do_seek),
5235           (gst_cdda_base_src_handle_track_seek), (gst_cdda_base_src_create):
5236         * gst-libs/gst/pbutils/install-plugins.c:
5237           (gst_install_plugins_spawn_child), (gst_install_plugins_supported):
5238         * gst-libs/gst/pbutils/missing-plugins.c:
5239           (gst_missing_plugin_message_get_installer_detail),
5240           (gst_missing_encoder_installer_detail_new):
5241         * gst-libs/gst/rtsp/gstrtspconnection.c: (gst_rtsp_connection_send):
5242         * gst-libs/gst/rtsp/gstrtspmessage.c: (gst_rtsp_message_unset):
5243           Turn a few g_assert_not_reached() into g_return_val_if_reached() to
5244           avoid compiler warnings (#503930).
5245
5246 2007-12-17  Edward Hervey  <edward.hervey@collabora.co.uk>
5247
5248         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
5249         Be apologetic of software that use the 'jpeg' instead of 'JPEG' FOURCC
5250         for jpeg video streams.
5251         Add the 'avc1'/'AVC1' fourcc mapping for h264, same software-comment as
5252         for the above modification.
5253
5254 2007-12-15  Tim-Philipp Müller  <tim at centricular dot net>
5255
5256         * gst-libs/gst/interfaces/xoverlay.c: (gst_x_overlay_expose),
5257           (gst_x_overlay_handle_events):
5258           More guards (we don't want klass to end up being NULL).
5259
5260 2007-12-14  Sebastian Dröge  <slomo@circular-chaos.org>
5261
5262         * configure.ac:
5263         * gst/volume/gstvolume.c: (gst_volume_init):
5264           Use new gst_base_transform_set_gap_aware() function as volume
5265           correctly handles GST_BUFFER_FLAG_GAP. Require core 0.10.15.1 
5266           for this.
5267
5268 2007-12-14  Wim Taymans  <wim.taymans@collabora.co.uk>
5269
5270         * tests/examples/seek/seek.c: (msg_segment_done), (main):
5271         Don't go to READY on EOS as this avoids testing of seeking and
5272         restarting after EOS, use the stop button when you want to READY.
5273         Don't try to do a flushing seek in segment-done, it does not make
5274         sense to use this for gapless playback and is not needed.
5275
5276 2007-12-14  Wim Taymans  <wim.taymans@collabora.co.uk>
5277
5278         * gst/playback/gstqueue2.c: (gst_queue_init), (gst_queue_finalize),
5279         (reset_rate_timer), (update_in_rates), (update_out_rates),
5280         (gst_queue_locked_enqueue), (gst_queue_locked_dequeue),
5281         (gst_queue_chain), (gst_queue_loop):
5282         Use separate timers for input and output rates.
5283         Pause measuring the output rate when we block for more data.
5284         See #503262.
5285
5286 2007-12-14  Wim Taymans  <wim.taymans@collabora.co.uk>
5287
5288         * gst/playback/gstqueue2.c: (gst_queue_chain):
5289         Pause the timer to measure the input rate when we block because the
5290         queue is filled. See #503262.
5291
5292 2007-12-13  Wim Taymans  <wim.taymans@collabora.co.uk>
5293
5294         Patch by: Peter Kjellerstedt  <pkj at axis com>
5295
5296         * gst-libs/gst/rtsp/gstrtspconnection.c:
5297         (gst_rtsp_connection_free):
5298         Close control sockets. Fixes #503440.
5299
5300 2007-12-13  Wim Taymans  <wim.taymans@collabora.co.uk>
5301
5302         * gst/playback/gstdecodebin2.c: (analyze_new_pad), (connect_pad):
5303         Expose the right pad in the right place with the right element.
5304
5305 2007-12-13  Tim-Philipp Müller  <tim at centricular dot net>
5306
5307         * gst-libs/gst/pbutils/descriptions.c: (formats):
5308           Add description for 'private' dts caps (who come up with that name?).
5309
5310 2007-12-13  Tim-Philipp Müller  <tim at centricular dot net>
5311
5312         * Makefile.am:
5313           Add check-exports target and run it with 'make check'.
5314
5315         * configure.ac:
5316           Be stricter about what we export in our libraries: change regexp so that
5317           we only export _gst_foo(), but not __gst_foo().
5318
5319         * gst-libs/gst/cdda/base64.h: (rfc822_binary):
5320         * gst-libs/gst/cdda/sha1.h: (sha_init), (sha_update), (sha_final):
5321           Change internal functions to __gst_foo so they dont' get exported.
5322
5323         * win32/common/libgstaudio.def:
5324           Add missing symbols.
5325
5326 2007-12-11  David Schleef  <ds@schleef.org>
5327
5328         * ChangeLog: remove conflict markers
5329
5330 2007-12-11  Tim-Philipp Müller  <tim at centricular dot net>
5331
5332         * ext/gnomevfs/Makefile.am:
5333         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_unicodify):
5334           Use gst_tag_freeform_string_to_utf8() here, which also takes
5335           into account any character sets specified by the user via
5336           environment variables.
5337
5338 2007-12-10  Wim Taymans  <wim.taymans@gmail.com>
5339
5340         * gst/audioconvert/Makefile.am:
5341         Also link to libm.
5342
5343 2007-12-10  Wim Taymans  <wim.taymans@gmail.com>
5344
5345         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
5346         No need for floating point operations here. avoids having to link
5347         against the math library too.
5348
5349 2007-12-10  Tim-Philipp Müller  <tim at centricular dot net>
5350
5351         * gst-libs/gst/pbutils/descriptions.c: (formats),
5352           (format_info_get_desc):
5353         * tests/check/libs/pbutils.c: (GST_START_TEST), (caps_strings),
5354           (GST_START_TEST):
5355           Add one or two missing formats.  Generate ADPCM description
5356           dynamically depending on layout/format.
5357
5358 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
5359
5360         * configure.ac:
5361           Don't define GST_DISABLE_DEPRECATED for releases. Fixes #498181.
5362
5363 2007-12-08  Tim-Philipp Müller  <tim at centricular dot net>
5364
5365         Patch by: Robin Stocker <robin dot stocker at gmx dot ch>
5366
5367         * gst/subparse/gstsubparse.c: (gst_sub_parse_data_format_autodetect):
5368           Some .srt files start with chunk number 0 and not chunk number 1,
5369           recognise and accept those as well (fixes #502497).
5370
5371         * tests/check/elements/subparse.c: (srt_input), (srt_input0),
5372           (test_src):
5373           Add unit test for the above.
5374
5375 2007-12-06  Wim Taymans  <wim.taymans@gmail.com>
5376
5377         * gst/playback/gstplay-enum.c:
5378         (register_gst_autoplug_select_result),
5379         (gst_autoplug_select_result_get_type):
5380         * gst/playback/gstplay-enum.h:
5381         Add missing files.
5382
5383 2007-12-05  Wim Taymans  <wim.taymans@gmail.com>
5384
5385         * gst/playback/Makefile.am:
5386         Group decodebin2 and uridecodebin into the same plugin so that they
5387         can share the GEnumType.
5388
5389         * gst/playback/gstdecodebin2.c: (_gst_array_accumulator),
5390         (_gst_select_accumulator), (gst_decode_bin_class_init),
5391         (gst_decode_bin_init), (gst_decode_bin_autoplug_sort),
5392         (gst_decode_bin_autoplug_select), (gst_decode_bin_autoplug_add),
5393         (analyze_new_pad), (connect_pad), (gst_decode_bin_plugin_init):
5394         Add signal to sort factories instead of the more awkward autoplug-select
5395         signal.
5396         Modify autoplug_select so that we can try, skip or expose the
5397         autopluggin of an element on a pad.
5398
5399         * gst/playback/gstfactorylists.c: (compare_ranks),
5400         (decoders_filter), (sinks_filter), (gst_factory_list_is_type),
5401         (element_filter), (gst_factory_list_get_elements),
5402         (gst_factory_list_debug), (gst_factory_list_filter):
5403         * gst/playback/gstfactorylists.h:
5404         Simplify the API, allow getting elements based on mask.
5405
5406         * gst/playback/gstplay-marshal.list:
5407         Add some more marshallers.
5408
5409         * gst/playback/gstplaybin2.c: (init_group), (gst_play_bin_init),
5410         (gst_play_bin_finalize), (pad_removed_cb), (autoplug_factories_cb),
5411         (autoplug_select_cb), (activate_group):
5412         Add support for managing non-raw sinks by providing a custom element and
5413         sink list to decodebin2.
5414         Try to plug non-raw sinks when decodebin2 using autoplug-select of
5415         decodebin2.
5416
5417         * gst/playback/gstplaysink.c: (gen_video_chain), (gen_audio_chain),
5418         (gst_play_sink_set_mode), (gst_play_sink_request_pad):
5419         * gst/playback/gstplaysink.h:
5420         Add support for raw and non-raw sinks. 
5421         Add support to force sinks selected by playbin2.
5422         Don't plug raw converters for non-raw sinks.
5423
5424         * gst/playback/gsturidecodebin.c: (_gst_array_accumulator),
5425         (_gst_select_accumulator), (gst_uri_decode_bin_class_init),
5426         (proxy_autoplug_select_signal), (gst_uri_decode_bin_plugin_init),
5427         (plugin_init):
5428         Use right accumulators.
5429         Proxy new signal.
5430
5431 2007-12-03  Wim Taymans  <wim.taymans@gmail.com>
5432
5433         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
5434         Use runnning time as the base time instead of the timestamp.
5435         Spotted by Saur on IRC.
5436
5437 2007-12-03  Edward Hervey  <bilboed@bilboed.com>
5438
5439         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
5440         Add 'WVC1' codec mapping for Windows Media VC-1 video codec.
5441
5442 2007-12-03  Wim Taymans  <wim.taymans@gmail.com>
5443
5444         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_bisect_forward_serialno),
5445         (gst_ogg_demux_read_chain):
5446         If we find a new serial number but it does not contain a BOS page, make
5447         sure we initialize the chain to NULL because else we will try to scan it
5448         and crash. Fixes #500763
5449
5450 2007-11-30  Wim Taymans  <wim.taymans@gmail.com>
5451
5452         * gst/playback/Makefile.am:
5453         * gst/playback/gstfactorylists.c: (compare_ranks), (print_feature),
5454         (get_feature_array), (decoders_filter), (sinks_filter),
5455         (gst_factory_list_get_decoders), (gst_factory_list_get_sinks),
5456         (gst_factory_list_filter):
5457         * gst/playback/gstfactorylists.h:
5458         Refactor some common code to filter factories and check caps compat.
5459
5460         * gst/playback/gstdecodebin.c:
5461         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init),
5462         (gst_decode_bin_init), (gst_decode_bin_dispose),
5463         (gst_decode_bin_autoplug_continue),
5464         (gst_decode_bin_autoplug_factories),
5465         (gst_decode_bin_autoplug_select), (analyze_new_pad),
5466         (find_compatibles):
5467         * gst/playback/gstplaybin.c:
5468         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
5469         (gst_play_bin_init), (gst_play_bin_finalize),
5470         (autoplug_factories_cb), (activate_group):
5471         * gst/playback/gstqueue2.c:
5472         * gst/playback/gsturidecodebin.c: (proxy_unknown_type_signal),
5473         (proxy_autoplug_continue_signal),
5474         (proxy_autoplug_factories_signal), (proxy_autoplug_select_signal),
5475         (proxy_drained_signal):
5476         Add some more debug info and use factor filtering code.
5477
5478 2007-11-26  Stefan Kost  <ensonic@users.sf.net>
5479
5480         * gst/audiotestsrc/gstaudiotestsrc.c:
5481         * gst/volume/gstvolume.c:
5482         * gst/volume/gstvolume.h:
5483           Add GAP-flag support.
5484
5485 2007-11-24  Julien MOUTTE  <julien@moutte.net>
5486
5487         * tests/examples/seek/seek.c: (main): Increase the range of the
5488         rate selector as I would like to test QOS behavior at higher
5489         forward and reverse playback speed like say 64x.
5490
5491 2007-11-23  Sebastian Dröge  <slomo@circular-chaos.org>
5492
5493         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
5494         (audioresample_query), (audioresample_query_type),
5495         (gst_audioresample_set_property):
5496         Implement latency query.
5497
5498 2007-11-21  Wim Taymans  <wim.taymans@gmail.com>
5499
5500         * gst-libs/gst/audio/gstbaseaudiosink.c:
5501         (gst_base_audio_sink_drain):
5502         Our EOS time contains the base_time, _wait_eos() expects a running_time
5503         so we have to subtract the base_time again before calling the function.
5504         This fixes an EOS regression where the base_time was added twice and EOS
5505         took longer and longer in certain situations.
5506         Fixes #498767.
5507
5508 2007-11-21  Wim Taymans  <wim.taymans@gmail.com>
5509
5510         * docs/libs/gst-plugins-base-libs-sections.txt:
5511         * gst-libs/gst/audio/gstbaseaudiosink.c: (slave_method_get_type),
5512         (gst_base_audio_sink_set_provide_clock),
5513         (gst_base_audio_sink_get_provide_clock),
5514         (gst_base_audio_sink_set_slave_method),
5515         (gst_base_audio_sink_get_slave_method),
5516         (gst_base_audio_sink_set_property),
5517         (gst_base_audio_sink_get_property), (gst_base_audio_sink_drain),
5518         (gst_base_audio_sink_none_slaving),
5519         (gst_base_audio_sink_handle_slaving):
5520         * gst-libs/gst/audio/gstbaseaudiosink.h:
5521         Expose methods for some object properties so that subclasses can more
5522         easily configure them.
5523         Added slave method none, that completely disables slaving to the
5524         internal clock.
5525         API: gst_base_audio_sink_set_provide_clock()
5526         API: gst_base_audio_sink_get_provide_clock()
5527         API: gst_base_audio_sink_set_slave_method()
5528         API: gst_base_audio_sink_get_slave_method()
5529
5530         * gst-libs/gst/audio/gstbaseaudiosrc.c:
5531         (gst_base_audio_src_set_provide_clock),
5532         (gst_base_audio_src_get_provide_clock),
5533         (gst_base_audio_src_set_property),
5534         (gst_base_audio_src_get_property), (gst_base_audio_src_create):
5535         * gst-libs/gst/audio/gstbaseaudiosrc.h:
5536         Expose methods for some object properties so that subclasses can more
5537         easily configure them.
5538         API: gst_base_audio_src_set_provide_clock()
5539         API: gst_base_audio_src_get_provide_clock()
5540
5541 2007-11-20  Wim Taymans  <wim.taymans@gmail.com>
5542
5543         Patch by: Joe Peterson <lavajoe at gentoo dot org>
5544
5545         * gst-libs/gst/sdp/gstsdpmessage.c:
5546         Fix compilation on FreeBSD (Gentoo). Fixes #498228.
5547
5548 2007-11-19  Sebastian Dröge  <slomo@circular-chaos.org>
5549
5550         * tests/check/libs/fft.c: (GST_START_TEST):
5551         Fix scaling to really have dB instead of something else.
5552
5553 2007-11-19  Julien MOUTTE  <julien@moutte.net>
5554
5555         * tests/examples/seek/seek.c: (main): There's a nice macro to check
5556         GTK version, use it.
5557
5558 2007-11-19  Julien MOUTTE  <julien@moutte.net>
5559
5560         * tests/examples/seek/seek.c: (main): Try to support stable version
5561         of GTK.
5562
5563 2007-11-17  Stefan Kost  <ensonic@users.sf.net>
5564
5565         * gst/playback/README:
5566         * gst/playback/test7.c:
5567           Fix the build + little README update.
5568
5569 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
5570
5571         * tests/examples/seek/seek.c: (make_playerbin2_pipeline), (main):
5572         Add playbin2 seek pipeline.
5573
5574 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
5575
5576         * gst/playback/Makefile.am:
5577         * gst/playback/gstplayback.c: (plugin_init):
5578         * gst/playback/test7.c: (update_scale), (warning_cb), (error_cb),
5579         (eos_cb), (about_to_finish_cb), (main):
5580         Add playbin2.
5581         Added gapless playback example.
5582
5583         * gst/playback/gstplaybasebin.c:
5584         * gst/playback/gstplaybasebin.h:
5585         * gst/playback/gstplaybin.c: (gst_play_bin_plugin_init):
5586         * gst/playback/gstqueue2.c:
5587         * gst/playback/test.c:
5588         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_class_init),
5589         (pad_removed_cb):
5590         * gst/playback/gststreaminfo.h:
5591         Change email.
5592
5593         * gst/playback/gstplaybin2.c: (gst_play_bin_get_type),
5594         (gst_play_bin_class_init), (init_group), (gst_play_bin_init),
5595         (gst_play_bin_dispose), (gst_play_bin_set_uri),
5596         (gst_play_bin_set_suburi), (gst_play_bin_set_property),
5597         (gst_play_bin_get_property), (gst_play_bin_handle_message),
5598         (pad_added_cb), (pad_removed_cb), (no_more_pads_cb), (perform_eos),
5599         (drained_cb), (unlink_group), (activate_group),
5600         (setup_next_source), (gst_play_bin_change_state),
5601         (gst_play_bin2_plugin_init):
5602         Added raw first version of playbin2. Does chained oggs and gapless
5603         playback fine. No support for raw sinks yet. No visualisations or
5604         subtitles yet.
5605
5606         * gst/playback/gstplaysink.c: (gst_play_sink_get_type),
5607         (gst_play_sink_class_init), (gst_play_sink_init),
5608         (gst_play_sink_dispose), (gst_play_sink_vis_unblocked),
5609         (gst_play_sink_vis_blocked), (gst_play_sink_set_video_sink),
5610         (gst_play_sink_set_audio_sink), (gst_play_sink_set_vis_plugin),
5611         (gst_play_sink_set_property), (gst_play_sink_get_property),
5612         (post_missing_element_message), (free_chain), (add_chain),
5613         (activate_chain), (gen_video_chain), (gen_text_element),
5614         (gen_audio_chain), (gen_vis_element), (gst_play_sink_get_mode),
5615         (gst_play_sink_set_mode), (gst_play_sink_request_pad),
5616         (gst_play_sink_release_pad), (gst_play_sink_send_event_to_sink),
5617         (gst_play_sink_send_event), (gst_play_sink_change_state):
5618         * gst/playback/gstplaysink.h:
5619         Added Element that abstracts the sinks and their pipelines for playbin2.
5620
5621 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
5622
5623         * gst/playback/gststreamselector.c: (gst_selector_pad_get_type),
5624         (gst_selector_pad_class_init), (gst_selector_pad_init),
5625         (gst_selector_pad_finalize), (gst_selector_pad_reset),
5626         (gst_selector_pad_get_linked_pads), (gst_selector_pad_event),
5627         (gst_selector_pad_getcaps), (gst_selector_pad_bufferalloc),
5628         (gst_selector_pad_chain), (gst_stream_selector_get_type),
5629         (gst_stream_selector_base_init), (gst_stream_selector_class_init),
5630         (gst_stream_selector_init), (gst_stream_selector_set_property),
5631         (gst_stream_selector_get_linked_pad),
5632         (gst_stream_selector_getcaps),
5633         (gst_stream_selector_is_active_sinkpad),
5634         (gst_stream_selector_activate_sinkpad),
5635         (gst_stream_selector_get_linked_pads),
5636         (gst_stream_selector_request_new_pad),
5637         (gst_stream_selector_release_pad):
5638         * gst/playback/gststreamselector.h:
5639         Improve streamselector, make it select and unselect the current pad more
5640         intelligently. 
5641         Subclass GstPad for the sinkpads of the selector.
5642         Handle segments more correctly.
5643         Fix caps negotiation.
5644         Implement release_pad.
5645
5646 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
5647
5648         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init),
5649         (gst_decode_group_check_if_drained), (source_pad_event_probe),
5650         (remove_fakesink):
5651         Add drained signal fired when decodebin finishes decoding the data.
5652         Remove deprecated STATE_DIRTY message.
5653
5654         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_class_init),
5655         (unknown_type_cb), (new_decoded_pad_cb), (pad_removed_cb),
5656         (analyse_source), (proxy_drained_signal), (make_decoder),
5657         (source_new_pad), (value_list_append_structure_list),
5658         (handle_redirect_message), (handle_message):
5659         Proxy the new drained signal.
5660         Handle pad removed from decodebin.
5661         Handle redirect messages by sorting multiple redirections based on the
5662         connection speed.
5663
5664 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
5665
5666         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
5667
5668         * gst-libs/gst/rtsp/gstrtspmessage.c: (gst_rtsp_message_unset):
5669         Fix leaking headers. Fixes #496761.
5670
5671 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
5672
5673         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
5674
5675         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
5676         (gst_ximagesink_change_state):
5677         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get):
5678         Don't leak the PAR on errors. Fixes #496731.
5679
5680 2007-11-16  Tim-Philipp Müller  <tim at centricular dot net>
5681
5682         * gst-libs/gst/tag/gstid3tag.c: (user_tag_matches),
5683           (gst_tag_from_id3_user_tag):
5684           Add mapping for audio cd discid tags, so we can extract
5685           them from tags as well (see #347848). Also compare identifiers
5686           in ID3v2 TXXX frames in a case-insensitive way to increase
5687           compatibility when reading tags (discid vs. DiscID vs. DiscId).
5688
5689 2007-11-16  Jan Schmidt  <jan.schmidt@sun.com>
5690
5691         * gst-plugins-base.doap:
5692         Oops, fix the release name.
5693
5694 2007-11-16  Jan Schmidt  <jan.schmidt@sun.com>
5695
5696         * gst-plugins-base.doap:
5697         Add 0.10.15 release
5698
5699 2007-11-16  Jan Schmidt  <jan.schmidt@sun.com>
5700
5701         * configure.ac:
5702         Back to CVS
5703
5704 === release 0.10.15 ===
5705
5706 2007-11-15  Jan Schmidt <jan.schmidt@sun.com>
5707
5708         * configure.ac:
5709           releasing 0.10.15, "No need to argue"
5710
5711 2007-11-15  Jan Schmidt  <jan.schmidt@sun.com>
5712
5713         * win32/vs6/libgstfft.dsp:
5714         Convert line endings to DOS.
5715
5716 2007-11-15  Sebastien Moutte <sebastien@moutte.net>
5717
5718         * win32/vs6/gst_plugins_base.dsw:
5719         * win32/vs6/libgstfft.dsp:
5720         * win32/MANIFEST:
5721         Add a project file for fft plugin and remove socket
5722         based plugin which don't build from the workspace.
5723         * win32/vs6/libgstaudio.dsp:
5724         * win32/vs6/libgstrtp.dsp:
5725         * win32/vs6/libgsttag.dsp:
5726         Convert line endings back to DOS.
5727         Fixes #496724
5728
5729 2007-11-14  Jan Schmidt  <jan.schmidt@sun.com>
5730
5731         * win32/vs6/libgstinterfaces.dsp:
5732         * win32/vs6/libgstrtsp.dsp:
5733         Convert line endings back to DOS
5734
5735 2007-11-14  Jan Schmidt  <jan.schmidt@sun.com>
5736
5737         * gst-libs/gst/fft/kiss_fft_f32.h:
5738         * gst-libs/gst/fft/kiss_fft_f64.h:
5739         * gst-libs/gst/fft/kiss_fft_s16.h:
5740         * gst-libs/gst/fft/kiss_fft_s32.h:
5741         Don't include malloc.h which doesn't exist on Mac OSX.
5742         Instead, pull in glib.h and use g_malloc/g_free for 
5743         consistency. Fixes: #496548
5744
5745 2007-11-09  Stefan Kost  <ensonic@users.sf.net>
5746
5747         * gst/playback/gstdecodebin2.c:
5748           Dont leak ghostpad. Fixes #475451.
5749
5750 2007-11-09  Wim Taymans  <wim.taymans@gmail.com>
5751
5752         * docs/design/design-decodebin.txt:
5753         * gst/playback/gstdecodebin2.c: (analyze_new_pad):
5754         Update some more docs and comments.
5755
5756 2007-11-06  Tim-Philipp Müller  <tim at centricular dot net>
5757
5758         Patch by: Sebastien Moutte  <sebastien moutte net>
5759
5760         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_ntp_to_unix),
5761           (gst_rtcp_unix_to_ntp):
5762         * gst-libs/gst/rtp/gstrtppayloads.c: (gst_rtp_payload_info_for_name):
5763           Fix some C99-isms and and a missing function that some versions of
5764           MSVC don't like too much (#494346).
5765
5766         * win32/vs6/gst_plugins_base.dsw:
5767         * win32/vs6/libgstaudio.dsp:
5768         * win32/vs6/libgstrtp.dsp:
5769         * win32/vs6/libgsttag.dsp:
5770           Update vs6 projects files (#494346).
5771
5772 2007-11-06  Tim-Philipp Müller  <tim at centricular dot net>
5773
5774         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
5775
5776         * win32/common/libgstaudio.def:
5777         * win32/common/libgstcdda.def:
5778         * win32/common/libgstinterfaces.def:
5779         * win32/common/libgstnetbuffer.def:
5780         * win32/common/libgstpbutils.def:
5781         * win32/common/libgstrtp.def:
5782         * win32/common/libgstrtsp.def:
5783         * win32/common/libgsttag.def:
5784         * win32/common/libgstvideo.def:
5785           More missing symbols to export (fixes #493986).
5786
5787 2007-11-06  Sebastian Dröge  <slomo@circular-chaos.org>
5788
5789         * docs/libs/gst-plugins-base-libs-sections.txt:
5790         * gst-libs/gst/fft/gstfftf32.c:
5791         * gst-libs/gst/fft/gstfftf32.h:
5792         * gst-libs/gst/fft/gstfftf64.c:
5793         * gst-libs/gst/fft/gstfftf64.h:
5794         * gst-libs/gst/fft/gstffts16.c:
5795         * gst-libs/gst/fft/gstffts16.h:
5796         * gst-libs/gst/fft/gstffts32.c:
5797         * gst-libs/gst/fft/gstffts32.h:
5798         * tests/check/libs/fft.c: (GST_START_TEST):
5799         Remove the magnitude and phase calculation functions as these have
5800         very special use cases and can't even be used for the spectrum
5801         element. Also adjust the docs to mention some properties of the used
5802         FFT implemention, i.e. how the values are scaled. Fixes #492098.
5803
5804 2007-11-06  Tim-Philipp Müller  <tim at centricular dot net>
5805
5806         * gst/playback/gstplaybasebin.c: (queue_threshold_reached),
5807           (finish_source):
5808           Avoid crash when there are external subtitles (fixes #491722).
5809
5810 2007-11-03  Tim-Philipp Müller  <tim at centricular dot net>
5811
5812         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
5813         * ext/alsa/gstalsasrc.c: (gst_alsasrc_open):
5814           'Could not open resource for writing' is not an acceptable
5815           error message when we can't open the audio device (see #492334),
5816           even less so when we're trying to open it to record something.
5817
5818 2007-11-02  Tim-Philipp Müller  <tim at centricular dot net>
5819
5820         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
5821
5822         * win32/common/libgstrtp.def:
5823           Add some more missing symbols (#492813).
5824
5825 2007-11-02  Tim-Philipp Müller  <tim at centricular dot net>
5826
5827         Patch by: Thijs Vermeir <thijsvermeir@gmail.com>
5828
5829         * tests/check/elements/audioconvert.c: (verify_convert):
5830           Add check to make sure that the out caps have a channel layout
5831           set on them where they should have one.
5832
5833 2007-11-01  Tim-Philipp Müller  <tim at centricular dot net>
5834
5835         Patch by: Vincent Torri <vtorri at univ-evry dot fr>
5836
5837         * gst-libs/gst/fft/kiss_fft_s16.h: (KISS_FFT_S16_MALLOC):
5838         * gst-libs/gst/fft/kiss_fft_s32.h: (KISS_FFT_S32_MALLOC):
5839           Include our own _stdint.h instead of sys/types.h, makes MingW happy
5840           (#492306).
5841
5842         * gst-libs/gst/rtsp/gstrtspconnection.c: (gst_rtsp_connection_create):
5843           Use _pipe directly, GLib doesn't have a pipe() macro any longer
5844           (it disappeared in GLib 2.14.0) (#492306).
5845
5846         * gst-libs/gst/sdp/Makefile.am:
5847         * gst-libs/gst/sdp/gstsdpmessage.c:
5848           Fix includes and LIBS for win32/Mingw (#492306).
5849
5850         * tests/examples/dynamic/addstream.c (pause_play_stream):
5851           Use more portable g_usleep() instead of sleep() (#492306).
5852
5853 2007-11-01  Tim-Philipp Müller  <tim at centricular dot net>
5854
5855         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
5856
5857         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
5858           (gst_ring_buffer_parse_caps):
5859           Return NULL instead of an enum that happens to be 0, fixes warning
5860           on MSVC (#492114).
5861
5862         * gst-libs/gst/audio/gstringbuffer.h:
5863           No trailing commas in enum list (for gcc-2.9x).
5864
5865         * gst/videotestsrc/videotestsrc.c: (random_char):
5866           Make information loss explicit instead of implicitly truncating to
5867           eight bits via the return value.  Fixes runtime error on MSVC when
5868           using the debug CRT (#492114).
5869
5870         * win32/common/config.h.in:
5871           Fix a bunch of '#undef FOO bar', which MSVC doesn't like (#492114).
5872
5873         * win32/common/libgstinterfaces.def:
5874         * win32/common/libgstrtp.def:
5875           Export a few more symbols (#492114).
5876
5877 2007-11-01  Stefan Kost  <ensonic@users.sf.net>
5878
5879         * gst-libs/gst/audio/audio.c:
5880         * gst-libs/gst/audio/audio.h:
5881           Readd the deprecation guards, but preserve compilability.
5882
5883 2007-10-31  Tim-Philipp Müller  <tim at centricular dot net>
5884
5885         * gst/audioconvert/gstaudioconvert.c: (find_suitable_channel_layout),
5886           (gst_audio_convert_fixate_channels), (gst_audio_convert_fixate_caps):
5887           Preserve channel layout when fixating the number of channels in the
5888           output caps, or make sure there's a suitable channel position layout
5889           set on the caps if required. Fixes #430677.
5890
5891 2007-10-31  Tim-Philipp Müller  <tim at centricular dot net>
5892
5893         * tests/check/elements/decodebin.c: (test_text_plain_streams):
5894           Make sure the pipeline really operates in push mode as it should
5895           in this case.
5896
5897 2007-10-31  Tim-Philipp Müller  <tim at centricular dot net>
5898
5899         * gst-libs/gst/audio/audio.h:
5900           Don't guard deprecated enum with #ifndef DISABLE_DEPRECATED, or
5901           compilation with DISABLE_DEPRECATED and without REMOVE_DEPRECATED
5902           (ie. normal cvs builds) will fail.
5903
5904 2007-10-31  Stefan Kost  <ensonic@users.sf.net>
5905
5906         * docs/libs/Makefile.am:
5907         * gst-libs/gst/audio/audio.c:
5908         * gst-libs/gst/audio/audio.h:
5909         * gst-libs/gst/interfaces/mixer.c:
5910           tell gtk-doc about the deprecation guard. Apply more doc fixes.
5911
5912 2007-10-31  Tim-Philipp Müller  <tim at centricular dot net>
5913
5914         * tests/check/libs/audio.c: (init_value_to_channel_layout),
5915           (test_channel_layout_value_intersect), (audio_suite):
5916           Add simple unit test to make sure GstValue intersection
5917           of channel layouts works the way I think it does.
5918
5919 2007-10-30  Stefan Kost  <ensonic@users.sf.net>
5920
5921         * docs/libs/gst-plugins-base-libs-sections.txt:
5922         * gst-libs/gst/audio/gstaudiofilter.h:
5923         * gst-libs/gst/interfaces/mixer.h:
5924         * gst-libs/gst/rtp/gstbasertpdepayload.c:
5925         * gst-libs/gst/rtp/gstbasertpdepayload.h:
5926         * gst-libs/gst/sdp/gstsdpmessage.c:
5927           Fix the docs according to what gtk-doc complained about.
5928
5929 2007-10-30  Stefan Kost  <ensonic@users.sf.net>
5930
5931         * tests/icles/stress-playbin.c:
5932           Fix the build.
5933
5934 2007-10-30  Tim-Philipp Müller  <tim at centricular dot net>
5935
5936         * gst/playback/gstdecodebin.c: (close_pad_link), (type_found):
5937         * gst/playback/gstdecodebin2.c: (analyze_new_pad):
5938           Post nice/more useful error message if we don't have a decoder for
5939           the primary type.
5940
5941 2007-10-30  Wim Taymans  <wim.taymans@gmail.com>
5942
5943         * gst/playback/gstdecodebin2.c: (gst_decode_group_expose):
5944         Be a bit more useful, unblock the pads after we fired the no-more-pads
5945         signal so that we can use the signal to inspect and connect all pads
5946         without having to keep extra state outside of decodebin.
5947
5948 2007-10-30  Wim Taymans  <wim.taymans@gmail.com>
5949
5950         * gst/playback/gsturidecodebin.c:
5951         (gst_uri_decode_bin_autoplug_continue),
5952         (gst_uri_decode_bin_class_init), (no_more_pads_full):
5953         Implement default signal handler so that we return TRUE when nothing is
5954         connected.
5955
5956 2007-10-28  Sebastian Dröge  <slomo@circular-chaos.org>
5957
5958         * gst-libs/gst/riff/riff-media.c:
5959         (gst_riff_wavext_add_channel_layout),
5960         (gst_riff_wave_add_default_channel_layout),
5961         (gst_riff_wavext_get_default_channel_mask),
5962         (gst_riff_create_audio_caps):
5963         Use the ALSA channel layout as default for wav files without channel
5964         layout information. This fixes playback of chan-id.wav on 5.1 systems
5965         for example. Also refactor the channel layout setting a bit and add
5966         more default channel orders. Fixes #489010.
5967
5968 2007-10-26  Tim-Philipp Müller  <tim at centricular dot net>
5969
5970         * tests/check/libs/tag.c: (test_musicbrainz_tag_registration):
5971           GST_TAG_MUSICBRAINZ_SORTNAME is deprecated and we compile with
5972           -DGST_DISABLE_DEPRECATED, so use new GST_TAG_ARTIST_SORTNAME
5973           instead.
5974
5975 2007-10-25  Wim Taymans  <wim.taymans@gmail.com>
5976
5977         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init),
5978         (gst_decode_bin_dispose), (gst_decode_bin_set_caps),
5979         (gst_decode_bin_set_subs_encoding),
5980         (gst_decode_bin_get_subs_encoding), (gst_decode_bin_set_property),
5981         (gst_decode_bin_get_property), (analyze_new_pad):
5982         Move subtitle encoding property to decodebin2 so that it can set the
5983         property value on all elements that it autoplugs and that require it.
5984         Make caps refcounting more consistent in get/set.
5985
5986         * gst/playback/gsturidecodebin.c: (_gst_boolean_accumulator),
5987         (gst_uri_decode_bin_class_init), (gst_uri_decode_bin_init),
5988         (gst_uri_decode_bin_finalize), (gst_uri_decode_bin_set_property),
5989         (gst_uri_decode_bin_get_property), (proxy_unknown_type_signal),
5990         (proxy_autoplug_continue_signal),
5991         (proxy_autoplug_factories_signal), (proxy_autoplug_select_signal),
5992         (make_decoder):
5993         Proxy properties and relevant signals from the internal decodebin.
5994         Make properties MT safe.
5995
5996 2007-10-25  Tim-Philipp Müller  <tim at centricular dot net>
5997
5998         * gst-libs/gst/tag/tag.h: (GST_TAG_MUSICBRAINZ_SORTNAME):
5999         * gst-libs/gst/tag/tags.c:
6000           Deprecate GST_TAG_MUSICBRAINZ_SORTNAME, replaced by the newly-added
6001           GST_TAG_ARTIST_SORTNAME (in an API and ABI compatible way).
6002
6003         * gst-libs/gst/tag/gstid3tag.c: (tag_matches):
6004           Map ID3v2 TSOP, TSOA and TSOT frames to new SORTNAME tags (#414539).
6005
6006         * gst-libs/gst/tag/gstvorbistag.c: (tag_matches),
6007           (gst_tag_to_vorbis_comments):
6008           Map new SORTNAME tags (these tags aren't even semi-official, so I'm
6009           just mapping everything I found in the wild) (#414539).
6010
6011 2007-10-24  Wim Taymans  <wim.taymans@gmail.com>
6012
6013         Inspired by patch of: René Stadler <mail at renestadler dot de>
6014
6015         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init),
6016         (gst_decode_bin_autoplug_continue),
6017         (gst_decode_bin_autoplug_factories),
6018         (gst_decode_bin_autoplug_select), (analyze_new_pad), (connect_pad),
6019         (find_compatibles):
6020         * gst/playback/gstplay-marshal.list:
6021         Remove the autoplug-sort signal and replace it with a binding friendly
6022         autoplug-select signal.
6023         Add an autoplug-factories signal that can be used to generate a list of
6024         factories to try to autoplug.
6025         Add the GstPad to the autoplugging signal args as it might be needed to
6026         make a good factory selection.
6027         Fix up the marshallers for this. Fixes #407282.
6028
6029 2007-10-23  Tim-Philipp Müller  <tim at centricular dot net>
6030
6031         * gst-libs/gst/tag/gsttagdemux.c:
6032           Don't abort with an assertion if we receive a seek event with
6033           a start type of NONE (see launchpad bug #155878).
6034
6035 2007-10-22  Wim Taymans  <wim.taymans@gmail.com>
6036
6037         * sys/ximage/ximagesink.c: (gst_ximagesink_event_thread),
6038         (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
6039         (gst_ximagesink_change_state), (gst_ximagesink_reset):
6040         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_event_thread),
6041         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_xcontext_clear),
6042         (gst_xvimagesink_change_state), (gst_xvimagesink_reset):
6043         Make sure that before we clean up the X resources, we shutdown and join
6044         the event thread.
6045         Also make sure the event thread does not shut down immediatly after
6046         startup because the running variable is not yet correctly set.
6047         Fixes #378770. 
6048
6049 2007-10-16  Wim Taymans  <wim.taymans@gmail.com>
6050
6051         * gst/playback/gstdecodebin.c: (new_pad), (type_found):
6052         Make the window for a race in typefind and shutting down smaller until
6053         we figure out the right locking here. Avoids #485753 usually.
6054
6055         * gst/playback/gstdecodebin2.c: (type_found), (pad_added_group_cb):
6056         Remove unneeded lock causing a race in typefind and shutting down.
6057         Fixes #485753.
6058
6059         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
6060         Also remove sinks when going to NULL because we might not complete the
6061         state change to PAUSED, causing the PAUSED->READY state change not to
6062         happen.
6063
6064 2007-10-16  Wim Taymans  <wim.taymans@gmail.com>
6065
6066         * gst-libs/gst/audio/gstbaseaudiosink.c:
6067         (gst_base_audio_sink_drain), (gst_base_audio_sink_change_state):
6068         Also explicitly release the ringbuffer when going to NULL because it
6069         is required in the setcaps function, before the state change to PAUSED
6070         completes.
6071
6072 2007-10-16  Tim-Philipp Müller  <tim at centricular dot net>
6073
6074         * tests/icles/.cvsignore:
6075         * tests/icles/Makefile.am:
6076         * tests/icles/stress-playbin.c:
6077           Does what it says on the tin.
6078
6079 2007-10-15  Wim Taymans  <wim.taymans@gmail.com>
6080
6081         * gst/playback/gstqueue2.c: (gst_queue_init), (gst_queue_push_one):
6082         Fix queue negotiation. See #486758.
6083
6084 2007-10-12  Jan Schmidt  <Jan.Schmidt@sun.com>
6085
6086         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
6087         (gst_xvimagesink_xwindow_new),
6088         (gst_xvimagesink_update_colorbalance),
6089         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_xcontext_get):
6090
6091         Fix handling of some of the X atoms. If the last parameter is True,
6092         XInternAtom won't create the atom if it doesn't exist, and therefore
6093         might return None. This causes X errors on Xv implementations that
6094         don't provide the colour balance attributes.
6095
6096 2007-10-11  Tim-Philipp Müller  <tim at centricular dot net>
6097
6098         * gst-libs/gst/tag/gstvorbistag.c:
6099         * tests/check/libs/tag.c:
6100           Extract vorbis comment LICENSE tags correctly.
6101
6102 2007-10-11  Tim-Philipp Müller  <tim at centricular dot net>
6103
6104         Patch by: Jason Kivlighn  <jkivlighn gmail com>
6105
6106         * gst-libs/gst/tag/gstid3tag.c:
6107         * tests/check/libs/tag.c:
6108           Map ID3v2 WCOP frame to GST_TAG_COPYRIGHT_URI (#447000).
6109
6110 2007-10-10  Tim-Philipp Müller  <tim at centricular dot net>
6111
6112         * gst-libs/gst/tag/gsttagdemux.c:
6113           Don't error out when a buggy downstream element doesn't
6114           handle the newsegment event we send properly (especially
6115           not without posting a meaningful error message on the
6116           bus). See bug #471370 and launchpad bug #136264.
6117
6118 2007-10-10  Wim Taymans  <wim.taymans@gmail.com>
6119
6120         * gst-libs/gst/audio/gstbaseaudiosink.c:
6121         (gst_base_audio_sink_drain):
6122         Use new basesink method to make our EOS drain interruptable.
6123
6124 2007-10-10  Jan Schmidt  <Jan.Schmidt@sun.com>
6125
6126         * gst-libs/gst/rtp/gstrtppayloads.c:
6127         Fix silly search-replace oversight.
6128
6129 2007-10-09  Wim Taymans  <wim.taymans@gmail.com>
6130
6131         Patch by: Laurent Glayal <spglegle at yahoo dot fr>
6132
6133         * gst-libs/gst/rtp/gstbasertppayload.c: (copy_fixed),
6134         (gst_basertppayload_set_outcaps):
6135         Fix caps memleak. Fixes #484989.
6136
6137
6138 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
6139
6140         * gst-libs/gst/rtp/gstbasertpdepayload.c:
6141         (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain):
6142         Fix debug output.
6143
6144 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
6145
6146         * gst-libs/gst/audio/gstbaseaudiosrc.c:
6147         (gst_base_audio_src_create):
6148         Also handle the case where there is no clock set on the audio source,
6149         like in the unit tests.
6150
6151 2007-10-08  Jan Schmidt  <Jan.Schmidt@sun.com>
6152
6153         * gst-libs/gst/rtp/gstrtppayloads.c:
6154         Use unsigned G_MAXUINT8 instead of -1 to initialise a guint8
6155         to avoid compiler warnings
6156
6157 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
6158
6159         * gst/playback/gstdecodebin.c: (type_found),
6160         (gst_decode_bin_change_state):
6161         * gst/playback/gstdecodebin2.c: (type_found),
6162         (gst_decode_bin_change_state):
6163         Don't disconnect the have_type signal because we never reconnect it
6164         later on. Instead keep a variable to see if we already detected a type.
6165
6166 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
6167
6168         * gst/playback/gstdecodebin.c: (add_fakesink), (type_found):
6169         * gst/playback/gstdecodebin2.c: (gst_decode_bin_init),
6170         (type_found):
6171         Unlink the signal handler when we found the type, we're not going to do
6172         anything sensible with more type_found signals anyway.
6173
6174 2007-10-06  Tim-Philipp Müller  <tim at centricular dot net>
6175
6176         * gst-libs/gst/tag/gsttagdemux.c:
6177           Don't leak caps.
6178
6179 2007-10-06  Tim-Philipp Müller  <tim at centricular dot net>
6180
6181         * gst-libs/gst/tag/Makefile.am:
6182         * gst-libs/gst/tag/gsttagdemux.c:
6183         * gst-libs/gst/tag/gsttagdemux.h:
6184           API: add GstTagDemux base class for simple tag demuxers.
6185
6186         * docs/libs/gst-plugins-base-libs-docs.sgml:
6187         * docs/libs/gst-plugins-base-libs-sections.txt:
6188           Add GstTagDemux to docs.
6189
6190 2007-10-05  Sebastian Dröge  <slomo@circular-chaos.org>
6191
6192         * gst-libs/gst/rtp/gstrtpbuffer.c:
6193         (gst_rtp_buffer_get_payload_subbuffer):
6194         Fix bug introduced with last commit which inverted the logic and
6195         caused all buffers to be dropped. Fixes #483620.
6196         Thanks to Laurent Glayal <spglegle at yahoo dot fr> for noticing.
6197
6198 2007-10-04  Stefan Kost  <ensonic@users.sf.net>
6199
6200         * gst-libs/gst/rtp/gstrtpbuffer.c:
6201           Replace g_return_if_val (as it could be disabled), with regular return
6202           and warning.
6203
6204 2007-10-03  Stefan Kost  <ensonic@users.sf.net>
6205
6206         * tests/check/pipelines/simple-launch-lines.c:
6207           Print message name and not just number.
6208
6209 2007-10-02  Wim Taymans  <wim.taymans@gmail.com>
6210
6211         * gst-libs/gst/audio/gstbaseaudiosink.c:
6212         (gst_base_audio_sink_async_play):
6213         When slaved to the clock, don't try to align a sample with the previous
6214         one when going to PLAYING again.
6215
6216 2007-10-02  Stefan Kost  <ensonic@users.sf.net>
6217
6218         * tests/examples/snapshot/snapshot.c:
6219           Fix the build.
6220
6221 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
6222
6223         * gst-libs/gst/sdp/gstsdpmessage.h:
6224         Add RFC 3556 bandwidth modifiers.
6225
6226 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
6227
6228         * docs/libs/gst-plugins-base-libs-docs.sgml:
6229         * docs/libs/gst-plugins-base-libs-sections.txt:
6230         * gst-libs/gst/rtp/gstrtppayloads.c:
6231         Update documentation.
6232
6233 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
6234
6235         * gst-libs/gst/rtp/Makefile.am:
6236         * gst-libs/gst/rtp/gstrtppayloads.c: (gst_rtp_payload_info_for_pt),
6237         (gst_rtp_payload_info_for_name):
6238         * gst-libs/gst/rtp/gstrtppayloads.h:
6239         Added new file and header to deal with payload info.
6240
6241         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data),
6242         (gst_rtp_buffer_default_clock_rate):
6243         * gst-libs/gst/rtp/gstrtpbuffer.h:
6244         Payload specific stuff is move to new headers.
6245         Implement _default_clock rate using the new payload function.
6246
6247         * gst-libs/gst/sdp/gstsdpmessage.c: (is_multicast_address),
6248         (gst_sdp_parse_line):
6249         * gst-libs/gst/sdp/gstsdpmessage.h:
6250         Add some more comments.
6251
6252 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
6253
6254         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
6255         (sdp_check_header), (sdp_type_find), (plugin_init):
6256         Add typefind function for application/sdp.
6257         Remove some old dirac typefind code that was ifdeffed out.
6258
6259 2007-09-29  Sebastien Moutte <sebastien@moutte.net>
6260
6261         * win32/common/libgstaudio.def:
6262         Add new exported functions.
6263         * win32/vs6/grammar.dsp:
6264         Add autogeneration and copy of some autegenerated files from win32/common
6265         for rtsp library.
6266         * win32/vs6/libgstaudioconvert.dsp:
6267         Add gstaudioquantize.c to the build.
6268         * win32/vs6/libgstinterfaces.dsp:
6269         Add videoorientation.c to the build.
6270         * win32/vs6/libgstriff.dsp:
6271         Add libgsttag to the link libraries list.
6272         * win32/vs6/libgstvolume.dsp:
6273         Add liboil to the link.
6274         * win32/vs6/gst_plugins_base.dsw:
6275         * win32/vs6/libgstrtsp.dsp:
6276         * win32/common/libgstrtsp.def:
6277         Add files to build libgstrtsp library.
6278         
6279 2007-09-26  Wim Taymans  <wim.taymans@gmail.com>
6280
6281         * tests/examples/snapshot/snapshot.c: (main):
6282         Print error when pipeline failed to construct.
6283
6284 2007-09-25  Tim-Philipp Müller  <tim at centricular dot net>
6285
6286         * configure.ac:
6287         * gst-libs/gst/tag/gstid3tag.c:
6288         * gst-libs/gst/tag/gstvorbistag.c:
6289           Add mappings for the new GST_TAG_COMPOSER for vorbis comments
6290           and ID3v2 tags.
6291
6292 2007-09-25  Tim-Philipp Müller  <tim at centricular dot net>
6293
6294         * gst-libs/gst/floatcast/floatcast.h:
6295           Don't include config.h in an installed public header, this
6296           might break compilation of applications that don't have such
6297           a header and doesn't necessarily do what it's supposed to do
6298           anyway (ie. check for the lrint/lrintf defines) (#442065).
6299           Add docs for the various macros and document how this header
6300           has to be used (link against libm, etc.); add a few FIXMEs;
6301           include math.h for non-c99 code path.  Based on patch by
6302           Jan Schmidt.
6303           
6304 2007-09-25  Sebastian Dröge  <slomo@circular-chaos.org>
6305
6306         * configure.ac:
6307         Use AG_GST_ARG_WITH_PLUGINS and AG_GST_ARG_ENABLE_EXTERNAL instead
6308         of duplicating these macros in configure.ac.
6309
6310 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
6311
6312         * po/hu.po:
6313         * po/sv.po:
6314         * po/uk.po:
6315           Updated translations to 0.10.14
6316
6317 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
6318
6319         translated by: Jakub Bogusz <qboosh@pld-linux.org>
6320
6321         * po/pl.po:
6322           Added Polish translation.
6323
6324 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
6325
6326         translated by: Ilkka Tuohela <hile@iki.fi>
6327
6328         * po/fi.po:
6329           Added Finnish translation.
6330
6331 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
6332
6333         translated by: Jorge González González <aloriel@gmail.com>
6334
6335         * po/es.po:
6336           Added Spanish translation.
6337
6338 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
6339
6340         translated by: Mogens Jaeger <mogens@jaeger.tf>
6341
6342         * po/da.po:
6343           Added Danish translation.
6344
6345 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
6346
6347         translated by: Funda Wang <fundawang@linux.net.cn>
6348
6349         * po/zh_CN.po:
6350           Added Chinese (simplified) translation.
6351
6352 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
6353
6354         translated by: Alexander Shopov <ash@contact.bg>
6355
6356         * po/bg.po:
6357           Added Bulgarian translation.
6358
6359 2007-09-21  Wim Taymans  <wim.taymans@gmail.com>
6360
6361         * gst/playback/gstqueue2.c: (gst_queue_push_one):
6362         Fix compilation wrt printf arguments.
6363
6364 2007-09-20  Wim Taymans  <wim.taymans@gmail.com>
6365
6366         * configure.ac:
6367         * tests/examples/Makefile.am:
6368         * tests/examples/snapshot/.cvsignore:
6369         * tests/examples/snapshot/Makefile.am:
6370         * tests/examples/snapshot/snapshot.c: (main):
6371         Add simple snapshot example program using appsink.
6372
6373 2007-09-20  Stefan Kost  <ensonic@users.sf.net>
6374
6375         * tests/check/generic/states.c:
6376           Improved state change unit test.
6377
6378 2007-09-19  Stefan Kost  <ensonic@users.sf.net>
6379
6380         * docs/plugins/.cvsignore:
6381         * tests/check/.cvsignore:
6382           Ignore registries in any format.
6383
6384 2007-09-19  Wim Taymans  <wim.taymans@gmail.com>
6385
6386         * gst-libs/gst/rtp/gstbasertpdepayload.c:
6387         (gst_base_rtp_depayload_chain),
6388         (gst_base_rtp_depayload_set_gst_timestamp):
6389         Only copy timestamp on outgoing packets if the depayloader did not set
6390         one.
6391         Also copy duration on outgoing packets.
6392
6393 2007-09-19  Wim Taymans  <wim.taymans@gmail.com>
6394
6395         * gst-libs/gst/rtp/gstbasertppayload.c: (copy_fixed),
6396         (gst_basertppayload_set_outcaps):
6397         Fix compilation because of missing %d in printf.
6398         When fixating caps, fixate what we can and throw away all remaining
6399         unfixed caps, subclasses should do something smart if they need to.
6400
6401 2007-09-19  Stefan Kost  <ensonic@users.sf.net>
6402
6403         * ext/gnomevfs/gstgnomevfssrc.c:
6404           Improve debug logs a bit and be more verbose if things go wrong.
6405
6406 2007-09-17  Jan Schmidt  <Jan.Schmidt@sun.com>
6407
6408         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
6409         (gst_text_overlay_set_property):
6410         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
6411         * gst-libs/gst/audio/gstbaseaudiosink.c:
6412         (gst_base_audio_sink_render):
6413         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_ntp_to_unix),
6414         (gst_rtcp_unix_to_ntp):
6415         * gst-libs/gst/rtsp/gstrtspmessage.c: (gst_rtsp_message_get_type):
6416         * gst/playback/gstqueue2.c:
6417         * tests/examples/seek/seek.c: (set_scale):
6418         Fix a bunch of compile warnings shown with Forte.
6419
6420         * gst/audiorate/gstaudiorate.c:
6421         Always pull in config.h before including any system headers.
6422
6423 2007-09-17  Wim Taymans  <wim.taymans@gmail.com>
6424
6425         * gst/playback/gstqueue2.c: (update_buffering),
6426         (gst_queue_locked_flush), (gst_queue_locked_enqueue),
6427         (gst_queue_handle_sink_event), (gst_queue_chain),
6428         (gst_queue_push_one), (gst_queue_sink_activate_push),
6429         (gst_queue_src_activate_push), (gst_queue_src_activate_pull):
6430         Also fix #476514 for queue2.
6431
6432 2007-09-16  Wim Taymans  <wim.taymans@gmail.com>
6433
6434         * gst-libs/gst/rtp/gstbasertpdepayload.c:
6435         (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_setcaps),
6436         (gst_base_rtp_depayload_chain),
6437         (gst_base_rtp_depayload_handle_sink_event),
6438         (gst_base_rtp_depayload_push_full),
6439         (gst_base_rtp_depayload_set_gst_timestamp),
6440         (gst_base_rtp_depayload_change_state):
6441         Remove code to deal with RTP to GST time conversion, we now just copy
6442         the GST timestamp we receive to the outgoing buffers.
6443         Handle segment and flushes correctly.
6444
6445         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
6446         When we have no valid input timestamp, use the previous rtp timestamp on
6447         the outgoing RTP packet instead of the RTP base time.
6448
6449 2007-09-15  David Schleef  <ds@schleef.org>
6450
6451         * ext/alsa/gstalsa.c:
6452         * ext/alsa/gstalsadeviceprobe.c:
6453         * ext/alsa/gstalsamixer.c:
6454         * ext/alsa/gstalsasink.c:
6455         * ext/alsa/gstalsasrc.c:
6456           Change alsa alloca's to malloc to fix warnings on gcc-4.2.
6457
6458 2007-09-15  Wim Taymans  <wim.taymans@gmail.com>
6459
6460         * gst-libs/gst/rtp/gstbasertppayload.c:
6461         (gst_basertppayload_set_outcaps), (gst_basertppayload_push):
6462         Add some debug info when negotiating caps.
6463
6464 2007-09-14  Wim Taymans  <wim.taymans@gmail.com>
6465
6466         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data):
6467         A buffer with an empty payload is also a valid buffer.
6468
6469 2007-09-14  Wim Taymans  <wim.taymans@gmail.com>
6470
6471         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_event),
6472         (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
6473         (gst_basertppayload_change_state):
6474         Make sure we start our RTP timestamp from the random base RTP
6475         timestamp even if the buffer timestamp starts from some random value.
6476
6477 2007-09-14  Wim Taymans  <wim.taymans@gmail.com>
6478
6479         * configure.ac:
6480         * tests/examples/Makefile.am:
6481         * tests/examples/dynamic/.cvsignore:
6482         * tests/examples/dynamic/Makefile.am:
6483         * tests/examples/dynamic/addstream.c: (create_stream),
6484         (pause_play_stream), (message_received), (eos_message_received),
6485         (perform_step), (main):
6486         Add simple exmple app to demonstrate starting and pausing live and
6487         non-live bins in a PLAYING pipeline.
6488
6489 2007-09-14  Julien MOUTTE  <julien@moutte.net>
6490
6491         * gst/typefind/gsttypefindfunctions.c: (plugin_init): Add some
6492         typefind for QCP files (RFC #3625)
6493
6494 2007-09-13  Wim Taymans  <wim.taymans@gmail.com>
6495
6496         * gst-libs/gst/audio/gstbaseaudiosink.c:
6497         (gst_base_audio_sink_init):
6498         Disable pull mode scheduling, we're not ready for it yet and it subtly
6499         breaks a lot of things.
6500
6501 2007-09-12  Tim-Philipp Müller  <tim at centricular dot net>
6502
6503         * tests/check/elements/libvisual.c:
6504           Test all libvisual plugins, not just the first one; this reproduces
6505           bug #450336 quite easily.  Looks like a problem with the 'jess'
6506           visualisation.
6507
6508 2007-09-12  Tim-Philipp Müller  <tim at centricular dot net>
6509
6510         * tests/check/Makefile.am:
6511         * tests/check/elements/.cvsignore:
6512         * tests/check/elements/libvisual.c:
6513           Add basic libvisual test case in an attempt to reproduce bug #450336.
6514           Doesn't reproduce that bug, but some other crasher instead (invalid
6515           free), at least with make elements/libvisual.forever and the bumscope
6516           plugin on x86-64/gutsy. Leaving test disabled for now.
6517
6518 2007-09-11  Wim Taymans  <wim.taymans@gmail.com>
6519
6520         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
6521
6522         * gst-libs/gst/rtsp/gstrtspconnection.c:
6523         (gst_rtsp_connection_read_internal), (gst_rtsp_connection_read),
6524         (read_body), (gst_rtsp_connection_receive):
6525         Make sure we can not cancel in the middle of receiving a message.
6526         Fixes #475731.
6527
6528 2007-09-11  Tim-Philipp Müller  <tim at centricular dot net>
6529
6530         Patch by: Josep Torra Valles <josep@fluendo.com>
6531
6532         * gst/playback/gstplaybasebin.c:
6533           Increase upper limit for audio queue a bit; fixes preroll problem
6534           with playbin and decodebin2 when playing a quicktime trailer with
6535           multichannel audio via http (#464666).
6536
6537 2007-09-10  Wim Taymans  <wim.taymans@gmail.com>
6538
6539         * gst-libs/gst/audio/gstbaseaudiosrc.c:
6540         (gst_base_audio_src_class_init), (gst_base_audio_src_init),
6541         (gst_base_audio_src_provide_clock),
6542         (gst_base_audio_src_set_property),
6543         (gst_base_audio_src_get_property), (gst_base_audio_src_create):
6544         * gst-libs/gst/audio/gstbaseaudiosrc.h:
6545         Allow othe clocks than the internal clock to be used for the pipeline.
6546         Add property to disable clock provide.
6547         API: GstBaseAudioSrc::provide-clock
6548
6549 2007-09-10  Stefan Kost  <ensonic@users.sf.net>
6550
6551         * gst/playback/gstdecodebin2.c:
6552           Don't leak request pads. Fixes #475395.
6553
6554 2007-09-09  Sebastian Dröge  <slomo@circular-chaos.org>
6555
6556         Patch by: René Stadler <mail at renestadler dot de>
6557
6558         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
6559         (gst_ximage_buffer_class_init):
6560         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
6561         (gst_xvimage_buffer_class_init):
6562         Correctly chain up finalize with the parent class to prevent
6563         memory leaks. Fixes #474880.
6564
6565 2007-09-09  Sebastian Dröge  <slomo@circular-chaos.org>
6566
6567         * gst/volume/gstvolume.c: (volume_choose_func):
6568         * tests/check/elements/volume.c: (GST_START_TEST):
6569         Revert the latest change: floating point samples are allowed to
6570         have any value, not only values in the range [-1,1]. Thanks to Andy
6571         Wingo for noticing.
6572         Also fix processing of int32 samples with volumes > 4 by making the
6573         unity value smaller which prevents overflows.
6574
6575 2007-09-07  Tim-Philipp Müller  <tim at centricular dot net>
6576
6577         * gst-libs/gst/rtp/gstrtpbuffer.c:
6578         * tests/check/libs/rtp.c:
6579           Fix gst_rtp_buffer_set_csrc() and enable csrc-related unit test checks.
6580
6581 2007-09-07  Tim-Philipp Müller  <tim at centricular dot net>
6582
6583         Based on patch by: Haakon Sporsheim  <haakon.sporsheim at tandberg com>
6584
6585         * gst-libs/gst/rtp/gstrtpbuffer.c:
6586           Fix up GstRTPHeader helper struct so that compilers will not under
6587           any circumstances add padding in between our fields, as currently
6588           happens with MSVC on win32, because that would lead to us sending
6589           out RTP payloads with broken RTP headers (#471194).
6590           Fix assertion guards for gst_rtp_buffer_get_csrc() and _set_csrc().
6591           
6592         * tests/check/Makefile.am:
6593         * tests/check/libs/.cvsignore:
6594         * tests/check/libs/rtp.c:
6595           Add some simple unit tests for GstRTPBuffer. Some are disabled
6596           because the code tested still needs fixing (set_csrc() does not work).
6597
6598 2007-09-07  Tim-Philipp Müller  <tim at centricular dot net>
6599
6600         * win32/MANIFEST:
6601         * win32/common/gstrtsp-enumtypes.c:
6602         * win32/common/gstrtsp-enumtypes.h:
6603         * win32/common/interfaces-enumtypes.c:
6604         * win32/common/interfaces-enumtypes.h:
6605         * win32/common/multichannel-enumtypes.c:
6606           Add rtsp enumtypes (#474384) and update others.
6607
6608 2007-09-06  Stefan Kost  <ensonic@users.sf.net>
6609
6610         * configure.ac:
6611           Fix configure check for HAVE_LIBXML_HTML.
6612
6613 2007-09-06  Tim-Philipp Müller  <tim at centricular dot net>
6614
6615         * tests/check/libs/.cvsignore:
6616           Ignore more, in case the build bots work again one day.
6617
6618 2007-09-06  Sebastian Dröge  <slomo@circular-chaos.org>
6619
6620         Reviewed by:  Stefan Kost  <ensonic@users.sf.net>
6621
6622         * configure.ac:
6623         * gst-libs/gst/Makefile.am:
6624         * gst-libs/gst/fft/Makefile.am:
6625         * gst-libs/gst/fft/_kiss_fft_guts_f32.h:
6626         * gst-libs/gst/fft/_kiss_fft_guts_f64.h:
6627         * gst-libs/gst/fft/_kiss_fft_guts_s16.h:
6628         * gst-libs/gst/fft/_kiss_fft_guts_s32.h:
6629         * gst-libs/gst/fft/gstfft.c: (gst_fft_next_fast_length):
6630         * gst-libs/gst/fft/gstfft.h:
6631         * gst-libs/gst/fft/gstfftf32.c: (gst_fft_f32_new),
6632         (gst_fft_f32_fft), (gst_fft_f32_inverse_fft), (gst_fft_f32_free),
6633         (gst_fft_f32_window), (gst_fft_f32_magnitude), (gst_fft_f32_phase):
6634         * gst-libs/gst/fft/gstfftf32.h:
6635         * gst-libs/gst/fft/gstfftf64.c: (gst_fft_f64_new),
6636         (gst_fft_f64_fft), (gst_fft_f64_inverse_fft), (gst_fft_f64_free),
6637         (gst_fft_f64_window), (gst_fft_f64_magnitude), (gst_fft_f64_phase):
6638         * gst-libs/gst/fft/gstfftf64.h:
6639         * gst-libs/gst/fft/gstffts16.c: (gst_fft_s16_new),
6640         (gst_fft_s16_fft), (gst_fft_s16_inverse_fft), (gst_fft_s16_free),
6641         (gst_fft_s16_window), (gst_fft_s16_magnitude), (gst_fft_s16_phase):
6642         * gst-libs/gst/fft/gstffts16.h:
6643         * gst-libs/gst/fft/gstffts32.c: (gst_fft_s32_new),
6644         (gst_fft_s32_fft), (gst_fft_s32_inverse_fft), (gst_fft_s32_free),
6645         (gst_fft_s32_window), (gst_fft_s32_magnitude), (gst_fft_s32_phase):
6646         * gst-libs/gst/fft/gstffts32.h:
6647         * gst-libs/gst/fft/kiss_fft_f32.c: (kf_bfly2), (kf_bfly4),
6648         (kf_bfly3), (kf_bfly5), (kf_bfly_generic), (kf_work), (kf_factor),
6649         (kiss_fft_f32_alloc), (kiss_fft_f32_stride), (kiss_fft_f32),
6650         (kiss_fft_f32_cleanup), (kiss_fft_f32_next_fast_size):
6651         * gst-libs/gst/fft/kiss_fft_f32.h:
6652         * gst-libs/gst/fft/kiss_fft_f64.c: (kf_bfly2), (kf_bfly4),
6653         (kf_bfly3), (kf_bfly5), (kf_bfly_generic), (kf_work), (kf_factor),
6654         (kiss_fft_f64_alloc), (kiss_fft_f64_stride), (kiss_fft_f64),
6655         (kiss_fft_f64_cleanup), (kiss_fft_f64_next_fast_size):
6656         * gst-libs/gst/fft/kiss_fft_f64.h:
6657         * gst-libs/gst/fft/kiss_fft_s16.c: (kf_bfly2), (kf_bfly4),
6658         (kf_bfly3), (kf_bfly5), (kf_bfly_generic), (kf_work), (kf_factor),
6659         (kiss_fft_s16_alloc), (kiss_fft_s16_stride), (kiss_fft_s16),
6660         (kiss_fft_s16_cleanup), (kiss_fft_s16_next_fast_size):
6661         * gst-libs/gst/fft/kiss_fft_s16.h:
6662         * gst-libs/gst/fft/kiss_fft_s32.c: (kf_bfly2), (kf_bfly4),
6663         (kf_bfly3), (kf_bfly5), (kf_bfly_generic), (kf_work), (kf_factor),
6664         (kiss_fft_s32_alloc), (kiss_fft_s32_stride), (kiss_fft_s32),
6665         (kiss_fft_s32_cleanup), (kiss_fft_s32_next_fast_size):
6666         * gst-libs/gst/fft/kiss_fft_s32.h:
6667         * gst-libs/gst/fft/kiss_fftr_f32.c: (kiss_fftr_f32_alloc),
6668         (kiss_fftr_f32), (kiss_fftri_f32):
6669         * gst-libs/gst/fft/kiss_fftr_f32.h:
6670         * gst-libs/gst/fft/kiss_fftr_f64.c: (kiss_fftr_f64_alloc),
6671         (kiss_fftr_f64), (kiss_fftri_f64):
6672         * gst-libs/gst/fft/kiss_fftr_f64.h:
6673         * gst-libs/gst/fft/kiss_fftr_s16.c: (kiss_fftr_s16_alloc),
6674         (kiss_fftr_s16), (kiss_fftri_s16):
6675         * gst-libs/gst/fft/kiss_fftr_s16.h:
6676         * gst-libs/gst/fft/kiss_fftr_s32.c: (kiss_fftr_s32_alloc),
6677         (kiss_fftr_s32), (kiss_fftri_s32):
6678         * gst-libs/gst/fft/kiss_fftr_s32.h:
6679         * gst-libs/gst/fft/kiss_version:
6680         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
6681         * pkgconfig/gstreamer-plugins-base.pc.in:
6682         Add libgstfft, a FFT library based on Kiss FFT which is
6683         BSD licensed. Supported sample formats are int16, int32,
6684         float and double. For those formats a real FFT and IFFT
6685         can be done, different windowing functions can be applied
6686         and functions for extracting the magnitude and phase exist.
6687         Fixes #468619.
6688
6689         * docs/libs/Makefile.am:
6690         * docs/libs/gst-plugins-base-libs-docs.sgml:
6691         * docs/libs/gst-plugins-base-libs-sections.txt:
6692         Integrate libgstfft into the docs.
6693
6694         * tests/check/Makefile.am:
6695         * tests/check/libs/fft.c: (GST_START_TEST), (fft_suite), (main):
6696         Add unit tests for libgstfft, currently only testing the FFT.
6697         Unit tests for IFFT will follow soon.
6698
6699 2007-09-05  Wim Taymans  <wim.taymans@gmail.com>
6700
6701         Patch by: Peter Kjellerstedt  <pkj at axis com>
6702
6703         * gst-libs/gst/sdp/gstsdpmessage.c: (gst_sdp_time_init),
6704         (gst_sdp_message_init), (gst_sdp_message_uninit),
6705         (is_multicast_address), (gst_sdp_message_as_text),
6706         (gst_sdp_message_get_origin), (gst_sdp_message_set_connection),
6707         (gst_sdp_message_get_connection), (gst_sdp_message_add_bandwidth),
6708         (gst_sdp_message_add_time), (gst_sdp_message_add_zone),
6709         (gst_sdp_message_get_key), (gst_sdp_message_get_attribute_val_n),
6710         (gst_sdp_message_get_attribute_val), (gst_sdp_message_add_media),
6711         (gst_sdp_media_init), (gst_sdp_media_uninit),
6712         (gst_sdp_media_as_text), (gst_sdp_media_set_port_info),
6713         (gst_sdp_media_connections_len), (gst_sdp_media_add_connection),
6714         (gst_sdp_media_bandwidths_len), (gst_sdp_media_get_bandwidth),
6715         (gst_sdp_media_add_bandwidth), (gst_sdp_media_attributes_len),
6716         (gst_sdp_parse_line), (print_media), (gst_sdp_message_dump):
6717         * gst-libs/gst/sdp/gstsdpmessage.h:
6718         Separate INIT_ARRAY() and related macros into two versions, one for
6719         structures and one for pointers (e.g., INIT_ARRAY() and
6720         INIT_PTR_ARRAY()). This fixes a segmentation error on freeing the
6721         lists of emails and phone numbers.
6722         Add missing const as appropriate.
6723         Change all gint to guint since they all actually represent unsigned
6724         values.
6725         Do not use time as a variable name as it shadows the global time().
6726         Add gst_sdp_message_as_text() and gst_sdp_media_as_text().
6727         Actually implement gst_sdp_message_add_time().
6728         Make gst_sdp_message_add_time() take repeat times as an argument.
6729         Store repeat times in GstSDPTime as a GArray rather than as gchar**.
6730         Corrected the definition of gst_sdp_media_get_bandwidth() (was
6731         misspelled as badwidth).
6732         gst-indented and a little clean up. Fixes #471067.
6733
6734 2007-09-05  Sebastian Dröge  <slomo@circular-chaos.org>
6735
6736         * gst/volume/gstvolume.c: (volume_choose_func),
6737         (volume_process_double), (volume_process_double_clamp),
6738         (volume_process_float_clamp):
6739         Correctly clamp float/double samples in the [-1.0,1.0] range to
6740         prevent weird effects.
6741         * tests/check/elements/volume.c: (GST_START_TEST), (volume_suite):
6742         Add unit tests for all samples types that had none before.
6743
6744 2007-09-05  Tim-Philipp Müller  <tim at centricular dot net>
6745
6746         * gst-libs/gst/rtp/gstrtpbuffer.c:
6747           Need to include stdlib.h for abs() here too.
6748
6749 2007-09-05  Tim-Philipp Müller  <tim at centricular dot net>
6750
6751         * gst/playback/gststreaminfo.c:
6752           Fix build.
6753
6754 2007-09-05  Stefan Kost  <ensonic@users.sf.net>
6755
6756         * gst/playback/gststreaminfo.c:
6757           Clean up some half-disabled code and comment.
6758
6759 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
6760
6761         Patch by: Laurent Glayal <spglegle at yahoo dot fr>
6762
6763         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
6764         (gst_base_rtp_payload_audio_handle_event):
6765         Return FALSE from the event handler to let the parent class handle the
6766         event. Fixes #446766.
6767
6768         * gst-libs/gst/rtp/gstbasertpdepayload.c:
6769         (gst_base_rtp_depayload_chain), (gst_base_rtp_depayload_push_full):
6770         Mark outgoing buffers as DISCONT if the incomming buffer was DISCONT.
6771
6772         * gst-libs/gst/rtp/gstbasertppayload.c:
6773         Bump the MTU to 1400.
6774
6775 2007-09-03  Johan Dahlin  <jdahlin@async.com.br>
6776
6777         * gst/typefind/gsttypefindfunctions.c (plugin_init): 
6778         Add an audio/x-nsf typefind function for the nsfdec element.
6779
6780 2007-09-03  Renato Filho  <renato.filho@indt.org.br>
6781         * gst/playback/gstplaybasebin.c:
6782         Included "myth://" on stream_uris list for enable buffering to mythtv files
6783
6784 2007-09-03  Wim Taymans  <wim.taymans@gmail.com>
6785
6786         * docs/libs/gst-plugins-base-libs-sections.txt:
6787         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_packet_get_rb),
6788         (gst_rtcp_packet_sdes_copy_entry), (gst_rtcp_ntp_to_unix),
6789         (gst_rtcp_unix_to_ntp):
6790         * gst-libs/gst/rtp/gstrtcpbuffer.h:
6791         Fix parsing of RB blocks.
6792         Fix docs.
6793         Added helper functions to convert to/from UNIX and NTP time.
6794         API: gst_rtcp_ntp_to_unix()
6795         API: gst_rtcp_unix_to_ntp()
6796
6797         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data),
6798         (gst_rtp_buffer_get_header_len),
6799         (gst_rtp_buffer_get_extension_data),
6800         (gst_rtp_buffer_get_payload_subbuffer),
6801         (gst_rtp_buffer_get_payload_len), (gst_rtp_buffer_get_payload),
6802         (gst_rtp_buffer_ext_timestamp):
6803         * gst-libs/gst/rtp/gstrtpbuffer.h:
6804         Fix some more docs.
6805         Implement handling of packets with extensions.
6806         Fix padding check in _validate().
6807         Added function to get extension data.
6808         API: gst_rtp_buffer_get_header_len()
6809         API: gst_rtp_buffer_get_extension_data()
6810
6811 2007-09-03  Wim Taymans  <wim.taymans@gmail.com>
6812
6813         * gst-libs/gst/rtp/gstbasertpdepayload.c:
6814         (gst_base_rtp_depayload_class_init),
6815         (gst_base_rtp_depayload_set_gst_timestamp):
6816         Add some more docs for the queue-delay property and fix a typo in a
6817         comment.
6818
6819         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
6820         Fix typo.
6821
6822 2007-09-03  Wim Taymans  <wim.taymans@gmail.com>
6823
6824         * gst-libs/gst/audio/gstbaseaudiosink.c:
6825         (gst_base_audio_sink_skew_slaving), (gst_base_audio_sink_render),
6826         (gst_base_audio_sink_change_state):
6827         When skew slaving, try to hover around the middle of a segment so that
6828         we at most drift by half a segment.
6829         If we are aligning in the oposite direction of the clock skew, we don't
6830         have to resync.
6831
6832 2007-08-31  Wim Taymans  <wim.taymans@gmail.com>
6833
6834         * gst-libs/gst/rtp/gstbasertpdepayload.c:
6835         (gst_base_rtp_depayload_setcaps),
6836         (gst_base_rtp_depayload_set_gst_timestamp):
6837         Be less silly with the segment start, just apply the clock-base to the
6838         timestamp.
6839
6840 2007-08-31  Wim Taymans  <wim.taymans@gmail.com>
6841
6842         * gst-libs/gst/rtp/gstbasertpdepayload.c:
6843         (gst_base_rtp_depayload_class_init),
6844         (gst_base_rtp_depayload_finalize),
6845         (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain),
6846         (gst_base_rtp_depayload_handle_sink_event),
6847         (gst_base_rtp_depayload_set_gst_timestamp),
6848         (gst_base_rtp_depayload_change_state):
6849         * gst-libs/gst/rtp/gstbasertpdepayload.h:
6850         Deprecate the queue handling thread thing and remove the code.
6851         Use new method to calculate the extended timestamp.
6852
6853 2007-08-31  Wim Taymans  <wim.taymans@gmail.com>
6854
6855         * gst-libs/gst/rtp/gstrtcpbuffer.c:
6856         (gst_rtcp_packet_sdes_copy_entry):
6857         Use g_strndup which does exactly what we want.
6858
6859         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_compare_seqnum),
6860         (gst_rtp_buffer_ext_timestamp):
6861         * gst-libs/gst/rtp/gstrtpbuffer.h:
6862         Add helper function to compare seqnums.
6863         Add helper function to calculate extended timestamps.
6864         API: gst_rtp_buffer_compare_seqnum()
6865         API: gst_rtp_buffer_ext_timestamp()
6866
6867 2007-08-30  Wim Taymans  <wim.taymans@gmail.com>
6868
6869         * gst-libs/gst/rtp/gstrtcpbuffer.c:
6870         (gst_rtcp_packet_sdes_get_entry),
6871         (gst_rtcp_packet_sdes_copy_entry):
6872         * gst-libs/gst/rtp/gstrtcpbuffer.h:
6873         Fix and document SDES item data function.
6874         Add new function that makes a proper copy of SDES item data.
6875         API: gst_rtcp_packet_sdes_copy_entry()
6876
6877 2007-08-30  Stefan Kost  <ensonic@users.sf.net>
6878
6879         * configure.ac:
6880         * gst/Makefile.am:
6881           The tcp and subparse plugins are under gst, but not totaly free of
6882           dependencies. Handle selection inconfigure.ac, so that they show up
6883           on the final list of what is build and what is not. Maybe they should
6884           better be moved to ext.
6885
6886 2007-08-30  Stefan Kost  <ensonic@users.sf.net>
6887
6888         Patch by: Daniel Díaz  <yosoy@danieldiaz.org>
6889
6890         * configure.ac:
6891         * gst/Makefile.am:
6892           Check if libxml provides HTML parser which subparse needs.
6893           Fixes #451970.
6894
6895 2007-08-29  Tim-Philipp Müller  <tim at centricular dot net>
6896
6897         * ext/alsa/gstalsa.c:
6898           Fix typo and compilation on big endian systems.
6899
6900 2007-08-29  Tim-Philipp Müller  <tim at centricular dot net>
6901
6902         * gst/subparse/gstssaparse.c:
6903           Convert SSA newline codes into actual newline characters (#470766).
6904
6905 2007-08-28  Tim-Philipp Müller  <tim at centricular dot net>
6906
6907         * docs/libs/gst-plugins-base-libs-sections.txt:
6908         * gst-libs/gst/pbutils/install-plugins.c:
6909         * gst-libs/gst/pbutils/install-plugins.h:
6910         * tests/check/libs/pbutils.c:
6911           API: also add gst_install_plugins_supported() while we're at it
6912           (see #470456).
6913
6914 2007-08-28  Tim-Philipp Müller  <tim at centricular dot net>
6915
6916         * docs/libs/gst-plugins-base-libs-sections.txt:
6917         * gst-libs/gst/pbutils/missing-plugins.c:
6918         * gst-libs/gst/pbutils/missing-plugins.h:
6919         * tests/check/libs/pbutils.c:
6920           API: add gst_missing_*_installer_detail_new() convenience API so
6921           that applications that know exactly what they're missing can request
6922           installer detail strings for those items directly instead of having
6923           to first create a dummy missing-plugin message and then get the
6924           installer detail string from that.  Fixes #470456.
6925
6926 2007-08-27  Jan Schmidt  <thaytan@mad.scientist.com>
6927
6928         * gst/playback/gstdecodebin.c: (close_pad_link):
6929         We need to set up delayed-linking whenever the caps are non-fixed,
6930         not just when there are multiple types - use gst_pad_is_fixed()
6931         to test.
6932
6933 2007-08-26  Tim-Philipp Müller  <tim at centricular dot net>
6934
6935         * gst-libs/gst/pbutils/missing-plugins.c:
6936           (gst_missing_plugin_message_get_installer_detail):
6937           Add missing separator in PID fallback case.
6938
6939 2007-08-24  Jan Schmidt  <thaytan@mad.scientist.com>
6940
6941         * ext/alsa/Makefile.am:
6942         There is no GST_PLUGINS_BASE_LIBS defined.
6943         
6944         * ext/alsa/gstalsa.c:
6945         * ext/alsa/gstalsasink.c: (gst_alsasink_delay):
6946         * ext/alsa/gstalsasrc.c: (gst_alsasrc_delay):
6947         Add support for ALSA 24-bit formats.
6948         snd_pcm_delay can return an error code, especially
6949         during XRUNS. In that case, the best we can do is assume
6950         delay = 0.
6951
6952         * gst/audioconvert/Makefile.am:
6953         Add flags from -base before any more-remote dependencies.
6954
6955 2007-08-23  Sebastian Dröge  <slomo@circular-chaos.org>
6956
6957         Based on a patch by: Davyd Madeley <davyd at madeley dot id dot au>
6958
6959         * gst/volume/gstvolume.c: (volume_choose_func),
6960         (volume_update_real_volume), (gst_volume_set_volume),
6961         (gst_volume_init), (volume_process_int32),
6962         (volume_process_int32_clamp), (volume_process_int24),
6963         (volume_process_int24_clamp), (volume_process_int16),
6964         (volume_process_int16_clamp), (volume_process_int8),
6965         (volume_process_int8_clamp), (volume_update_volume), (plugin_init):
6966         * gst/volume/gstvolume.h:
6967         Add support for int32, int24 and int8 to the volume element.
6968         Fixes #445529.
6969
6970 2007-08-23  Tim-Philipp Müller  <tim at centricular dot net>
6971
6972         * tests/examples/Makefile.am:
6973           Fix even more.
6974
6975 2007-08-23  Stefan Kost  <ensonic@users.sf.net>
6976
6977         * configure.ac:
6978         * docs/libs/Makefile.am:
6979         * docs/libs/gst-plugins-base-libs-docs.sgml:
6980         * docs/libs/gst-plugins-base-libs-sections.txt:
6981         * ext/gnomevfs/gstgnomevfssrc.c:
6982         * ext/gnomevfs/gstgnomevfssrc.h:
6983         * gst-libs/gst/Makefile.am:
6984         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
6985         * pkgconfig/gstreamer-plugins-base.pc.in:
6986         * sys/v4l/v4lsrc_calls.c:
6987         * tests/examples/Makefile.am:
6988         * win32/common/config.h:
6989           Revert unwanted commit. many thanks to moap. I want a fix for 
6990           https://thomas.apestaart.org/moap/trac/ticket/239
6991
6992 2007-08-23  Stefan Kost  <ensonic@users.sf.net>
6993
6994         * gst/volume/gstvolume.c:
6995           Move passthrough below gst_object_sync_values(). Fixes #442654.
6996
6997 2007-08-22  Wim Taymans  <wim.taymans@gmail.com>
6998
6999         * gst-libs/gst/audio/audio.c:
7000         Clarify the docs a little.
7001
7002 2007-08-22  Stefan Kost  <ensonic@users.sf.net>
7003
7004         * gst/volume/gstvolume.c:
7005           Enable liboil for float and add more details about problems with
7006           int16.
7007
7008 2007-08-21  Wim Taymans  <wim.taymans@gmail.com>
7009
7010         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps):
7011         Fix RGB24 masks as spotted by _ke (Daniel G. Siegel) on IRC.
7012
7013 2007-08-21  Wim Taymans  <wim.taymans@gmail.com>
7014
7015         * ext/vorbis/vorbisdec.c: (vorbis_dec_push_forward):
7016         When calculating the first timestamp of the buffers, don't go below 0
7017         and clip the samples because the offset was on the eos page.
7018         Fixes #466717.
7019
7020 2007-08-21  Wim Taymans  <wim.taymans@gmail.com>
7021
7022         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_read_chain),
7023         (gst_ogg_demux_collect_chain_info):
7024         Also submit the eos page when trying to find the first timestamp.
7025         See #466717.
7026
7027 2007-08-17  Sebastian Dröge  <slomo@circular-chaos.org>
7028
7029         * gst-libs/gst/audio/audio.h:
7030         Use gst_util_uint64_scale() instead of doing the math
7031         with double for GST_FRAMES_TO_CLOCK_TIME() and
7032         GST_CLOCK_TIME_TO_FRAMES(). For large timestamps this
7033         prevents rounding errors. Fixes #467667.
7034
7035 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
7036
7037         * gst-libs/gst/rtsp/gstrtspconnection.c:
7038         (gst_rtsp_connection_connect), (gst_rtsp_connection_write),
7039         (gst_rtsp_connection_read), (gst_rtsp_connection_poll):
7040         * gst-libs/gst/rtsp/gstrtspconnection.h:
7041         Small cleanups.
7042         On shutdown, don't read the control socket yet.
7043         Set timeout value correctly in all cases.
7044         Add function to check if the server accepts reads or writes.
7045         API: gst_rtsp_connection_poll()
7046
7047         * gst-libs/gst/rtsp/gstrtspdefs.h:
7048         Fix compilation with -pedantic.
7049         Add enum for _poll.
7050
7051 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
7052
7053         Patch by: Olivier Crete  <tester at tester ca>
7054
7055         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
7056         (gst_basertppayload_getcaps):
7057         * gst-libs/gst/rtp/gstbasertppayload.h:
7058         Add getcaps vfunc to basertppayload. See #465146.
7059
7060 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
7061
7062         * gst/playback/gstplaybasebin.c: (queue_threshold_reached):
7063         Only post buffering messages when we are a stream.
7064
7065 2007-08-15  Tim-Philipp Müller  <tim at centricular dot net>
7066
7067         * gst-libs/gst/pbutils/install-plugins.c:
7068         * gst-libs/gst/pbutils/missing-plugins.c:
7069           Small docs fix and addition.
7070
7071 2007-08-13  Tim-Philipp Müller  <tim at centricular dot net>
7072
7073         * tests/icles/.cvsignore:
7074         * tests/icles/Makefile.am:
7075         * tests/icles/test-textoverlay.c:
7076           Add a dumb little test for textoverlay alignments.
7077
7078 2007-08-13  Tim-Philipp Müller  <tim at centricular dot net>
7079
7080         Patch by: Dan Williams  <dcbw redhat com>
7081
7082         * ext/pango/gsttextoverlay.c:
7083         * ext/pango/gsttextoverlay.h:
7084           API: add "line-alignment" property (#459334). Add gtk-doc blurb for
7085           "silent" property so there's a Since tag in the API reference.
7086
7087 2007-08-12  Wim Taymans  <wim.taymans@gmail.com>
7088
7089         * gst-libs/gst/rtp/gstbasertppayload.c:
7090         (gst_basertppayload_set_outcaps):
7091         * gst-libs/gst/rtp/gstbasertppayload.h:
7092         Improve caps negotiation so that downstream elements can confiure
7093         certain RTP properties by fixing them on the caps. See #465146.
7094         Add docs.
7095
7096 2007-08-11  Tim-Philipp Müller  <tim at centricular dot net>
7097
7098         * docs/libs/gst-plugins-base-libs-sections.txt:
7099         * gst-libs/gst/rtp/gstbasertpdepayload.c:
7100         * gst-libs/gst/rtp/gstbasertpdepayload.h:
7101           Mark as deprecated some macros which were presumably meant to be
7102           private API and accidentally exposed in the public header file.
7103           Also actually _init() lock (only works at the moment because the
7104           struct is zeroed out when created and the initial values in the
7105           mutex struct are zeroes too). (#459585)
7106
7107 2007-08-10  Stefan Kost  <ensonic@users.sf.net>
7108
7109         * docs/libs/Makefile.am:
7110           Remove cruft and do some cleanups.
7111
7112         * docs/libs/gst-plugins-base-libs-docs.sgml:
7113           Prepare for comming gtkdoc features (rebase against online docs).
7114
7115 2007-08-10  Michael Smith <msmith@fluendo.com>
7116
7117         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
7118           Debug output fixes.
7119         * tests/check/elements/audiorate.c: (do_perfect_stream_test),
7120         (GST_START_TEST):
7121           Change the number of buffers used; 500 is too many and leads to
7122           timeouts.
7123
7124 2007-08-10  Tim-Philipp Müller  <tim at centricular dot net>
7125
7126         * gst/playback/gstqueue2.c:
7127         * gst/videorate/gstvideorate.c:
7128           Printf format fixes (#465028).
7129
7130 2007-08-09  Michael Smith <msmith@fluendo.com>
7131
7132         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
7133           If we have a large (> 1 second) discontinuity, push a series of
7134           smaller buffers rather than a single very large buffer. Avoids
7135           unreasonably large single buffer allocations when encountering a
7136           large gap.
7137         * tests/check/elements/audiorate.c: (GST_START_TEST),
7138         (audiorate_suite):
7139           Add a test for this.
7140
7141 2007-08-09  Jan Schmidt  <thaytan@mad.scientist.com>
7142
7143         * gst/playback/gstplaybasebin.c: (group_commit),
7144         (queue_remove_probe), (queue_threshold_reached):
7145
7146         Patch by: Josep Torra Valles <josep@fluendo.com>
7147         Fixes: #465015
7148         Make sure we remove the check_queues buffer probe from the 
7149         correct queue to avoid racily going back to "buffering 99%" when
7150         buffering is actually complete.
7151
7152         Also, fix the spelling of Josep's surname in the ChangeLog.
7153
7154 2007-08-09  Stefan Kost  <ensonic@users.sf.net>
7155
7156         * ext/ogg/gstoggmux.c:
7157           Do not leak oggmux instance.
7158         
7159         * ext/vorbis/vorbisenc.c:
7160           Also log values.
7161
7162 2007-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
7163
7164         * po/hu.po:
7165         * po/it.po:
7166         * po/nl.po:
7167         * po/uk.po:
7168         * po/vi.po:
7169           Updated translations.
7170
7171 2007-08-08  Stefan Kost  <ensonic@users.sf.net>
7172
7173         patch by: Yang Hong <hongyang@redflag-linux.com>
7174
7175         * ext/pango/gsttextoverlay.c:
7176         * ext/pango/gsttextoverlay.h:
7177           Add 'silent' property to GstTimeOverlay. Fixes #462979
7178
7179 2007-08-08  Wim Taymans  <wim.taymans@gmail.com>
7180
7181         Patch by: Josep Torra Valles <josep@fluendo.com>
7182
7183         * docs/plugins/gst-plugins-base-plugins.args:
7184         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_class_init),
7185         (gst_uri_decode_bin_init), (gst_uri_decode_bin_set_property),
7186         (gst_uri_decode_bin_get_property), (gen_source_element):
7187         Add connection-speed property. Fixes #464690.
7188
7189 2007-08-07  Wim Taymans  <wim.taymans@gmail.com>
7190
7191         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
7192
7193         * configure.ac:
7194         * gst-libs/gst/rtsp/Makefile.am:
7195         * gst-libs/gst/rtsp/gstrtspconnection.c:
7196         (gst_rtsp_connection_connect):
7197         Fix compilation on windows. Fixes #464320.
7198
7199 2007-08-07  Wim Taymans  <wim.taymans@gmail.com>
7200
7201         Patch by: Josep Torra Valles <josep@fluendo.com>
7202
7203         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
7204         (gst_play_base_bin_init), (queue_threshold_reached),
7205         (gen_source_element), (setup_substreams),
7206         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
7207         (gst_play_base_bin_get_streaminfo_value_array):
7208         * gst/playback/gstplaybasebin.h:
7209         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
7210         (gst_play_bin_set_property), (gst_play_bin_get_property),
7211         (gst_play_bin_handle_redirect_message):
7212         Move connection-speed property from playbin to playbasebin so that we
7213         can also configure it in source elements that have the connection-speed
7214         property. Fixes #464028.
7215         Add some debug info here and there.
7216
7217 2007-08-06  Sebastian Dröge  <slomo@circular-chaos.org>
7218
7219         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_query):
7220         Properly respond to conversion queries. Fixes #464079.
7221
7222 2007-08-03  Sebastian Dröge  <slomo@circular-chaos.org>
7223
7224         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_init),
7225         (gst_audio_test_src_src_fixate), (gst_audio_test_src_setcaps),
7226         (gst_audio_test_src_init_sine_table),
7227         (gst_audio_test_src_change_wave), (gst_audio_test_src_create):
7228         * gst/audiotestsrc/gstaudiotestsrc.h:
7229         Add float/double and int32 support to audiotestsrc. Fixes #460422.
7230         Also set the default volume to the default value specified in the
7231         GParamSpec.
7232
7233 2007-08-03  Sebastian Dröge  <slomo@circular-chaos.org>
7234
7235         Patch by: Jens Granseuer <jensgr at gmx dot net>
7236
7237         * gst/audioconvert/gstaudioquantize.c:
7238         Fix C89 incompatibilities and spelling of explanations. Fixes #463215.
7239
7240 2007-08-03  Wim Taymans  <wim.taymans@gmail.com>
7241
7242         * gst-libs/gst/rtsp/gstrtsptransport.c: (gst_rtsp_transport_parse):
7243         Add rdt manager for rdt transport.
7244         Fix parsing of RDT transport.
7245
7246 2007-08-03  Jan Schmidt  <thaytan@mad.scientist.com>
7247
7248         * configure.ac:
7249         Back to CVS
7250
7251 === release 0.10.14 ===
7252
7253 2007-08-03  Jan Schmidt <thaytan@mad.scientist.com>
7254
7255         * configure.ac:
7256           releasing 0.10.14, "Light Years Ahead"
7257
7258 2007-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
7259
7260         * tests/check/libs/audio.c: (GST_START_TEST):
7261         Fix the test to reflect the behaviour of gst_audio_clip_buffer.
7262
7263 2007-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
7264
7265         * gst-libs/gst/audio/audio.c:
7266         When clipping a buffer with no timestamp, assume it is
7267         within the segment without warnings.
7268
7269         Fixes: #460978
7270
7271 2007-07-27  Wim Taymans  <wim.taymans@gmail.com>
7272
7273         * gst-libs/gst/rtsp/gstrtspextension.c: (gst_rtsp_extension_send):
7274         Fire the signal on the object, not the interface.
7275
7276 2007-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
7277
7278         * gst-libs/gst/rtsp/.cvsignore:
7279         Ber. Don't include the full path, idiot.
7280
7281 2007-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
7282
7283         * gst-libs/gst/rtsp/.cvsignore:
7284         Ignore generated files.
7285
7286 2007-07-26  Jan Schmidt  <thaytan@mad.scientist.com>
7287
7288         * gst-libs/gst/interfaces/Makefile.am:
7289         * gst-libs/gst/interfaces/interfaces-marshal.list:
7290         * gst-libs/gst/interfaces/rtspextension.c:
7291         * gst-libs/gst/interfaces/rtspextension.h:
7292         * gst-libs/gst/rtsp/Makefile.am:
7293         * gst-libs/gst/rtsp/gstrtsp.h:
7294         * gst-libs/gst/rtsp/gstrtspextension.c:
7295         (gst_rtsp_extension_get_type), (gst_rtsp_extension_iface_init),
7296         (gst_rtsp_extension_detect_server),
7297         (gst_rtsp_extension_before_send), (gst_rtsp_extension_after_send),
7298         (gst_rtsp_extension_parse_sdp), (gst_rtsp_extension_setup_media),
7299         (gst_rtsp_extension_configure_stream),
7300         (gst_rtsp_extension_get_transports),
7301         (gst_rtsp_extension_stream_select), (gst_rtsp_extension_send):
7302         * gst-libs/gst/rtsp/gstrtspextension.h:
7303         * gst-libs/gst/rtsp/rtsp-marshal.list:
7304         Move the rtspextension.h interface into gstrtspextension.h
7305         as part of libgstrtsp instead of libgstinterfaces, because it's
7306         only for use within plugins, not applications. 
7307         Add stuff to do the enum & marshal generation needed in libgstrtsp now.
7308         Use the GST_TYPE_RTSP_RESULT enum type for the return value of the 
7309         signal that the GstRTSPExtension interface emits, since G_TYPE_ENUM
7310         is abstract.
7311
7312 2007-07-26  Wim Taymans  <wim.taymans@gmail.com>
7313
7314         * gst-libs/gst/interfaces/Makefile.am:
7315         * gst-libs/gst/interfaces/interfaces-marshal.list:
7316         * gst-libs/gst/interfaces/rtspextension.c:
7317         (gst_rtsp_extension_iface_init),
7318         (gst_rtsp_extension_stream_select), (gst_rtsp_extension_send):
7319         * gst-libs/gst/interfaces/rtspextension.h:
7320         Fix marshaller for the send signal.
7321         Add URL to stream selection interface method.
7322
7323 2007-07-26  Jan Schmidt  <thaytan@mad.scientist.com>
7324
7325         * gst-libs/gst/riff/Makefile.am:
7326         Pull in our dependencies from -base before those from outside.
7327
7328 2007-07-26  Wim Taymans  <wim.taymans@gmail.com>
7329
7330         * docs/libs/gst-plugins-base-libs-sections.txt:
7331         * gst-libs/gst/rtsp/gstrtspbase64.c: (gst_rtsp_base64_decode_ip):
7332         * gst-libs/gst/rtsp/gstrtspbase64.h:
7333         API: gst_rtsp_base64_decode_ip()
7334         Added function to decode Base64 in-place.
7335
7336 2007-07-26  Jan Schmidt  <thaytan@mad.scientist.com>
7337
7338         * tests/check/libs/.cvsignore:
7339         Ignore the mixer test binary.
7340
7341 2007-07-26  Jan Schmidt  <thaytan@mad.scientist.com>
7342
7343         * ext/vorbis/vorbisdec.c: (vorbis_dec_push_forward):
7344         Gratuitous comment change to trigger a rebuild on the buildbots.
7345
7346 2007-07-25  Wim Taymans  <wim.taymans@gmail.com>
7347
7348         * gst-libs/gst/sdp/gstsdpmessage.c: (gst_sdp_media_get_media),
7349         (gst_sdp_media_get_port), (gst_sdp_media_get_num_ports),
7350         (gst_sdp_media_get_proto), (gst_sdp_media_formats_len),
7351         (gst_sdp_media_get_format), (gst_sdp_media_get_information),
7352         (gst_sdp_media_connections_len), (gst_sdp_media_get_connection),
7353         (gst_sdp_media_bandwidths_len), (gst_sdp_media_get_badwidth),
7354         (gst_sdp_media_get_key), (gst_sdp_media_attributes_len),
7355         (gst_sdp_media_get_attribute), (gst_sdp_media_get_attribute_val_n),
7356         (gst_sdp_media_get_attribute_val):
7357         * gst-libs/gst/sdp/gstsdpmessage.h:
7358         Constify args where we can.
7359
7360 2007-07-25  Wim Taymans  <wim.taymans@gmail.com>
7361
7362         * gst-libs/gst/interfaces/Makefile.am:
7363         * gst-libs/gst/interfaces/rtspextension.c:
7364         (gst_rtsp_extension_get_type), (gst_rtsp_extension_iface_init),
7365         (gst_rtsp_extension_detect_server),
7366         (gst_rtsp_extension_before_send), (gst_rtsp_extension_after_send),
7367         (gst_rtsp_extension_parse_sdp), (gst_rtsp_extension_setup_media),
7368         (gst_rtsp_extension_configure_stream),
7369         (gst_rtsp_extension_get_transports),
7370         (gst_rtsp_extension_stream_select), (gst_rtsp_extension_send):
7371         * gst-libs/gst/interfaces/rtspextension.h:
7372         Move interface for RTSP extensions from -good to here.
7373         Added helper methods to invoke interface methods.
7374
7375 2007-07-25  Wim Taymans  <wim.taymans@gmail.com>
7376
7377         * docs/libs/gst-plugins-base-libs-sections.txt:
7378         * gst-libs/gst/rtsp/gstrtspdefs.h:
7379         * gst-libs/gst/rtsp/gstrtspmessage.c: (key_value_foreach),
7380         (gst_rtsp_message_get_type), (gst_rtsp_message_parse_request),
7381         (gst_rtsp_message_init_response),
7382         (gst_rtsp_message_parse_response), (gst_rtsp_message_new_data),
7383         (gst_rtsp_message_parse_data), (gst_rtsp_message_add_header),
7384         (gst_rtsp_message_remove_header), (gst_rtsp_message_get_header),
7385         (gst_rtsp_message_append_headers), (gst_rtsp_message_set_body),
7386         (gst_rtsp_message_get_body), (dump_key_value):
7387         * gst-libs/gst/rtsp/gstrtspmessage.h:
7388         * gst-libs/gst/rtsp/gstrtsprange.c: (parse_npt_time),
7389         (parse_npt_range), (parse_clock_range), (parse_smpte_range),
7390         (gst_rtsp_range_parse):
7391         * gst-libs/gst/rtsp/gstrtsprange.h:
7392         * gst-libs/gst/rtsp/gstrtsptransport.c:
7393         * gst-libs/gst/rtsp/gstrtspurl.c:
7394         Fix some more RTSP docs.
7395         Add some missing methods for dealing with messages.
7396
7397 2007-07-24  Wim Taymans  <wim.taymans@gmail.com>
7398
7399         * docs/libs/gst-plugins-base-libs-docs.sgml:
7400         * docs/libs/gst-plugins-base-libs-sections.txt:
7401         * gst-libs/gst/rtsp/gstrtspbase64.c: (gst_rtsp_base64_encode):
7402         * gst-libs/gst/rtsp/gstrtspbase64.h:
7403         * gst-libs/gst/rtsp/gstrtspconnection.c:
7404         (gst_rtsp_connection_connect), (add_auth_header),
7405         (gst_rtsp_connection_write), (gst_rtsp_connection_send),
7406         (read_body), (gst_rtsp_connection_receive),
7407         (gst_rtsp_connection_next_timeout),
7408         (gst_rtsp_connection_reset_timeout),
7409         (gst_rtsp_connection_set_auth):
7410         * gst-libs/gst/rtsp/gstrtspconnection.h:
7411         * gst-libs/gst/rtsp/gstrtspdefs.c: (rtsp_init_status):
7412         * gst-libs/gst/rtsp/gstrtspdefs.h:
7413         * gst-libs/gst/rtsp/gstrtspmessage.h:
7414         * gst-libs/gst/rtsp/gstrtsprange.c: (parse_npt_time),
7415         (parse_npt_range), (parse_clock_range), (parse_smpte_range),
7416         (gst_rtsp_range_parse):
7417         * gst-libs/gst/rtsp/gstrtspurl.h:
7418         Added beginnings of RTSP documentation.
7419
7420 2007-07-24  Wim Taymans  <wim.taymans@gmail.com>
7421
7422         * docs/libs/Makefile.am:
7423         * docs/libs/gst-plugins-base-libs-docs.sgml:
7424         * docs/libs/gst-plugins-base-libs-sections.txt:
7425         * gst-libs/gst/sdp/gstsdp.h:
7426         * gst-libs/gst/sdp/gstsdpmessage.c: (gst_sdp_message_set_origin),
7427         (gst_sdp_message_set_connection), (gst_sdp_message_add_bandwidth),
7428         (gst_sdp_message_add_time), (gst_sdp_message_add_zone),
7429         (gst_sdp_message_set_key), (gst_sdp_message_get_attribute_val_n),
7430         (gst_sdp_message_get_attribute_val),
7431         (gst_sdp_message_add_attribute), (gst_sdp_media_new),
7432         (gst_sdp_media_init), (gst_sdp_media_uninit), (gst_sdp_media_free),
7433         (gst_sdp_media_get_media), (gst_sdp_media_set_media),
7434         (gst_sdp_media_get_port), (gst_sdp_media_get_num_ports),
7435         (gst_sdp_media_set_port_info), (gst_sdp_media_get_proto),
7436         (gst_sdp_media_set_proto), (gst_sdp_media_formats_len),
7437         (gst_sdp_media_get_format), (gst_sdp_media_add_format),
7438         (gst_sdp_media_get_information), (gst_sdp_media_set_information),
7439         (gst_sdp_media_connections_len), (gst_sdp_media_get_connection),
7440         (gst_sdp_media_add_connection), (gst_sdp_media_bandwidths_len),
7441         (gst_sdp_media_get_badwidth), (gst_sdp_media_add_bandwidth),
7442         (gst_sdp_media_set_key), (gst_sdp_media_get_key),
7443         (gst_sdp_media_attributes_len), (gst_sdp_media_add_attribute),
7444         (gst_sdp_media_get_attribute_val_n),
7445         (gst_sdp_media_get_attribute_val), (gst_sdp_message_parse_buffer),
7446         (print_media), (gst_sdp_message_dump):
7447         * gst-libs/gst/sdp/gstsdpmessage.h:
7448         Document the SDP library.
7449         Add some of the missing SDPMedia methods.
7450
7451 2007-07-24  Wim Taymans  <wim.taymans@gmail.com>
7452
7453         * configure.ac:
7454         * gst-libs/gst/Makefile.am:
7455         * gst-libs/gst/rtsp/Makefile.am:
7456         * gst-libs/gst/rtsp/gstrtspbase64.c: (gst_rtsp_base64_encode):
7457         * gst-libs/gst/rtsp/gstrtspbase64.h:
7458         * gst-libs/gst/rtsp/gstrtspconnection.c: (inet_aton),
7459         (gst_rtsp_connection_create), (gst_rtsp_connection_connect),
7460         (add_auth_header), (add_date_header), (gst_rtsp_connection_write),
7461         (gst_rtsp_connection_send), (read_line), (read_string), (read_key),
7462         (parse_response_status), (parse_request_line), (parse_line),
7463         (gst_rtsp_connection_read), (read_body),
7464         (gst_rtsp_connection_receive), (gst_rtsp_connection_close),
7465         (gst_rtsp_connection_free), (gst_rtsp_connection_next_timeout),
7466         (gst_rtsp_connection_reset_timeout), (gst_rtsp_connection_flush),
7467         (gst_rtsp_connection_set_auth):
7468         * gst-libs/gst/rtsp/gstrtspconnection.h:
7469         * gst-libs/gst/rtsp/gstrtspdefs.c: (rtsp_init_status),
7470         (gst_rtsp_strresult), (gst_rtsp_method_as_text),
7471         (gst_rtsp_version_as_text), (gst_rtsp_header_as_text),
7472         (gst_rtsp_status_as_text), (gst_rtsp_find_header_field),
7473         (gst_rtsp_find_method):
7474         * gst-libs/gst/rtsp/gstrtspdefs.h:
7475         * gst-libs/gst/rtsp/gstrtspmessage.c: (key_value_foreach),
7476         (gst_rtsp_message_new), (gst_rtsp_message_init),
7477         (gst_rtsp_message_new_request), (gst_rtsp_message_init_request),
7478         (gst_rtsp_message_new_response), (gst_rtsp_message_init_response),
7479         (gst_rtsp_message_init_data), (gst_rtsp_message_unset),
7480         (gst_rtsp_message_free), (gst_rtsp_message_add_header),
7481         (gst_rtsp_message_remove_header), (gst_rtsp_message_get_header),
7482         (gst_rtsp_message_append_headers), (gst_rtsp_message_set_body),
7483         (gst_rtsp_message_take_body), (gst_rtsp_message_get_body),
7484         (gst_rtsp_message_steal_body), (dump_mem), (dump_key_value),
7485         (gst_rtsp_message_dump):
7486         * gst-libs/gst/rtsp/gstrtspmessage.h:
7487         * gst-libs/gst/rtsp/gstrtsprange.c: (parse_npt_time),
7488         (parse_npt_range), (parse_clock_range), (parse_smpte_range),
7489         (gst_rtsp_range_parse), (gst_rtsp_range_free):
7490         * gst-libs/gst/rtsp/gstrtsprange.h:
7491         * gst-libs/gst/rtsp/gstrtsptransport.c: (gst_rtsp_transport_new),
7492         (gst_rtsp_transport_init), (gst_rtsp_transport_get_mime),
7493         (gst_rtsp_transport_get_manager), (parse_mode), (parse_range),
7494         (range_as_text), (rtsp_transport_mode_as_text),
7495         (rtsp_transport_profile_as_text), (rtsp_transport_ltrans_as_text),
7496         (gst_rtsp_transport_parse), (gst_rtsp_transport_as_text),
7497         (gst_rtsp_transport_free):
7498         * gst-libs/gst/rtsp/gstrtsptransport.h:
7499         * gst-libs/gst/rtsp/gstrtspurl.c: (gst_rtsp_url_parse),
7500         (gst_rtsp_url_free), (gst_rtsp_url_set_port),
7501         (gst_rtsp_url_get_port), (gst_rtsp_url_get_request_uri):
7502         * gst-libs/gst/rtsp/gstrtspurl.h:
7503         * gst-libs/gst/sdp/Makefile.am:
7504         * gst-libs/gst/sdp/gstsdp.h:
7505         * gst-libs/gst/sdp/gstsdpmessage.c: (gst_sdp_origin_init),
7506         (gst_sdp_connection_init), (gst_sdp_bandwidth_init),
7507         (gst_sdp_time_init), (gst_sdp_zone_init), (gst_sdp_key_init),
7508         (gst_sdp_attribute_init), (gst_sdp_message_new),
7509         (gst_sdp_message_init), (gst_sdp_message_uninit),
7510         (gst_sdp_message_free), (gst_sdp_media_new), (gst_sdp_media_init),
7511         (gst_sdp_media_uninit), (gst_sdp_media_free),
7512         (gst_sdp_message_set_origin), (gst_sdp_message_get_origin),
7513         (gst_sdp_message_set_connection), (gst_sdp_message_get_connection),
7514         (gst_sdp_message_add_bandwidth), (gst_sdp_message_add_time),
7515         (gst_sdp_message_add_zone), (gst_sdp_message_set_key),
7516         (gst_sdp_message_get_key), (gst_sdp_message_get_attribute_val_n),
7517         (gst_sdp_message_get_attribute_val),
7518         (gst_sdp_message_add_attribute), (gst_sdp_message_add_media),
7519         (gst_sdp_media_add_attribute), (gst_sdp_media_add_bandwidth),
7520         (gst_sdp_media_add_format), (gst_sdp_media_get_attribute),
7521         (gst_sdp_media_get_attribute_val_n),
7522         (gst_sdp_media_get_attribute_val), (gst_sdp_media_get_format),
7523         (read_string), (read_string_del), (gst_sdp_parse_line),
7524         (gst_sdp_message_parse_buffer), (print_media),
7525         (gst_sdp_message_dump):
7526         * gst-libs/gst/sdp/gstsdpmessage.h:
7527         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
7528         Move SDP and RTSP from helper objects in -good to a reusable library.
7529         Use a proper gst_ namespace.
7530
7531 2007-07-23  Sebastian Dröge  <slomo@circular-chaos.org>
7532
7533         * ext/vorbis/vorbisdec.c: (vorbis_dec_push_forward),
7534         (vorbis_dec_flush_decode):
7535         Use the new buffer clipping function from gstaudio here.
7536
7537 2007-07-23  Sebastian Dröge  <slomo@circular-chaos.org>
7538
7539         * docs/libs/gst-plugins-base-libs-sections.txt:
7540         * gst-libs/gst/audio/audio.c: (gst_audio_buffer_clip):
7541         * gst-libs/gst/audio/audio.h:
7542         * tests/check/libs/audio.c: (GST_START_TEST), (audio_suite):
7543         API: Add buffer clipping function for raw audio buffers. Fixes #456656.
7544         Also add deprecation guards for gst_audio_structure_set_int() to the
7545         header.
7546
7547 2007-07-23  Stefan Kost  <ensonic@users.sf.net>
7548
7549         * docs/libs/gst-plugins-base-libs-sections.txt:
7550           Cleanup the docs.
7551
7552 2007-07-23  Wim Taymans  <wim.taymans@gmail.com>
7553
7554         Patch by: Dan Williams <dcbw at redhat dot com>
7555
7556         * gst/playback/gstplaybasebin.c:
7557         (gst_play_base_bin_get_streaminfo_value_array):
7558         Don't return NULL when querying the stream info value array but instead
7559         return an empty array. Fixes #459204.
7560
7561 2007-07-23  Tim-Philipp Müller  <tim at centricular dot net>
7562
7563         * gst/playback/gsturidecodebin.c:
7564           Init debug category before using it.
7565
7566 2007-07-21  Jan Schmidt  <thaytan@noraisin.net>
7567
7568         * gst-libs/gst/interfaces/mixer.h:
7569         Add padding vars in place of the signal pointers
7570         when building with DISABLE_DEPRECATED so that the
7571         interface structure doesn't change size.
7572
7573 2007-07-20  Jan Schmidt  <thaytan@noraisin.net>
7574
7575         * docs/libs/gst-plugins-base-libs-sections.txt:
7576         * ext/alsa/gstalsamixer.c:
7577         * ext/alsa/gstalsamixer.h:
7578         * ext/alsa/gstalsamixerelement.c:
7579         * ext/alsa/gstalsamixertrack.c:
7580         * gst-libs/gst/interfaces/mixer.c:
7581         * gst-libs/gst/interfaces/mixer.h:
7582         * gst-libs/gst/interfaces/mixeroptions.c:
7583         * gst-libs/gst/interfaces/mixeroptions.h:
7584         * gst-libs/gst/interfaces/mixertrack.c:
7585         * gst-libs/gst/interfaces/mixertrack.h:
7586         * tests/check/Makefile.am:
7587         * tests/check/libs/mixer.c:
7588
7589         Patch By: Marc-Andre Lureau <marcandre.lureau@gmail.com>
7590         Fixes: #152864 
7591
7592         Add support for notifying mixer changes on the message bus, and
7593         implement it in alsamixer.
7594
7595         API: gst_mixer_get_mixer_flags
7596         API: gst_mixer_message_parse_mute_toggled
7597         API: gst_mixer_message_parse_record_toggled
7598         API: gst_mixer_message_parse_volume_changed
7599         API: gst_mixer_message_parse_option_changed
7600         API: GstMixerMessageType
7601         API: GstMixerFlags
7602
7603 2007-07-20  Michael Smith <msmith@fluendo.com>
7604
7605         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
7606         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_setcaps):
7607           xcontext->im_format is only for testing XShm support (as the header
7608           file comments document). Use xvimage->im_format for everything else.
7609           Avoids spurious warnings on buffer allocation before setcaps.
7610
7611 2007-07-20  Stefan Kost  <ensonic@users.sf.net>
7612
7613         * tests/examples/volume/Makefile.am:
7614         * tests/icles/Makefile.am:
7615           We should use $(LIBM).
7616
7617 2007-07-20  Stefan Kost  <ensonic@users.sf.net>
7618
7619         * tests/icles/Makefile.am:
7620           This needs -lm.
7621
7622 2007-07-16  Wim Taymans  <wim.taymans@gmail.com>
7623
7624         * gst-libs/gst/rtp/gstbasertppayload.c:
7625         (gst_basertppayload_class_init), (gst_basertppayload_init),
7626         (gst_basertppayload_set_property),
7627         (gst_basertppayload_get_property):
7628         Don't break ABI, restore previous ranges. Keep the default random
7629         selection of timestamp and seqnum offset but as soon as the app sets a
7630         specific value, use that one.
7631
7632 2007-07-14  Wim Taymans  <wim.taymans@gmail.com>
7633
7634         Patch by: Bastien Nocera <hadess at hadess dot net>
7635
7636         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
7637         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
7638         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
7639         * sys/xvimage/xvimagesink.h:
7640         Add option to turn off double-buffering for debugging purposes.
7641         Fixes #437169.
7642
7643 2007-07-14  Wim Taymans  <wim.taymans@gmail.com>
7644
7645         Patch by: Jorn Baayen <jorn at openedhand dot com>
7646
7647         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
7648         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
7649         (gst_ximagesink_init), (gst_ximagesink_class_init):
7650         * sys/ximage/ximagesink.h:
7651         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents),
7652         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
7653         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
7654         * sys/xvimage/xvimagesink.h:
7655         add 'handle-expose' property. Useful for video widgets which may want to
7656         be in control of Expose behaviour. Fixes #380625
7657
7658 2007-07-14  Wim Taymans  <wim.taymans@gmail.com>
7659
7660         * gst-libs/gst/rtp/gstbasertppayload.c:
7661         (gst_basertppayload_class_init), (gst_basertppayload_init),
7662         (gst_basertppayload_event), (gst_basertppayload_push),
7663         (gst_basertppayload_set_property),
7664         (gst_basertppayload_get_property),
7665         (gst_basertppayload_change_state):
7666         * gst-libs/gst/rtp/gstbasertppayload.h:
7667         Fix ranges of rtp payloader properties so that the full range can be
7668         used in addition to -1 (random).
7669         Fix wrong seqnum reporting in caps.
7670         Fixes #420326.
7671
7672 2007-07-13  Wim Taymans  <wim.taymans@gmail.com>
7673
7674         * gst/videorate/gstvideorate.c: (gst_video_rate_init),
7675         (gst_video_rate_query):
7676         Use boilerplate.
7677         Add latency query, might not be perfect yet but already works a lot
7678         better. Fixes #442557.
7679
7680 2007-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
7681
7682         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
7683         (gst_xvimagesink_setcaps):
7684         * sys/xvimage/xvimagesink.h:
7685         After a caps change, redraw our borders to avoid garbage left there
7686         when the image format changes to a smaller size, like 16:9 -> 4:3
7687         Also, hold the flow_lock a bit longer in the set_caps while we're
7688         fiddling with the xcontext.
7689
7690 2007-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
7691
7692         * Makefile.am:
7693         * configure.ac:
7694         * tests/Makefile.am:
7695         Remove bogus check for libcheck, since we check for
7696         gstreamer-check and it pulls in the required info from there, and we
7697         weren't actually _using_ the information for libcheck ourselves
7698         anyway.
7699
7700 2007-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
7701
7702         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
7703         (gst_ffmpeg_caps_to_pixfmt):
7704         Fix the r_mask test for RGBA32 on little-endian.
7705         Fix a stupid typo that would have obviously broken 
7706         compilation on big-endian, if anyone was testing.
7707
7708 2007-07-12  Wim Taymans  <wim.taymans@gmail.com>
7709
7710         * gst/videotestsrc/videotestsrc.c: (paint_hline_AYUV),
7711         (paint_hline_str4):
7712         * gst/videotestsrc/videotestsrc.h:
7713         Add alpha to the color struct.
7714         Use a default alpha value of 255 instead of 128.
7715
7716 2007-07-12  Wim Taymans  <wim.taymans@gmail.com>
7717
7718         * gst/playback/gstplaybasebin.c: (no_more_pads_full),
7719         (setup_source):
7720         Clear the dynamic pads counter when starting a new uri. This makes
7721         reusing playbin work again.
7722         Fixes #454264.
7723
7724 2007-07-12  Stefan Kost  <ensonic@users.sf.net>
7725
7726         * configure.ac:
7727           Use pkg-config to locate check.
7728
7729 2007-07-12  Tim-Philipp Müller  <tim at centricular dot net>
7730
7731         * configure.ac:
7732         * tests/check/elements/volume.c: (GST_START_TEST):
7733           Fix 'make check' build against core CVS.
7734
7735 2007-07-10  Stefan Kost  <ensonic@users.sf.net>
7736
7737         * gst-libs/gst/interfaces/propertyprobe.c:
7738         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
7739         * gst-libs/gst/tag/gstvorbistag.c:
7740           Make gtk-doc happy.
7741
7742 2007-07-08  Tim-Philipp Müller  <tim at centricular dot net>
7743
7744         * gst-libs/gst/audio/gstbaseaudiosink.c:
7745         (gst_base_audio_sink_callback):
7746           Quick hack to make audiosinks stop at EOS when operating in
7747           pull-mode; needs to be fixed properly some day.
7748
7749 2007-07-06  Stefan Kost  <ensonic@users.sf.net>
7750
7751         * docs/libs/gst-plugins-base-libs-sections.txt:
7752           Fix location of includes in the docs.
7753
7754 2007-07-06  Jan Schmidt  <thaytan@mad.scientist.com>
7755
7756         * gst/ffmpegcolorspace/avcodec.h:
7757         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
7758         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
7759         (gst_ffmpegcsp_avpicture_fill):
7760         * gst/ffmpegcolorspace/imgconvert.c: (img_convert),
7761         (img_get_alpha_info):
7762         Add 2 new pixel formats - ABGR32 and ARGB32, which are reflections
7763         of the existing BGRA32 and RGBA32 formats with the alpha at the other
7764         end of the word. Partially fixes #451908
7765
7766 2007-07-05  Stefan Kost  <ensonic@users.sf.net>
7767
7768         * docs/libs/Makefile.am:
7769         * docs/plugins/Makefile.am:
7770           Simplify --extra-dir as gtkdoc scans recursively.
7771
7772 2007-07-03  Wim Taymans  <wim.taymans@gmail.com>
7773
7774         * gst/adder/gstadder.c: (gst_adder_sink_getcaps),
7775         (gst_adder_request_new_pad):
7776         Make getcaps more robust by not using the proxycaps function. This makes
7777         sure that we don't end up recursively calling getcaps upstream.
7778         See #316248.
7779
7780 2007-06-29  Wim Taymans  <wim.taymans@gmail.com>
7781
7782         * gst/audioconvert/audioconvert.c:
7783         Include math.h to fix compilation.
7784
7785 2007-06-29  Jan Schmidt  <thaytan@mad.scientist.com>
7786
7787         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
7788         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
7789         Add a mapping for YUV format "IYU1", which is a 4:1:1 packed pixel
7790         format, as produced by some dc1394 cameras like the iSight.
7791         See http://www.fourcc.org/yuv.php#IYU1
7792
7793 2007-06-28  Sebastian Dröge  <slomo@circular-chaos.org>
7794
7795         * gst/audioconvert/Makefile.am:
7796         * gst/audioconvert/audioconvert.c: (audio_convert_get_func_index),
7797         (check_default), (audio_convert_prepare_context),
7798         (audio_convert_clean_context), (audio_convert_convert):
7799         * gst/audioconvert/audioconvert.h:
7800         * gst/audioconvert/gstaudioconvert.c:
7801         (gst_audio_convert_dithering_get_type),
7802         (gst_audio_convert_ns_get_type), (gst_audio_convert_class_init),
7803         (gst_audio_convert_init), (gst_audio_convert_set_caps),
7804         (gst_audio_convert_set_property), (gst_audio_convert_get_property):
7805         * gst/audioconvert/gstaudioconvert.h:
7806         * gst/audioconvert/gstaudioquantize.c:
7807         (gst_audio_quantize_setup_noise_shaping),
7808         (gst_audio_quantize_free_noise_shaping),
7809         (gst_audio_quantize_setup_dither),
7810         (gst_audio_quantize_free_dither),
7811         (gst_audio_quantize_setup_quantize_func),
7812         (gst_audio_quantize_setup), (gst_audio_quantize_free):
7813         * gst/audioconvert/gstaudioquantize.h:
7814         Implement dithering and noise shaping in audioconvert. By default now
7815         TPDF dithering (and no noise shaping) will be used when converting
7816         from a higher bit depth to 20 bit depth or smaller, otherwise
7817         everything will be as it is now.
7818         For the last audioconvert in a pipeline it would make sense to
7819         use some kind of noise shaping, enabling it by default for all
7820         conversions would give undesired results though. Fixes #360246.
7821         * tests/check/elements/audioconvert.c: (setup_audioconvert),
7822         (GST_START_TEST):
7823         Adjust unit test for the new audioconvert.
7824
7825 2007-06-28  Wim Taymans  <wim@fluendo.com>
7826
7827         * gst/playback/gstqueue2.c: (apply_segment), (update_buffering):
7828         Use other metrics as well when estimating the buffer level.
7829
7830 2007-06-28  Wim Taymans  <wim@fluendo.com>
7831
7832         * gst/playback/gstplaybasebin.c: (make_decoder), (setup_source):
7833         Small debug improvement.
7834
7835         * gst/playback/gstqueue2.c: (apply_segment), (update_buffering),
7836         (plugin_init):
7837         Tweak the rate estimation period.
7838         When calculating the buffer filledness in rate estimation mode, don't
7839         mix it with other metrics.
7840
7841 2007-06-28  Wim Taymans  <wim@fluendo.com>
7842
7843         * gst/playback/gstdecodebin2.c: (gst_decode_group_new),
7844         (gst_decode_group_expose), (gst_decode_group_free), (add_fakesink):
7845         When creating the groups, allow for a 5 second, unlimited buffers
7846         preroll phase after which we expose the group.
7847         When the group is exposed, use a small number of buffers up to a 2
7848         second limit. Also disconnect the overrun signal from multiqueue when we
7849         exposed the group because it is not needed anymore.
7850
7851 2007-06-27  Tim-Philipp Müller  <tim at centricular dot net>
7852
7853         * gst-libs/gst/tag/tags.c: (gst_tag_freeform_string_to_utf8):
7854           Don't pass trailing zeroes in fixed-size string arrays in ID3v1 tags
7855           to utf8-validate; fixes recognition of ID3v1 tags in UTF-8 encoding
7856           (#451707); also, output some debugging info when dealing with
7857           freeform strings.
7858
7859         * tests/check/libs/tag.c: (GST_START_TEST), (tag_suite):
7860           Add unit test for the above.
7861
7862 2007-06-27  Tim-Philipp Müller  <tim at centricular dot net>
7863
7864         * gst-libs/gst/pbutils/descriptions.c: (caps_are_rtp_caps):
7865           Add description for Windows Media RTP caps.
7866
7867         * gst-libs/gst/pbutils/missing-plugins.c: (copy_and_clean_caps):
7868           Remove RTP fields that don't define the format from caps.
7869
7870 2007-06-27  Tim-Philipp Müller  <tim at centricular dot net>
7871
7872         * ext/vorbis/vorbisdec.c: (vorbis_dec_decode_buffer):
7873           Skip empty buffers, but not empty header buffers. That way the original
7874           vorbisdec unit test still passes (#451145); also, take into account
7875           that those empty packets might carry a granulepos.
7876
7877         * tests/check/Makefile.am:
7878         * tests/check/elements/vorbisdec.c:
7879         (_create_codebook_header_buffer), (_create_audio_buffer),
7880         (GST_START_TEST), (vorbisdec_suite):
7881           Add unit test that sends an empty packet.
7882
7883 2007-06-27  Wim Taymans  <wim@fluendo.com>
7884
7885         * ext/vorbis/vorbisdec.c: (vorbis_dec_decode_buffer):
7886         Don't error out on 0-sized packets, just emit a warning because this is
7887         not a fatal error. Fixes #451145.
7888
7889 2007-06-25  Stefan Kost  <ensonic@users.sf.net>
7890
7891         * docs/plugins/gst-plugins-base-plugins.args:
7892         * docs/plugins/gst-plugins-base-plugins.signals:
7893         * docs/plugins/inspect/plugin-adder.xml:
7894         * docs/plugins/inspect/plugin-alsa.xml:
7895         * docs/plugins/inspect/plugin-audioconvert.xml:
7896         * docs/plugins/inspect/plugin-audiorate.xml:
7897         * docs/plugins/inspect/plugin-audioresample.xml:
7898         * docs/plugins/inspect/plugin-audiotestsrc.xml:
7899         * docs/plugins/inspect/plugin-cdparanoia.xml:
7900         * docs/plugins/inspect/plugin-decodebin.xml:
7901         * docs/plugins/inspect/plugin-decodebin2.xml:
7902         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
7903         * docs/plugins/inspect/plugin-gdp.xml:
7904         * docs/plugins/inspect/plugin-gnomevfs.xml:
7905         * docs/plugins/inspect/plugin-libvisual.xml:
7906         * docs/plugins/inspect/plugin-ogg.xml:
7907         * docs/plugins/inspect/plugin-pango.xml:
7908         * docs/plugins/inspect/plugin-playbin.xml:
7909         * docs/plugins/inspect/plugin-subparse.xml:
7910         * docs/plugins/inspect/plugin-tcp.xml:
7911         * docs/plugins/inspect/plugin-theora.xml:
7912         * docs/plugins/inspect/plugin-typefindfunctions.xml:
7913         * docs/plugins/inspect/plugin-video4linux.xml:
7914         * docs/plugins/inspect/plugin-videorate.xml:
7915         * docs/plugins/inspect/plugin-videoscale.xml:
7916         * docs/plugins/inspect/plugin-videotestsrc.xml:
7917         * docs/plugins/inspect/plugin-volume.xml:
7918         * docs/plugins/inspect/plugin-vorbis.xml:
7919         * docs/plugins/inspect/plugin-ximagesink.xml:
7920         * docs/plugins/inspect/plugin-xvimagesink.xml:
7921           Update docs with caps info.
7922
7923 2007-06-25  Tim-Philipp Müller  <tim at centricular dot net>
7924
7925         * po/POTFILES.in:
7926           Add more files with translatable strings (#450875).
7927
7928 2007-06-23  Edward Hervey  <edward@fluendo.com>
7929
7930         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_find_chains):
7931         The chain should be freed if we error out here, else it will leak.
7932         * gst/playback/gstdecodebin.c: (disconnect_unlinked_signals),
7933         (cleanup_decodebin):
7934         Don't forget to *properly* remove the signals, else it will leak.
7935
7936 2007-06-22  Jan Schmidt  <thaytan@noraisin.net>
7937
7938         * MAINTAINERS:
7939         Updating all the maintainers files
7940
7941 2007-06-21  Stefan Kost  <ensonic@users.sf.net>
7942
7943         * tests/examples/seek/seek.c: (update_scale), (play_cb), (stop_cb),
7944         (main):
7945           Destroy and recreate parse-launch based pipeline after stop to be able
7946           to play again. Reorder some code and add more comments.
7947
7948 2007-06-20  Jan Schmidt  <thaytan@mad.scientist.com>
7949
7950         * gst/playback/gstdecodebin2.c: (analyze_new_pad):
7951         When handling a delayed-caps notification case, mark
7952         the group as dynamic so that the nbdynamic count is
7953         incremented and decremented correctly. Fixes: #449156
7954         Patch by: Wim Taymans <wim@fluendo.com>
7955
7956 2007-06-19  Andy Wingo  <wingo@pobox.com>
7957
7958         * gst-libs/gst/audio/gstbaseaudiosink.c
7959         (gst_base_audio_sink_init): Enable pull-mode operation.
7960
7961 2007-06-19  Michael Smith <msmith@fluendo.com>
7962
7963         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
7964           Change minimum rate back to 1000 to allow low-sample-rate wav files
7965           to play back.
7966
7967 2007-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
7968
7969         * po/vi.po:
7970           Update translations.
7971
7972 2007-06-15  David Schleef  <ds@schleef.org>
7973
7974         * gst/playback/gstqueue2.c:
7975           Fix compile error from ignored return value.
7976
7977 2007-06-15  Michael Smith <msmith@fluendo.com>
7978
7979         * gst/videoscale/vs_4tap.c: (vs_image_scale_4tap_Y):
7980           Update tmpbuf for all neccesary rows, not just one, as is required
7981           when downscaling.
7982           Fixes #402076.
7983
7984 2007-06-15  Michael Smith <msmith@fluendo.com>
7985
7986         * tests/check/pipelines/oggmux.c: (validate_ogg_page), (is_video),
7987         (eos_buffer_probe):
7988           Add a test that ensures we set DELTA_UNIT on all non-header,
7989           non-video buffers, if we have a video stream.
7990         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
7991         (gst_ogg_mux_process_best_pad):
7992           Move setting delta_pad to earlier, where we inspect all pads, so
7993           that leading audio pages don't get DELTA_UNIT unset if they come
7994           before the first DELTA_UNIT from video pages. Fixes the newly-added
7995           test. Fixes #385527.
7996
7997 2007-06-14  Tim-Philipp Müller  <tim at centricular dot net>
7998
7999         * tests/check/pipelines/streamheader.c: (streamheader_suite):
8000           Disable test_multifdsink_gdp_vorbisenc() on ppc64 since it
8001           fails on the p5-ppc64 build bot and the failure looks like it is due
8002           to the same issue as #348114, ie. a compiler bug.
8003
8004 2007-06-13  Edward Hervey  <edward@fluendo.com>
8005
8006         * gst/playback/gstqueue2.c: (gst_queue_create_read):
8007         Fix build on MacOSX.
8008
8009 2007-06-13  Wim Taymans  <wim@fluendo.com>
8010
8011         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
8012         (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain):
8013         Fix compilation on mingw. Fixes #446972.
8014
8015 2007-06-12  Wim Taymans  <wim@fluendo.com>
8016
8017         Patches by: Thiago Sousa Santos <thiagossantos at gmail dot com>
8018
8019         * gst/playback/gstqueue2.c: (update_buffering),
8020         (gst_queue_locked_enqueue):
8021         Fix a division by zero when the max percent is <= 0. Fixes #446572.
8022         also update the buffering status when receiving events. Fixes #446551.
8023
8024 2007-06-11  Wim Taymans  <wim@fluendo.com>
8025
8026         Based on patch by: Thiago Sousa Santos <thiagossantos at gmail dot com>
8027
8028         * gst/playback/gstqueue2.c: (gst_queue_peer_query),
8029         (gst_queue_handle_src_query):
8030         Wait for preroll before attempting to forward a duration query upstream.
8031         Fixes #445505.
8032
8033 2007-06-07  Sebastien Moutte  <sebastien@moutte.net>
8034
8035         * gst-libs/gst/rtp/gstbasertpdepayload.c: 
8036         (gst_base_rtp_depayload_set_gst_timestamp):
8037         Use G_GINT64_CONSTANT macro for int64 constant.
8038         * win32/common/libgstinterfaces.def:
8039         * win32/common/libgsttag.def:
8040         Add new exported functions.
8041
8042 2007-06-07  Tim-Philipp Müller  <tim at centricular dot net>
8043
8044         * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers):
8045           The BOS page of the first Dirac video stream needs to come before
8046           the BOS page of any Vorbis streams or other audio streams, just like
8047           it is with Theora.
8048
8049 2007-06-07  Wim Taymans  <wim@fluendo.com>
8050
8051         * gst/playback/gstqueue2.c: (gst_queue_get_range):
8052         Fix compilation.
8053
8054 2007-06-06  Wim Taymans  <wim@fluendo.com>
8055
8056         Patch by: Thiago Sousa Santos <thiagossantos at gmail dot com>
8057
8058         * gst/playback/gstqueue2.c: (gst_queue_init),
8059         (gst_queue_handle_sink_event), (gst_queue_chain),
8060         (gst_queue_get_range), (gst_queue_src_checkgetrange_function),
8061         (gst_queue_sink_activate_push), (gst_queue_src_activate_push),
8062         (gst_queue_src_activate_pull):
8063         Add pull based scheduling and fix some deadlocks. Fixes #444523.
8064         Does not yet completely work because duration queries upstream won't
8065         block yet.
8066
8067 2007-06-06  Wim Taymans  <wim@fluendo.com>
8068
8069         * configure.ac:
8070         * gst/playback/gstqueue2.c: (gst_queue_create_read):
8071         Some more fseeko checks.
8072
8073 2007-06-06  Wim Taymans  <wim@fluendo.com>
8074
8075         * configure.ac:
8076         check for large file support.
8077
8078 2007-06-05  Sebastian Dröge  <slomo@circular-chaos.org>
8079
8080         Based on a patch by Sven Arvidsson <sa at whiz dot se>:
8081
8082         * gst/subparse/gstsubparse.c: (parse_subrip),
8083         (subviewer_unescape_newlines), (parse_subviewer),
8084         (gst_sub_parse_data_format_autodetect),
8085         (gst_sub_parse_format_autodetect), (gst_subparse_type_find):
8086         * gst/subparse/gstsubparse.h:
8087         Add support for SubViewer version 1 and 2 subtitles. Fixes #394061.
8088         * tests/check/elements/subparse.c: (GST_START_TEST),
8089         (subparse_suite):
8090         Add a unit test for both SubViewer formats.
8091
8092 2007-06-01  Michael Smith <msmith@fluendo.com>
8093
8094         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_do_seek):
8095           Don't overflow intermediate values when seeking to large time values
8096           in audiotestsrc.
8097
8098 2007-06-05  Wim Taymans  <wim@fluendo.com>
8099
8100         * gst/playback/gstqueue2.c: (gst_queue_have_data),
8101         (gst_queue_create_read), (gst_queue_read_item_from_file),
8102         (gst_queue_open_temp_location_file), (gst_queue_locked_enqueue):
8103         Include stdio to define fseeko.
8104
8105 2007-06-05  Wim Taymans  <wim@fluendo.com>
8106
8107         Patch by: Edward Hervey  <edward@fluendo.com>
8108
8109         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_fixate),
8110         (gst_v4lsrc_query):
8111         Make v4lsrc output segments in GST_FORMAT_TIME. Fixes #442553.
8112
8113 2007-06-05  Tim-Philipp Müller  <tim at centricular dot net>
8114
8115         * gst-libs/gst/riff/Makefile.am:
8116         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_info):
8117           Use gst_tag_utf8_from_freeform_string() from libgsttag instead of
8118           our own implementation.
8119
8120 2007-06-05  Wim Taymans  <wim@fluendo.com>
8121
8122         * gst-libs/gst/rtp/gstbasertpdepayload.c:
8123         (gst_base_rtp_depayload_setcaps),
8124         (gst_base_rtp_depayload_set_gst_timestamp),
8125         (gst_base_rtp_depayload_change_state):
8126         Handle timestamp wraparound.
8127
8128 2007-06-05  Wim Taymans  <wim@fluendo.com>
8129
8130         * gst/playback/gsturidecodebin.c: (no_more_pads_full),
8131         (new_decoded_pad), (remove_pads), (make_decoder), (setup_source),
8132         (gst_uri_decode_bin_change_state):
8133         Make sure we name srcpads uniquely even when using different internal
8134         decodebins.
8135         Signal no-more-pads when no more dynamic elements exist.
8136         Remove pads on cleanup.
8137
8138 2007-06-05  Wim Taymans  <wim@fluendo.com>
8139
8140         Based on patch by: Thiago Sousa Santos <thiagossantos at gmail dot com>
8141
8142         * gst/playback/gstqueue2.c: (gst_queue_class_init),
8143         (gst_queue_init), (gst_queue_finalize),
8144         (gst_queue_write_buffer_to_file), (gst_queue_have_data),
8145         (gst_queue_create_read), (gst_queue_read_item_from_file),
8146         (gst_queue_open_temp_location_file),
8147         (gst_queue_close_temp_location_file), (gst_queue_locked_flush),
8148         (gst_queue_locked_enqueue), (gst_queue_locked_dequeue),
8149         (gst_queue_is_empty), (gst_queue_is_filled),
8150         (gst_queue_change_state), (gst_queue_set_temp_location),
8151         (gst_queue_set_property):
8152         Add support for filebased buffering. Fixes #441264.
8153
8154 2007-06-05  Wim Taymans  <wim@fluendo.com>
8155
8156         * gst/playback/gstdecodebin2.c: (gst_decode_bin_factory_filter),
8157         (analyze_new_pad), (connect_pad), (expose_pad), (caps_notify_cb),
8158         (caps_notify_group_cb), (gst_decode_group_new),
8159         (gst_decode_group_free):
8160         Add support for delayed caps fixation when autoplugging.
8161         Optimize cases where a multiqueue is not needed/wanted, like right after
8162         anything that is not a demuxer.
8163
8164 2007-06-05  Wim Taymans  <wim@fluendo.com>
8165
8166         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_parse_skeleton_fisbone),
8167         (gst_ogg_pad_submit_packet), (gst_ogg_demux_perform_seek),
8168         (gst_ogg_demux_read_chain), (gst_ogg_demux_collect_chain_info):
8169         consideratly speedup ogg chain detection by not trying to find a base
8170         timestamp for skeleton streams. 
8171
8172 2007-06-05  Wim Taymans  <wim@fluendo.com>
8173
8174         * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type),
8175         (gst_multi_fd_sink_class_init), (gst_multi_fd_sink_add_full),
8176         (gst_multi_fd_sink_remove_flush),
8177         (gst_multi_fd_sink_remove_client_link),
8178         (gst_multi_fd_sink_handle_client_write),
8179         (gst_multi_fd_sink_handle_clients):
8180         * gst/tcp/gstmultifdsink.h:
8181         Add support for remove_flush.
8182
8183 2007-06-05  Wim Taymans  <wim@fluendo.com>
8184
8185         * docs/design/draft-keyframe-force.txt:
8186         * ext/theora/theoraenc.c: (theora_enc_sink_event),
8187         (theora_enc_chain):
8188         Add draft design for forcing keyframes in encoders and implement in
8189         theoraenc.
8190
8191 2007-06-05  Jan Schmidt  <thaytan@mad.scientist.com>
8192
8193         * configure.ac:
8194           Back to CVS
8195
8196 === release 0.10.13 ===
8197
8198 2007-06-05  Jan Schmidt <thaytan@mad.scientist.com>
8199
8200         * configure.ac:
8201           releasing 0.10.13, "What's Going on?"
8202
8203 2007-05-31  Jan Schmidt  <thaytan@mad.scientist.com>
8204
8205         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
8206         In riff, the depth is stored in the size field but it just means that
8207         the least significant bits are cleared. We can therefore just play
8208         the sample as if it had a depth == width. Fixes: #440997
8209
8210         Patch by: Wim Taymans <wim@fluendo.com> 
8211         Patch by: Sebastian Dröge  <slomo@circular-chaos.org>
8212
8213 2007-05-31  Jan Schmidt  <thaytan@mad.scientist.com>
8214
8215         * gst-libs/gst/floatcast/floatcast.h:
8216         Define inline when needed on win32 builds. Fixes: #441295
8217         Patch by: Sebastien Moutte  <sebastien@moutte.net>
8218
8219 2007-05-29  Wim Taymans  <wim@fluendo.com>
8220
8221         * gst/playback/gstplaybasebin.c: (queue_overrun),
8222         (no_more_pads_full):
8223         Stop buffering when the group is commited because the queues filled up.
8224         Fixes #442024.
8225
8226 2007-05-25  Jan Schmidt  <thaytan@mad.scientist.com>
8227
8228         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_ensure_track_list),
8229         (gst_alsa_mixer_free), (gst_alsa_mixer_update),
8230         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
8231         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
8232         (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
8233         * ext/alsa/gstalsamixer.h:
8234         * ext/alsa/gstalsamixerelement.c:
8235         (gst_alsa_mixer_element_interface_supported),
8236         (gst_alsa_mixer_element_finalize), (gst_alsa_mixer_element_init),
8237         (gst_alsa_mixer_element_set_property),
8238         (gst_alsa_mixer_element_get_property),
8239         (gst_alsa_mixer_element_change_state):
8240         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_update):
8241         * gst-libs/gst/interfaces/mixer.c: (gst_mixer_volume_changed),
8242         (gst_mixer_option_changed):
8243         * gst-libs/gst/interfaces/mixer.h:
8244         Revert commits towards #152864 made so far. We'll pick it up again
8245         after the 0.10.13 release.
8246
8247 2007-05-24  Wim Taymans  <wim@fluendo.com>
8248
8249         * gst-libs/gst/audio/gstbaseaudiosink.c:
8250         (gst_base_audio_sink_render):
8251         After an interrupt (PAUSED/flush) assume that the next sample should not
8252         be aligned to the previous sample. Fixes #417992.
8253
8254 2007-05-24  Tim-Philipp Müller  <tim at centricular dot net>
8255
8256         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
8257           Don't add channels and rate fields to the template caps for
8258           audio/x-dts, as wavparse might not always be able to set them,
8259           which would then lead to 'caps are not a real subset of the
8260           template caps' warnings.
8261
8262 2007-05-24  Jan Schmidt  <thaytan@mad.scientist.com>
8263
8264         * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
8265         Handle unknown or invalid pads without crashing, as might occur if
8266         a media file like an mp3 is specified as a subtitle file.
8267         Fixes: #410039
8268
8269 2007-05-24  Jan Schmidt  <thaytan@mad.scientist.com>
8270
8271         * gst/playback/gstplaybin.c: (add_sink), (dummy_blocked_cb),
8272         (setup_sinks):
8273         Block the subtitle bin output queue before ghosting it and linking,
8274         then unblock after. This avoids spurious not-linked errors caused 
8275         by the queue starting up (because it gets linked when it is ghosted). 
8276         Fixes: #350299
8277
8278 2007-05-23  Jan Schmidt  <thaytan@mad.scientist.com>
8279
8280         * tests/check/elements/playbin.c: (test_suburi_error_unknowntype):
8281         Use /dev/zero instead of /dev/urandom to produce an invalid subtitle
8282         file. Avoids flukes where the input gets typefound to some valid but
8283         useless type.
8284
8285 2007-05-22  Tim-Philipp Müller  <tim at centricular dot net>
8286
8287         * tests/check/Makefile.am:
8288         * tests/check/elements/.cvsignore:
8289         * tests/check/elements/gnomevfssink.c: (setup_gnomevfssink),
8290         (cleanup_gnomevfssink), (GST_START_TEST), (gnomevfssink_suite):
8291           Add unit test for gnomevfssink seeking and position reporting for
8292           file:// URIs.
8293
8294 2007-05-22  Tim-Philipp Müller  <tim at centricular dot net>
8295
8296         Patch by: Mark Nauwelaerts <manauw at skynet be>
8297
8298         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_init),
8299         (gst_gnome_vfs_sink_open_file), (gst_gnome_vfs_sink_handle_event),
8300         (gst_gnome_vfs_sink_query), (gst_gnome_vfs_sink_render):
8301         * ext/gnomevfs/gstgnomevfssink.h:
8302           Fix position reporting, especially after a seek (from upstream),
8303           see #412648.
8304
8305 2007-05-22  Tim-Philipp Müller  <tim at centricular dot net>
8306
8307         * ext/cdparanoia/gstcdparanoiasrc.c:
8308           Repair umlaut.
8309
8310 2007-05-22  Jan Schmidt  <thaytan@mad.scientist.com>
8311
8312         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
8313         Specify the full valid range for MP3 samplerates. Fixes a regression
8314         caused by extra header checks since the last release.
8315
8316 2007-05-21  Jan Schmidt  <thaytan@mad.scientist.com>
8317
8318         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
8319         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
8320         Fix a locking-order bug I introduced with my changes the other day.
8321         Patch by Mike Smith.
8322
8323 2007-05-21  Michael Smith <msmith@fluendo.com>
8324
8325         * ext/theora/theoradec.c: (theora_handle_data_packet):
8326           Don't look inside 0-length packets (which indicate duplicated
8327           frames)
8328
8329 2007-05-21  Wim Taymans  <wim@fluendo.com>
8330
8331         * ext/cdparanoia/gstcdparanoiasrc.c:
8332         (gst_cd_paranoia_src_read_sector):
8333         * gst-libs/gst/audio/gstbaseaudiosrc.c:
8334         (gst_base_audio_src_create):
8335         Small cleanups.
8336
8337         * ext/theora/theoradec.c: (theora_dec_sink_event):
8338         Fix typo.
8339
8340         * gst-libs/gst/rtp/gstbasertpdepayload.c:
8341         (gst_base_rtp_depayload_set_gst_timestamp):
8342         Add some FIXME
8343
8344         * gst/playback/gstdecodebin.c: (queue_underrun_cb):
8345         And some debug info when a FIXME path is hit.
8346
8347 2007-05-21  Wim Taymans  <wim@fluendo.com>
8348
8349         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
8350         (gst_base_rtp_audio_payload_class_init),
8351         (gst_base_rtp_audio_payload_init),
8352         (gst_base_rtp_audio_payload_finalize),
8353         (gst_base_rtp_audio_payload_handle_frame_based_buffer),
8354         (gst_base_rtp_audio_payload_handle_sample_based_buffer),
8355         (gst_base_rtp_payload_audio_handle_event):
8356         Some cleanups, remove minptime property as it is now in the parent
8357         class.
8358         Override parent class event function.
8359
8360         * gst-libs/gst/rtp/gstbasertppayload.c:
8361         (gst_basertppayload_class_init), (gst_basertppayload_init),
8362         (gst_basertppayload_event), (gst_basertppayload_set_property),
8363         (gst_basertppayload_get_property):
8364         * gst-libs/gst/rtp/gstbasertppayload.h:
8365         Add min-ptime property.
8366         Add handle-event vmethod. Fixes #415001.
8367
8368 2007-05-18  Stefan Kost  <ensonic@users.sf.net>
8369
8370         * gst-libs/gst/audio/gstbaseaudiosink.c
8371           (gst_base_audio_sink_change_state):
8372           Fix typo in comment.
8373
8374         * gst/playback/gstdecodebin.c (gst_decode_bin_class_init,
8375           free_dynamics, pad_probe, close_pad_link, try_to_link_1,
8376           get_our_ghost_pad, remove_element_chain, queue_underrun_cb,
8377           close_link):
8378         * gst/playback/gstplaybin.c (gst_play_bin_set_property,
8379           gen_audio_element, remove_sinks, gst_play_bin_send_event_to_sink):
8380           Remove trailing whitespaces in comments.
8381
8382         * gst/volume/Makefile.am:
8383           Fix tabs.
8384
8385 2007-05-18  Stefan Kost  <ensonic@users.sf.net>
8386
8387         patch by: Marc-Andre Lureau <marcandre.lureau@gmail.com>
8388
8389         * gst-libs/gst/interfaces/mixer.h (mixer_type, option_changed,
8390           set_option, get_option, _gst_reserved):
8391           Revert reordering functions (keep ABI).
8392
8393 2007-05-17  Jan Schmidt  <thaytan@mad.scientist.com>
8394
8395         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
8396         (gst_ximagesink_xwindow_new), (gst_ximagesink_handle_xevents),
8397         (gst_ximagesink_show_frame):
8398         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
8399         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_handle_xevents),
8400         (gst_xvimagesink_show_frame):
8401         When we create our own window, indicate that we handle the 
8402         WM_DELETE client message from the window manager, so that it won't 
8403         kill our window (and our app) along with it. Handle ClientMessage,
8404         post an error on the bus, and close the window. Further buffers
8405         arriving will result in a FlowError because the window has been
8406         destroyed.
8407
8408         Fixes: #393975
8409
8410         Clean up the X event handling loop and make them the same for
8411         both xvimagesink and ximagesink while I'm at it.
8412
8413 2007-05-17  Wim Taymans  <wim@fluendo.com>
8414
8415         * gst/playback/gstdecodebin2.c: (gst_decode_bin_factory_filter):
8416         Make decodebin2 autoplug depayloaders too.
8417
8418         * gst/playback/gsturidecodebin.c: (source_new_pad):
8419         Set the newly created decoder in a usable state when autoplugging a
8420         dynamic source such as RTSP.
8421
8422 2007-05-17  Tim-Philipp Müller  <tim at centricular dot net>
8423
8424         * gst/playback/gststreaminfo.c: (cb_probe):
8425           Ignore video-codec tag for audio streams and ignore audio-codec tags
8426           for video streams. Should make codec name collection a bit more
8427           robust against sloppy demuxers that send tag events containing both
8428           tags down each pad.
8429
8430 2007-05-17  Wim Taymans  <wim@fluendo.com>
8431
8432         * gst/playback/gstqueue2.c: (update_rates):
8433         Tweak the buffering thresholds a little.
8434         Update the buffer size with the previously calculate rate instead of
8435         only when we calculate a new rate so that we get smoother buffering
8436         updates.
8437
8438         * gst/playback/Makefile.am:
8439         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_base_init),
8440         (gst_uri_decode_bin_class_init), (gst_uri_decode_bin_init),
8441         (gst_uri_decode_bin_finalize), (gst_uri_decode_bin_set_property),
8442         (gst_uri_decode_bin_get_property), (unknown_type),
8443         (add_element_stream), (no_more_pads_full), (no_more_pads),
8444         (source_no_more_pads), (new_decoded_pad), (array_has_value),
8445         (gen_source_element), (has_all_raw_caps), (analyse_source),
8446         (remove_decoders), (make_decoder), (remove_source),
8447         (source_new_pad), (setup_source), (decoder_query_init),
8448         (decoder_query_duration_fold), (decoder_query_duration_done),
8449         (decoder_query_position_fold), (decoder_query_position_done),
8450         (decoder_query_latency_fold), (decoder_query_latency_done),
8451         (decoder_query_seeking_fold), (decoder_query_seeking_done),
8452         (decoder_query_generic_fold), (gst_uri_decode_bin_query),
8453         (gst_uri_decode_bin_change_state), (plugin_init):
8454         New element that intergrates a source, optional buffering element and
8455         decodebin.
8456
8457 2007-05-17  Tim-Philipp Müller  <tim at centricular dot net>
8458
8459         * configure.ac:
8460           Bump libtheora requirement to 1.0alpha5 for the pixformat check
8461           (also has a .pc file, so we don't need the fallback check any
8462           longer). Fixes #438840.
8463
8464 2007-05-17  Wim Taymans  <wim@fluendo.com>
8465
8466         * gst/playback/gstqueue2.c: (gst_queue_get_type),
8467         (gst_queue_class_init), (gst_queue_finalize), (update_time_level),
8468         (apply_segment), (apply_buffer), (update_buffering),
8469         (reset_rate_timer), (update_rates), (gst_queue_locked_flush),
8470         (gst_queue_locked_enqueue), (gst_queue_locked_dequeue),
8471         (gst_queue_handle_sink_event), (gst_queue_is_filled),
8472         (gst_queue_chain), (gst_queue_push_one), (gst_queue_loop),
8473         (plugin_init):
8474         fix build.
8475
8476 2007-05-17  Wim Taymans  <wim@fluendo.com>
8477
8478         * gst/playback/Makefile.am:
8479         * gst/playback/gstqueue2.c: (gst_queue_get_type),
8480         (gst_queue_class_init), (gst_queue_init), (gst_queue_finalize),
8481         (gst_queue_getcaps), (gst_queue_bufferalloc),
8482         (gst_queue_acceptcaps), (update_time_level), (apply_segment),
8483         (apply_buffer), (update_buffering), (reset_rate_timer),
8484         (update_rates), (gst_queue_locked_flush),
8485         (gst_queue_locked_enqueue), (gst_queue_locked_dequeue),
8486         (gst_queue_handle_sink_event), (gst_queue_is_empty),
8487         (gst_queue_is_filled), (gst_queue_chain), (gst_queue_push_one),
8488         (gst_queue_loop), (gst_queue_handle_src_event),
8489         (gst_queue_handle_src_query), (gst_queue_sink_activate_push),
8490         (gst_queue_src_activate_push), (gst_queue_change_state),
8491         (gst_queue_set_property), (gst_queue_get_property), (plugin_init):
8492         On our way to playbin2 this is the new network queue that does buffering
8493         all by itself using high and low watermarks. It can also measure up and
8494         downstream bandwidth to optimally size the queue.
8495
8496 2007-05-17  Michael Smith <msmith@fluendo.com>
8497
8498         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_do_seek):
8499         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_do_seek):
8500           Use the segment->last_stop value to calculate the next timestamp to
8501           generate after a seek; not the segment->start value.
8502
8503 2007-05-15  David Schleef  <ds@schleef.org>
8504
8505         * docs/Makefile.am: Install docs even when --disable-gtk-doc
8506           is disabled.  This matches the behavior of gtk+.  Fixes #349099.
8507
8508 2007-05-15  Wim Taymans  <wim@fluendo.com>
8509
8510         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
8511         (gst_ogg_demux_perform_seek), (gst_ogg_demux_handle_page):
8512         Some more chained streaming ogg timestamp fixes.
8513
8514 2007-05-15  Wim Taymans  <wim@fluendo.com>
8515
8516         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
8517         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
8518         (gst_ogg_demux_handle_page):
8519         Add some FIXMEs.
8520         Fix chain start/stop segment handling based on patch by
8521         <ahalda at cs dot mcgill dot ca> see #320984.
8522
8523 2007-05-15  Michael Smith <msmith@fluendo.com>
8524
8525         * configure.ac:
8526           We don't require a C++ compiler. So don't require one.
8527
8528 2007-05-15  Stefan Kost  <ensonic@users.sf.net>
8529
8530         * ext/alsa/gstalsamixer.c (source, n_poll_fds, poll_fds,
8531           gst_alsa_mixer_check, gst_alsa_mixer_dispatch,
8532           gst_alsa_mixer_finalize, gst_alsa_mixer_handle_source_callback,
8533           gst_alsa_mixer_handle_callback, gst_alsa_mixer_elem_handle_callback,
8534           gst_alsa_mixer_ensure_track_list, gst_alsa_mixer_update_option,
8535           gst_alsa_mixer_update_track):
8536           Apply some of the cleanup Tim suggested in #152864 afterwards.
8537
8538 2007-05-15  Stefan Kost  <ensonic@users.sf.net>
8539
8540         patch by: Marc-Andre Lureau <marcandre.lureau@gmail.com>
8541
8542         * ext/alsa/gstalsamixer.c (main_context, GstAlsaMixerWatch,
8543           _GstAlsaMixerWatch, source, n_poll_fds, poll_fds,
8544           gst_alsa_mixer_watch_funcs, gst_alsa_mixer_prepare,
8545           gst_alsa_mixer_check, gst_alsa_mixer_dispatch,
8546           gst_alsa_mixer_finalize, gst_alsa_mixer_find_master_mixer,
8547           gst_alsa_mixer_handle_source_callback,
8548           gst_alsa_mixer_handle_callback, gst_alsa_mixer_elem_handle_callback,
8549           gst_alsa_mixer_ensure_track_list, gst_alsa_mixer_free,
8550           gst_alsa_mixer_get_volume, gst_alsa_mixer_set_volume,
8551           gst_alsa_mixer_set_mute, gst_alsa_mixer_set_record,
8552           gst_alsa_mixer_get_option, gst_alsa_mixer_update_option,
8553           gst_alsa_mixer_update_track, _gst_alsa_mixer_set_interface):
8554         * ext/alsa/gstalsamixer.h (handle_source, interface, dir):
8555         * ext/alsa/gstalsamixerelement.c (gst_alsa_mixer_element_details,
8556           gst_alsa_mixer_element_interface_supported,
8557           gst_alsa_mixer_element_finalize, gst_alsa_mixer_element_init,
8558           gst_alsa_mixer_element_set_property,
8559           gst_alsa_mixer_element_get_property,
8560           gst_alsa_mixer_element_change_state):
8561         * ext/alsa/gstalsamixertrack.c (gst_alsa_mixer_track_update):
8562         * gst-libs/gst/interfaces/mixer.c (gst_mixer_volume_changed,
8563           gst_mixer_option_changed):
8564         * gst-libs/gst/interfaces/mixer.h (set_option, get_option,
8565           volume_changed, option_changed, _gst_reserved):
8566           Implement notification for alsamixer. Fixes #152864
8567
8568 2007-05-14  David Schleef  <ds@schleef.org>
8569
8570         * gst/videotestsrc/videotestsrc.c:
8571         * gst/videotestsrc/videotestsrc.h:
8572           Add support for video/x-raw-bayer.
8573
8574 2007-05-12  David Schleef  <ds@schleef.org>
8575
8576         * sys/xvimage/xvimagesink.c:
8577           Add some sanity checking for the XVImage size returned by X.
8578           Related to #377400.
8579
8580 2007-05-12  Wim Taymans  <wim@fluendo.com>
8581
8582         * gst-libs/gst/rtp/gstbasertpdepayload.c:
8583         (gst_base_rtp_depayload_setcaps),
8584         (gst_base_rtp_depayload_set_gst_timestamp):
8585         Parse and use additional caps fields as described in updated
8586         application/x-rtp caps spec.
8587
8588 2007-05-12  Wim Taymans  <wim@fluendo.com>
8589
8590         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
8591         (gst_ogg_demux_collect_chain_info):
8592         If there is a stream in a chain without any data packets, ignore the
8593         stream in the total length calculations. Might be related to #436820.
8594
8595 2007-05-11  Jan Schmidt  <thaytan@mad.scientist.com>
8596
8597         * gst/typefind/gsttypefindfunctions.c: (mpeg_sys_is_valid_pack),
8598         (mpeg_sys_is_valid_pes), (mpeg_sys_is_valid_sys),
8599         (mpeg_sys_type_find), (mpeg_ts_type_find), (mpeg4_video_type_find),
8600         (mpeg_video_type_find), (mpeg_video_stream_type_find),
8601         (plugin_init):
8602
8603         Consolidate and re-work our mpeg system stream detection to probe
8604         more packets and produce a higher confidence result. Fixes a
8605         regression caused by lowering the typefind probability last year
8606         - related to bug #397810. Remove the redundant MPEG-1 specific 
8607         typefind function, as the new one detects both MPEG-1 & MPEG-2
8608         happily.
8609
8610         Also cleanup the MPEG elementary and MPEG-TS detection functions a
8611         little. 
8612
8613         Tested against my media test directory, with some improvements and
8614         no regressions.
8615
8616 2007-05-10  Wim Taymans  <wim@fluendo.com>
8617
8618         * gst/playback/gstplaybasebin.c: (fill_buffer), (check_queue),
8619         (queue_out_of_data):
8620         Connect to the new queue "pushing" signal instead of the broken
8621         "running" one.
8622
8623 2007-05-09  Sebastien Moutte  <sebastien@moutte.net>
8624
8625         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
8626         (gst_base_rtp_audio_payload_handle_frame_based_buffer):
8627         Move variable declaration before the first instruction.
8628         * gst/videotestsrc/videotestsrc.c:
8629         Define M_PI if it's not defined yet.
8630         * win32/common/libgstrtp.def:
8631         Add new exported functions.
8632
8633 2007-05-09  Michael Smith <msmith@fluendo.com>
8634
8635         * ext/theora/theoradec.c: (theora_handle_type_packet):
8636           gst_pad_push_event() does not return a GstFlowReturn!
8637
8638 2007-05-09  Wim Taymans  <wim@fluendo.com>
8639
8640         * tests/examples/seek/scrubby.c: (stop_cb), (main):
8641         * tests/examples/seek/seek.c: (do_seek):
8642         Some small cosmetic changes.
8643
8644 2007-05-08  Stefan Kost  <ensonic@users.sf.net>
8645
8646         * gst/adder/gstadder.c (gst_adder_src_event, gst_adder_collected,
8647           gst_adder_change_state):
8648         * gst/adder/gstadder.h (bps, offset, collect_event, segment,
8649           segment_pending, segment_position, segment_rate):
8650           Handle playback-rate on adder.
8651
8652 2007-05-07  Michael Smith <msmith@fluendo.com>
8653
8654         * ext/theora/gsttheoradec.h:
8655         * ext/theora/theoradec.c: (gst_theora_dec_reset),
8656         (theora_dec_sink_event), (theora_handle_comment_packet),
8657         (theora_handle_type_packet), (theora_dec_change_state):
8658           Don't push events (newsegment, tags) before initialising the
8659           decoder.
8660           This is neccesary for seeking to work correctly in gnonlin.
8661
8662 2007-05-04  Stefan Kost  <ensonic@users.sf.net>
8663
8664         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
8665         * gst/adder/gstadder.c:
8666         * gst/audiotestsrc/gstaudiotestsrc.c
8667           (gst_audio_test_src_create_white_noise):
8668         * gst/videotestsrc/gstvideotestsrc.c:
8669         * gst/volume/gstvolume.c (VOLUME_UNITY_INT16,
8670           VOLUME_UNITY_INT16_BIT_SHIFT, VOLUME_MAX_DOUBLE,
8671           volume_sink_template, volume_src_template, gst_volume_init,
8672           volume_process_double, volume_process_int16,
8673           volume_process_int16_clamp):
8674           Doc fixes and formatting.
8675
8676 2007-05-04  Tim-Philipp Müller  <tim at centricular dot net>
8677
8678         * tests/check/Makefile.am:
8679         * tests/check/elements/volume.c: (GST_START_TEST), (volume_suite):
8680           Minimal check for volume's GstController usability; also another
8681           test for #422295.
8682
8683 2007-05-04  Tim-Philipp Müller  <tim at centricular dot net>
8684
8685         * gst-libs/gst/cdda/gstcddabasesrc.c:
8686         (gst_cdda_base_src_add_track):
8687           Fix it so that it (a) makes sense and (b) doesn't break
8688           everything cdda-related including the unit test.
8689
8690 2007-05-04  Stefan Kost  <ensonic@users.sf.net>
8691
8692         * gst-libs/gst/cdda/gstcddabasesrc.c:
8693         (gst_cdda_base_src_add_track):
8694           Fix build when disabling asserts.
8695
8696 2007-05-03  Tim-Philipp Müller  <tim at centricular dot net>
8697
8698         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
8699           When XShm is not available, we might get row strides that are not
8700           rounded up to multiples of four; this is bad, because virtually
8701           every RGB-processing element in GStreamer assumes rowstrides are
8702           rounded up to multiples of four, so let's allocate at least enough
8703           memory to avoid crashes in this case. The image will still be
8704           displayed distorted though if this happens, so that still needs
8705           fixing (maybe by allocating a bigger image with an 'even' width
8706           and then clipping it appropriately when rendering - something for
8707           Xlib aficionados in any case).
8708
8709 2007-05-03  Michael Smith <msmith@fluendo.com>
8710
8711         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
8712           If a buffer doesn't have a timestamp, assume it's contiguous with
8713           the previous buffer, and synthesise timestamps appropriately.
8714
8715 2007-05-03  Edward Hervey  <edward@fluendo.com>
8716
8717         * tests/check/elements/videorate.c: (GST_START_TEST):
8718         Set buffer timestamp to a valid value in order to test the buffer
8719         really does stay in videorate.
8720
8721 2007-05-03  Edward Hervey  <edward@fluendo.com>
8722
8723         * gst/videorate/gstvideorate.c: (gst_video_rate_chain):
8724         There is no sensible way to handle incoming buffers which don't have a
8725         valid timestamp. We therefore discard them and wait for the next one.
8726
8727 2007-05-01  Tim-Philipp Müller  <tim at centricular dot net>
8728
8729         * gst/playback/gstdecodebin.c: (type_found), (plugin_init):
8730         * gst/playback/gstdecodebin2.c: (plugin_init):
8731           Better error message for text files.
8732
8733 2007-04-29  Wim Taymans  <wim@fluendo.com>
8734
8735         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_packet_add_rb):
8736         Fix offset bug in generation RR packets.
8737
8738 2007-04-27  Julien MOUTTE  <julien@moutte.net>
8739
8740         * ext/theora/theoradec.c: (_theora_granule_time),
8741         (theora_dec_push_forward), (theora_handle_data_packet),
8742         (theora_dec_decode_buffer): Calculate buffer duration correctly
8743         to generate a perfect stream (#433888).
8744         * gst/audioresample/gstaudioresample.c:
8745         (audioresample_check_discont): Glib provides ABS.
8746
8747 2007-04-27  Wim Taymans  <wim@fluendo.com>
8748
8749         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_packet_get_rb),
8750         (gst_rtcp_packet_add_rb), (gst_rtcp_packet_sdes_add_item),
8751         (gst_rtcp_packet_sdes_add_entry), (gst_rtcp_packet_bye_add_ssrc),
8752         (gst_rtcp_packet_bye_add_ssrcs), (get_reason_offset),
8753         (gst_rtcp_packet_bye_set_reason):
8754         * gst-libs/gst/rtp/gstrtcpbuffer.h:
8755         Fix RB block parsing and writing.
8756         Add support for constructing BYE packets.
8757
8758 2007-04-25  Tim-Philipp Müller  <tim at centricular dot net>
8759
8760         * gst-libs/gst/audio/gstbaseaudiosrc.c: (_do_init),
8761         (gst_base_audio_src_create):
8762         * po/POTFILES.in:
8763           When posting a warning message because samples were dropped, post
8764           something more intelligible than he default error message for clock
8765           errors which is just confusing in this context (#432984).
8766
8767 2007-04-25  Wim Taymans  <wim@fluendo.com>
8768
8769         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_buffer_new),
8770         (gst_rtcp_buffer_end), (gst_rtcp_buffer_get_packet_count),
8771         (read_packet_header), (gst_rtcp_packet_move_to_next),
8772         (gst_rtcp_buffer_add_packet), (gst_rtcp_packet_sr_set_sender_info),
8773         (gst_rtcp_packet_rr_set_ssrc), (gst_rtcp_packet_add_rb),
8774         (gst_rtcp_packet_sdes_get_item_count),
8775         (gst_rtcp_packet_sdes_first_item),
8776         (gst_rtcp_packet_sdes_next_item), (gst_rtcp_packet_sdes_get_ssrc),
8777         (gst_rtcp_packet_sdes_first_entry),
8778         (gst_rtcp_packet_sdes_next_entry),
8779         (gst_rtcp_packet_sdes_get_entry), (gst_rtcp_packet_sdes_add_item),
8780         (gst_rtcp_packet_sdes_add_entry):
8781         * gst-libs/gst/rtp/gstrtcpbuffer.h:
8782         Implement code to write SR, RR and SDES packets.
8783
8784 2007-04-24  Tim-Philipp Müller  <tim at centricular dot net>
8785
8786         Patch by: Christian Kirbach <Christian dot Kirbach at googlemail com>
8787
8788         * sys/ximage/ximagesink.c:
8789           Fix build if XShm is not available (#432362).
8790
8791 2007-04-24  Sebastian Dröge  <slomo@circular-chaos.org>
8792
8793         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init):
8794         Initalize the AudioConvertCtx with zeroes, otherwise it will contain
8795         pointers to random memory which are passed to g_free() when
8796         audio_convert_prepare_context() is called the first time.
8797
8798 2007-04-24  Tim-Philipp Müller  <tim at centricular dot net>
8799
8800         Patch by: Dan Williams <dcbw redhat com>
8801
8802         * gst/videorate/gstvideorate.c: (gst_video_rate_chain):
8803           Don't leak incoming buffer if gst_pad_push() returns a
8804           non-OK flow. Fixes #432755.
8805          
8806         * tests/check/elements/videorate.c: (GST_START_TEST),
8807         (videorate_suite):
8808           Unit test for the above by Yours Truly.
8809
8810 2007-04-23  Stefan Kost  <ensonic@users.sf.net>
8811
8812         * gst/adder/gstadder.c: (gst_adder_setcaps), (gst_adder_src_event),
8813         (gst_adder_sink_event), (gst_adder_collected):
8814           Fix non-flushing segmented seeks, Fixes #340060 for me
8815
8816 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
8817
8818         Patch by: Olivier Crete  <tester at tester ca>
8819
8820         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
8821         (gst_base_rtp_audio_payload_class_init),
8822         (gst_base_rtp_audio_payload_init),
8823         (gst_base_rtp_audio_payload_dispose):
8824           Chain up to parent class in dispose function; get rid of
8825           unnecessary 'diposed' flag in private structure (#415001).
8826
8827 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
8828
8829         * docs/libs/gst-plugins-base-libs.types:
8830         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
8831         (gst_base_rtp_audio_payload_class_init):
8832         * gst-libs/gst/rtp/gstbasertpdepayload.c:
8833         * gst-libs/gst/rtp/gstbasertppayload.c:
8834           Some minor docs fixes and additions; also add missing 'Since' bits.
8835
8836 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
8837
8838         Patch by: Zeeshan Ali  <zeenix gmail com>
8839
8840         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
8841         (gst_base_rtp_audio_payload_handle_frame_based_buffer),
8842         (gst_base_rtp_audio_payload_handle_sample_based_buffer),
8843         (gst_base_rtp_audio_payload_push):
8844         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
8845           The recently-added gst_base_rtp_audio_payload_push() should take an
8846           object of type GstBaseRTPAudioPayload as first argument (#431672).
8847
8848 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
8849
8850         * gst/audioresample/gstaudioresample.c:
8851           Make more functions static, just because we can.
8852
8853 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
8854
8855         * tests/check/elements/audioresample.c:
8856           Add unit test for audioresample shutdown crasher (#420106).
8857
8858 2007-04-20  Stefan Kost  <ensonic@users.sf.net>
8859
8860         * gst/subparse/gstsubparse.c:
8861         * gst/subparse/samiparse.c:
8862           Use GST_DISABLE_XML here
8863
8864         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
8865         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_get_xv_support),
8866         (gst_xvimagesink_buffer_alloc),
8867         (gst_xvimagesink_navigation_send_event):
8868         * sys/xvimage/xvimagesink.h:
8869           Include stdlib.h when using atoi.
8870           
8871         * tests/check/elements/playbin.c: (playbin_suite):
8872           Use GST_DISABLE_REGISTRY here
8873
8874 2007-04-19  Michael Smith  <msmith@fluendo.com>
8875
8876         * ext/theora/gsttheoraenc.h:
8877         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
8878         (theora_enc_sink_event), (theora_enc_change_state):
8879           Track initialisation state; don't try to use encoder state if we're
8880           not initialised (it'll segfault).
8881
8882 2007-04-18  Stefan Kost  <ensonic@users.sf.net>
8883
8884         * tests/check/pipelines/.cvsignore:
8885         Fix build.
8886
8887 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
8888
8889         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
8890         Allow random depths between 1 and 32 instead of only multiplies of 8.
8891
8892 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
8893
8894         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
8895         Set the maximum number of channels for PCM and float in the correct
8896         place to have it also used when creating the template caps.
8897
8898 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
8899
8900         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
8901         Correctly support 4, 6 and 8 channels with normal PCM and float
8902         wav files.
8903
8904         Fix the depth and signedness calculation in extensible wav files and
8905         also handle 1, 2, 4, 6, 8 channels here when a file without channel
8906         mask is found.
8907
8908         Add support for float, alaw and mulaw in extensible wav files.
8909
8910         This allows correct playback of all but 5 files from
8911         http://www-mmsp.ece.mcgill.ca/Documents/AudioFormats/WAVE/Samples.html
8912         
8913         (gst_riff_create_audio_template_caps):
8914         Add voxware and float formats to the template caps.     
8915
8916 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
8917
8918         Patch by: Vincent Torri <vtorri at univ-evry dot fr>
8919
8920         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_render_time):
8921         Fix unused variable warning if HAVE_LOCALTIME_R is undefinied
8922
8923         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
8924         * gst/audioresample/gstaudioresample.c: (audioresample_do_output):
8925         Use the correct format strings for integer formats.
8926
8927 2007-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
8928
8929         * ext/theora/theoraenc.c (theora_buffer_from_packet, theora_enc_chain):
8930           Don't use pad_alloc_buffer_and_set_caps to create a small header
8931           packet, or, worse, to create a big temporary video buffer using the
8932           src pad.
8933
8934 2007-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
8935
8936         * gst/gdp/gstgdppay.c (gst_gdp_pay_chain):
8937         * tests/check/pipelines/streamheader.c (tag_event_probe_cb,
8938           GST_START_TEST, buffer_probe_cb, GST_START_TEST):
8939           Fix a bug where serialized IN_CAPS buffers needed to be set IN_CAPS.
8940
8941 2007-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
8942
8943         * tests/check/pipelines/streamheader.c (tag_event_probe_cb,
8944           GST_START_TEST, n_in_caps, buffer_probe_cb, GST_START_TEST,
8945           streamheader_suite):
8946           Add another test set up for failure
8947
8948 2007-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
8949
8950         * tests/check/Makefile.am:
8951         * tests/check/pipelines/streamheader.c (n_tags, tag_event_probe_cb,
8952           GST_START_TEST, streamheader_suite, main):
8953           Add a test for the streamheader bug Wim fixed.
8954
8955 2007-04-13  Jan Schmidt  <thaytan@mad.scientist.com>
8956
8957         * ext/theora/theoradec.c: (theora_dec_sink_event):
8958         Fix misleading comment.
8959
8960 2007-04-13  Stefan Kost  <ensonic@users.sf.net>
8961
8962         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
8963           More sanity checks for the header fields.
8964
8965 2007-04-12  Tim-Philipp Müller  <tim at centricular dot net>
8966
8967         * gst-libs/gst/tag/tags.c: (gst_tag_freeform_string_to_utf8):
8968           Try encodings from all environment variables, not just those in the
8969           first environment variable that is set.
8970
8971 2007-04-12  Wim Taymans  <wim@fluendo.com>
8972
8973         * gst/videorate/gstvideorate.c: (gst_video_rate_setcaps),
8974         (gst_video_rate_chain):
8975         Add some debug.
8976
8977         * tests/check/elements/videorate.c: (GST_START_TEST),
8978         (videorate_suite):
8979         Added check for videorate changing caps handling. Closes #421834.
8980
8981 2007-04-12  Michael Smith  <msmith@fluendo.com>
8982
8983         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
8984           Use scale functions to avoid overflow when calculating duration of 
8985           vorbis buffers.
8986
8987 2007-04-12  Tim-Philipp Müller  <tim at centricular dot net>
8988
8989         * docs/libs/gst-plugins-base-libs-sections.txt:
8990         * gst-libs/gst/tag/tag.h:
8991         * gst-libs/gst/tag/tags.c: (gst_tag_freeform_string_to_utf8):
8992           API: add gst_tag_freeform_string_to_utf8() (#405072).
8993
8994         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_extract_id3v1_string):
8995           Use gst_tag_freeform_string_to_utf8() here.
8996
8997 2007-04-12  Wim Taymans  <wim@fluendo.com>
8998
8999         * gst/gdp/gstgdppay.c: (gst_gdp_pay_chain),
9000         (gst_gdp_pay_sink_event):
9001         Make sure we set the IN_CAPS flag correctly.
9002
9003         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
9004         Get the IN_CAPS flag before we call functions that mess with the flags.
9005
9006 2007-04-10  Thomas Vander Stichele  <thomas at apestaart dot org>
9007
9008         * gst/gdp/gstgdppay.c (gst_gdp_pay_reset_streamheader,
9009           gst_gdp_pay_chain, gst_gdp_pay_sink_event):
9010           Only stamp buffers with offset/offset_end right before they get
9011           pushed.  This ensures offset continuity, which was not the case
9012           before as shown by
9013           gst-launch -v -m audiotestsrc num-buffers=10 ! audioconvert ! vorbisenc ! gdppay ! identity check-imperfect-offset=TRUE ! fakesink silent=TRUE
9014
9015 2007-04-06  Wim Taymans  <wim@fluendo.com>
9016
9017         * gst/playback/gstplaybin.c: (add_sink),
9018         (gst_play_bin_change_state):
9019         Activate sync in playbin, we are ready to handle it for live streams.
9020
9021 2007-04-06  Tim-Philipp Müller  <tim at centricular dot net>
9022
9023         * tests/check/elements/playbin.c:
9024         (test_sink_usage_video_only_stream), (playbin_suite):
9025           Add small test for stream-info-value-array code paths.
9026
9027 2007-04-05  Wim Taymans  <wim@fluendo.com>
9028
9029         * gst-libs/gst/audio/gstbaseaudiosink.c:
9030         (gst_base_audio_sink_skew_slaving):
9031         Don't try to create invalid calibration parameters by making the
9032         internal time go backwards, instead make external time go forward.
9033
9034 2007-04-05  Wim Taymans  <wim@fluendo.com>
9035
9036         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
9037
9038         * gst/playback/gstplaybasebin.c: (add_stream):
9039         Fix leak in add_stream(), when g_value_set_object() increases the
9040         refcount of streaminfo object. Fixes #426250.
9041
9042 2007-04-03  David Schleef  <ds@schleef.org>
9043
9044         * gst/videotestsrc/gstvideotestsrc.c:
9045         * gst/videotestsrc/gstvideotestsrc.h:
9046         * gst/videotestsrc/videotestsrc.c:
9047         * gst/videotestsrc/videotestsrc.h:
9048           Add a test pattern called "circular", which has concentric
9049           rings with varying radial frequency.  The main purpose of this
9050           pattern is to test fidelity loss in a filter or scaler element.
9051           Notably, this pattern is scale invariant, and is optimally viewed
9052           with a width (and height) of 400.
9053
9054 2007-04-03  Wim Taymans  <wim@fluendo.com>
9055
9056         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
9057
9058         * gst/playback/gstdecodebin2.c: (connect_pad), (expose_pad),
9059         (deactivate_free_recursive):
9060         Decodebin2 doesn't unref pads it obtains in some occasions:
9061         - multiqueue src pads, when either connecting further or exposing
9062         - sink pads of new autoplugged elements
9063         - peer pads when recursively freeing elements
9064         Fixes #425455.
9065
9066 2007-03-30  Sebastian Dröge  <slomo@circular-chaos.org>
9067
9068         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
9069         Add audio/x-raw-float support, now that audioconvert support
9070         non-native endianness floats.
9071
9072 2007-03-30  Tim-Philipp Müller  <tim at centricular dot net>
9073
9074         * docs/libs/gst-plugins-base-libs-docs.sgml:
9075           gstreamer-plugins-base.pc doesn't exist, it's
9076           gstreamer-plugins-base-0.10.pc.
9077
9078 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
9079
9080         Patch by: René Stadler <mail at renestadler dot de>
9081         with some minor changes
9082
9083         * gst-libs/gst/floatcast/floatcast.h:
9084         Use more efficient float endianness conversion functions that don't
9085         involve 2 function calls per value.
9086         * gst/audioconvert/audioconvert.c: (audio_convert_get_func_index),
9087         (check_default), (audio_convert_prepare_context):
9088         * gst/audioconvert/gstaudioconvert.c:
9089         (gst_audio_convert_parse_caps), (make_lossless_changes):
9090         Support non-native endianness floats as input and output.
9091         Fixes #339838.
9092         * tests/check/elements/audioconvert.c: (verify_convert),
9093         (GST_START_TEST):
9094         Add unit tests for the non-native endianness float conversions.
9095
9096 2007-03-29  Wim Taymans  <wim@fluendo.com>
9097
9098         * gst-libs/gst/rtp/gstbasertpdepayload.c:
9099         (gst_base_rtp_depayload_base_init),
9100         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
9101         (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain),
9102         (gst_base_rtp_depayload_set_gst_timestamp),
9103         (gst_base_rtp_depayload_change_state),
9104         (gst_base_rtp_depayload_set_property),
9105         (gst_base_rtp_depayload_get_property):
9106         * gst-libs/gst/rtp/gstbasertpdepayload.h:
9107         Add Private structure.
9108         Bring element code to 2007.
9109         Parse clock-base caps param and use it when generating the
9110         newsegment.
9111         Reset variables before going to PAUSED.
9112         Fix some docs.
9113
9114 2007-03-29  Wim Taymans  <wim@fluendo.com>
9115
9116         * docs/libs/gst-plugins-base-libs-docs.sgml:
9117         * docs/libs/gst-plugins-base-libs-sections.txt:
9118         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
9119         (gst_base_rtp_audio_payload_get_adapter):
9120         Add RTCP docs.
9121         Fix some more docs.
9122
9123         * gst-libs/gst/rtp/Makefile.am:
9124         * gst-libs/gst/rtp/gstrtcpbuffer.c:
9125         (gst_rtcp_buffer_new_take_data), (gst_rtcp_buffer_new_copy_data),
9126         (gst_rtcp_buffer_validate_data), (gst_rtcp_buffer_validate),
9127         (gst_rtcp_buffer_get_packet_count), (read_packet_header),
9128         (gst_rtcp_buffer_get_first_packet), (gst_rtcp_packet_move_to_next),
9129         (gst_rtcp_buffer_add_packet), (gst_rtcp_packet_remove),
9130         (gst_rtcp_packet_get_padding), (gst_rtcp_packet_get_type),
9131         (gst_rtcp_packet_get_count), (gst_rtcp_packet_get_length),
9132         (gst_rtcp_packet_sr_get_sender_info),
9133         (gst_rtcp_packet_sr_set_sender_info),
9134         (gst_rtcp_packet_rr_get_ssrc), (gst_rtcp_packet_rr_set_ssrc),
9135         (gst_rtcp_packet_get_rb_count), (gst_rtcp_packet_get_rb),
9136         (gst_rtcp_packet_add_rb), (gst_rtcp_packet_set_rb),
9137         (gst_rtcp_packet_sdes_get_chunk_count),
9138         (gst_rtcp_packet_sdes_first_chunk),
9139         (gst_rtcp_packet_sdes_next_chunk), (gst_rtcp_packet_sdes_get_ssrc),
9140         (gst_rtcp_packet_sdes_first_item),
9141         (gst_rtcp_packet_sdes_next_item), (gst_rtcp_packet_sdes_get_item),
9142         (gst_rtcp_packet_bye_get_ssrc_count),
9143         (gst_rtcp_packet_bye_get_nth_ssrc), (gst_rtcp_packet_bye_add_ssrc),
9144         (gst_rtcp_packet_bye_add_ssrcs), (get_reason_offset),
9145         (gst_rtcp_packet_bye_get_reason_len),
9146         (gst_rtcp_packet_bye_get_reason), (gst_rtcp_packet_bye_set_reason):
9147         * gst-libs/gst/rtp/gstrtcpbuffer.h:
9148         Add new helper object for parsing and creating RTCP messages.
9149
9150 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
9151
9152         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
9153         PCM samples with width=8 must be always unsigned, no matter what
9154         depth they have.
9155
9156 2007-03-29  Andy Wingo  <wingo@pobox.com>
9157
9158         * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev): Make
9159         perfect offsets also, not just timestamps.
9160
9161         * tests/check/elements/videorate.c (test_more): Test that given
9162         any incoming offsets, that videorate produces perfect offsets.
9163
9164 2007-03-29  Wim Taymans  <wim@fluendo.com>
9165
9166         * gst-libs/gst/riff/riff-ids.h:
9167         Add some more RIFF formats.
9168
9169 2007-03-29  Wim Taymans  <wim@fluendo.com>
9170
9171         * gst-libs/gst/rtp/gstrtpbuffer.c:
9172         (gst_rtp_buffer_default_clock_rate):
9173         * gst-libs/gst/rtp/gstrtpbuffer.h:
9174         Fix fixed payload names and docs.
9175         Added method to get the default clock rates of fixed payload types.
9176         API: GstRTPBuffer::gst_rtp_buffer_default_clock_rate()
9177
9178 2007-03-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
9179
9180         * tests/check/pipelines/.cvsignore:
9181         Add new vorbisdec test to cvsignore.
9182
9183 2007-03-28  Wim Taymans  <wim@fluendo.com>
9184
9185         * gst-libs/gst/audio/gstbaseaudiosink.c: (slave_method_get_type),
9186         (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
9187         (gst_base_audio_sink_query), (gst_base_audio_sink_get_time),
9188         (gst_base_audio_sink_set_property),
9189         (gst_base_audio_sink_get_property), (gst_base_audio_sink_event),
9190         (clock_convert_external), (gst_base_audio_sink_resample_slaving),
9191         (gst_base_audio_sink_skew_slaving),
9192         (gst_base_audio_sink_handle_slaving), (gst_base_audio_sink_render),
9193         (gst_base_audio_sink_async_play):
9194         * gst-libs/gst/audio/gstbaseaudiosink.h:
9195         Store private stuff in GstBaseAudioSinkPrivate.
9196         Add configurable clock slaving modes property.
9197         API:: GstBaseAudioSink::slave-method property
9198         Some more latency reporting tweaks.
9199         Added skew based clock slaving correction and make it the default until
9200         the resampling method is more robust.
9201
9202 2007-03-27  Sebastian Dröge  <slomo@circular-chaos.org>
9203
9204         * gst/audioconvert/audioconvert.c:
9205         Add docs to the integer pack functions and implement proper
9206         rounding. Before we had rounding towards negative infinity, i.e.
9207         always the smaller number was taken. Now we use natural rounding,
9208         i.e. rounding to the nearest integer and to the one with the largest
9209         absolute value for X.5. The old rounding introduced some minor
9210         distortions. Fixes #420079
9211         * tests/check/elements/audioconvert.c: (GST_START_TEST):
9212         Fix one unit test that assumed the old rounding and added unit tests
9213         for checking signed/unsigned int16 <-> signed/unsigned int16 with
9214         depth 8, one for signed int16 <-> unsigned int16 and one for the new
9215         rounding from signed int32 to signed/unsigned int16.
9216
9217 2007-03-27  Michael Smith  <msmith@fluendo.com>
9218
9219         * gst/audioconvert/gstaudioconvert.c: (strip_width_64),
9220         (gst_audio_convert_transform_caps):
9221           Fix typo in debug line introduced recently, as pointed out on irc.
9222
9223 2007-03-27  Tim-Philipp Müller  <tim at centricular dot net>
9224
9225         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
9226         * tests/check/libs/tag.c: (GST_START_TEST):
9227           Make sure we parse floating-point numbers in vorbis comments
9228           correctly with either '.' or ',' as separator, no matter what
9229           the current locale is. Add unit test for this too.
9230
9231 2007-03-26  Tim-Philipp Müller  <tim at centricular dot net>
9232
9233         Patch by: René Stadler  <mail at renestadler de>
9234
9235         * gst-libs/gst/tag/gstvorbistag.c: (gst_tag_to_vorbis_comments):
9236           When writing out floating-point numbers to vorbis comment tags, always
9237           use the same character as separator no matter what the current locale is
9238           (fixes #423051).
9239
9240         * tests/check/libs/tag.c: (GST_START_TEST):
9241           Add unit tests for replaygain tags in vorbis comments (closes #423055).
9242
9243 2007-03-26  Thomas Vander Stichele  <thomas at apestaart dot org>
9244
9245         * ext/vorbis/vorbisdec.c (vorbis_dec_push_forward,
9246           vorbis_handle_data_packet):
9247           Correctly set DURATION to generate a timestamp-continuous stream.
9248           One bug left at the end; see
9249           ihttp://bugzilla.gnome.org/show_bug.cgi?id=423086
9250         * tests/check/Makefile.am:
9251         * tests/check/pipelines/vorbisenc.c (GST_START_TEST):
9252           Add a test to check this.  Without the above patch this test fails.
9253
9254 2007-03-26  Jan Schmidt  <thaytan@mad.scientist.com>
9255
9256         * gst-libs/gst/rtp/Makefile.am:
9257         The base audio payloader uses GstAdapter - we need GST_BASE_LIBS.
9258
9259 2007-03-23  Michael Smith  <msmith@fluendo.com>
9260
9261         * gst/videorate/gstvideorate.c: (gst_video_rate_setcaps),
9262         (gst_video_rate_reset), (gst_video_rate_chain):
9263           If videorate changes caps, we can no longer use the old buffer
9264           (which may have a different size, incompatible with our caps).
9265           So don't do that; just duplicate the new frame more times.
9266
9267 2007-03-22  Jan Schmidt  <thaytan@mad.scientist.com>
9268
9269         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
9270         Remove playbin's override of the set_clock vmethod. It's irrelevant
9271         after Wim's commit on the 19th.
9272
9273 2007-03-22  Wim Taymans  <wim@fluendo.com>
9274
9275         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_get_size),
9276         (gst_gnome_vfs_src_start), (gst_gnome_vfs_src_stop):
9277         * ext/gnomevfs/gstgnomevfssrc.h:
9278         Don't cache file sizes. Fixes #341078.
9279
9280 2007-03-21  Tim-Philipp Müller  <tim at centricular dot net>
9281
9282         * gst/playback/gstplaybin.c: (add_sink):
9283           Use GST_PTR_FORMAT to log caps. 
9284
9285 2007-03-21  Tim-Philipp Müller  <tim at centricular dot net>
9286
9287         Patch by: Young-Ho Cha <ganadist at chollian net>
9288
9289         * gst/subparse/samiparse.c: (handle_start_font):
9290           Special-case some more colour names that pango doesn't handle by
9291           default. Fixes #420578.
9292
9293 2007-03-20  Michael Smith  <msmith@fluendo.com>
9294
9295         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_chain):
9296           If we get a zero-sized input buffer, don't pass it to libvorbis, as
9297           that marks EOS internally. After that, libvorbis will buffer all
9298           input data, and encode none of it, eventually leading to memory
9299           exhaustion.
9300
9301 2007-03-19  Wim Taymans  <wim@fluendo.com>
9302
9303         * gst/playback/gstdecodebin.c: (remove_fakesink):
9304         Don't post STATE_DIRTY anymore.
9305
9306         * gst/playback/gstplaybin.c: (add_sink), (gst_play_bin_send_event),
9307         (gst_play_bin_change_state):
9308         Remove stream_time reset in seek handling, core does that now.
9309         Disable clocking for live pipelines by forcing a NULL clock to the
9310         complete pipeline, core is too smart now for our previous hack.
9311         We can always autoplug in PAUSED now.
9312
9313 2007-03-17  David Schleef  <ds@schleef.org>
9314
9315         * REQUIREMENTS:  Update this file, change the formatting to make
9316         it more consistent, plus more machine readable.
9317
9318 2007-03-16  Michael Smith  <msmith@fluendo.com>
9319
9320         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
9321         (strip_width_64), (append_with_other_format):
9322           Previous fix was too simplistic, and broke the tests. Use a better
9323           approach; only strip 64 from widths for integer audio.
9324
9325 2007-03-16  Michael Smith  <msmith@fluendo.com>
9326
9327         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
9328         (gst_audio_convert_transform_caps):
9329           We don't support 64 bit integer audio, so don't try to claim we can.
9330           Stops us producing caps don't match our template caps.
9331           Update comments.
9332
9333 2007-03-15  Michael Smith  <msmith@fluendo.com>
9334
9335         * gst/audioresample/gstaudioresample.c:
9336         (audioresample_check_discont), (audioresample_transform):
9337           Don't trigger discontinuities for very small imperfections; a filter
9338           flush will sound bad, and many plugins have rounding errors leading
9339           to these.
9340
9341 2007-03-14 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
9342
9343         Patch by: Olivier Crete <olivier.crete@collabora.co.uk>
9344
9345         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
9346         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
9347         API: add "min-ptime" property to RTP base audio payloader.
9348         API: add gst_base_rtp_audio_payload_push().
9349         API: add gst_base_rtp_audio_payload_get_adapter().
9350         Fixes #415001
9351         Indentation/whitespace/documentation fixes.
9352
9353 2007-03-14  Julien MOUTTE  <julien@moutte.net>
9354
9355         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
9356         (audioresample_transform_size), (audioresample_do_output),
9357         (audioresample_transform), (audioresample_pushthrough): Handle
9358         discontinuous streams.
9359         * gst/audioresample/gstaudioresample.h:
9360         * tests/check/elements/audioresample.c:
9361         (test_discont_stream_instance), (GST_START_TEST),
9362         (audioresample_suite): Add a test for discontinuous streams.
9363         * win32/common/config.h: Updated.
9364
9365 2007-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
9366
9367         * po/af.po:
9368         * po/az.po:
9369         * po/cs.po:
9370         * po/en_GB.po:
9371         * po/it.po:
9372         * po/nb.po:
9373         * po/nl.po:
9374         * po/or.po:
9375         * po/sq.po:
9376         * po/sr.po:
9377         * po/sv.po:
9378         * po/uk.po:
9379         * po/vi.po:
9380           Update translations from translation project.
9381
9382 2007-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
9383
9384         * gst/audioresample/debug.h:
9385         * gst/audioresample/resample.c: (resample_init):
9386           Since I really am not interested in a debug line for each sample
9387           being processed, move the library's debugging to its own category,
9388           libaudioresample
9389
9390 2007-03-13  Michael Smith  <msmith@fluendo.com>
9391
9392         * ext/theora/theoradec.c: (theora_handle_type_packet):
9393           Since the plugin doesn't support anything other than 4:2:0 right
9394           now, post an error and fail if we get something else. Won't matter
9395           until libtheora supports the other pixel formats, but hopefully
9396           that'll be soon...
9397
9398 2007-03-10  Sebastien Moutte  <sebastien@moutte.net>
9399
9400         * gst-libs/gst/audio/gstbaseaudiosink.c:(gst_base_audio_sink_render):
9401         Use gst_guint64_to_gdouble for conversion.
9402         * win32/MANIFEST:
9403         Add new files to the win32 MANIFEST.
9404         * win32/common/libgstaudio.def:
9405         * win32/common/libgstpbutils.def:
9406         Add new exported functions.
9407         * win32/vs6/gst_plugins_base.dsw:
9408         * win32/vs6/libgstdecodebin.dsp:
9409         * win32/vs6/libgstplaybin.dsp:
9410         Change the link to libgstpbutils.lib.
9411         * win32/vs6/libgstdecodebin2.dsp:
9412         Add a new project for decodebin2.
9413         * win32/vs6/libgstpbutils.dsp:
9414         Add a new project for pbutils.
9415
9416 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
9417
9418         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
9419           Also accept partial dates with only year and month,
9420           like 1999-12-00 (fixes #410396 even more).
9421
9422         * tests/check/libs/tag.c: (GST_START_TEST):
9423           Add unit test for the above.
9424
9425 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
9426
9427         * tests/check/elements/subparse.c: (GST_START_TEST),
9428         (subparse_suite):
9429           Add unit test for MPL2 subtitle format (#413799).
9430
9431 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
9432
9433         Patch by: Kamil Pawlowski  <kamilpe gmail com>
9434
9435         * gst/subparse/Makefile.am:
9436         * gst/subparse/gstsubparse.c:
9437         (gst_sub_parse_data_format_autodetect),
9438         (gst_sub_parse_format_autodetect), (gst_sub_parse_sink_event),
9439         (gst_subparse_type_find):
9440         * gst/subparse/gstsubparse.h:
9441         * gst/subparse/mpl2parse.c: (mpl2_parse_line), (parse_mpl2):
9442         * gst/subparse/mpl2parse.h:
9443           Add support for MPL2 subtitle format (#413799).
9444
9445 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
9446
9447         * configure.ac:
9448           We require core CVS for the new buffer metadata copy functions.
9449
9450 2007-03-09  Wim Taymans  <wim@fluendo.com>
9451
9452         * gst-libs/gst/tag/gstid3tag.c:
9453         Add read support for GST_TAG_MUSICBRAINZ_SORTNAME (TSOP) tag.
9454         Fixes #414496.
9455
9456         Patch by: Alex Lancaster <alexl at users sourceforge net>
9457
9458 2007-03-09  Wim Taymans  <wim@fluendo.com>
9459
9460         * ext/libvisual/visual.c: (gst_visual_sink_setcaps),
9461         (gst_vis_src_negotiate), (get_buffer), (gst_visual_chain):
9462         Improve adapter usage and comments.
9463
9464 2007-03-09  Wim Taymans  <wim@fluendo.com>
9465
9466         * ext/pango/gsttextrender.c: (gst_text_render_chain):
9467         * ext/vorbis/vorbistag.c: (gst_vorbis_tag_parse_packet):
9468         * gst-libs/gst/netbuffer/gstnetbuffer.c: (gst_netbuffer_copy):
9469         Use new metadata copy function.
9470
9471         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
9472         (gst_ffmpegcsp_transform):
9473         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform):
9474         Basetransform copied the metadata for us.
9475
9476 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
9477
9478         * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event),
9479         (gst_text_overlay_video_event):
9480           Some more logging. Only accept newsegment events in TIME format and
9481           send a WARNING message if they are not in TIME format.
9482
9483         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
9484         (gst_sub_parse_init), (gst_sub_parse_src_event), (handle_buffer),
9485         (gst_sub_parse_chain), (gst_sub_parse_sink_event):
9486         * gst/subparse/gstsubparse.h:
9487           No need to allocate GstSegment structure dynamically, just put it
9488           into the instance structure; ignore newsegment events in BYTE
9489           format and in particular don't let it overwrite our saved TIME
9490           segment from the last seek.
9491
9492 2007-03-09  Michael Smith  <msmith@fluendo.com>
9493
9494         * gst/typefind/gsttypefindfunctions.c: (ac3_type_find):
9495           Replace AC3 typefinder with one that isn't terrible, and actually
9496           works usefully.
9497
9498 2007-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
9499
9500         * gst/audioconvert/gstaudioconvert.c:
9501         (gst_audio_convert_transform):
9502           fix error category and translatable string
9503           
9504
9505 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
9506
9507         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
9508         * pkgconfig/gstreamer-plugins-base.pc.in:
9509           Fix up utils => pbutils here too.
9510
9511 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
9512
9513         * gst/subparse/gstsubparse.c: (handle_buffer):
9514           Break out of loop in chain function as soon as possible if we get
9515           a non-OK flow return.
9516
9517 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
9518
9519         * tests/check/elements/alsa.c: (GST_START_TEST):
9520         Unref the mixer if the state change fails too (if the
9521         alsa devices are inaccessible, for example)
9522
9523 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
9524
9525         * tests/check/Makefile.am:
9526         Don't test libvisual elements in the states check, because libvisual
9527         seems to leak internally.
9528
9529         Re-enable the alsa and states tests now that there's new suppressions
9530         in gst.supp.
9531
9532         * tests/check/elements/alsa.c: (GST_START_TEST):
9533         Don't leak the alsamixer we instantiated.
9534
9535 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
9536
9537         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_clear),
9538         (gst_ximagesink_change_state), (gst_ximagesink_reset),
9539         (gst_ximagesink_finalize):
9540         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state),
9541         (gst_xvimagesink_reset), (gst_xvimagesink_finalize):
9542         Move some cleanup stuff from the state change handler into a _reset()
9543         function that can be called from _finalize(). This ensures that things
9544         get freed even if (for some reason) the NULL->READY state transition
9545         fails in the parent class.
9546         Even if a parent state change fails, process our downward state change
9547         logic instead of bailing out early.
9548         Free the correct xcontext pointer in ximagesink's xcontext_clear.
9549
9550 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
9551
9552         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
9553         Extra log line.
9554
9555         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_init):
9556         * ext/pango/gsttimeoverlay.c: (gst_time_overlay_init):
9557         Use pango_font_description_set_family_static instead of 
9558         pango_font_description_set_family to save a string copy (it was
9559         leaking due to the strdup anyway)
9560
9561         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_finalize):
9562         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_finalize):
9563         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_finalize):
9564         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_finalize):
9565         Chain up in finalize.
9566
9567 2007-03-07  Tim-Philipp Müller  <tim at centricular dot net>
9568
9569         * gst-libs/gst/interfaces/mixertrack.c:
9570         (gst_mixer_track_class_init), (gst_mixer_track_get_property),
9571         (gst_mixer_track_set_property):
9572           API: add "untranslated-label" property which should be set by
9573           implementations at construct time (#414645).
9574
9575         * ext/alsa/gstalsamixeroptions.c: (gst_alsa_mixer_options_new):
9576         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
9577           Set "untranslated-label" when constructing mixer track objects.
9578
9579         * tests/check/elements/alsa.c: (GST_START_TEST), (alsa_suite):
9580           Unit test to check the above.
9581
9582 2007-03-07  Wim Taymans  <wim@fluendo.com>
9583
9584         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_read_chain):
9585         Fix confusing debug message.
9586
9587 2007-03-07  Jan Schmidt  <thaytan@mad.scientist.com>
9588
9589         * gst-plugins-base.doap:
9590         update doap file with new version
9591
9592 2007-03-07  Jan Schmidt  <thaytan@mad.scientist.com>
9593
9594         * configure.ac:
9595         Back to CVS
9596
9597 === release 0.10.12 ===
9598
9599 2007-03-07  Jan Schmidt <thaytan@mad.scientist.com>
9600
9601         * configure.ac:
9602           releasing 0.10.12, "Zombie Horde"
9603
9604 2007-03-06  Jan Schmidt  <thaytan@mad.scientist.com>
9605
9606         * configure.ac:
9607         Bump version to 0.10.11.4 pre-release
9608
9609 2007-03-06  Wim Taymans  <wim@fluendo.com>
9610
9611         * gst-libs/gst/audio/gstbaseaudiosink.c:
9612         (gst_base_audio_sink_async_play):
9613         Fix regression that made GStreamer skip the first samples of audio.
9614         Fixes #414684.
9615
9616 2007-03-05  Jan Schmidt  <thaytan@mad.scientist.com>
9617
9618         * configure.ac:
9619         Bump version to 0.10.11.3 pre-release
9620
9621 2007-03-05  Sebastian Dröge  <slomo@circular-chaos.org>
9622
9623         * po/POTFILES.in:
9624           Update paths for the rename from utils to pbutils to fix the build.
9625
9626 2007-03-05  Tim-Philipp Müller  <tim at centricular dot net>
9627
9628         * gst-libs/gst/pbutils/Makefile.am:
9629           Change directory to install headers in from gst/utils to gst/pbutils
9630           as well.
9631
9632 2007-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
9633
9634         * configure.ac:
9635         * docs/libs/gst-plugins-base-libs-docs.sgml:
9636         * docs/libs/gst-plugins-base-libs-sections.txt:
9637         * gst-libs/gst/Makefile.am:
9638         * gst-libs/gst/interfaces/mixer.c:
9639         * gst-libs/gst/pbutils/Makefile.am:
9640         * gst-libs/gst/pbutils/descriptions.c:
9641         (gst_pb_utils_get_source_description),
9642         (gst_pb_utils_get_sink_description),
9643         (gst_pb_utils_get_decoder_description),
9644         (gst_pb_utils_get_encoder_description),
9645         (gst_pb_utils_get_element_description),
9646         (gst_pb_utils_add_codec_description_to_tag_list),
9647         (gst_pb_utils_get_codec_description), (gst_pb_utils_list_all):
9648         * gst-libs/gst/pbutils/descriptions.h:
9649         * gst-libs/gst/pbutils/install-plugins.c:
9650         * gst-libs/gst/pbutils/install-plugins.h:
9651         * gst-libs/gst/pbutils/missing-plugins.c:
9652         (gst_missing_uri_source_message_new),
9653         (gst_missing_uri_sink_message_new),
9654         (gst_missing_element_message_new),
9655         (gst_missing_decoder_message_new),
9656         (gst_missing_encoder_message_new),
9657         (gst_missing_plugin_message_get_description):
9658         * gst-libs/gst/pbutils/missing-plugins.h:
9659         * gst-libs/gst/pbutils/pbutils.c: (gst_pb_utils_init):
9660         * gst-libs/gst/pbutils/pbutils.h:
9661         * gst-libs/gst/utils/Makefile.am:
9662         * gst-libs/gst/utils/base-utils.c:
9663         * gst-libs/gst/utils/base-utils.h:
9664         * gst-libs/gst/utils/descriptions.c:
9665         * gst-libs/gst/utils/descriptions.h:
9666         * gst-libs/gst/utils/install-plugins.c:
9667         * gst-libs/gst/utils/install-plugins.h:
9668         * gst-libs/gst/utils/missing-plugins.c:
9669         * gst-libs/gst/utils/missing-plugins.h:
9670         * gst-plugins-base.spec.in:
9671         * gst/playback/Makefile.am:
9672         * gst/playback/gstdecodebin.c:
9673         * gst/playback/gstdecodebin2.c:
9674         * gst/playback/gstplaybasebin.c: (setup_subtitle),
9675         (gen_source_element):
9676         * gst/playback/gstplaybin.c: (plugin_init):
9677         * tests/check/Makefile.am:
9678         * tests/check/libs/pbutils.c: (GST_START_TEST),
9679         (test_pb_utils_install_plugins_do_callout), (libgstpbutils_suite):
9680         * tests/check/libs/utils.c:
9681           rename utils to pbutils
9682
9683 2007-03-02  Jan Schmidt  <thaytan@mad.scientist.com>
9684
9685         * docs/plugins/Makefile.am:
9686         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
9687         * docs/plugins/gst-plugins-base-plugins-sections.txt:
9688         * docs/plugins/inspect/plugin-decodebin2.xml:
9689         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init):
9690         Add documentation for decodebin2 that indicates that the API
9691         is still unstable.
9692
9693 2007-03-01  Jan Schmidt  <thaytan@mad.scientist.com>
9694
9695         * configure.ac:
9696         Update to 0.10.11.2 (0.10.12 pre-release)
9697
9698 2007-03-01  Wim Taymans  <wim@fluendo.com>
9699
9700         * gst-libs/gst/audio/gstbaseaudiosink.c:
9701         (gst_base_audio_sink_async_play):
9702         base time is irrelevant here.
9703
9704 2007-03-01  Wim Taymans  <wim@fluendo.com>
9705
9706         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func):
9707         * gst-libs/gst/audio/gstaudiosrc.c: (audioringbuffer_thread_func):
9708         Improve debugging.
9709
9710         * gst-libs/gst/audio/gstbaseaudiosink.c:
9711         (gst_base_audio_sink_query), (gst_base_audio_sink_event),
9712         (gst_base_audio_sink_render), (gst_base_audio_sink_async_play):
9713         Improve latency and clock slaving calculations.
9714         Improve slave clock calibration.
9715
9716         * gst-libs/gst/audio/gstringbuffer.c:
9717         (gst_ring_buffer_commit_full):
9718         When we are asked to render N sample to 0 bytes, return N.
9719
9720 2007-03-01  Wim Taymans  <wim@fluendo.com>
9721
9722         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
9723         (gst_alsasink_write), (gst_alsasink_reset):
9724         * ext/alsa/gstalsasink.h:
9725         Remove unused dispose function.
9726         Rename lock to not interfere with alsasrc lock.
9727
9728         * ext/alsa/gstalsasrc.c: (gst_alsasrc_finalize),
9729         (gst_alsasrc_class_init), (gst_alsasrc_init), (set_swparams),
9730         (gst_alsasrc_read), (gst_alsasrc_reset):
9731         * ext/alsa/gstalsasrc.h:
9732         Implement finalize function.
9733         Use lock to protect alsa access.
9734         Implement _reset.
9735         Fine tune sw params.
9736
9737 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
9738
9739         * configure.ac:
9740           Convert to new AG_GST style.
9741
9742 2007-02-28  Wim Taymans  <wim@fluendo.com>
9743
9744         Patch by: Ed Catmur <ed at catmur dot co dot uk>
9745
9746         * gst/playback/gstplaybin.c: (gst_play_bin_vis_unblocked),
9747         (gst_play_bin_vis_blocked), (gst_play_bin_set_property):
9748         Fix race condition when rapidly switching visualisations in playbin.
9749         Fixes #401029.
9750
9751 2007-02-28  Jan Schmidt  <thaytan@mad.scientist.com>
9752
9753         * tests/check/Makefile.am:
9754         Include local stuff before system installed things in LDFLAGS and
9755         CFLAGS.
9756
9757 2007-02-28  Wim Taymans  <wim@fluendo.com>
9758
9759         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_sink_activate):
9760         Improve debugging.
9761
9762 2007-02-28  Wim Taymans  <wim@fluendo.com>
9763
9764         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
9765         (gst_v4lsrc_fixate), (gst_v4lsrc_query):
9766         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_buffer_new):
9767         Fix duration and timestamping, taking latency into account.
9768         Implement latency query.
9769
9770 2007-02-28  Wim Taymans  <wim@fluendo.com>
9771
9772         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
9773         (gst_audio_clock_new):
9774         Fix clock name.
9775
9776         * gst-libs/gst/audio/gstbaseaudiosink.c:
9777         (gst_base_audio_sink_init), (gst_base_audio_sink_query):
9778         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
9779         (gst_base_audio_src_query), (gst_base_audio_src_get_offset),
9780         (gst_base_audio_src_create):
9781         Improve latency query code.
9782         Use proper clock names.
9783
9784 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
9785
9786         * tests/check/generic/states.c: (GST_START_TEST):
9787           Copy the states.c test from core again
9788         * tests/check/Makefile.am:
9789           ignore cdio and cdparanoiasrc
9790
9791 2007-02-28  Stefan Kost  <ensonic@users.sf.net>
9792
9793         * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
9794         (double_hq), (audio_convert_get_func_index), (check_default),
9795         (audio_convert_prepare_context), (audio_convert_convert):
9796           Also make valgrind happy and avoid copying data in some cases.
9797
9798 2007-02-28  Stefan Kost  <ensonic@users.sf.net>
9799
9800         * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
9801         (double_hq), (audio_convert_get_func_index),
9802         (audio_convert_prepare_context), (audio_convert_convert):
9803         * gst/audioconvert/gstaudioconvert.c:
9804         (gst_audio_convert_class_init), (gst_audio_convert_get_unit_size),
9805         (gst_audio_convert_transform_caps):
9806         * tests/check/elements/audioconvert.c: (GST_START_TEST),
9807         (audioconvert_suite):
9808           Don't run inplace if that overwrites source data as we go. Add more
9809           tests. Fixes #339837 even more.
9810
9811 2007-02-27  Julien MOUTTE  <julien@moutte.net>
9812
9813         * tests/examples/seek/seek.c: (do_seek), (set_update_scale),
9814         (msg_segment_done): Fix various seeking bugs (Slider was not
9815         updating when doing a non flushing seek, Reverse playback 
9816         on segment seek was wrong).
9817
9818 2007-02-26  Wim Taymans  <wim@fluendo.com>
9819
9820         * tests/examples/seek/seek.c: (stop_seek):
9821         When we stop scrubbing, don't leave the pipeline PLAYING when we
9822         requested a PAUSED state.
9823
9824 2007-02-25  Tim-Philipp Müller  <tim at centricular dot net>
9825
9826         Patch by: René Stadler <mail at renestadler de>
9827
9828         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
9829           Parse date strings in vorbis comments that have an invalid (zero)
9830           month or day (#410396).
9831
9832         * tests/check/libs/tag.c: (GST_START_TEST):
9833           Test case for the above.
9834
9835 2007-02-24  Tim-Philipp Müller  <tim at centricular dot net>
9836
9837         Patch by: Loïc Minier <lool+gnome at via ecp fr>
9838
9839         * configure.ac:
9840         * ext/alsa/Makefile.am:
9841         * gst/audiotestsrc/Makefile.am:
9842           Fix compilation with LDFLAGS='-Wl,-z,defs' (#410963).
9843
9844 2007-02-23  Tim-Philipp Müller  <tim at centricular dot net>
9845
9846         * gst/playback/gstplaybin.c:
9847           Improve docs: point out that the application needs to assist playbin
9848           with buffering.
9849
9850 2007-02-23  Tim-Philipp Müller  <tim at centricular dot net>
9851
9852         * gst-libs/gst/utils/install-plugins.c:
9853         * gst-libs/gst/utils/missing-plugins.c:
9854         * tests/check/libs/utils.c: (missing_msg_check_getters):
9855           Change GStreamer marker prefix in detail string from 'gstreamer.net'
9856           to just 'gstreamer'. Document the caps string component of the
9857           decoder/encoder detail a bit better, since not everyone will be
9858           familiar with the GStreamer media type/caps system (but they better
9859           enjoy nested itemized lists).
9860
9861 2007-02-22  Tim-Philipp Müller  <tim at centricular dot net>
9862
9863         * gst-libs/gst/netbuffer/gstnetbuffer.c:
9864         (notgst_buffer_copy_fields_in_place), (gst_netbuffer_copy):
9865           Fix copying of GstNetBuffer (would crash before, or at least lead to
9866           invalid memory access, #410772), for now by copying the GstBuffer copy
9867           code from the core over here so we can copy the GstBuffer fields on a
9868           provided buffer instance (of type GstNetBuffer in this case). Would be
9869           better to fix this with some support by the core though (and in the long
9870           run change the broken GstBuffer/GstMiniObject copy semantics, #393099).
9871
9872         * tests/check/Makefile.am:
9873           Enable unit test for GstNetBuffer.
9874
9875 2007-02-22  Andy Wingo  <wingo@pobox.com>
9876
9877         * gst-libs/gst/audio/gstbaseaudiosink.c
9878         (gst_base_audio_sink_init): Disable pull-mode activation until we
9879         figure out how to make audio sinks go to PLAYING.
9880
9881 2007-02-22  Stefan Kost  <ensonic@users.sf.net>
9882
9883         * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
9884         (double_hq), (audio_convert_get_func_index),
9885         (audio_convert_prepare_context), (audio_convert_convert):
9886         * gst/audioconvert/audioconvert.h:
9887         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_setup_matrix),
9888         (gst_channel_mix_mix_int), (gst_channel_mix_mix_float):
9889         * gst/audioconvert/gstchannelmix.h:
9890         * tests/check/elements/audioconvert.c: (GST_START_TEST):
9891           Add float as an intermediate format, as well as float mixing. Enable
9892           test that was failing before. Fixes #339837
9893
9894 2007-02-21  Jan Schmidt  <thaytan@mad.scientist.com>
9895
9896         * tests/examples/seek/seek.c: (do_seek):
9897         Undo the previous commit: -1 as a stop time implies that the stop
9898         time is the end of file, clearing any previously configured segment.
9899
9900 2007-02-21  Jan Schmidt  <thaytan@mad.scientist.com>
9901
9902         * tests/examples/seek/seek.c: (do_seek):
9903         Don't SEEK_SET with a stop time of -1, use SEEK_NONE instead.
9904
9905 2007-02-21  Stefan Kost  <ensonic@users.sf.net>
9906
9907         * gst/volume/gstvolume.c: (volume_process_int16),
9908         (volume_process_int16_clamp), (volume_set_caps):
9909           Unbreak volume, value remains gint.
9910
9911 2007-02-21  Stefan Kost  <ensonic@users.sf.net>
9912
9913         * gst/volume/gstvolume.c: (volume_choose_func),
9914         (volume_update_real_volume), (gst_volume_set_volume),
9915         (gst_volume_init), (volume_process_double), (volume_process_float),
9916         (volume_process_int16), (volume_process_int16_clamp),
9917         (volume_set_caps), (volume_transform_ip), (volume_update_volume):
9918         * gst/volume/gstvolume.h:
9919           Extend float audio support (double) and some int->uint cleanups.
9920
9921 2007-02-20  Edward Hervey  <edward@fluendo.com>
9922
9923         * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose),
9924         (multi_queue_underrun_cb), (gst_decode_group_check_if_drained),
9925         (sort_end_pads), (gst_decode_group_expose),
9926         (gst_decode_group_hide):
9927         Don't free groups from the streaming threads. Just put them aside and
9928         free them in dispose.
9929
9930 2007-02-20  Edward Hervey  <edward@fluendo.com>
9931
9932         * gst/playback/gstdecodebin2.c: (connect_element),
9933         (pad_added_group_cb), (gst_decode_group_check_if_blocked),
9934         (sort_end_pads), (gst_decode_group_expose):
9935         Handle dynamic pads within groups.
9936         Sort pads before exposing them in order to make playbin happy.
9937         There still is a race with the multiqueue filling up. This should be
9938         solved separately.
9939         Fixes #398721
9940
9941 2007-02-16  Tim-Philipp Müller  <tim at centricular dot net>
9942
9943         * gst-libs/gst/utils/base-utils.c:
9944         * gst-libs/gst/utils/descriptions.c:
9945         * gst-libs/gst/utils/install-plugins.c:
9946         * gst-libs/gst/utils/missing-plugins.c:
9947           Some more docs (and descriptions for two subtitle formats).
9948
9949 2007-02-16  Tim-Philipp Müller  <tim at centricular dot net>
9950
9951         * gst-libs/gst/audio/audio.c:
9952           Fix documentation.
9953
9954 2007-02-16  Tim-Philipp Müller  <tim at centricular dot net>
9955
9956         Patch by: Yves Lefebvre  <ivanohe abacom com>
9957
9958         * gst/videorate/gstvideorate.c: (gst_video_rate_setcaps):
9959           Don't leak caps. Fixes #408278.
9960
9961 2007-02-15  Stefan Kost  <ensonic@users.sf.net>
9962
9963         * ext/cdparanoia/gstcdparanoiasrc.h:
9964         * ext/ogg/gstoggdemux.h:
9965         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size),
9966         (gst_audio_frame_length), (gst_audio_duration_from_pad_buffer),
9967         (gst_audio_is_buffer_framed), (gst_audio_structure_set_int):
9968         * gst-libs/gst/audio/audio.h:
9969         * gst-libs/gst/audio/gstaudiofilter.h:
9970         * gst-libs/gst/interfaces/videoorientation.h:
9971         * gst/adder/gstadder.h:
9972           More docs coverage and some ChangeLog surgery (add missing names)
9973
9974 2007-02-15  Wim Taymans  <wim@fluendo.com>
9975
9976         * sys/ximage/ximagesink.c:
9977         (gst_ximagesink_calculate_pixel_aspect_ratio):
9978         * sys/xvimage/xvimagesink.c:
9979         (gst_xvimagesink_calculate_pixel_aspect_ratio):
9980         Small constifications.
9981
9982 2007-02-15  Wim Taymans  <wim@fluendo.com>
9983
9984         * gst-libs/gst/audio/gstbaseaudiosink.c:
9985         (gst_base_audio_sink_class_init), (gst_base_audio_sink_query),
9986         (gst_base_audio_sink_render), (gst_base_audio_sink_callback),
9987         (gst_base_audio_sink_async_play),
9988         (gst_base_audio_sink_change_state):
9989         Answer latency query.
9990         Use configured latency when syncing.
9991         Fix clock slaving.
9992
9993         * gst-libs/gst/audio/gstbaseaudiosrc.c:
9994         (gst_base_audio_src_class_init), (gst_base_audio_src_dispose),
9995         (gst_base_audio_src_query), (gst_base_audio_src_change_state):
9996         Fix possible memleak.
9997         Implement latency query.
9998         Small cleanups.
9999
10000 2007-02-15  Wim Taymans  <wim@fluendo.com>
10001
10002         * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
10003         Ignore errors in reset, these are not fatal. They also grab the element
10004         lock which is already taking when this function is called. Fixes
10005         #405451.
10006
10007 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
10008
10009         * configure.ac:
10010           Remove 'tests/examples/xerror/Makefile' from output files again.
10011
10012 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
10013
10014         * configure.ac:
10015         * docs/plugins/Makefile.am:
10016           Also crossref against gst-plugins-base-libs.
10017
10018 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
10019
10020         * configure.ac:
10021         * docs/libs/Makefile.am:
10022         * docs/plugins/Makefile.am:
10023           Add crossreferences to glib/gobject/gstream docs.
10024
10025         * gst-libs/gst/audio/audio.h:
10026           Source formatting.
10027
10028         * gst/audiotestsrc/gstaudiotestsrc.c: (plugin_init):
10029           Add own debug category.
10030
10031 2007-02-12  Tim-Philipp Müller  <tim at centricular dot net>
10032
10033         Patch by: René Stadler <mail at renestadler de>
10034
10035         * gst-libs/gst/tag/gstvorbistag.c:
10036           Add vorbis/FLAC-tag mapping for new GST_TAG_REFERENCE_LEVEL
10037           (#403597).
10038
10039 2007-02-10  Tim-Philipp Müller  <tim at centricular dot net>
10040
10041         * gst/playback/gstplaybasebin.c: (setup_source):
10042           When we have external subtitles and wait for the subtitle decodebin
10043           to get up and running, we set up a (sync) bus handler for the
10044           subtitle decodebin, so we can stop waiting when it posts an error
10045           message. However, we should do that before we set the subtitle
10046           decodebin's state to playing, otherwise things are racy and we might
10047           miss error messages posted before we had a chance to set up the bus.
10048           This should finally fix totem hanging on .txt pseudo-subtitle files.
10049           
10050 2007-02-10  Sébastien Moutte  <sebastien at moutte dot net>
10051
10052         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:(gst_base_rtp_audio_payload_handle_frame_based_buffer):
10053           Use gst_gdouble_to_guint64 for conversions.
10054         * win32/common/config.h.in:
10055           Add a define for GST_INSTALL_PLUGINS_HELPER
10056         * win32/common/libgstaudio.def:
10057         * win32/common/libgstcdda.def:
10058         * win32/common/libgstnetbuffer.def:
10059         * win32/common/libgstrtp.def:
10060         * win32/common/libgutils.def:
10061           Add new exported functions.
10062         * win32/vs6/gst_plugins_base.dsw:
10063         * win32/vs6/libgstdecodebin.dsp:
10064         * win32/vs6/libgstnetbuffer.dsp:
10065         * win32/vs6/libgstplaybin.dsp:
10066         * win32/vs6/libgstrtp.dsp:
10067         * win32/vs6/libgstvorbis.dsp:
10068         * win32/vs6/libgstcdda.dsp:
10069         * win32/vs6/libgstgdp.dsp:
10070         * win32/vs6/libgstutils.dsp:
10071           Update and add new project files.
10072
10073 2007-02-10  Tim-Philipp Müller  <tim at centricular dot net>
10074
10075         * gst/subparse/gstsubparse.c: (subrip_remove_unhandled_tag),
10076         (subrip_remove_unhandled_tags), (parse_subrip):
10077           For SubRip (.srt) subtitles, ignore all markup tags we don't
10078           handle (like font tags, for example).
10079
10080         * tests/check/elements/subparse.c:
10081           Add test for this.
10082
10083 2007-02-09  Tim-Philipp Müller  <tim at centricular dot net>
10084
10085         * gst/playback/gstdecodebin.c: (add_fakesink),
10086         (gst_decode_bin_change_state):
10087         * gst/playback/gstdecodebin2.c: (add_fakesink),
10088         (gst_decode_bin_change_state):
10089           Don't error out if there is no fakesink in the NULL to READY state
10090           change, since when decodebin is re-used, we're only adding the
10091           fakesink element in READY to PAUSED.
10092
10093         * tests/check/elements/decodebin.c:
10094         (new_decoded_pad_plug_fakesink_cb), (GST_START_TEST),
10095         (decodebin_suite):
10096           Minimal unit test to make sure we can use the same decodebin
10097           instance twice (at least with audiotestsrc input).
10098
10099 2007-02-09  Tim-Philipp Müller  <tim at centricular dot net>
10100
10101         * ext/alsa/gstalsa.c: (gst_alsa_find_device_name):
10102           Try to get devic-name from device string first, and from handle only
10103           as fallback (seems to yield better results and is more robust
10104           against buggy probing code on the application side).
10105
10106 2007-02-08  Tim-Philipp Müller  <tim at centricular dot net>
10107
10108         Based on patch by: Julien Puydt <julien.puydt at laposte net>
10109
10110         * ext/alsa/gstalsa.c: (gst_alsa_find_device_name_no_handle),
10111         (gst_alsa_find_device_name):
10112         * ext/alsa/gstalsa.h:
10113         * ext/alsa/gstalsasink.c: (gst_alsasink_get_property):
10114         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_property):
10115           Improve device-name detection a bit, especially in the case where
10116           the device is not actually open (#405020, #405024). Move common code
10117           into gstalsa.c instead of duplicating it.
10118
10119 2007-02-07  Tim-Philipp Müller  <tim at centricular dot net>
10120
10121         * gst/audioconvert/gstaudioconvert.c:
10122           Fix up docs chunk so that gtk-doc doesn't complain, and fix typo.
10123
10124 2007-02-06  Julien MOUTTE  <julien@moutte.net>
10125
10126         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents),
10127         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_clear),
10128         (gst_xvimagesink_interface_supported),
10129         (gst_xvimagesink_probe_get_properties),
10130         (gst_xvimagesink_probe_probe_property),
10131         (gst_xvimagesink_probe_needs_probe),
10132         (gst_xvimagesink_probe_get_values),
10133         (gst_xvimagesink_property_probe_interface_init),
10134         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
10135         (gst_xvimagesink_init), (gst_xvimagesink_class_init),
10136         (gst_xvimagesink_get_type):
10137         * sys/xvimage/xvimagesink.h: Implement PropertyProbe Interface
10138         for XVAdaptors so that one can choose the adaptor to use with 
10139         gstreamer-properties.
10140
10141 2007-02-06  Stefan Kost  <ensonic@users.sf.net>
10142
10143         * gst/audioconvert/gstaudioconvert.c:
10144           Also mention that a conversion from double to float is suboptimal still.
10145
10146 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
10147
10148         * gst-libs/gst/audio/gstaudiofilter.c:
10149         (gst_audio_filter_class_init), (gst_audio_filter_change_state):
10150           Clear our formats structure and free the caps contained in it when
10151           shutting down.
10152
10153 2007-02-05  Andy Wingo  <wingo@pobox.com>
10154
10155         * gst-libs/gst/audio/gstbaseaudiosink.c
10156         (gst_base_audio_sink_callback): Update basesink->offset so that we
10157         pull monotonically increasing offsets instead of, um, seeking back
10158         to 0 each time. Fixes alsasrc ! alsasink!
10159
10160 2007-02-05  Tim-Philipp Müller  <tim at centricular dot net>
10161
10162         * gst/videoscale/gstvideoscale.c:
10163           A width and height of 1 makes us crash, so increase minimum size to
10164           2x2 pixels until someone feels like fixing this (#404512).
10165
10166 2007-02-04  Tim-Philipp Müller  <tim at centricular dot net>
10167
10168         * tests/check/pipelines/oggmux.c: (GST_START_TEST), (oggmux_suite):
10169           Add small test to make sure request pads are cleaned up properly
10170           even if oggmux never changes state out of NULL.
10171
10172 2007-02-04  Tim-Philipp Müller  <tim at centricular dot net>
10173
10174         * tests/check/libs/utils.c: (GST_START_TEST):
10175           Fix unit test. Turns out things work much better when you
10176           NULL-terminate string arrays. Should make p5 build bot happy again.
10177
10178 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
10179
10180         * gst-libs/gst/audio/Makefile.am:
10181         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
10182         (gst_audio_filter_template_base_init),
10183         (gst_audio_filter_template_class_init),
10184         (gst_audio_filter_template_init),
10185         (gst_audio_filter_template_set_property),
10186         (gst_audio_filter_template_get_property),
10187         (gst_audio_filter_template_setup),
10188         (gst_audio_filter_template_filter),
10189         (gst_audio_filter_template_filter_inplace), (plugin_init):
10190           Oops, forgot to commit fixed-up example.
10191
10192 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
10193
10194         * docs/libs/gst-plugins-base-libs-sections.txt:
10195         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
10196         (gst_audio_filter_class_init), (gst_audio_filter_init),
10197         (gst_audio_filter_set_caps),
10198         (gst_audio_filter_class_add_pad_templates):
10199         * gst-libs/gst/audio/gstaudiofilter.h:
10200           Port GstAudioFilter to 0.10. This change technically breaks
10201           API and ABI (and thus also every library developer's heart),
10202           but seems justifiable on the grounds that the base class was
10203           completely unusable before (ie. would crash immediately when
10204           actually used). Fixes #403963 (and eventually also #403572).
10205           Also document all of this a bit.
10206
10207 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
10208
10209         * gst-libs/gst/utils/install-plugins.c:
10210         (gst_install_plugins_spawn_child):
10211         * tests/check/libs/utils.c:
10212         (test_base_utils_install_plugins_do_callout):
10213           Lowering log level to see why things fail on the p5 build bot;
10214           fix some typos in unit test messages.
10215
10216 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
10217
10218         * tests/check/libs/utils.c:
10219         (test_base_utils_install_plugins_do_callout):
10220           Don't hard-code temp directory for test helper; use GLib functions
10221           to write out file and do error checking etc.
10222
10223 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
10224
10225         * gst-libs/gst/utils/Makefile.am:
10226         * gst-libs/gst/utils/base-utils.h:
10227         * gst-libs/gst/utils/install-plugins.c:
10228         (gst_install_plugins_context_set_xid),
10229         (gst_install_plugins_context_new),
10230         (gst_install_plugins_context_free),
10231         (gst_install_plugins_get_helper),
10232         (gst_install_plugins_spawn_child),
10233         (gst_install_plugins_return_from_status),
10234         (gst_install_plugins_installer_exited),
10235         (gst_install_plugins_async), (gst_install_plugins_sync),
10236         (gst_install_plugins_return_get_name),
10237         (gst_install_plugins_installation_in_progress):
10238         * gst-libs/gst/utils/install-plugins.h:
10239           API: add API for applications to initiate installation of missing
10240           plugins, ie. gst_install_plugins_async() primarily.
10241           Based on libgimme-codec by Ryan Lortie.
10242
10243         * configure.ac:
10244           Add --with-install-plugins-helper configure option so distros can specify
10245           the path of the helper script or program to call when plugin installation
10246           is requested (distros: please do any argument munging in this helper
10247           script instead of patching GStreamer to pass arguments differently
10248           to another program directly).
10249
10250         * docs/libs/gst-plugins-base-libs-docs.sgml:
10251         * docs/libs/gst-plugins-base-libs-sections.txt:
10252           Build and document new API.
10253
10254         * tests/check/libs/utils.c: (result_cb),
10255         (test_base_utils_install_plugins_do_callout), (GST_START_TEST),
10256         (libgstbaseutils_suite):
10257           Some simple checks for the new API.
10258
10259 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
10260
10261         * tests/check/elements/audioconvert.c: (test_float_conversion):
10262           Add small test for 32bit float <=> 64bit float conversion (works
10263           only one way so far, 32=>64 produces structured noise).
10264
10265 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
10266
10267         * gst/audioconvert/gstaudioconvert.c:
10268         (set_structure_widths_32_and_64), (make_lossless_changes):
10269           We don't support floats with a width of 40, 48 or 56 bits.
10270
10271 2007-02-02  Stefan Kost  <ensonic@users.sf.net>
10272
10273         * gst/audioconvert/audioconvert.c: (float), (double),
10274         (audio_convert_get_func_index):
10275         * gst/audioconvert/gstaudioconvert.c: (set_structure_widths),
10276         (make_lossless_changes):
10277           Support for 64-bit float audio in audioconvert (#339837)
10278
10279 2007-02-01  Tim-Philipp Müller  <tim at centricular dot net>
10280
10281         Patch by: Holger Wansing  <linux wansing-online de>
10282
10283         * po/LINGUAS:
10284         * po/de.po:
10285           Add German translation (#352069).
10286
10287 2007-02-01  Sebastian Dröge  <slomo@circular-chaos.org>
10288
10289         reviewed by: Wim Taymans <wim@fluendo.com>
10290
10291         * ext/ogg/gstoggmux.c: (gst_ogg_mux_ogg_pad_destroy_notify),
10292         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad):
10293         Use newly added GstCollectPads API to free the allocated resources in
10294         the GstOggPad structures (#402393).
10295
10296 2007-01-31  Jan Schmidt  <thaytan@mad.scientist.com>
10297
10298         * gst/playback/gstplaybin.c: (gen_vis_element):
10299           Add audioresample+audioconvert in front of the visualisation
10300           element, so that elements like libvisual 0.4 that don't support all
10301           samplerates can work.
10302
10303           Fixes: #402505
10304
10305 2007-01-30  Tim-Philipp Müller  <tim at centricular dot net>
10306
10307         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property),
10308         (gst_play_base_bin_get_streaminfo_value_array):
10309           Take some locks and make a copy of the streaminfo value array we
10310           maintain while holding the lock, so that the application can
10311           retrieve the stream-info as a value array in a thread-safe way.
10312
10313 2007-01-30  Wim Taymans  <wim@fluendo.com>
10314
10315         * gst/audioconvert/gstaudioconvert.c:
10316         Don't fail on 0 sized buffers. Fixes #396835.
10317
10318 2007-01-29  David Schleef  <ds@schleef.org>
10319
10320         * gst/typefind/gsttypefindfunctions.c:
10321           Detect BBCD as video/x-dirac, so we can play raw dirac
10322           streams.
10323
10324 2007-01-29  Tim-Philipp Müller  <tim at centricular dot net>
10325
10326         * ext/theora/theoraenc.c: (theora_enc_chain):
10327           Check return value of theora_encode_header(), or we might try to
10328           allocate a random number of bytes. theora_encode_header() can fail
10329           if libtheora has been compiled with encoding support disabled.
10330           Fixes #398110.
10331
10332 2007-01-29  Wim Taymans  <wim@fluendo.com>
10333
10334         * tests/check/gst/.cvsignore:
10335         Do as buildbot says.
10336
10337 2007-01-29  Wim Taymans  <wim@fluendo.com>
10338
10339         * ext/libvisual/visual.c: (gst_visual_src_setcaps):
10340         Fix strides in libvisual. Gst uses X strides.
10341         Inspired by: <ed at catmur dot co dot uk> and 
10342         <tim at centricular dot net>
10343         Fixes #401118.
10344
10345 2007-01-27  Wim Taymans  <wim@fluendo.com>
10346
10347         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_submit_buffer),
10348         (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
10349         (gst_ogg_demux_get_prev_page), (gst_ogg_demux_do_seek),
10350         (gst_ogg_demux_perform_seek),
10351         (gst_ogg_demux_bisect_forward_serialno),
10352         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
10353         (gst_ogg_demux_find_chains), (gst_ogg_demux_handle_page),
10354         (gst_ogg_demux_chain), (gst_ogg_demux_combine_flows),
10355         (gst_ogg_demux_loop_reverse), (gst_ogg_demux_loop):
10356         * ext/ogg/gstoggdemux.h:
10357         Properly propagate streaming errors when we are scanning the file for
10358         chains so that we don't crash when shut down. Might fix some crashers
10359         when quickly switching oggs in RB such as #332503 and #378436.
10360
10361 2007-01-26  Tim-Philipp Müller  <tim at centricular dot net>
10362
10363         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
10364           Map a gnome-vfs HOST_NOT_FOUND error into a GStreamer NOT_FOUND
10365           error code as well.
10366
10367 2007-01-25  Wim Taymans  <wim@fluendo.com>
10368
10369         * gst/playback/gstplaybasebin.c: (remove_source):
10370         Don't try to disconnect a signal from a finalized object.
10371
10372 2007-01-25  Tim-Philipp Müller  <tim at centricular dot net>
10373
10374         * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose):
10375           Cast lock macro parameters to make sure we're actually accessing the
10376           lock member at the right class level. Free list itself in _dispose()
10377           as well and NULL it in case dispose gets called multiple times.
10378
10379 2007-01-25  Edward Hervey  <edward@fluendo.com>
10380
10381         * gst/playback/gstdecodebin2.c:
10382         (gst_decode_bin_dispose),(gst_decode_bin_finalize):
10383         Free GstDecodeGroups no longer used.
10384         (gst_decode_group_expose):
10385         Don't unlock too many times !
10386         (deactivate_free_recursive):
10387         Free iterator once we're done with it.
10388         Fix for recursively deactivating elements (stop at ghostpads).
10389
10390 2007-01-25  Tim-Philipp Müller  <tim at centricular dot net>
10391
10392         * gst/playback/gstplaybin.c: (handoff):
10393           Fix up caps on the frame buffer before we save it and potentially
10394           make it accessible to other threads via g_object_get; also use
10395           gst_buffer_replace() instead of gst_mini_object_replace().
10396
10397 2007-01-25  Tim-Philipp Müller  <tim at centricular dot net>
10398
10399         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
10400           Make getting the current frame thread-safe.
10401
10402 2007-01-25  Edward Hervey  <edward@fluendo.com>
10403
10404         * gst/playback/gstdecodebin2.c: (gst_decode_bin_finalize),
10405         (gst_decode_group_new), (gst_decode_group_free):
10406         Set queues to bigger sizes to cope with HD contents.
10407         Fix some mutex freeing and add comment about MT safe methods.
10408
10409 2007-01-24  Tim-Philipp Müller  <tim at centricular dot net>
10410
10411         * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event),
10412         (gst_text_overlay_text_event):
10413           Don't unnecessarily ref (and then leak) upstream events if the text
10414           pad is not linked. Fixes #399948.
10415
10416         * tests/check/gst-plugins-base.supp:
10417           Add suppression for pango on edgy/x86 for textoverlay test.
10418
10419 2007-01-24  Wim Taymans  <wim@fluendo.com>
10420
10421         * gst-libs/gst/rtp/gstrtpbuffer.h:
10422         Add some more fixed payloads.
10423
10424 2007-01-23  Tim-Philipp Müller  <tim at centricular dot net>
10425
10426         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_read_chain):
10427           Error out properly if we get an error from libogg while reading the
10428           BOS page(s). Fixes crash parsing 'fuzzed' ogg file (#399340).
10429
10430 2007-01-23  Tim-Philipp Müller  <tim at centricular dot net>
10431
10432         * gst/playback/gstdecodebin2.c: (gst_decode_bin_finalize):
10433           Don't leak mutex.
10434
10435         * tests/check/elements/playbin.c:
10436         (test_sink_usage_video_only_stream),
10437         (test_suburi_error_unknowntype), (test_suburi_error_invalidfile),
10438         (test_suburi_error_wrongproto), (test_missing_urisource_handler),
10439         (test_missing_suburisource_handler),
10440         (test_missing_primary_decoder), (playbin_suite):
10441           Run all tests once with decodebin and once with decodebin2.
10442           One test does not pass yet with decodebin2.
10443
10444 2007-01-23  Edward Hervey  <edward@fluendo.com>
10445
10446         * ext/ogg/gstoggmux.c: (all_pads_eos), (gst_ogg_mux_collected):
10447         Fix the cases where oggmux doesn't properly figure out that all
10448         sinkpads have gone EOS, and therefore doesn't push out the remaining
10449         buffers and the final EOS event.
10450         Fixes #363379
10451
10452 2007-01-23  Julien MOUTTE  <julien@moutte.net>
10453
10454         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
10455         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
10456         Don't lock on navigation event push, just on keysym to string.
10457         Fixes #397673 again.
10458
10459 2007-01-22  Edward Hervey  <edward@fluendo.com>
10460
10461         * gst/playback/gstdecodebin2.c: (gst_decode_group_new),
10462         (get_current_group), (group_demuxer_event_probe),
10463         (gst_decode_group_expose), (deactivate_free_recursive),
10464         (gst_decode_group_free):
10465         Cleanups.
10466         Don't forget to emit 'no-more-pads' once a group is exposed.
10467         Cleanup elements from a DecodeGroup once we remove it.
10468         Protect call to gst_decode_group_expose() with the decodebin lock.
10469
10470 2007-01-22  Julien MOUTTE  <julien@moutte.net>
10471
10472         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
10473         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
10474         Looking at Xorg code i can't figure out if that XKeysymToString
10475         function is thread sensible or not. Lock it just in case as
10476         recommended by Radek Doulik <rodo at ximian dot com>.
10477
10478 2007-01-22  Julien MOUTTE  <julien@moutte.net>
10479
10480         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
10481         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
10482         Lock that X Call as well. Fixes #397673.
10483
10484 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
10485
10486         * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find):
10487           Don't go into an endless loop if the file starts with 00 00 01 2X,
10488           like quicktime redirect files might. Fixes #396042.
10489
10490         * tests/check/Makefile.am:
10491         * tests/check/gst/.cvsignore:
10492         * tests/check/gst/typefindfunctions.c: (GST_START_TEST),
10493         (typefindfunctions_suite):
10494           Add unit test for the above.
10495
10496 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
10497
10498         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
10499           On second thought, use "depth" field rather than "bpp" field.
10500
10501 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
10502
10503         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
10504           Camtasia caps apparently need a bpp field (#398875).
10505
10506 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
10507
10508         * gst/playback/gstplaybasebin.c: (setup_subtitle),
10509         (gen_source_element), (gst_play_base_bin_change_state):
10510           Attempt at a better error message in case we don't have the required
10511           URI handler installed; post missing-plugin message also when we're
10512           missing an URI handler for the subtitle URI; clean up properly also
10513           when an error occurs and we never made it to PAUSED state.
10514
10515         * tests/check/elements/playbin.c: (GST_START_TEST),
10516         (playbin_suite):
10517           Check that we're also getting a missing-plugin messsage for a
10518           missing subtitle URI handler (and clean up properly).
10519
10520 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
10521
10522         * gst/playback/gstplaybasebin.c: (analyse_source), (setup_source):
10523           Plug a few reference leaks.
10524
10525 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
10526
10527         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
10528           Lower probability a bit if the marker isn't right at the start,
10529           to decrease the chance of false positives.
10530
10531 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
10532
10533         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
10534           Small mpeg2 system stream typefinding improvement: make typefinder
10535           probe a bit into the stream instead of just looking for a marker
10536           at the beginning. Fixes #397810.
10537
10538 2007-01-18  Tim-Philipp Müller  <tim at centricular dot net>
10539
10540         * gst/audioconvert/gstchannelmix.c:
10541           Remove compatibility cruft for prehistoric GLib versions.
10542
10543 2007-01-17  Tim-Philipp Müller  <tim at centricular dot net>
10544
10545         * gst/playback/Makefile.am:
10546         * gst/playback/gstdecodebin.c: (close_pad_link):
10547         * gst/playback/gstdecodebin2.c: (analyze_new_pad):
10548         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
10549         (gst_play_base_bin_handle_message_func), (unknown_type):
10550           Let decodebin be the element to post missing-plugin messages for
10551           missing decoders (rather than playbin); make playbin implement
10552           GstBin::handle_message so we can suppress missing-plugin messages
10553           for types we're not handling on purpose (don't want to bring up an
10554           installer in those cases).
10555
10556 2007-01-16  Tim-Philipp Müller  <tim at centricular dot net>
10557
10558         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
10559         * gst-libs/gst/tag/gstvorbistag.c:
10560         (gst_tag_list_to_vorbiscomment_buffer):
10561         * gst/typefind/gsttypefindfunctions.c: (vorbis_type_find):
10562           Fix potentially unaligned access (#397207).
10563
10564 2007-01-16  Stefan Kost  <ensonic@users.sf.net>
10565
10566         * tests/examples/seek/seek.c: (set_scale), (update_scale),
10567         (do_seek), (stop_seek), (pause_cb), (stop_cb), (loop_toggle_cb),
10568         (rate_spinbutton_changed_cb), (msg_eos), (msg_segment_done),
10569         (main):
10570           Allow to toggle looping while it plays. Fix callback prototype. Clean
10571           up code a bit more. Add copyright header.
10572
10573 2007-01-16  Stefan Kost  <ensonic@users.sf.net>
10574
10575         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
10576           Red and blue mask was swapped (spotted by Dan Williams).
10577
10578 2007-01-15  Stefan Kost  <ensonic@users.sf.net>
10579
10580         * gst-libs/gst/tag/gstid3tag.c:
10581         * gst-libs/gst/tag/gstvorbistag.c:
10582           Use new beats-per-minute tag from core.
10583
10584 2007-01-15  Tim-Philipp Müller  <tim at centricular dot net>
10585
10586         * po/POTFILES.in:
10587           Add new files with translatable strings, so they actually make it
10588           into the template file one day.
10589
10590 2007-01-12  Andy Wingo  <wingo@pobox.com>
10591
10592         * gst-libs/gst/audio/gstbaseaudiosink.c
10593         (gst_base_audio_sink_fixate): Implement, stolen from baseaudiosrc.
10594         (gst_base_audio_sink_activate_pull): Remove the handwavey nego
10595         stuff, as the base class handles this now. Actually tell the ring
10596         buffer to start.
10597         (gst_base_audio_sink_callback): Cast the ring buffer correctly.
10598         How did this work before? Maybe I'm not as awesome a programmer as
10599         I think.
10600
10601         * gst-libs/gst/audio/gstbaseaudiosrc.c
10602         (gst_base_audio_src_fixate): Rework as a basesrc vmethod instead
10603         of a pad function.
10604
10605 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
10606
10607         * gst-libs/gst/utils/missing-plugins.c: (copy_and_clean_caps):
10608           Remove more fields so that the application can better blacklist
10609           formats that have been tried before.
10610
10611 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
10612
10613         * gst-libs/gst/audio/mixerutils.h:
10614           Add G_BEGIN_DECLS and G_END_DECLS guards so these helpers can be
10615           used when compiling with c++ compilers as well.
10616
10617 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
10618
10619         * gst/typefind/gsttypefindfunctions.c:
10620           Fix comment.
10621
10622 2007-01-11  Tim-Philipp Müller  <tim at centricular dot net>
10623
10624         * gst/playback/gstplaybin.c: (post_missing_element_message),
10625         (gen_video_element), (gen_text_element), (gen_audio_element),
10626         (gen_vis_element):
10627           Post missing-plugin messages also when we error out because
10628           converters, textoverlay or auto*sinks are missing (#161922).
10629
10630 2007-01-10  Wim Taymans  <wim@fluendo.com>
10631
10632         * gst/playback/gstdecodebin.c: (dynamic_add), (close_pad_link),
10633         (is_demuxer_element), (new_caps):
10634         * gst/playback/gstplaybasebin.c: (source_new_pad):
10635         Fix the case where we try to ref a NULL element when we delay a link
10636         because of unfixed caps.
10637         Set the state of autoplugged decodebins to PAUSED.
10638         RTSP now works in playbin, we can remove it from the blacklist.
10639
10640 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
10641
10642         * gst/playback/Makefile.am:
10643         * gst/playback/gstplaybasebin.c: (string_arr_has_str),
10644         (unknown_type), (setup_subtitle), (gen_source_element):
10645         * gst/playback/gstplaybin.c: (plugin_init):
10646           Post missing-plugin messages on the bus for missing sources and
10647           missing decoders/demuxers/depayloaders; fix error code used when
10648           we're missing an URI handler source; for media types that we are not
10649           handling on purpose at the moment, don't print "don't know how to
10650           handle xyz" messages to the terminal or post missing-plugin
10651           messages on the bus.
10652
10653         * tests/check/elements/playbin.c: (create_playbin),
10654         (GST_START_TEST), (gst_codec_src_uri_get_type),
10655         (gst_codec_src_uri_get_protocols), (gst_codec_src_uri_get_uri),
10656         (gst_codec_src_uri_set_uri), (gst_codec_src_uri_handler_init),
10657         (gst_codec_src_init_type), (gst_codec_src_base_init),
10658         (gst_codec_src_create), (gst_codec_src_class_init),
10659         (gst_codec_src_init), (plugin_init), (playbin_suite):
10660           Add some tests for the missing-plugin stuff.
10661
10662 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
10663
10664         * configure.ac:
10665         * gst-libs/gst/Makefile.am:
10666         * gst-libs/gst/utils/Makefile.am:
10667         * gst-libs/gst/utils/base-utils.c: (gst_base_utils_init):
10668         * gst-libs/gst/utils/base-utils.h:
10669         * gst-libs/gst/utils/descriptions.c: (format_info_get_desc),
10670         (find_format_info), (caps_are_rtp_caps),
10671         (gst_base_utils_get_source_description),
10672         (gst_base_utils_get_sink_description),
10673         (gst_base_utils_get_decoder_description),
10674         (gst_base_utils_get_encoder_description),
10675         (gst_base_utils_get_element_description),
10676         (gst_base_utils_add_codec_description_to_tag_list),
10677         (gst_base_utils_get_codec_description), (gst_base_utils_list_all):
10678         * gst-libs/gst/utils/descriptions.h:
10679         * gst-libs/gst/utils/missing-plugins.c:
10680         (missing_structure_get_type), (copy_and_clean_caps),
10681         (gst_missing_uri_source_message_new),
10682         (gst_missing_uri_sink_message_new),
10683         (gst_missing_element_message_new),
10684         (gst_missing_decoder_message_new),
10685         (gst_missing_encoder_message_new),
10686         (missing_structure_get_string_detail),
10687         (missing_structure_get_caps_detail),
10688         (gst_missing_plugin_message_get_installer_detail),
10689         (gst_missing_plugin_message_get_description),
10690         (gst_is_missing_plugin_message):
10691         * gst-libs/gst/utils/missing-plugins.h:
10692           API: add new libgstbaseutils library with functions
10693           - to create and parse missing-plugins messages
10694           - that provide (translated) descriptions for caps/decoders/sources/etc.
10695           Closes #392393.
10696
10697         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
10698         * pkgconfig/gstreamer-plugins-base.pc.in:
10699           Add new lib.
10700
10701         * docs/libs/gst-plugins-base-libs-docs.sgml:
10702         * docs/libs/gst-plugins-base-libs-sections.txt:
10703           Generate docs for new lib and API.
10704
10705         * tests/check/Makefile.am:
10706         * tests/check/libs/.cvsignore:
10707         * tests/check/libs/utils.c: (missing_msg_check_getters),
10708         (GST_START_TEST), (libgstbaseutils_suite):
10709           Add some basic unit tests.
10710
10711 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
10712
10713         * ext/ogg/Makefile.am:
10714           Dist gstoggdemux.h to fix 'make distcheck'.
10715
10716         * sys/v4l/Makefile.am:
10717           Fix 'make distcheck' even more.
10718
10719 2007-01-09  Wim Taymans  <wim@fluendo.com>
10720
10721         * docs/plugins/Makefile.am:
10722         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
10723         * docs/plugins/gst-plugins-base-plugins-sections.txt:
10724         * ext/ogg/gstoggdemux.c: (gst_ogg_page_copy), (gst_ogg_page_free),
10725         (gst_ogg_pad_query_types), (gst_ogg_pad_submit_page),
10726         (gst_ogg_chain_reset), (gst_ogg_chain_new_stream),
10727         (gst_ogg_demux_perform_seek):
10728         * ext/ogg/gstoggdemux.h:
10729         Added docs.
10730         Add some more comments.
10731         Small cleanups.
10732
10733 2007-01-09  Wim Taymans  <wim@fluendo.com>
10734
10735         * ext/theora/theoradec.c:
10736         * ext/vorbis/vorbisdec.c:
10737         * gst-libs/gst/audio/gstringbuffer.c:
10738         (gst_ring_buffer_commit_full):
10739         * gst-libs/gst/audio/gstringbuffer.h:
10740         * gst-libs/gst/rtp/gstrtpbuffer.c:
10741         * gst-libs/gst/tag/gstvorbistag.c:
10742         Small documentation updates/fixes
10743
10744 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
10745
10746         * configure.ac:
10747           Require core CVS HEAD for Andy's basesrc/sink API additions.
10748
10749 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
10750
10751         Patch by: Günter Thelen  <daedalus dot inc at gmx net>
10752
10753         * gst/typefind/gsttypefindfunctions.c: (flac_type_find),
10754         (plugin_init):
10755           Add typefinder for flac-in-ogg in conformance with the ogg-mapping
10756           on flac.sf.net (there appear to be other versions of the first
10757           ogg page in the wild) (#391365).
10758
10759 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
10760
10761         * configure.ac:
10762           Check if localtime_r() is available.
10763
10764         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_render_time):
10765           If localtime_r() is not available, fall back to localtime(). Should
10766           fix build on MingW (#393310).
10767
10768 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
10769
10770         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
10771         * gst/subparse/gstsubparse.h:
10772           Remove spurious 1000 subtrahend when calculating the timestamp from
10773           the frame number and the frame rate . Also, use the frames/second
10774           value specified in the first line of the file, if one is specified
10775           there. Should fix #357503.
10776
10777         * tests/check/elements/subparse.c: (do_test),
10778         (test_tmplayer_do_test), (test_microdvd_do_test), (GST_START_TEST),
10779         (subparse_suite):
10780           Add some basic unit tests for the microdvd subtitle format.
10781
10782 2007-01-07  Julien MOUTTE  <julien@moutte.net>
10783
10784         Patch by: Young-Ho Cha <ganadist at chollian dot net>
10785
10786         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
10787         (gst_xvimage_buffer_finalize), (gst_xvimagesink_xvimage_new),
10788         (gst_xvimagesink_xvimage_put), (gst_lookup_xv_port_from_adaptor),
10789         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_setcaps),
10790         (gst_xvimagesink_set_xwindow_id),
10791         (gst_xvimagesink_set_event_handling),
10792         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
10793         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
10794         Fixes: #390076.
10795         Add an adaptor property to select a specific XV adaptor.
10796         * sys/xvimage/xvimagesink.h:
10797
10798 2007-01-07  Julien MOUTTE  <julien@moutte.net>
10799
10800         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
10801         (gst_ximagesink_handle_xerror), (gst_ximagesink_ximage_new),
10802         (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
10803         (gst_ximagesink_handle_xevents), (gst_ximagesink_setcaps),
10804         (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
10805         (gst_ximagesink_expose), (gst_ximagesink_set_event_handling):
10806         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
10807         (gst_xvimage_buffer_finalize), (gst_xvimagesink_handle_xerror),
10808         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
10809         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_setcaps),
10810         (gst_xvimagesink_change_state), (gst_xvimagesink_set_xwindow_id),
10811         (gst_xvimagesink_expose), (gst_xvimagesink_set_event_handling):
10812         Use flow_lock much more to protect every access to xwindow.
10813         Try to catch erros while creating images in case some drivers are
10814         just generating an XError when the requested image is too big.
10815         Should fix : #354698, #384008, #384060.
10816         * tests/icles/stress-xoverlay.c: (cycle_window), (create_window):
10817         Implement some stress testing of setting window xid.
10818
10819 2007-01-07  Sébastien Moutte  <sebastien@moutte.net>
10820
10821         * win32/common/libgsaudio.def:
10822           Add new exported function.
10823         * win32/common/libgstogg.dsp:
10824           Add gstoggaviparse.c to the build.
10825         * win32/common/libgstvideoscale.dsp:
10826           Add vs_4tap.c to the build.
10827         * win32/common/libgstvorbis.dsp:
10828           Add vorbistag.c to the build.
10829         
10830 2007-01-06  Andy Wingo  <wingo@pobox.com>
10831
10832         * gst-libs/gst/audio/gstbaseaudiosink.c
10833         (gst_base_audio_sink_class_init)
10834         (gst_base_audio_sink_init): 
10835         (gst_base_audio_sink_activate_pull): Add an activate_pull function
10836         to baseaudiosink, and tell basesink that we can work in pull mode.
10837         This way the ring buffer thread drives the pipeline directly, if
10838         pull mode is possible. There is some lingering nastiness regarding
10839         capsnego, however.
10840         (gst_base_audio_sink_callback): Implement the callback to pull
10841         data. This interface is a bit light, though -- it should get a
10842         GstFlowReturn return value at least.
10843
10844 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
10845
10846         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_stream_out):
10847         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
10848         * gst/playback/gstdecodebin2.c:
10849         (gst_decode_group_check_if_blocked):
10850           Printf format and missing argument fixes.
10851
10852 2007-01-05  Jan Schmidt  <thaytan@mad.scientist.com>
10853
10854         * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header),
10855         (gst_ogm_parse_change_state):
10856         Activate pads before adding them to the element.
10857
10858 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
10859
10860         * tests/examples/seek/scrubby.c: (main):
10861         * tests/examples/seek/seek.c: (main):
10862           Call g_thread_init() first thing in main() (see #391278).
10863
10864 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
10865
10866         * tests/check/Makefile.am:
10867         * tests/check/libs/.cvsignore:
10868         * tests/check/libs/netbuffer.c: (GST_START_TEST),
10869         (netbuffer_suite):
10870           Add test for GstNetBuffer + gst_buffer_copy(). Disabled
10871           for the time being, since it's broken, see #393099.
10872
10873 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
10874
10875         * tests/check/Makefile.am:
10876           Update to use GST_PLUGINS_BASE_CFLAGS as well.
10877
10878 2007-01-04  Thomas Vander Stichele  <thomas at apestaart dot org>
10879
10880         * configure.ac:
10881           split out GST_CFLAGS into GST_PLUGINS_BASE_CFLAGS and GST_CFLAGS
10882           so that GST_BASE_CFLAGS can go inbetween them, making sure
10883           we use uninstalled gst-libs headers
10884         * docs/libs/Makefile.am:
10885         * ext/alsa/Makefile.am:
10886         * ext/cdparanoia/Makefile.am:
10887         * ext/gnomevfs/Makefile.am:
10888         * ext/libvisual/Makefile.am:
10889         * ext/ogg/Makefile.am:
10890         * ext/theora/Makefile.am:
10891         * ext/vorbis/Makefile.am:
10892         * gst-libs/gst/audio/Makefile.am:
10893         * gst-libs/gst/cdda/Makefile.am:
10894         * gst-libs/gst/interfaces/Makefile.am:
10895         * gst-libs/gst/riff/Makefile.am:
10896         * gst-libs/gst/rtp/Makefile.am:
10897         * gst-libs/gst/tag/Makefile.am:
10898         * gst/adder/Makefile.am:
10899         * gst/audioconvert/Makefile.am:
10900         * gst/audiorate/Makefile.am:
10901         * gst/audioresample/Makefile.am:
10902         * gst/playback/Makefile.am:
10903         * gst/tcp/Makefile.am:
10904         * gst/videoscale/Makefile.am:
10905         * gst/volume/Makefile.am:
10906         * sys/ximage/Makefile.am:
10907         * sys/xvimage/Makefile.am:
10908         * tests/icles/Makefile.am:
10909           adapt
10910
10911 2007-01-04  Julien MOUTTE  <julien@moutte.net>
10912
10913         * gst-libs/gst/interfaces/xoverlay.c:
10914         (gst_x_overlay_handle_events):
10915         * gst-libs/gst/interfaces/xoverlay.h:
10916         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
10917         (gst_ximagesink_set_xwindow_id),
10918         (gst_ximagesink_set_event_handling),
10919         (gst_ximagesink_xoverlay_init), (gst_ximagesink_set_property),
10920         (gst_ximagesink_get_property), (gst_ximagesink_init),
10921         (gst_ximagesink_class_init):
10922         * sys/ximage/ximagesink.h:
10923         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new),
10924         (gst_xvimagesink_set_xwindow_id),
10925         (gst_xvimagesink_set_event_handling),
10926         (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_set_property),
10927         (gst_xvimagesink_get_property), (gst_xvimagesink_init),
10928         (gst_xvimagesink_class_init):
10929         * sys/xvimage/xvimagesink.h:
10930         * tests/icles/stress-xoverlay.c: (toggle_events), (create_window):
10931         Add a method to the XOverlay interface to allow disabling of 
10932         event handling in x[v]imagesink elements. This will let X events
10933         propagate to parent windows which can be usefull in some cases.
10934         Be carefull that the application is then responsible of pushing
10935         navigation events and expose events to the video sink.
10936         Fixes: #387138.
10937
10938 2007-01-03  Tim-Philipp Müller  <tim at centricular dot net>
10939
10940         * gst-libs/gst/tag/gstvorbistag.c:
10941         * tests/check/libs/tag.c: (GST_START_TEST):
10942           Add vorbistag <=> GStreamer tag mapping for GST_TAG_LOCATION
10943           (fixes #392070).
10944
10945 2007-01-01  Tim-Philipp Müller  <tim at centricular dot net>
10946
10947         * configure.ac:
10948         * docs/Makefile.am:
10949         * docs/design/Makefile.am:
10950           Dist design docs.
10951
10952 2006-12-27  Julien MOUTTE  <julien@moutte.net>
10953
10954         * docs/libs/gst-plugins-base-libs-sections.txt: Fix a documentation
10955         typo. Fixes: #390063.
10956
10957 2006-12-27  Julien MOUTTE  <julien@moutte.net>
10958
10959         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
10960         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Plug a
10961         caps leak.
10962         * win32/common/config.h: Updated.
10963
10964 2006-12-22  Stefan Kost  <ensonic@users.sf.net>
10965
10966         * tests/check/elements/gdpdepay.c: (cleanup_gdpdepay),
10967         (setup_gdpdepay_streamheader):
10968         * tests/check/elements/gdppay.c: (cleanup_gdppay),
10969         (setup_gdppay_streamheader):
10970           Fix the dp tests, but activating the pads for the streamheader tests
10971           too and cleaning up conditionaly
10972
10973 2006-12-22  Jan Schmidt  <thaytan@mad.scientist.com>
10974
10975         * gst/ffmpegcolorspace/avcodec.h:
10976         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10977         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
10978         (gst_ffmpegcsp_avpicture_fill):
10979         * gst/ffmpegcolorspace/imgconvert.c: (img_convert),
10980         (img_get_alpha_info):
10981         Add 2 new caps arrangements, for 24-bit RGB and BGR in 32-bits, but at the
10982         other end of the word. Fixes: #387073.
10983
10984         Add some inconsequential branch hints in a couple of places.
10985
10986 2006-12-21  Tim-Philipp Müller  <tim at centricular dot net>
10987
10988         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10989         (gst_ffmpeg_caps_to_smpfmt):
10990           The "signed" field in raw audio caps is of boolean type, trying to
10991           extract the value with _get_int() will fail (fix to keep in sync with
10992           the copy in gst-ffmpeg)
10993
10994 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
10995
10996         * tests/check/elements/audioresample.c: (cleanup_audioresample):
10997         * tests/check/elements/audiotestsrc.c: (cleanup_audiotestsrc):
10998         * tests/check/elements/gdpdepay.c: (setup_gdpdepay),
10999         (cleanup_gdpdepay):
11000         * tests/check/elements/gdppay.c: (setup_gdppay), (cleanup_gdppay):
11001         * tests/check/elements/subparse.c: (teardown_subparse):
11002         * tests/check/elements/textoverlay.c: (cleanup_textoverlay):
11003         * tests/check/elements/videorate.c: (cleanup_videorate):
11004         * tests/check/elements/videotestsrc.c: (cleanup_videotestsrc):
11005         * tests/check/elements/volume.c: (cleanup_volume):
11006         * tests/check/elements/vorbisdec.c: (setup_vorbisdec),
11007         (cleanup_vorbisdec):
11008         * tests/check/elements/vorbistag.c: (setup_vorbistag),
11009         (cleanup_vorbistag):
11010           consistent pad (de)activation
11011
11012 2006-12-20  Tim-Philipp Müller  <tim at centricular dot net>
11013
11014         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
11015           Forgot to register the extensions.
11016
11017 2006-12-20  Tim-Philipp Müller  <tim at centricular dot net>
11018
11019         * gst/typefind/gsttypefindfunctions.c: (vivo_type_find),
11020         (plugin_init):
11021           Add typefinder for VIVO files (my christmas present to the 90s).
11022
11023 2006-12-16  Tim-Philipp Müller  <tim at centricular dot net>
11024
11025         * gst/playback/gstdecodebin.c: (type_found):
11026           Special-case the text/plain media type: we only want to recognise it
11027           as a 'raw' decoded media type if it comes from a demuxer or subtitle
11028           parser, but not if the entire stream is of text/plain type. If the
11029           entire stream is text/plain, we should just error out.
11030
11031           This fixes playback of audio files with lyrics in totem. Totem can't
11032           distinguish between text files and subtitle files and passes any
11033           .txt file with the same basename as the main file to playbin as
11034           suburi, and playbin will then throw a 'subtitle found, but no video
11035           stream' error, which isn't entirely helpful. See #380342.
11036
11037           Also, with this change we'll show a slightly more correct error
11038           message in case totem passes a playlist file to us (although a
11039           custom error message wording instead of the default text would
11040           probably not be a bad idea either).
11041
11042           Same problem also needs to be fixed for playbin+decodebin2.
11043
11044         * tests/check/Makefile.am:
11045         * tests/check/elements/decodebin.c: (src_handoff_cb),
11046         (decodebin_new_decoded_pad_cb), (GST_START_TEST),
11047         (decodebin_suite):
11048           Add simple unit test for decodebin for the above.
11049
11050 2006-12-16  Tim-Philipp Müller  <tim at centricular dot net>
11051
11052         * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
11053         * gst/playback/gstdecodebin2.c: (gst_decode_bin_change_state):
11054           Refuse to change state to READY when we failed to create any of the
11055           required elements in our instance init function.
11056
11057 2006-12-15  Tim-Philipp Müller  <tim at centricular dot net>
11058
11059         * docs/libs/gst-plugins-base-libs-sections.txt:
11060           Small docs fixes/updates.
11061
11062         * gst-libs/gst/video/gstvideosink.h:
11063           Remove nonfunctional GST_VIDEO_SINK_CLOCK macro which is a leftover
11064           from the 0.9 days (GST_BASE_SINK_CLOCK, which it points to, was
11065           removed from the base sink API between 0.9.6 and 0.9.7).
11066           API: add GST_VIDEO_SINK_CAST and use it for the height/width
11067           accessor macros, so we don't do a runtime GObject type check every
11068           time we use them.
11069
11070 2006-12-15  Thomas Vander Stichele  <thomas at apestaart dot org>
11071
11072         * Makefile.am:
11073         * gst-plugins-base.doap:
11074         * gst-plugins-base.spec.in:
11075           add doap file
11076
11077 2006-12-09  Tim-Philipp Müller  <tim at centricular dot net>
11078
11079         Patch by: Jens Granseuer <jensgr at gmx net>
11080
11081         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
11082         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
11083         (gst_base_rtp_audio_payload_handle_frame_based_buffer),
11084         (gst_base_rtp_audio_payload_handle_sample_based_buffer):
11085         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
11086           Declare variables at the beginning of a block. Fixes #383195.
11087
11088 2006-12-07  Jan Schmidt  <thaytan@mad.scientist.com>
11089
11090         * configure.ac:
11091         Bump version nano - back to CVS.
11092
11093
11094 === release 0.10.11 ===
11095
11096 2006-12-06  Jan Schmidt <thaytan@mad.scientist.com>
11097
11098         * configure.ac:
11099           releasing 0.10.11, "Dumb things"
11100
11101 2006-12-05  Jan Schmidt  <thaytan@mad.scientist.com>
11102
11103         * gst/playback/gstdecodebin.c: (find_dynamic), (dynamic_add),
11104         (close_pad_link), (elem_is_dynamic), (unlinked), (close_link):
11105         Handle the case where an element has multiple pads with 
11106         unfixed caps as well as still possibly producing more dynamic 
11107         pads by storing each case as a distinct entry in the dynamic list.
11108         Fixes #38223 again.
11109
11110 2006-12-04  Wim Taymans  <wim@fluendo.com>
11111
11112         * gst/playback/gstdecodebin.c: (close_pad_link):
11113         Fix #382223, add more dynamic caps handling.
11114
11115 2006-12-04  Wim Taymans  <wim@fluendo.com>
11116
11117         * gst-libs/gst/audio/gstringbuffer.h:
11118         * gst-libs/gst/netbuffer/gstnetbuffer.c: (gst_netbuffer_init),
11119         (gst_netaddress_set_ip4_interface),
11120         (gst_netaddress_set_ip6_interface), (gst_netaddress_set_loopback),
11121         (gst_netaddress_set_ttl), (gst_netaddress_get_ip4_interface),
11122         (gst_netaddress_get_ip6_interface), (gst_netaddress_get_loopback),
11123         (gst_netaddress_get_ttl):
11124         * gst-libs/gst/netbuffer/gstnetbuffer.h:
11125         * gst/playback/gstdecodebin.c: (close_pad_link):
11126         * tests/examples/seek/seek.c: (end_scrub), (end_seek), (do_seek),
11127         (seek_cb), (stop_seek), (rate_spinbutton_changed_cb):
11128         * win32/common/config.h:
11129
11130 2006-12-01  Michael Smith  <msmith@fluendo.com>
11131
11132         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
11133           Delete bad debug code.
11134           Fixes #381219
11135
11136 2006-12-01  Jan Schmidt  <thaytan@mad.scientist.com>
11137
11138         * gst/videoscale/vs_4tap.c:
11139         * win32/MANIFEST:
11140         * win32/common/config.h:
11141         * win32/vs8/libgstvideoscale.vcproj:
11142         Fix compilation on win32 under VS8
11143         Patch by: Sergey Scobich <sergey dot scobich at gmail dot com>
11144         Partially fixes #381175
11145
11146 2006-11-30  Michael Smith  <msmith@fluendo.com>
11147
11148         * tests/check/pipelines/theoraenc.c: (check_buffer_granulepos),
11149         (GST_START_TEST):
11150           It would be very bad if, after a discont buffer, we thought every
11151           single following buffer was also discont. So, add to the test to
11152           ensure that this isn't the case.
11153           
11154         * ext/theora/theoraenc.c: (theora_enc_is_discontinuous):
11155           ... it was the case. So fix it.
11156
11157 2006-11-28  Wim Taymans  <wim@fluendo.com>
11158
11159         * gst/playback/gstplaybasebin.c: (check_queue_event):
11160         Improve debug.
11161
11162         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps):
11163         Fix width and height range from 16 - 4096 to 1 - MAXINT, just like the
11164         padtemplate caps. Refixes #357577.
11165
11166 2006-11-28  Wim Taymans  <wim@fluendo.com>
11167
11168         * gst/playback/gstplaybasebin.c: (check_queue_event),
11169         (queue_threshold_reached), (queue_out_of_data),
11170         (gen_preroll_element):
11171         Add event probe to see when EOS is in a queue and we can disable the
11172         underrun signals. Fixes #357577.
11173
11174 2006-11-28  Edward Hervey  <edward@fluendo.com>
11175
11176         * gst/playback/Makefile.am:
11177         * gst/playback/gstdecodebin2.c: (gst_decode_bin_get_type),
11178         (_gst_boolean_accumulator), (gst_decode_bin_class_init),
11179         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
11180         (gst_decode_bin_init), (gst_decode_bin_dispose),
11181         (gst_decode_bin_finalize), (gst_decode_bin_set_property),
11182         (gst_decode_bin_get_property), (gst_decode_bin_set_caps),
11183         (gst_decode_bin_get_caps), (gst_decode_bin_autoplug_continue),
11184         (gst_decode_bin_autoplug_sort), (analyze_new_pad), (connect_pad),
11185         (connect_element), (expose_pad), (type_found),
11186         (pad_added_group_cb), (pad_removed_group_cb),
11187         (no_more_pads_group_cb), (pad_added_cb), (pad_removed_cb),
11188         (no_more_pads_cb), (find_compatibles), (is_demuxer_element),
11189         (are_raw_caps), (multi_queue_overrun_cb),
11190         (multi_queue_underrun_cb), (gst_decode_group_new),
11191         (get_current_group), (group_demuxer_event_probe),
11192         (gst_decode_group_control_demuxer_pad),
11193         (gst_decode_group_control_source_pad),
11194         (gst_decode_group_check_if_blocked),
11195         (gst_decode_group_check_if_drained), (gst_decode_group_expose),
11196         (gst_decode_group_hide), (gst_decode_group_free),
11197         (gst_decode_group_set_complete), (source_pad_blocked_cb),
11198         (source_pad_event_probe), (gst_decode_pad_new), (add_fakesink),
11199         (remove_fakesink), (find_sink_pad), (gst_decode_bin_change_state),
11200         (plugin_init):
11201         New decodebin2 element.
11202         Closes #370092
11203         * gst/playback/gstplay-marshal.list:
11204         Added marshallers for new signals in decodebin2
11205         * gst/playback/gstplaybasebin.c: (setup_subtitle), (make_decoder):
11206         Use decodebin2 if *and only if* the USE_DECODEBIN2 environment variable
11207         is set.
11208
11209 2006-11-28  Wim Taymans  <wim@fluendo.com>
11210
11211         * gst/playback/gstplaybasebin.c: (setup_source),
11212         (gst_play_base_bin_change_state):
11213         Disable rtsp:// uris for the release, it's not good enough yet.
11214         Remove unused var.
11215
11216 2006-11-26  Wim Taymans  <wim@fluendo.com>
11217
11218         * ext/theora/theoradec.c: (gst_theora_dec_reset),
11219         (theora_dec_push_forward), (theora_dec_push_reverse),
11220         (theora_handle_data_packet), (theora_dec_decode_buffer),
11221         (theora_dec_flush_decode), (theora_dec_chain_reverse),
11222         (theora_dec_chain_forward), (theora_dec_chain):
11223         Implement reverse playback.
11224
11225         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
11226         (vorbis_dec_decode_buffer), (vorbis_dec_flush_decode),
11227         (vorbis_dec_chain_forward):
11228         Clear buffers used for reverse playback in _reset.
11229         No need to set the eos flag, we clip samples using the segment.
11230
11231 2006-11-24  Wim Taymans  <wim@fluendo.com>
11232
11233         * ext/ogg/gstoggdemux.c: (gst_ogg_page_copy), (gst_ogg_page_free),
11234         (gst_ogg_pad_init), (gst_ogg_pad_dispose), (gst_ogg_pad_reset),
11235         (gst_ogg_pad_stream_out), (gst_ogg_pad_submit_page),
11236         (gst_ogg_chain_reset), (gst_ogg_demux_perform_seek):
11237         Some cleanups.
11238         Handle continued pages in reverse mode.
11239
11240 2006-11-24  Wim Taymans  <wim@fluendo.com>
11241
11242         * ext/vorbis/vorbisdec.c: (vorbis_dec_push_forward),
11243         (vorbis_handle_data_packet), (vorbis_dec_decode_buffer),
11244         (vorbis_dec_flush_decode):
11245         Small cleanups.
11246         Don't try to add invalid timestamps.
11247         Clipping will unref the buffer.
11248
11249 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
11250
11251         * gst/adder/gstadder.h:
11252         * gst/audiotestsrc/gstaudiotestsrc.h:
11253           remove obsolete _factory_init protos
11254
11255 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
11256
11257         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
11258           Fix spacing in debug message.
11259
11260 2006-11-23  Wim Taymans  <wim@fluendo.com>
11261
11262         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page),
11263         (gst_ogg_demux_chain):
11264         Don't just ignore return values from _pad_push().
11265         Small debug improvements.
11266
11267 2006-11-23  Michael Smith  <msmith@fluendo.com>
11268
11269         * ext/ogg/gstoggmux.c: (gst_ogg_mux_process_best_pad):
11270           If our incoming buffer is marked as DISCONT, then increment the page
11271           number (so that the discontinuity is marked in the final ogg
11272           bitstream) and flush the previous page.
11273
11274 2006-11-22  Michael Smith  <msmith@fluendo.com>
11275
11276         * ext/theora/gsttheoraenc.h:
11277         * ext/theora/theoraenc.c: (gst_theora_enc_init),
11278         (theora_enc_reset), (theora_enc_clear), (theora_enc_sink_setcaps),
11279         (theora_buffer_from_packet), (theora_enc_is_discontinuous),
11280         (theora_enc_chain), (theora_enc_change_state):
11281           Mark discontinuities of > 3/4 of a frame, reinit encoder.
11282
11283         * tests/check/pipelines/theoraenc.c: (check_buffer_granulepos),
11284         (GST_START_TEST), (theoraenc_suite):
11285           Enable discontinuity test, fix it.
11286
11287 2006-11-21  Tim-Philipp Müller  <tim at centricular dot net>
11288
11289         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
11290         (gst_text_overlay_text_pad_unlink), (gst_text_overlay_text_event),
11291         (gst_text_overlay_video_event), (gst_text_overlay_pop_text),
11292         (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
11293         (gst_text_overlay_change_state):
11294         * ext/pango/gsttextoverlay.h:
11295           Some textoverlay fixes: for one, in the video chain function,
11296           actually wait for a text buffer to come in if there is none at the
11297           moment and there should be one; also, deal more gracefully with
11298           incoming buffers that do not have a timestamp or duration; discard
11299           text buffer when not needed any longer. Fixes #341681.
11300
11301         * tests/check/Makefile.am:
11302         * tests/check/elements/.cvsignore:
11303         * tests/check/elements/textoverlay.c:
11304         (notgst_check_setup_src_pad2), (notgst_check_teardown_src_pad2),
11305         (setup_textoverlay), (buffer_is_all_black), (create_black_buffer),
11306         (create_text_buffer), (cleanup_textoverlay), (GST_START_TEST),
11307         (test_video_waits_for_text_send_text_newsegment_thread),
11308         (test_video_waits_for_text_shutdown_element),
11309         (test_render_continuity_push_video_buffers_thread),
11310         (textoverlay_suite):
11311           Add some unit tests for textoverlay.
11312
11313 2006-11-21  Tim-Philipp Müller  <tim at centricular dot net>
11314
11315         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
11316           Avoid integer underflow when the found probability for mp3 is
11317           smaller than the 'penalty' we subtract if there's not a clean
11318           mp3 header sync at offset 0.
11319
11320 2006-11-21  Stefan Kost  <ensonic@users.sf.net>
11321
11322         * docs/libs/gst-plugins-base-libs-sections.txt:
11323           Add some new symbols to the docs
11324
11325 2006-11-20  Tim-Philipp Müller  <tim at centricular dot net>
11326
11327         * tests/check/Makefile.am:
11328         * tests/check/elements/ffmpegcolorspace.c:
11329         (ffmpegcolorspace_suite):
11330           Enable ffmpegcolorspace test now that the RGBA32 issue is fixed
11331           (for now not for valgrinding though, since it takes too long).
11332
11333 2006-11-20  Wim Taymans  <wim@fluendo.com>
11334
11335         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11336         (gst_ffmpeg_pixfmt_to_caps):
11337         Fix RGBA32 caps. Fixes #357038.
11338
11339 2006-11-20  Tim-Philipp Müller  <tim at centricular dot net>
11340
11341         * gst-libs/gst/interfaces/mixertrack.h:
11342           Add FIXME so we can add some padding here in 0.11
11343
11344 2006-11-19  Tim-Philipp Müller  <tim at centricular dot net>
11345
11346         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
11347           Fix GstBaseRTPAudioPayload structure so the whole GObject
11348           inheritance business actually works (parent class instance structure
11349           must always come first in the derived class instance structure).
11350
11351 2006-11-16  Tim-Philipp Müller  <tim at centricular dot net>
11352
11353         * gst/videotestsrc/Makefile.am:
11354         * tests/check/Makefile.am:
11355           Make sure our checks and the videotestsrc plugin link against the
11356           local uninstalled gst libs and not any installed gst libs that
11357           might happen to exist as well.
11358
11359         * tests/check/elements/adder.c: (message_received),
11360         (test_event_message_received), (test_play_twice_message_received):
11361         * tests/check/elements/ffmpegcolorspace.c: (GST_START_TEST):
11362           Fix compiler warnings when compiling against core with disabled
11363           debugging system.
11364
11365 2006-11-16  Michael Smith  <msmith@fluendo.com>
11366
11367         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
11368         (gst_audio_rate_sink_event), (gst_audio_rate_chain):
11369           Fix audiorate, so that it accurately sets offsets and timestamps.
11370           Doesn't change the fundamental algorithmic decisions; so should be
11371           safe.
11372
11373         * tests/check/Makefile.am:
11374           Enable audiorate test now that it passes.
11375
11376 2006-11-09  Stefan Kost  <ensonic@users.sf.net>
11377
11378         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
11379           clear xv when going to NULL, remove // commented non-existant proto
11380
11381         * tests/examples/seek/seek.c: (main):
11382           add missing tooltip description for scrub and play_scrub
11383
11384 2006-11-14  David Schleef  <ds@schleef.org>
11385
11386         * configure.ac:
11387           Bump liboil requirement to 0.3.8.
11388         * gst-libs/gst/riff/riff-media.c:
11389           Add Dirac fourcc.
11390         * gst/videoscale/vs_image.h:
11391         * gst/videoscale/vs_scanline.h:
11392           Use liboil's stdint.h.
11393         * gst/videotestsrc/videotestsrc.c:
11394           Remove liboil related ifdef's, since they aren't needed now, and
11395           won't work with future versions.
11396
11397 2006-11-14  David Schleef  <ds@schleef.org>
11398
11399         * gst/videoscale/Makefile.am:
11400         * gst/videoscale/gstvideoscale.c:
11401         * gst/videoscale/gstvideoscale.h:
11402         * gst/videoscale/vs_4tap.c:
11403         * gst/videoscale/vs_4tap.h:
11404         * gst/videoscale/vs_image.c:
11405         * gst/videoscale/vs_image.h:
11406         * gst/videoscale/vs_scanline.c:
11407         * gst/videoscale/vs_scanline.h:
11408           Add a 4-tap image scaler.  Theoretically looks much prettier.
11409           The tap calculation could use some improvement.
11410
11411 2006-11-14  Wim Taymans  <wim@fluendo.com>
11412
11413         Patch by: Jan David Mol <j dot j dot d dot mol at tudelft dot nl>
11414
11415         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds),
11416         (gst_riff_parse_strf_iavs):
11417         * gst/subparse/gstsubparse.c: (convert_encoding):
11418         * gst/tcp/gstmultifdsink.c:
11419         (gst_multi_fd_sink_handle_client_write):
11420         * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
11421         (gst_tcp_read_buffer), (gst_tcp_gdp_read_caps),
11422         (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
11423         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_render):
11424         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
11425         (gst_ximagesink_ximage_new):
11426         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
11427         Various gsize and gssize printf fixes. Fixes #372507.
11428
11429 2006-11-13  Wim Taymans  <wim@fluendo.com>
11430
11431         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
11432         (vorbis_dec_push_forward), (vorbis_dec_push_reverse),
11433         (vorbis_handle_data_packet), (vorbis_dec_decode_buffer),
11434         (vorbis_dec_flush_decode), (vorbis_dec_chain_reverse),
11435         (vorbis_dec_chain_forward), (vorbis_dec_chain):
11436         * ext/vorbis/vorbisdec.h:
11437         First stab at vorbis reverse playback.
11438
11439 2006-11-13  Wim Taymans  <wim@fluendo.com>
11440
11441         * gst-libs/gst/audio/gstbaseaudiosink.c:
11442         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
11443         * gst-libs/gst/audio/gstbaseaudiosink.h:
11444         Make the clock sync code more accurate wrt resampling and playback
11445         at different rates.
11446         
11447         * gst-libs/gst/audio/gstringbuffer.c:
11448         (gst_ring_buffer_commit_full), (gst_ring_buffer_commit):
11449         * gst-libs/gst/audio/gstringbuffer.h:
11450         Use better algorithm to interpolate sample rates. 
11451
11452 2006-11-13  Michael Smith  <msmith@fluendo.com>
11453
11454         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page):
11455           Improve a debug line slightly.
11456
11457         * ext/ogg/gstogmparse.c: (gst_ogm_parse_plugin_init):
11458           Call gst_riff_init() in plugin_init, to avoid getting errors from
11459           the debug system (unrelated changes to another plugin made this turn
11460           up; not sure why).
11461
11462 2006-11-10  Tim-Philipp Müller  <tim at centricular dot net>
11463
11464         Patch by: Sergey Scobich  <sergery.scobich at gmail com>
11465
11466         * win32/common/libgsttag.def:
11467           Add missing symbol (#366492).
11468
11469 2006-11-09  Tim-Philipp Müller  <tim at centricular dot net>
11470
11471         * gst/playback/gststreamselector.c: (gst_stream_selector_dispose):
11472           Don't unref a NULL pad.
11473
11474 2006-11-09  Wim Taymans  <wim@fluendo.com>
11475
11476         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page),
11477         (gst_ogg_demux_get_prev_page), (gst_ogg_demux_perform_seek),
11478         (gst_ogg_demux_handle_page), (gst_ogg_demux_chain),
11479         (gst_ogg_demux_loop_forward), (gst_ogg_demux_loop_reverse),
11480         (gst_ogg_demux_loop):
11481         Implement first stab at reverse playback.
11482
11483 2006-11-07  Stefan Kost  <ensonic@users.sf.net>
11484
11485         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
11486         (gst_riff_create_video_template_caps):
11487           add h263/h264 variants to the caps, Fixes #363118
11488
11489 2006-11-06  Tim-Philipp Müller  <tim at centricular dot net>
11490
11491         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func):
11492         * gst-libs/gst/audio/gstaudiosrc.c: (audioringbuffer_thread_func):
11493           Use g_strerror instead of strerror so we get UTF-8.
11494
11495 2006-11-03  David Schleef  <ds@schleef.org>
11496
11497         * ext/ogg/gstoggdemux.c:
11498         * ext/ogg/gstoggmux.c:
11499           Add/remove KW-DIRAC header here, since it is ogg-specific.
11500
11501 2006-11-03  Michael Smith  <msmith@fluendo.com>
11502
11503         * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find):
11504           Recognise more mpeg4 elementary video streams.
11505
11506 2006-11-02  Edward Hervey  <edward@fluendo.com>
11507
11508         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
11509         Lower the probability of mp3 typefinding functions if we don't find a
11510         valid mp3 header at the start of the file.
11511         Closes #369482
11512
11513 2006-11-02  Wim Taymans  <wim@fluendo.com>
11514
11515         * ext/theora/gsttheoradec.h:
11516         * ext/theora/theoradec.c: (gst_theora_dec_init),
11517         (theora_dec_sink_event), (theora_dec_chain_forward),
11518         (theora_dec_flush_decode), (theora_dec_chain_reverse),
11519         (theora_dec_chain):
11520         Document and partially implement an algorithm for doing reverse playback
11521         of theora video.
11522
11523 2006-11-02  Tim-Philipp Müller  <tim at centricular dot net>
11524
11525         Patch by: Sergey Scobich  <sergey.scobich at gmail com>
11526
11527         * win32/common/config.h:
11528         * win32/common/interfaces-enumtypes.c:
11529         * win32/common/libgsttag.def:
11530         * win32/vs8/gst-plugins-base.sln:
11531         * win32/vs8/libgstaudioresample.vcproj:
11532         * win32/vs8/libgstinterfaces.vcproj:
11533         * win32/vs8/libgstogg.vcproj:
11534         * win32/vs8/libgstriff.vcproj:
11535         * win32/vs8/libgsttag.vcproj:
11536         * win32/vs8/libgsttheora.vcproj:
11537         * win32/vs8/libgstvideoscale.vcproj:
11538         * win32/vs8/libgstvorbis.vcproj:
11539           Misc. VS8 build fixes: fix syntax in config.h, add missing entries
11540           to libgsttag.def; add missing dependencies for some vs8 projects;
11541           re-arrange placement of .def files in vs8 projects (#366334).
11542
11543 2006-11-01  Tim-Philipp Müller  <tim at centricular dot net>
11544
11545         * ext/ogg/gstogg.c:
11546           Remove unused variable.
11547
11548         * ext/ogg/gstoggdemux.c:
11549           Fix Wim's surname in plugin description.
11550
11551 2006-10-31  Wim Taymans  <wim@fluendo.com>
11552
11553         * gst-plugins-base.spec.in:
11554         spec new .h file. Fixes #368310.
11555
11556 2006-10-31  Michael Smith  <msmith@fluendo.com>
11557
11558         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_add_full),
11559         (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
11560         (gst_multi_fd_sink_get_stats),
11561         (gst_multi_fd_sink_remove_client_link),
11562         (gst_multi_fd_sink_queue_buffer),
11563         (gst_multi_fd_sink_handle_clients):
11564         * gst/tcp/gstmultifdsink.h:
11565           Make using the remove or clear signals threadsafe.
11566           Make calling get-stats with an invalid fd not segfault.
11567           Fixes 368273.
11568
11569 2006-10-31  Wim Taymans  <wim@fluendo.com>
11570
11571         * gst-libs/gst/rtp/Makefile.am:
11572         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
11573         (gst_base_rtp_audio_payload_init):
11574         Fix and activate base audio payloader.
11575
11576 2006-10-28  Tim-Philipp Müller  <tim at centricular dot net>
11577
11578         * gst/typefind/gsttypefindfunctions.c: (qtif_type_find),
11579         (plugin_init):
11580           Add typefinder for QuickTime Image Files (see #366156).
11581
11582 2006-10-28  Tim-Philipp Müller  <tim at centricular dot net>
11583
11584         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init):
11585           Another typo fix (#366212).
11586
11587 2006-10-27  Wim Taymans  <wim@fluendo.com>
11588
11589         * gst/volume/gstvolume.c: (volume_transform_ip):
11590         Use stream time to synchronize volume property instead of rather random
11591         timestamps. This is needed when gnonlin does its time shifting.
11592
11593 2006-10-27  Wim Taymans  <wim@fluendo.com>
11594
11595         Patch by: Mark Nauwelaerts <manauw at skynet dot be>
11596
11597         * ext/ogg/gstoggmux.c: (gst_ogg_mux_release_pad):
11598         Remove the pad from the element in release_pad. Fixes #364812.
11599
11600 2006-10-27  Tim-Philipp Müller  <tim at centricular dot net>
11601
11602         * sys/ximage/ximagesink.c: (gst_ximagesink_get_type):
11603         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_type):
11604           Explicitly create our custom buffer classes at a thread-safe
11605           location as well, since g_type_class_ref() doesn't seem to be
11606           entirely thread-safe either (#365501; also see #349410).
11607
11608 2006-10-26  Tim-Philipp Müller  <tim at centricular dot net>
11609
11610         * gst-libs/gst/riff/riff-read.c: (freeform_string_to_utf8),
11611         (gst_riff_parse_info):
11612           If strings in INFO chunk are not UTF-8, do something similar to
11613           what we do for ID3v1 tags: check a number of environment variables
11614           (GST_AVI_TAG_ENCODING, GST_RIFF_TAG_ENCODING, GST_TAG_ENCODING) for
11615           character sets to try, otherwise try the current locale and/or fall
11616           back on ISO-8859-1. Fixes #360552.
11617
11618 2006-10-23  Tim-Philipp Müller  <tim at centricular dot net>
11619
11620         * gst/videotestsrc/gstvideotestsrc.c:
11621         (gst_video_test_src_pattern_get_type),
11622         (gst_video_test_src_set_pattern):
11623         * gst/videotestsrc/gstvideotestsrc.h:
11624         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_checkers1),
11625         (gst_video_test_src_checkers2), (gst_video_test_src_checkers4),
11626         (gst_video_test_src_checkers8):
11627         * gst/videotestsrc/videotestsrc.h:
11628           Add a bunch of exciting new checkers patterns.
11629
11630 2006-10-23  Tim-Philipp Müller  <tim at centricular dot net>
11631
11632         * gst/subparse/Makefile.am:
11633         * gst/subparse/gstsubparse.c:
11634         (gst_sub_parse_data_format_autodetect),
11635         (gst_sub_parse_format_autodetect), (handle_buffer),
11636         (gst_sub_parse_chain), (gst_subparse_type_find), (plugin_init):
11637         * gst/subparse/gstsubparse.h:
11638         * gst/subparse/tmplayerparse.c: (tmplayer_parse_line),
11639         (parse_tmplayer):
11640         * gst/subparse/tmplayerparse.h:
11641           Add support for TMPlayer-type subtitles (#362845).
11642
11643         * tests/check/elements/subparse.c: (test_tmplayer_do_test),
11644         (GST_START_TEST), (subparse_suite):
11645           Add some basic unit tests for the above.
11646
11647 2006-10-23  Tim-Philipp Müller  <tim at centricular dot net>
11648
11649         * tests/check/elements/audiorate.c: (test_injector_base_init),
11650         (test_injector_class_init), (test_injector_chain),
11651         (test_injector_init), (probe_cb), (do_perfect_stream_test),
11652         (GST_START_TEST), (audiorate_suite):
11653           More tests for audiorate: inject buffers to check behaviour when
11654           buffers overlap.
11655
11656 2006-10-21  Tim-Philipp Müller  <tim at centricular dot net>
11657
11658         * tests/check/Makefile.am:
11659         * tests/check/elements/.cvsignore:
11660         * tests/check/elements/audiorate.c: (probe_cb), (got_buf),
11661         (do_perfect_stream_test), (GST_START_TEST), (audiorate_suite):
11662           Add some basic unit tests for audiorate. Disabled at the moment
11663           since it doesn't pass yet (see bug #363119).
11664
11665 2006-10-20  Tim-Philipp Müller  <tim at centricular dot net>
11666
11667         * gst/subparse/gstsubparse.c: (subrip_fix_up_markup),
11668         (parse_subrip), (handle_buffer):
11669           Add missing closing tags for markup and fix broken markup,
11670           otherwise pango won't render anything (fixes #357531). Also,
11671           make sure the text we send out is always NUL-terminated
11672           (better safe than sorry etc.).
11673
11674         * tests/check/elements/subparse.c: (test_srt_do_test),
11675         (test_srt):
11676           Some more tests for .srt incl. tests for the above stuff.
11677
11678 2006-10-20  Julien MOUTTE  <julien@moutte.net>
11679
11680         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put):
11681         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
11682         Patch by: Stefan Kost  <ensonic@users.sf.net>
11683         Try to redraw borders only when needed. Apparently this consumes
11684         resources on small devices... :-O (#363607)
11685
11686 2006-10-20  Michael Smith  <msmith@fluendo.com>
11687
11688         * gst/tcp/gstmultifdsink.c:
11689         (gst_multi_fd_sink_client_queue_buffer):
11690           If caps change, then update the client's idea of the caps so that we
11691           don't end up re-sending streamheaders for every single buffer after
11692           the caps change.
11693
11694 2006-10-20  Michael Smith  <msmith@fluendo.com>
11695
11696         * ext/ogg/gstoggparse.c: (gst_ogg_parse_dispose),
11697         (gst_ogg_parse_append_header), (gst_ogg_parse_chain):
11698           Set caps on pushed buffers; fix up refcounting of caps objects.
11699
11700 2006-10-19  Tim-Philipp Müller  <tim at centricular dot net>
11701
11702         * gst/typefind/gsttypefindfunctions.c: (mmsh_type_find),
11703         (plugin_init):
11704           Typefind mmsh header data packet to application/x-mmsh (#362625).
11705
11706 2006-10-19  Tim-Philipp Müller  <tim at centricular dot net>
11707
11708         * tests/check/Makefile.am:
11709         * tests/check/elements/.cvsignore:
11710         * tests/check/elements/subparse.c: (buffer_from_static_string),
11711         (setup_subparse), (teardown_subparse), (test_srt_do_test),
11712         (GST_START_TEST), (subparse_suite):
11713           Add very simple unit test for subparse.
11714
11715 2006-10-19  Tim-Philipp Müller  <tim at centricular dot net>
11716
11717         * gst/subparse/gstsubparse.c: (strip_trailing_newlines),
11718         (parse_subrip):
11719           Strip trailing newlines from subtitle text output.
11720
11721 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
11722
11723         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
11724         (gst_sub_parse_change_state):
11725           Fix memleak; clear subparse->textbuf n state change function.
11726
11727 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
11728
11729         * gst/subparse/gstsubparse.c:
11730         (gst_sub_parse_data_format_autodetect):
11731           Don't require subrip (.srt) files to start with a chunk number of 1.
11732
11733 2006-10-18  Wim Taymans  <wim@fluendo.com>
11734
11735         * gst-libs/gst/audio/gstbaseaudiosink.c:
11736         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
11737         * gst-libs/gst/audio/gstbaseaudiosink.h:
11738         Extract rate from the NEWSEGMENT event.
11739         Use commit_full to also take rate adjustment into account when writing
11740         samples to the ringbuffer.
11741         
11742         * gst-libs/gst/audio/gstringbuffer.c:
11743         (gst_ring_buffer_commit_full), (gst_ring_buffer_commit),
11744         (gst_ring_buffer_read):
11745         * gst-libs/gst/audio/gstringbuffer.h:
11746         Added _commit_full() to also take rate into account.
11747         Use simple interpolation algorithm to resample audio.
11748         API: gst_ring_buffer_commit_full()
11749
11750         * tests/examples/seek/scrubby.c: (speed_cb), (do_seek):
11751         * tests/examples/seek/seek.c: (segment_done):
11752         Don't try to seek with 0.0 rate, just pause instead.
11753         Remove bogus debug line.
11754
11755 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
11756
11757         * gst/playback/gstplaybasebin.c: (subbin_startup_sync_msg),
11758         (setup_source):
11759           Catch async errors when starting up the subtitle bin, so we can
11760           stop waiting and continue with the main film instead of hanging
11761           forever. Fixes #339366.
11762
11763         * tests/check/elements/playbin.c: (playbin_suite):
11764           Enable unit test for the above.
11765
11766 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
11767
11768         * tests/check/Makefile.am:
11769         * tests/check/elements/.cvsignore:
11770         * tests/check/elements/playbin.c: (GST_START_TEST),
11771         (gst_red_video_src_uri_get_type),
11772         (gst_red_video_src_uri_get_protocols),
11773         (gst_red_video_src_uri_get_uri), (gst_red_video_src_uri_set_uri),
11774         (gst_red_video_src_uri_handler_init),
11775         (gst_red_video_src_init_type), (gst_red_video_src_base_init),
11776         (gst_red_video_src_create), (gst_red_video_src_class_init),
11777         (gst_red_video_src_init), (plugin_init), (playbin_suite):
11778           Some small and basic unit tests for playbin; not very useful yet,
11779           but at least a start.
11780
11781 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
11782
11783         * gst/playback/gstplaybin.c: (setup_sinks):
11784           The old pad activation spiel.
11785
11786 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
11787
11788         * gst/playback/gstplaybasebin.c: (setup_source):
11789           Don't hang forever if the subbin already fails to start up in 
11790           the state change to PAUSED (#339366).
11791
11792 2006-10-17  Tim-Philipp Müller  <tim at centricular dot net>
11793
11794         * gst-libs/gst/interfaces/tuner.c: (gst_tuner_list_channels),
11795         (gst_tuner_set_channel), (gst_tuner_get_channel),
11796         (gst_tuner_list_norms), (gst_tuner_set_norm), (gst_tuner_get_norm),
11797         (gst_tuner_set_frequency), (gst_tuner_get_frequency),
11798         (gst_tuner_signal_strength), (gst_tuner_find_norm_by_name),
11799         (gst_tuner_find_channel_by_name):
11800           Fix some function guards, add some more function guards.
11801
11802 2006-10-17  Jan Schmidt  <thaytan@mad.scientist.com>
11803
11804         * gst/playback/gstdecodebin.c: (get_our_ghost_pad),
11805         (remove_element_chain):
11806         Don't return a pad from get_our_ghost_pad unless it is actually the
11807         one we want.
11808         Change a cast in remove_element_chain slightly.
11809
11810 2006-10-13  Julien MOUTTE  <julien@moutte.net>
11811
11812         * tests/examples/seek/seek.c: (do_seek), (start_seek),
11813         (rate_spinbutton_changed_cb), (segment_done), (msg_state_changed):
11814         Segment seeking needs to use the rate and set stop to -1.
11815
11816 2006-10-13  Wim Taymans  <wim@fluendo.com>
11817
11818         * gst-libs/gst/audio/gstbaseaudiosink.c:
11819         (gst_base_audio_sink_setcaps):
11820         Don't crash when ringbuffer is not yet created.
11821         Patch by: Ville Syrjala <ville dot syrjala at movial dot fi>
11822         Fixes #361634.
11823
11824         * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
11825         * gst/playback/gststreamselector.c:
11826         (gst_stream_selector_request_new_pad):
11827         Activate pads befre adding them to running elements.
11828
11829 2006-10-13  Julien MOUTTE  <julien@moutte.net>
11830
11831         * tests/examples/seek/seek.c: (do_seek), (start_seek),
11832         (rate_spinbutton_changed_cb), (msg_state_changed): Stop the scale
11833         updater when we start grabing the slider. Don't wait for the
11834         pipeline to be PAUSED.
11835
11836 2006-10-13  Tim-Philipp Müller  <tim at centricular dot net>
11837
11838         * gst-libs/gst/interfaces/mixer.c: (gst_mixer_list_tracks),
11839         (gst_mixer_set_volume), (gst_mixer_get_volume),
11840         (gst_mixer_set_mute), (gst_mixer_set_option),
11841         (gst_mixer_get_option), (gst_mixer_mute_toggled),
11842         (gst_mixer_record_toggled), (gst_mixer_volume_changed),
11843         (gst_mixer_option_changed):
11844           Guard mixer interface functions against bogus arguments.
11845
11846 2006-10-12  Julien MOUTTE  <julien@moutte.net>
11847
11848         * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
11849         (play_cb), (pause_cb), (stop_cb), (rate_spinbutton_changed_cb),
11850         (msg_state_changed), (main): Use state-changed messages to trigger
11851         start/stop of scale update timer. Indeed the scale slider was
11852         jumping here and there because the update timer was activated 
11853         before seek completed. This fixes instant applying of rate changes
11854         by pressing the spinbutton like a crazy man !
11855
11856 2006-10-12  Tim-Philipp Müller  <tim at centricular dot net>
11857
11858         Patch by: Sebastien Cote  <sebas642 at yahoo.ca>
11859
11860         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
11861         (gst_basertppayload_finalize):
11862           Fix two small memory leaks (#361456).
11863
11864 2006-10-10  Julien MOUTTE  <julien@moutte.net>
11865
11866         * tests/examples/seek/seek.c: (do_seek),
11867         (rate_spinbutton_changed_cb): When changing spinbutton we try
11868         to change the rate on the fly.
11869
11870 2006-10-10  Wim Taymans  <wim@fluendo.com>
11871
11872         * gst-libs/gst/riff/riff-ids.h:
11873         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
11874         (gst_riff_create_audio_template_caps):
11875         Add WMS caps.
11876
11877 2006-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
11878
11879         Patch by: Josep Torra Valles <josep@fluendo.com>
11880
11881         * ext/gnomevfs/gstgnomevfssink.c:
11882         * ext/gnomevfs/gstgnomevfssrc.c:
11883         Fix URI interface implementation return type.
11884         * ext/pango/gsttextoverlay.c: (gst_text_overlay_set_property):
11885         Fix what looks like a copy/paste issue when assigning values.
11886         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
11887         (gst_audio_filter_template_get_type):
11888         Cast to prevent Forte warnings.
11889         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
11890         Fix URI interface implementation return type.
11891         gst_pad_query_position requires a signed integer pointer as
11892         3rd parameter, GstClockTime is unsigned.
11893         * gst/audioconvert/audioconvert.c:
11894         Fix integer overflow when treated as signed.
11895         * gst/audioresample/resample.c: (resample_add_input_data):
11896         Cast to prevent warnings on Forte.
11897         * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette):
11898         Fix integer overflow when treated as signed.
11899         * gst/ffmpegcolorspace/imgconvert_template.h:
11900         Fix integer overflow when treated as signed. RGBA_OUT shifts bits.
11901         * gst/playback/gstdecodebin.c: (queue_filled_cb),
11902         (cleanup_decodebin):
11903         Who initialises a guint to -1!
11904         Cast function pointers to prevent warnings on Forte.
11905         * gst/playback/gstplaybasebin.c: (queue_deadlock_check),
11906         (queue_threshold_reached):
11907         Cast function pointers correctly to prevent warnings on Forte.
11908         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
11909         Cast function pointers correctly to prevent warnings on Forte.
11910         * gst/subparse/gstssaparse.c: (gst_ssa_parse_setcaps):
11911         Obvious change to unsigned, 0xEF > max signed char.
11912         * gst/tcp/gstmultifdsink.c: (get_buffers_max), (count_burst_unit):
11913         GstClockTime is unsigned, initialise correctly.
11914         * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
11915         Cast so pointer arithemetic doesn't cause warnings on Forte.
11916         * gst/videorate/gstvideorate.c:
11917         Use correct return value.
11918         * tests/examples/seek/scrubby.c:
11919         GstClockTime is unsigned, initialise correctly.
11920
11921 2006-10-10  Tim-Philipp Müller  <tim at centricular dot net>
11922
11923         Patch by: Ferenc Gerlits  <fgerlits at gmail com>
11924
11925         * gst/typefind/gsttypefindfunctions.c:
11926           Recognise XML files and XML-like files shorter than 256 bytes as
11927           well (fixes #359237).
11928
11929 2006-10-09  Edgard Lima <edgard.lima@indt.org.br>
11930
11931         Patch by: Renato Filho <renato.filho@indt.org.br>
11932         
11933         * gst/typefind/gsttypefindfunctions.c:
11934         Added typefind functions to video/x-nuv media.
11935         
11936 2006-10-08  Tim-Philipp Müller  <tim at centricular dot net>
11937
11938         * gst-libs/gst/interfaces/xoverlay.c:
11939         (gst_x_overlay_set_xwindow_id), (gst_x_overlay_expose):
11940           Some more guards against invalid input.
11941
11942 2006-10-07  Julien MOUTTE  <julien@moutte.net>
11943
11944         * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event): 
11945         Useless goto.
11946         * tests/examples/seek/seek.c: (do_seek),
11947         (rate_spinbutton_changed_cb), (main): Add a rate spinbutton in
11948         seek example to experiment with rates != 1.0 (reverse playback !)
11949
11950 2006-10-06  Stefan Kost  <ensonic@users.sf.net>
11951
11952         * gst-libs/gst/interfaces/xoverlay.c:
11953           Unref message in doc-example (spotted by Robert McQueen)
11954
11955 2006-10-06  Wim Taymans  <wim@fluendo.com>
11956
11957         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
11958         (mpeg1_parse_header), (mpeg1_sys_type_find):
11959         printf fix.
11960
11961 2006-10-06  Wim Taymans  <wim@fluendo.com>
11962
11963         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
11964         (close_pad_link):
11965         * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
11966         Activate dynamic pads before adding them to the element.
11967
11968 2006-10-06  Michael Smith  <msmith@fluendo.com>
11969
11970         * gst-libs/gst/floatcast/floatcast.h:
11971           Fix obviously-bogus macros; use the correct types.
11972
11973 2006-10-06  Wim Taymans  <wim@fluendo.com>
11974
11975         * gst-libs/gst/rtp/gstbasertpdepayload.c:
11976         (gst_base_rtp_depayload_change_state):
11977         Also call parent state change function to activate pads.
11978
11979         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
11980         (mpeg1_parse_header), (mpeg1_sys_type_find):
11981         Add some more debug info in mpeg typefinding.
11982
11983 2006-10-06  Michael Smith  <msmith@fluendo.com>
11984
11985         * ext/theora/theoradec.c: (theora_dec_chain):
11986           Zero byte theora packets are valid and well-defined; don't warn on
11987           them.
11988
11989 2006-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
11990
11991         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
11992         (gst_multi_fd_sink_get_stats), (find_limits),
11993         (gst_multi_fd_sink_queue_buffer):
11994           API: add dropped_buffers to the get-stats GValueArray
11995
11996 2006-10-05  Tim-Philipp Müller  <tim at centricular dot net>
11997
11998         * ext/alsa/gstalsadeviceprobe.c:
11999         (gst_alsa_device_property_probe_get_values):
12000         * ext/alsa/gstalsasink.c: (set_hwparams):
12001         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_elem_pad),
12002         (gst_ogg_chain_new_stream), (gst_ogg_demux_read_chain):
12003         * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers),
12004         (gst_ogg_mux_process_best_pad):
12005         * ext/ogg/gstoggparse.c: (gst_ogg_parse_new_stream),
12006         (gst_ogg_parse_chain):
12007         * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header):
12008         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
12009         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_setup),
12010         (gst_vorbis_enc_buffer_check_discontinuous):
12011         * ext/vorbis/vorbisparse.c: (vorbis_parse_src_query):
12012         * gst-libs/gst/audio/gstbaseaudiosink.c:
12013         (gst_base_audio_sink_render):
12014         * gst-libs/gst/cdda/gstcddabasesrc.c:
12015         (gst_cdda_base_src_handle_track_seek):
12016         * gst-libs/gst/rtp/gstbasertpdepayload.c:
12017         (gst_base_rtp_depayload_push_full):
12018         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
12019         * gst/audioresample/resample.c: (resample_input_pushthrough):
12020         * gst/playback/gstplaybasebin.c: (queue_out_of_data):
12021         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_handle_clients):
12022         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
12023         (wavpack_type_find):
12024         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
12025         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
12026         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new):
12027         * tests/check/elements/volume.c: (GST_START_TEST):
12028           Printf format fixes.
12029
12030 2006-10-04  Thomas Vander Stichele  <thomas at apestaart dot org>
12031
12032         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_caps):
12033           Fix a simple mistake (see the docs)
12034           Fixes #359580
12035
12036 2006-10-03  Tim-Philipp Müller  <tim at centricular dot net>
12037
12038         * docs/plugins/Makefile.am:
12039         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12040         * docs/plugins/gst-plugins-base-plugins-sections.txt:
12041         * docs/plugins/gst-plugins-base-plugins.args:
12042         * docs/plugins/gst-plugins-base-plugins.hierarchy:
12043         * docs/plugins/inspect/plugin-adder.xml:
12044         * docs/plugins/inspect/plugin-alsa.xml:
12045         * docs/plugins/inspect/plugin-audioconvert.xml:
12046         * docs/plugins/inspect/plugin-audiorate.xml:
12047         * docs/plugins/inspect/plugin-audioresample.xml:
12048         * docs/plugins/inspect/plugin-audiotestsrc.xml:
12049         * docs/plugins/inspect/plugin-cdparanoia.xml:
12050         * docs/plugins/inspect/plugin-decodebin.xml:
12051         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
12052         * docs/plugins/inspect/plugin-gdp.xml:
12053         * docs/plugins/inspect/plugin-gnomevfs.xml:
12054         * docs/plugins/inspect/plugin-libvisual.xml:
12055         * docs/plugins/inspect/plugin-ogg.xml:
12056         * docs/plugins/inspect/plugin-pango.xml:
12057         * docs/plugins/inspect/plugin-playbin.xml:
12058         * docs/plugins/inspect/plugin-subparse.xml:
12059         * docs/plugins/inspect/plugin-tcp.xml:
12060         * docs/plugins/inspect/plugin-theora.xml:
12061         * docs/plugins/inspect/plugin-typefindfunctions.xml:
12062         * docs/plugins/inspect/plugin-video4linux.xml:
12063         * docs/plugins/inspect/plugin-videorate.xml:
12064         * docs/plugins/inspect/plugin-videoscale.xml:
12065         * docs/plugins/inspect/plugin-videotestsrc.xml:
12066         * docs/plugins/inspect/plugin-volume.xml:
12067         * docs/plugins/inspect/plugin-vorbis.xml:
12068         * docs/plugins/inspect/plugin-ximagesink.xml:
12069         * docs/plugins/inspect/plugin-xvimagesink.xml:
12070           Add vorbistag element to docs; update version numbers to 0.10.10.1.
12071
12072 2006-10-03  Tim-Philipp Müller  <tim at centricular dot net>
12073
12074         Patch by: James "Doc" Livingston <doclivingston at gmail com>
12075
12076         * ext/vorbis/Makefile.am:
12077         * ext/vorbis/vorbis.c: (plugin_init):
12078         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_class_init),
12079         (vorbis_parse_parse_packet), (vorbis_parse_chain):
12080         * ext/vorbis/vorbisparse.h:
12081         * ext/vorbis/vorbistag.c: (gst_vorbis_tag_base_init),
12082         (gst_vorbis_tag_class_init), (gst_vorbis_tag_init),
12083         (gst_vorbis_tag_parse_packet):
12084         * ext/vorbis/vorbistag.h:
12085           Add new vorbistag element which derives from vorbisparse
12086           and is essentially the same as well, only that it implements
12087           the GstTagSetter interface and can modify the stream's
12088           vorbiscomment on the fly (#335635).
12089
12090         * tests/check/Makefile.am:
12091         * tests/check/elements/.cvsignore:
12092         * tests/check/elements/vorbistag.c: (setup_vorbistag),
12093         (cleanup_vorbistag), (buffer_probe), (start_pipeline),
12094         (get_buffer), (stop_pipeline), (_create_codebook_header_buffer),
12095         (_create_audio_buffer), (GST_START_TEST), (vorbistag_suite):
12096           Add unit test for new vorbistag element.
12097
12098 2006-10-03  Tim-Philipp Müller  <tim at centricular dot net>
12099
12100         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init),
12101         (vorbis_parse_push_headers), (vorbis_parse_chain):
12102           Set BOS flag in packet structure to fix 'jump depends
12103           on unitialized value' errors in valgrind; various minor
12104           clean-ups.
12105
12106 2006-09-30  Jan Schmidt  <thaytan@mad.scientist.com>
12107
12108         * gst/playback/gstdecodebin.c: (close_pad_link):
12109         Fix typo in a debug statement.
12110
12111         * gst/playback/gstplaybasebin.c: (probe_triggered),
12112         (new_decoded_pad_full), (new_decoded_pad), (subs_new_decoded_pad),
12113         (gen_source_element), (source_new_pad), (analyse_source),
12114         (setup_source):
12115         When handling no_more_pads in new_decoded_pad, make sure to treat
12116         subtitle pads correctly. Fixes playback with subtitle files.
12117
12118         Move a recurring message to LOG level.
12119
12120         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
12121         The maximum value for the Xv colorkey on this Radeon is 0xFFFFFFFF,
12122         which ends up as -1 when cast to an int. Make the logic handle the
12123         max value as an unsigned mask and only change the colorkey when it's
12124         a value we recognise.
12125
12126 2006-09-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
12127
12128         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
12129         Removed empty * between paragraphs
12130
12131 2006-09-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
12132
12133         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
12134         * gst-libs/gst/rtp/README:
12135         Moved some documentation into .c file
12136
12137 2006-09-29  Wim Taymans  <wim@fluendo.com>
12138
12139         * gst/playback/gstdecodebin.c: (no_more_pads):
12140         Fix compilation.
12141
12142 2006-09-29  Wim Taymans  <wim@fluendo.com>
12143
12144         * gst/playback/gstdecodebin.c: (new_caps):
12145         Remove g_print
12146
12147         * gst/playback/gstplaybin.c:
12148         Add some docs.
12149
12150 2006-09-29  Tim-Philipp Müller  <tim at centricular dot net>
12151
12152         * tests/check/Makefile.am:
12153           Re-enable cddabasesrc test to see if it works again
12154           now.
12155
12156 2006-09-29  Wim Taymans  <wim@fluendo.com>
12157
12158         * gst/playback/gstplaybasebin.c: (setup_subtitle),
12159         (gen_source_element):
12160         Handle invalid URIs a bit more gracefully.
12161
12162 2006-09-29  Tim-Philipp Müller  <tim at centricular dot net>
12163
12164         * tests/check/pipelines/oggmux.c:
12165           Remove obsolete comment.
12166
12167 2006-09-29  Michael Smith  <msmith@fluendo.com>
12168
12169         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
12170         (gst_ogg_mux_release_pad), (gst_ogg_mux_push_buffer),
12171         (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
12172         (gst_ogg_mux_send_headers), (gst_ogg_mux_process_best_pad),
12173         (gst_ogg_mux_collected):
12174           Commit patch from James "Doc" Livingston, adds proper EOS handling
12175           in oggmux. GStreamer can, for the first time ever, create a valid
12176           Ogg file! Yay!
12177
12178         * tests/check/pipelines/oggmux.c: (check_chain_final_state),
12179         (oggmux_suite):
12180           Reenable tests now that they pass.
12181
12182 2006-09-29  Wim Taymans  <wim@fluendo.com>
12183
12184         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_handle_clients):
12185         Stop reading commands when EOF (we read 0) as well.
12186
12187 2006-09-28  Wim Taymans  <wim@fluendo.com>
12188
12189         * gst/playback/gstdecodebin.c: (dynamic_create), (dynamic_free),
12190         (close_pad_link), (dynamic_remove), (no_more_pads), (new_caps),
12191         (find_dynamic), (unlinked), (close_link):
12192         Implement delayed caps linking needed for element with a lot of
12193         different caps on the src pads that get fixed at runtime.
12194         Improve management of dynamic elements.
12195
12196         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
12197         (group_destroy), (group_commit), (check_queue), (queue_overrun),
12198         (gen_preroll_element), (remove_groups), (unknown_type),
12199         (add_element_stream), (no_more_pads_full), (no_more_pads),
12200         (sub_no_more_pads), (source_no_more_pads), (preroll_unlinked),
12201         (new_decoded_pad), (setup_subtitle), (array_has_value),
12202         (gen_source_element), (source_new_pad), (has_all_raw_caps),
12203         (analyse_source), (remove_decoders), (make_decoder),
12204         (remove_source), (setup_source), (finish_source), (prepare_output),
12205         (gst_play_base_bin_change_state):
12206         * gst/playback/gstplaybasebin.h:
12207         Use more _CAST instead of full type checking casts.
12208         Small cleanups, plug some leaks.
12209         Handle dynamic sources.
12210         Add some helper functions to create lists of strings used for
12211         blacklisting and other stuff.
12212         Refactor some code dealing with analysing the source.
12213         Re-enable sources without pads (like cd:// or other selfcontained
12214         elements).
12215
12216 2006-09-28  Wim Taymans  <wim@fluendo.com>
12217
12218         * gst-libs/gst/audio/gstbaseaudiosink.c:
12219         (gst_base_audio_sink_render):
12220         When we have a timestamp, we can still perform clipping.
12221         When we have no clock, we must play the sample ASAP.
12222
12223 2006-09-28  Wim Taymans  <wim@fluendo.com>
12224
12225         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
12226         Set caps on outgoing buffers.
12227
12228         * gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
12229         (gst_video_rate_event), (gst_video_rate_chain):
12230         * gst/videorate/gstvideorate.h:
12231         Fix videorate some more. Fixes #357977
12232
12233 2006-09-28  Tim-Philipp Müller  <tim at centricular dot net>
12234
12235         * tests/check/elements/adder.c: (adder_suite):
12236           Don't set timeout to 6 seconds when we're running
12237           in valgrind ... (and how is 6 seconds longer than
12238           the default anyway?)
12239
12240 2006-09-28  Wim Taymans  <wim@fluendo.com>
12241
12242         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
12243         (gst_audio_rate_sink_event), (gst_audio_rate_convert),
12244         (gst_audio_rate_convert_segments), (gst_audio_rate_chain):
12245         Keep sink and src segment to keep track of time and support more
12246         input formats.
12247         Fix bogus next_offset and run_time calculation, don't understand how
12248         this could have worked before. Fixes #357976.
12249         Remove some unneeded vars.
12250
12251 2006-09-28  Tim-Philipp Müller  <tim at centricular dot net>
12252
12253         * gst/playback/gstplaybin.c: (remove_sinks):
12254           Only remove visualisation from visbin if there is a visbin (or:
12255           don't throw warnings when closing totem without playing a file).
12256
12257 2006-09-27  Wim Taymans  <wim@fluendo.com>
12258
12259         * gst-libs/gst/audio/gstbaseaudiosink.c:
12260         (gst_base_audio_sink_render):
12261         Add some more info in a WARNING.
12262
12263         * gst-libs/gst/audio/gstbaseaudiosrc.c:
12264         (gst_base_audio_src_create):
12265         Handle PAUSE in create function, use new -core addition to
12266         wait for playing. Fixes pausing and resuming capture from an
12267         audiosrc.
12268
12269         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
12270         (gst_ring_buffer_read):
12271         Constify some more.
12272         Caller supports interrupted reads now.
12273
12274 2006-09-27  Tim-Philipp Müller  <tim at centricular dot net>
12275
12276         * tests/check/Makefile.am:
12277           Another attempt to make the gen64 buildbot happy.
12278
12279 2006-09-27  Stefan Kost  <ensonic@users.sf.net>
12280
12281         Patch by: Jonathan Matthew <jonathan@kaolin.wh9.net>
12282
12283         * ext/libvisual/visual.c: (gst_visual_clear_actors),
12284         (gst_visual_chain), (gst_visual_change_state):
12285           Libvisual plugin was not passing audio data to libvisual 0.4.0 
12286           correctly. Fixes #357800
12287
12288 2006-09-27  Tim-Philipp Müller  <tim at centricular dot net>
12289
12290         * tests/check/pipelines/simple-launch-lines.c: (run_pipeline):
12291           Add timeout to _get_state() so we see which pipeline it is
12292           that causes trouble on the gen64 build bot.
12293
12294 2006-09-27  Wim Taymans  <wim@fluendo.com>
12295
12296         * gst-libs/gst/rtp/gstbasertpdepayload.c:
12297         (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_push_full),
12298         (gst_base_rtp_depayload_push_ts), (gst_base_rtp_depayload_process),
12299         (gst_base_rtp_depayload_set_gst_timestamp):
12300         the source pad always uses fixed caps.
12301
12302 2006-09-27  Wim Taymans  <wim@fluendo.com>
12303
12304         * docs/libs/gst-plugins-base-libs-docs.sgml:
12305         * docs/libs/gst-plugins-base-libs-sections.txt:
12306         * gst-libs/gst/audio/gstaudioclock.c:
12307         * gst-libs/gst/audio/gstaudioclock.h:
12308         * gst-libs/gst/audio/gstaudiosink.c:
12309         * gst-libs/gst/audio/gstaudiosink.h:
12310         * gst-libs/gst/audio/gstaudiosrc.c:
12311         * gst-libs/gst/audio/gstbaseaudiosink.c:
12312         (gst_base_audio_sink_render):
12313         * gst-libs/gst/audio/gstbaseaudiosink.h:
12314         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init):
12315         * gst-libs/gst/audio/gstbaseaudiosrc.h:
12316         * gst-libs/gst/audio/gstringbuffer.h:
12317         Added docs for the audio libs.
12318
12319 2006-09-27  Tim-Philipp Müller  <tim at centricular dot net>
12320
12321         * tests/check/Makefile.am:
12322           Temporarily disable test that fails on the bots for unknown reasons.
12323
12324 2006-09-26 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
12325
12326         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
12327         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
12328         Moved AudioCodecType into priv
12329         Renamed all gst_basertpaudiopayload to gst_base_rtp_audio_payload prefixes
12330
12331 2006-09-25  Wim Taymans  <wim@fluendo.com>
12332
12333         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
12334         (add_fakesink), (remove_fakesink), (pad_probe), (close_pad_link),
12335         (is_demuxer_element), (try_to_link_1), (get_our_ghost_pad),
12336         (new_pad):
12337         Cleanups and small leak fixes.
12338         Added Depayloaders to valid list of autopluggable elements.
12339
12340 2006-09-25  Wim Taymans  <wim@fluendo.com>
12341
12342         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
12343         (gst_play_bin_vis_blocked), (gst_play_bin_set_property),
12344         (gen_video_element), (gen_text_element), (gen_audio_element),
12345         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
12346         (gst_play_bin_set_clock_func), (gst_play_bin_change_state):
12347         Detect NO_PREROLL state change returns and disable clock distribution to
12348         the sinks so that sync is disabled.
12349         Avoid some type checking and do simple casts instead.
12350         Small cleanups, fix some FIXMEs.
12351         Be more robust when linking user specified elements, catch an report
12352         errors. Fixes #357404.
12353         Fix some leaks in the error paths.
12354
12355 2006-09-25  Stefan Kost  <ensonic@users.sf.net>
12356
12357         * ChangeLog:
12358           ChangeLog surgery for missing bug-number
12359
12360 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
12361
12362         Patch by: Peter Kjellerstedt  <pkj at axis com>
12363
12364         * gst/playback/test.c:
12365           Fix compilation with uClibc and -Werror (#357591).
12366
12367 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
12368
12369         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
12370           Parse dates that are followed by a time as well (#357532).
12371
12372         * tests/check/libs/tag.c: (test_vorbis_tags):
12373           Add unit test for this.
12374
12375 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
12376
12377         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
12378         (gst_audio_convert_transform_caps):
12379         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_unicolor):
12380         * gst/videotestsrc/videotestsrc.h:
12381           A few array const-ifications.
12382
12383 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
12384
12385         * tests/check/Makefile.am:
12386           See if this makes the build bots happy.
12387
12388         * tests/check/libs/cddabasesrc.c:
12389           UTF8-ise my name.
12390
12391 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
12392
12393         Patch by: Young-Ho Cha <ganadist at chollian dot net>
12394
12395         * gst/subparse/samiparse.c: (handle_start_font),
12396         (fix_invalid_entities):
12397           More case-insensitivity for certain tags; recognise entities with
12398           decimal codes as special entities as well (#357330).
12399
12400 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
12401
12402         * gst-libs/gst/Makefile.am:
12403           Need to build tag directory before cdda.
12404
12405 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
12406
12407         * docs/libs/gst-plugins-base-libs-sections.txt:
12408         * gst-libs/gst/cdda/Makefile.am:
12409         * gst-libs/gst/cdda/gstcddabasesrc.c:
12410         (gst_cdda_base_src_base_init):
12411         * gst-libs/gst/cdda/gstcddabasesrc.h:
12412         * gst-libs/gst/tag/tag.h:
12413         * gst-libs/gst/tag/tags.c: (gst_tag_register_tags_internal),
12414         (gst_tag_register_musicbrainz_tags):
12415           Move GST_TAG_CDDA_* tags into libgsttag and make libgstcddabasesrc
12416           depend on libgsttag. This is required so we can extract/read tags like
12417           DISCID without depending on libgstcddabasesrc (which used to register
12418           them).
12419
12420         * gst-libs/gst/tag/gstvorbistag.c:
12421           Add vorbiscomment mapping for CDDB_DISCID and MUSICBRAINZ_DISCID
12422           tags (also see #347848).
12423
12424         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_metadata_set1):
12425           Log vorbis comments we are actually writing. Const-ify array.
12426
12427 2006-09-23  Wim Taymans  <wim@fluendo.com>
12428
12429         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
12430         Improve buffering a bit by avoiding a deadlock because we cannot assume
12431         the underrun is always called.
12432
12433 2006-09-23  Wim Taymans  <wim@fluendo.com>
12434
12435         Patch by: Young-Ho Cha <ganadist at chollian dot net>
12436
12437         * gst-libs/gst/riff/riff-ids.h:
12438         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
12439         (gst_riff_create_audio_template_caps):
12440         Added MPEG-4 AAC and id and caps. Fixes #357289
12441         Added WMA9 Lossless id.
12442
12443 2006-09-22  Tim-Philipp Müller  <tim at centricular dot net>
12444
12445         * ext/gnomevfs/gstgnomevfssrc.c:
12446           Fix misleading docs addition.
12447
12448         * tests/check/elements/videotestsrc.c: (check_rgb_buf):
12449           Get rid of compiler warning the right way.
12450
12451 2006-09-22  Wim Taymans  <wim@fluendo.com>
12452
12453         * gst-libs/gst/rtp/gstbasertpdepayload.c:
12454         (gst_base_rtp_depayload_finalize),
12455         (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain),
12456         (gst_base_rtp_depayload_push_full),
12457         (gst_base_rtp_depayload_push_ts), (gst_base_rtp_depayload_push),
12458         (gst_base_rtp_depayload_process),
12459         (gst_base_rtp_depayload_set_gst_timestamp),
12460         (gst_base_rtp_depayload_queue_release):
12461         * gst-libs/gst/rtp/gstbasertpdepayload.h:
12462         Small cleanups.
12463         Fix some leaks.
12464         Refactored the process method and added methods to push from the process
12465         vmethod.
12466         Use _scale functions.
12467         API: gst_base_rtp_depayload_push_ts
12468         API: gst_base_rtp_depayload_push
12469
12470         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
12471         timestamps are uint.
12472
12473 2006-09-22  Stefan Kost  <ensonic@users.sf.net>
12474
12475         * gst-libs/gst/interfaces/xoverlay.c:
12476           Remove unused statement from doc example.
12477
12478 2006-09-21  Stefan Kost  <ensonic@users.sf.net>
12479
12480         * gst-libs/gst/interfaces/videoorientation.c:
12481         (gst_video_orientation_iface_init),
12482         (gst_video_orientation_get_hflip),
12483         (gst_video_orientation_get_vflip),
12484         (gst_video_orientation_get_hcenter),
12485         (gst_video_orientation_get_vcenter),
12486         (gst_video_orientation_set_hflip),
12487         (gst_video_orientation_set_vflip),
12488         (gst_video_orientation_set_hcenter),
12489         (gst_video_orientation_set_vcenter):
12490           Add since tags to new API docs, ChangeLog surgery (forgot API keyword
12491           in ChangeLog)
12492
12493 2006-09-21  Tim-Philipp Müller  <tim at centricular dot net>
12494
12495         * tests/check/Makefile.am:
12496         * tests/check/elements/.cvsignore:
12497         * tests/check/elements/ffmpegcolorspace.c: (rgb_format_to_caps),
12498         (create_rgb_conversions), (rgb_conversion_free),
12499         (right_shift_colour), (fix_expected_colour), (check_rgb_buf),
12500         (got_buf_cb), (GST_START_TEST), (ffmpegcolorspace_suite):
12501           Add unit test for ffmpegcolorspace (RGB <=> RGB only so far),
12502           but disable for now since it doesn't pass (something wrong with
12503           RGBA somewhere).
12504
12505 2006-09-21  Wim Taymans  <wim@fluendo.com>
12506
12507         * gst/playback/gstplaybasebin.c: (group_commit),
12508         (queue_deadlock_check), (queue_overrun), (queue_threshold_reached),
12509         (queue_out_of_data), (gen_preroll_element),
12510         (preroll_remove_overrun), (probe_triggered):
12511         Refactor handling of overrun detection.
12512         Separate handling of group completion and deadlock detection when doing
12513         network buffering. This should fix some deadlocks that were not detected
12514         because the group was completed.
12515         Add more comments, improve debugging.
12516
12517 2006-09-21  Wim Taymans  <wim@fluendo.com>
12518
12519         * tests/check/elements/gdpdepay.c: (GST_START_TEST):
12520         * tests/check/libs/audio.c:
12521         Some more compilation fixes.
12522
12523 2006-09-21  Wim Taymans  <wim@fluendo.com>
12524
12525         * gst-libs/gst/audio/gstringbuffer.c:
12526         (gst_ring_buffer_samples_done), (gst_ring_buffer_commit),
12527         (gst_ring_buffer_read):
12528         Early morning compilation fix.
12529
12530 2006-09-20  Wim Taymans  <wim@fluendo.com>
12531
12532         * tests/check/elements/gdpdepay.c: (GST_START_TEST):
12533         * tests/check/elements/multifdsink.c: (GST_START_TEST):
12534         * tests/check/elements/videorate.c: (GST_START_TEST):
12535         * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
12536         * tests/check/pipelines/oggmux.c: (eos_buffer_probe):
12537         Fix some warnings.
12538
12539 2006-09-20  Stefan Kost  <ensonic@users.sf.net>
12540
12541         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
12542         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
12543         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_show_frame):
12544           Handcrafted merge to help CVS understanding what I changed and what
12545           not.
12546
12547 2006-09-20  Stefan Kost  <ensonic@users.sf.net>
12548
12549         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
12550         (gst_xvimagesink_get_times):
12551           change colorkey behaviour back according to #354773 comment 6/7
12552
12553 2006-09-19  Michael Smith  <msmith@fluendo.com>
12554
12555         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
12556         (gst_multi_fd_sink_class_init), (get_buffers_max), (find_limits),
12557         (gst_multi_fd_sink_recover_client),
12558         (gst_multi_fd_sink_queue_buffer), (gst_multi_fd_sink_set_property),
12559         (gst_multi_fd_sink_get_property):
12560         * gst/tcp/gstmultifdsink.h:
12561           Implement stubbed out properties unit-type, units-soft-max,
12562           units-max, to allow specifying maximum sizes in units other than
12563           buffers.
12564           Fixes #355935
12565
12566 2006-09-19  Wim Taymans  <wim@fluendo.com>
12567
12568         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
12569         (gst_riff_create_audio_template_caps):
12570         Reorder the audio formats a bit for clarity.
12571         Detect and create caps for MSGSM and MSN (WAV49).
12572         Fixes #356596.
12573
12574         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
12575         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
12576         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_show_frame):
12577         Small cleanups, move error handling out of normal flow for clarity.
12578
12579 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
12580
12581         * docs/libs/gst-plugins-base-libs-docs.sgml:
12582         * docs/libs/gst-plugins-base-libs.types:
12583         * gst-libs/gst/interfaces/Makefile.am:
12584         * gst-libs/gst/interfaces/videoorientation.c:
12585         (gst_video_orientation_get_type),
12586         (gst_video_orientation_iface_init),
12587         (gst_video_orientation_get_hflip),
12588         (gst_video_orientation_get_vflip),
12589         (gst_video_orientation_get_hcenter),
12590         (gst_video_orientation_get_vcenter),
12591         (gst_video_orientation_set_hflip),
12592         (gst_video_orientation_set_vflip),
12593         (gst_video_orientation_set_hcenter),
12594         (gst_video_orientation_set_vcenter):
12595         * gst-libs/gst/interfaces/videoorientation.h:
12596           API: Add new interface to control video orientation (fixes #354908)
12597
12598 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
12599
12600         * gst/videotestsrc/gstvideotestsrc.c:
12601           Use G_UNLIKELY in _create and log one more detail.
12602           
12603         (gst_video_test_src_get_times), (gst_video_test_src_create):
12604         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
12605           Use gst_util_uint64_scale_int in _get_times().
12606
12607 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
12608
12609         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support)
12610           Give better warning message (add object and detail).
12611
12612 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
12613
12614         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
12615         (gst_xvimagesink_get_times):
12616           xvimage assumed that XV_COLORKEY can be set in RGB888 format (fixes
12617           #354773), use gst_util_uint64_scale_int in _get_times()
12618
12619 2006-09-18  Michael Smith  <msmith@fluendo.com>
12620
12621         * ext/ogg/gstoggmux.c: (gst_ogg_mux_push_buffer):
12622           Timestamps are unsigned; comparision against GST_CLOCK_TIME_NONE was
12623           always true, leading to dropping all timestamps.
12624
12625 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
12626
12627         * ext/libvisual/visual.c: (gst_vis_src_negotiate),
12628         (gst_visual_chain), (gst_visual_change_state):
12629           update to work also with libvisual 0.4 API, fix double unref (#355914)
12630           
12631         * tools/gst-launch-ext.1.in:
12632         * tools/gst-visualise.1.in:
12633           remove references to old man-pages
12634
12635         * tests/examples/seek/seek.c: (main):
12636           add real meadi-buttons, add tool-tips for the seek-options, arrange
12637           seek options in a table
12638
12639 2006-09-18  Michael Smith  <msmith@fluendo.com>
12640
12641         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear),
12642         (gst_ogg_mux_push_buffer):
12643           Don't generate out-of-order timestamps from oggmux, instead clamp
12644           output timestamps to be >= the previously output ts.
12645           Fixes #355595
12646
12647 2006-09-18  Michael Smith  <msmith@fluendo.com>
12648
12649         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
12650         (gst_multi_fd_sink_class_init):
12651           Updates, fixes, and typo corrections for multifdsink. No functional
12652           changes.
12653
12654 2006-09-17  Michael Smith  <msmith@fluendo.com>
12655
12656         * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find):
12657           Don't crash on truncated files - check that we got an 8 byte buffer
12658           before trying to memcmp it.
12659
12660 2006-09-17  Tim-Philipp Müller  <tim at centricular dot net>
12661
12662         * gst/playback/gstplaybasebin.c: (get_active_source):
12663           Make stream-switching appear instant to the application
12664           (ie. make sure that a g_object_get on 'current-foo' returns
12665           the stream previously set with g_object_set(). Totem needs
12666           this to update stream-related meta-info (like audio-codec)
12667           correctly when switching streams.
12668
12669 2006-09-17  Tim-Philipp Müller  <tim at centricular dot net>
12670
12671         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_find_master_mixer),
12672         (gst_alsa_mixer_ensure_track_list):
12673           Try harder to guess which mixer track is the master mixer
12674           track (instead of just taking the first one that has a pvolume).
12675           Fixes #342228.
12676
12677 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
12678
12679         reviewed by: <delete if not using a buddy>
12680
12681         * gst-libs/gst/audio/audio.h:
12682         * gst/audiotestsrc/gstaudiotestsrc.c: (plugin_init):
12683
12684 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
12685
12686         * gst/audioconvert/gstaudioconvert.c: (set_structure_widths),
12687         (gst_audio_convert_transform_caps):
12688           Get structure-name just once.
12689
12690 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
12691
12692         * tests/check/elements/audioresample.c: (GST_START_TEST):
12693         * tests/check/elements/videotestsrc.c: (check_rgb_buf):
12694         * tests/check/elements/volume.c: (GST_START_TEST):
12695         * tests/check/elements/vorbisdec.c: (GST_START_TEST):
12696         * tests/check/pipelines/oggmux.c: (validate_ogg_page), (eos_watch),
12697         (test_pipeline), (GST_START_TEST):
12698         * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
12699         * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
12700           Fix big batch of compiler warnings.
12701
12702 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
12703
12704         * ext/gnomevfs/gstgnomevfssrc.c:
12705           Add docs about icydemux usage in connection with gnomevfssrc
12706
12707         * ext/libvisual/visual.c:
12708         * ext/ogg/gstoggaviparse.c:
12709         * ext/ogg/gstoggdemux.c:
12710         * ext/ogg/gstoggmux.c:
12711         * ext/ogg/gstoggparse.c:
12712         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
12713         * gst-libs/gst/audio/gstaudiosink.c:
12714         * gst-libs/gst/audio/gstaudiosrc.c:
12715         * gst/audiorate/gstaudiorate.c:
12716           More G_OBJECT macro fixing.
12717
12718         * gst/audiotestsrc/gstaudiotestsrc.h:
12719           Fix wrong info in header due to copy & paste
12720
12721 2006-09-15  Wim Taymans  <wim@fluendo.com>
12722
12723         * gst-libs/gst/audio/gstbaseaudiosink.c:
12724         (gst_base_audio_sink_get_time), (gst_base_audio_sink_callback):
12725         * gst-libs/gst/audio/gstbaseaudiosrc.c:
12726         (gst_base_audio_src_get_time), (gst_base_audio_src_fixate),
12727         (gst_base_audio_src_get_times), (gst_base_audio_src_get_offset),
12728         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
12729         Do the delay calculation in the source/sink base classes as this is
12730         specific for the capture/playback mode.
12731         Try to fixate a bit better, like round depth up to a multiple of 8
12732         bigger than width.
12733         Handle underruns correctly by marking DISCONT on buffers and adjusting
12734         timestamps to handle the gap.
12735         Set offset/offset_end correctly on buffers.
12736
12737         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_pause),
12738         (gst_ring_buffer_samples_done), (gst_ring_buffer_commit),
12739         (gst_ring_buffer_read):
12740         Remove resync and underrun recovery from the ringbuffer.
12741         Fix ringbuffer read code on under/overrun.
12742
12743 2006-09-15  Wim Taymans  <wim@fluendo.com>
12744
12745         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
12746         (gst_play_base_bin_init), (fill_buffer), (check_queue),
12747         (queue_threshold_reached), (gst_play_base_bin_set_property),
12748         (gst_play_base_bin_get_property):
12749         * gst/playback/gstplaybasebin.h:
12750         Don't use a 0 low watermark when buffering, it is catching starvation
12751         way too late. Instead, use a 3 second queue with 30 and 95
12752         percent low/high watermarks. 
12753         Added queue-min-threshold property to configure low watermark.
12754         Use new _buffering message API.
12755         Make queue_threshold variable big enough to store a uint64 time value.
12756         API: playbin::queue-min-threshold property.
12757
12758 2006-09-15  Wim Taymans  <wim@fluendo.com>
12759
12760         * configure.ac:
12761         We require 0.10.10.1 now because of _wait_preroll().
12762
12763         * gst-libs/gst/audio/gstbaseaudiosink.c:
12764         (gst_base_audio_sink_render):
12765         Use gst_base_sink_wait_preroll().
12766
12767 2006-09-15  Wim Taymans  <wim@fluendo.com>
12768
12769         * ext/alsa/gstalsasink.c: (xrun_recovery), (gst_alsasink_write):
12770         * ext/alsa/gstalsasrc.c: (xrun_recovery), (gst_alsasrc_read):
12771         Use DEBUG_OBJECT more.
12772
12773 === release 0.10.10 ===
12774
12775 2006-09-07  Thomas Vander Stichele  <thomas at apestaart dot org>
12776
12777         patch by: Michael Smith <msmith at fluendo dot com>
12778
12779         * gst/tcp/gstmultifdsink.c: (is_sync_frame),
12780         (gst_multi_fd_sink_client_queue_buffer),
12781         (gst_multi_fd_sink_new_client):
12782         * tests/check/elements/multifdsink.c: (GST_START_TEST),
12783         (multifdsink_suite):
12784           Fix implementation of sync-method 'next-keyframe'
12785           Closes #354594
12786
12787 2006-09-07  Thomas Vander Stichele  <thomas at apestaart dot org>
12788
12789         patch by: Wim Taymans <wim at fluendo dot com>
12790
12791         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
12792         This patch removes the RANDOM flag that was incorrectly introduced with
12793         revision 1.91.  Fixes #354590
12794
12795 2006-09-05  Tim-Philipp Müller  <tim at centricular dot net>
12796
12797         * tests/check/Makefile.am:
12798           Random variation in Makefile line to see if it makes the
12799           gen64-base-full bot any happier.
12800
12801 2006-09-04  Tim-Philipp Müller  <tim at centricular dot net>
12802
12803         * tests/check/pipelines/oggmux.c: (oggmux_suite):
12804           Disable test that fails at the moment (killed after timeout).
12805
12806 2006-09-04  Tim-Philipp Müller  <tim at centricular dot net>
12807
12808         Patch by: James Livingston  <doclivingston at gmail.com>
12809
12810         * tests/check/Makefile.am:
12811         * tests/check/pipelines/.cvsignore:
12812         * tests/check/pipelines/oggmux.c: (get_page_codec),
12813         (check_chain_final_state), (fail_if_audio), (validate_ogg_page),
12814         (eos_buffer_probe), (start_pipeline), (stop_pipeline), (eos_watch),
12815         (test_pipeline), (test_vorbis), (test_theora), (test_vorbis_theora),
12816         (test_theora_vorbis), (oggmux_suite):
12817           Add simple unit test for oggmux from #337026 with checking for the
12818           EOS flags disabled for the time being.
12819
12820 2006-09-04  Wim Taymans  <wim@fluendo.com>
12821
12822         patch by: Alessandro Dessina <alessandro nnva org>
12823
12824         * ext/ogg/gstoggmux.c:
12825         Add cmml caps to oggmux. Fixes #353912
12826
12827 2006-09-02  Tim-Philipp Müller  <tim at centricular dot net>
12828
12829         * tests/check/elements/videotestsrc.c: (check_rgb_buf):
12830           Returning a return value often helps. In this case, we
12831           don't need the return value anyway, so just get rid of it.
12832           Should make build bots much happier.
12833
12834 2006-09-02  Tim-Philipp Müller  <tim at centricular dot net>
12835
12836         * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure),
12837         (paint_get_structure), (gst_video_test_src_get_size),
12838         (gst_video_test_src_smpte), (gst_video_test_src_snow),
12839         (gst_video_test_src_unicolor), (paint_setup_AYUV),
12840         (paint_hline_AYUV), (paint_setup_ARGB8888), (paint_setup_ABGR8888),
12841         (paint_setup_RGBA8888), (paint_setup_BGRA8888), (paint_hline_str4):
12842         * gst/videotestsrc/videotestsrc.h:
12843           Add support for AYUV and the various RGBA formats. Initialise
12844           fields of paintinfo structs allocated on the stack.
12845
12846         * tests/check/elements/videotestsrc.c: (right_shift_colour),
12847         (fix_expected_colour), (check_rgb_buf), (got_buf_cb),
12848         (check_rgb_buf), (videotestsrc_suite):
12849           Add unit tests for videotestsrc's RGB output.
12850
12851 2006-09-01  Tim-Philipp Müller  <tim at centricular dot net>
12852
12853         * gst/videotestsrc/gstvideotestsrc.c:
12854         (gst_video_test_src_pattern_get_type),
12855         (gst_video_test_src_set_pattern):
12856         * gst/videotestsrc/gstvideotestsrc.h:
12857         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_unicolor),
12858         (gst_video_test_src_black), (gst_video_test_src_white),
12859         (gst_video_test_src_red), (gst_video_test_src_green),
12860         (gst_video_test_src_blue):
12861         * gst/videotestsrc/videotestsrc.h:
12862           Add more uni-colour patterns ("white", "red", "green", and "blue").
12863
12864 2006-09-01  Tim-Philipp Müller  <tim at centricular dot net>
12865
12866         * gst/videotestsrc/videotestsrc.c: (paint_setup_YVYU):
12867           Fix stride for YVYU, should be word-aligned (#353658).
12868
12869 2006-08-31  Tim-Philipp Müller  <tim at centricular dot net>
12870
12871         * gst/adder/gstadder.c: (gst_adder_src_event):
12872           Fix build.
12873
12874 2006-08-31  Edward Hervey  <edward@fluendo.com>
12875
12876         * gst/adder/gstadder.c: (forward_event_func),
12877         (gst_adder_src_event), (gst_adder_collected),
12878         (gst_adder_change_state):
12879         * gst/adder/gstadder.h:
12880         Remember the start position asked in the incoming seeks, so we can
12881         output GST_EVENT_NEW_SEGMENT with a correct position value (instead
12882         of assuming it will always be 0).
12883
12884 2006-08-31  Edward Hervey  <edward@fluendo.com>
12885
12886         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
12887         (gst_ogg_demux_finalize), (gst_ogg_demux_perform_seek),
12888         (gst_ogg_demux_loop):
12889         Send the GST_EVENT_NEW_SEGMENT from the streaming thread.
12890
12891 2006-08-30  Tim-Philipp Müller  <tim at centricular dot net>
12892
12893         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12894         (gst_ffmpegcsp_get_unit_size):
12895           Return FALSE instead of returning a random false unit
12896           size when the format isn't known/supported (even if
12897           this shouldn't happen under normal circumstances).
12898
12899 2006-08-29  Wim Taymans  <wim@fluendo.com>
12900
12901         Patch by: Tim-Philipp Müller  <tim at centricular dot net>
12902
12903         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create),
12904         (gst_gnome_vfs_src_start):
12905         Try harder to get the size from a uri by using _info_uri() when
12906         _info_from_handle() does not give us enough info. 
12907         Also follow symlinks when getting the size.
12908         Partially Fixes #332864.
12909
12910 2006-08-29  Tim-Philipp Müller  <tim at centricular dot net>
12911
12912         Patch by: Viktor Peters  <viktor dot peters at gmail dot com>
12913
12914         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_ensure_track_list),
12915         (gst_alsa_mixer_update), (gst_alsa_mixer_get_volume),
12916         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
12917         (gst_alsa_mixer_set_record):
12918         * ext/alsa/gstalsamixertrack.c:
12919         (gst_alsa_mixer_track_update_alsa_capabilities),
12920         (alsa_track_has_cap), (gst_alsa_mixer_track_new),
12921         (gst_alsa_mixer_track_update):
12922         * ext/alsa/gstalsamixertrack.h:
12923           Improve and fix mixer track handling, in particular better handling
12924           of alsa's pvolume/pswitch/cvolume/cswitch capabilities; create
12925           separate track objects for tracks that have both capture and playback
12926           volume (and label them differently as well so they're not mistakenly
12927           assumed to be duplicates); classify mixer tracks that only affect
12928           the audible volume of something (rather than the capture volume)
12929           as playback tracks. Redefine/fix meaning of RECORD and MUTE flags
12930           for capture tracks to correspond to alsa-pswitch alsa-cswitch
12931           (following the meaning documented in the mixer interface header
12932           file); add support for alsa's exclusive cswitch groups; update/sync
12933           state/flags better if mixer settings are changed by another
12934           application. Fixes #336075.
12935
12936 2006-08-29  Tim-Philipp Müller  <tim at centricular dot net>
12937
12938         * gst/playback/gstplaybin.c:
12939           Improve docs: add section about BUFFERING messages sent by playbin.
12940
12941 2006-08-29  Michael Smith  <msmith@fluendo.com>
12942
12943         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_push_buffer),
12944         (gst_vorbis_enc_buffer_check_discontinuous),
12945         (gst_vorbis_enc_chain):
12946           Ignore explicit DISCONT marked on buffers (which is often spurious,
12947           particularly when using multiple segments), in favour of solely
12948           using the timestamps/durations.
12949
12950 2006-08-29  Edward Hervey  <edward@fluendo.com>
12951
12952         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
12953         Don't rely on incoming buffers offset anymore, since it is completely
12954         broken when using multiple segments.
12955         Instead convert the incoming buffers timestamp to running time, and
12956         then convert that value to the offsets.
12957         Also inform GstSegment of the last outputted stop position, which is
12958         needed if we received several segments with an unknown stop value.
12959
12960 2006-08-29  Thomas Vander Stichele  <thomas at apestaart dot org>
12961
12962         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_chain):
12963           fix buffer unreffing on a header push failure
12964
12965 2006-08-28  Wim Taymans  <wim@fluendo.com>
12966
12967         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_sink_event),
12968         (gst_audio_rate_chain):
12969         Make the metadata of the buffer writable before changing its
12970         flags.
12971
12972 2006-08-28  Wim Taymans  <wim@fluendo.com>
12973
12974         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
12975         (gst_audio_rate_setcaps), (gst_audio_rate_init),
12976         (gst_audio_rate_sink_event), (gst_audio_rate_src_event),
12977         (gst_audio_rate_chain), (gst_audio_rate_change_state):
12978         Fix audiorate some more.
12979         Reset and resync counters on flush and READY.
12980         Handle the DISCONT flag correctly.
12981         Use GstSegment to track position.
12982         Fail when not negotiated.
12983         Fixes #353234.
12984
12985 2006-08-25  Michael Smith  <msmith@fluendo.com>
12986
12987         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
12988           Fix spelling.
12989           Remove accidently included debug line.
12990
12991 2006-08-25  Wim Taymans  <wim@fluendo.com>
12992
12993         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
12994         Small cleanups.
12995         If a buffer is received with no caps, make the buffer metadata
12996         writable and set the caps, making sure that we don't screw up the
12997         refcounts.
12998
12999 2006-08-25  Michael Smith  <msmith@fluendo.com>
13000
13001         * gst/gdp/gstgdppay.c: (gst_gdp_pay_reset),
13002         (gst_gdp_pay_reset_streamheader), (gst_gdp_pay_chain):
13003           Fix memory leaks and misleading debug messages, add a couple of
13004           comments.
13005
13006         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_get_stats),
13007         (gst_multi_fd_sink_render):
13008           Do not use gst_buffer_make_writable() in a basesink render method,
13009           as it may incorrectly unref the buffer. Instead, use convoluted
13010           dance to avoid copying the buffer except when we need to.
13011
13012 2006-08-25  Michael Smith  <msmith@fluendo.com>
13013
13014         * ext/vorbis/vorbisenc.c:
13015         (gst_vorbis_enc_buffer_check_discontinuous):
13016           Allow very small discontinuities in the timestamps. These we can't
13017           do anything useful with anyway (because vorbis's timestamps have
13018           only sample granularity), and are commonly produced by elements with
13019           minor bugs. Allow up to 1/2 a sample out.
13020           Fixes #351742.
13021
13022 2006-08-24  Wim Taymans  <wim@fluendo.com>
13023
13024         * tests/examples/seek/seek.c: (seek_cb), (start_seek), (stop_seek),
13025         (play_scrub_toggle_cb), (main):
13026         Add a checkbox to enable play scrubbing. Makes it possible to disable
13027         normal scrubbing.
13028
13029 2006-08-23  Stefan Kost  <ensonic@users.sf.net>
13030
13031         * tests/check/elements/.cvsignore:
13032           make buildbot happy
13033
13034 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
13035
13036         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_base_init),
13037         (gst_ogm_video_parse_base_init), (gst_ogm_text_parse_base_init),
13038         (gst_ogm_parse_class_init), (gst_ogm_parse_dispose),
13039         (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
13040         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
13041         (gst_ogm_parse_stream_header), (gst_ogm_parse_comment_packet),
13042         (gst_ogm_text_parse_strip_trailing_zeroes),
13043         (gst_ogm_parse_data_packet), (gst_ogm_parse_chain),
13044         (gst_ogm_parse_sink_event), (gst_ogm_parse_change_state):
13045           Refactor ogm parse, do better input checking, misc. clean-ups.
13046           Cache incoming events and push them once the source pad has
13047           been created. Don't pass unterminated strings to sscanf().
13048           Strip trailing zeroes from subtitle text output, since they
13049           are not valid UTF-8. Don't push vorbiscomment packets on
13050           the subtitle text pad. Output perfect streams if possible.
13051
13052 2006-08-23  Wim Taymans  <wim@fluendo.com>
13053
13054         * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
13055         Waits for tasks to settle down so that we clean up correctly for 
13056         valgrind.
13057
13058 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
13059
13060         * tests/check/libs/tag.c: (GST_START_TEST), (taglists_are_equal):
13061           Unit test fixes: \377 is more likely to fit into 8 bits than \777;
13062           actually return return value in taglists_are_equal.
13063
13064 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
13065
13066         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
13067           Fix crash due to broken bitstream parsing on x86-64: can't make
13068           any assumptions about sizeof(struct) due to alignment/packing
13069           differences on different architectures. Fixes #351790.
13070
13071 2006-08-22  Wim Taymans  <wim@fluendo.com>
13072
13073         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
13074         (gst_riff_parse_chunk), (gst_riff_parse_file_header),
13075         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
13076         (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
13077         (gst_riff_parse_info):
13078         Protect public functions against bad input.
13079         Do some cleanups.
13080         Fix documentation.
13081
13082 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
13083
13084         * gst-libs/gst/riff/riff-ids.h:
13085         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
13086           Add voxware audio IDs (even if we can't play it) (#351795).
13087
13088 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
13089
13090         * gst-libs/gst/riff/riff-media.c:
13091         (gst_riff_create_video_template_caps),
13092         (gst_riff_create_audio_template_caps),
13093         (gst_riff_create_iavs_template_caps):
13094           Const-ify some arrays and use G_N_ELEMENTS instead
13095           of wasting oodles of RAM on terminator bits.
13096
13097 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
13098
13099         * gst-libs/gst/tag/gstvorbistag.c:
13100         (gst_tag_list_to_vorbiscomment_buffer):
13101         * tests/check/libs/tag.c: (GST_START_TEST):
13102           And the same for _to_vorbiscomment_buffer(): allow
13103           id_data_len == 0 for speex.
13104
13105 2006-08-21  Thomas Vander Stichele  <thomas at apestaart dot org>
13106
13107         * configure.ac:
13108         * docs/plugins/Makefile.am:
13109         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
13110         * docs/plugins/gst-plugins-base-plugins-sections.txt:
13111         * docs/plugins/inspect/plugin-gdp.xml:
13112         * gst/gdp/Makefile.am:
13113         * tests/check/Makefile.am:
13114           Move GDP plugin to -base from -bad.  Closes #347783.
13115
13116 2006-08-21  Tim-Philipp Müller  <tim at centricular dot net>
13117
13118         * gst-libs/gst/tag/gstvorbistag.c:
13119         (gst_tag_list_from_vorbiscomment_buffer):
13120           Allow id_data_len == 0 (needed for vorbis comments in Speex files).
13121           Also add some checks to make sure we don't memcmp() beyond the end of
13122           vorbiscomment buffer if the ID to check for is larger than the buffer.
13123
13124         * tests/check/libs/tag.c: (GST_START_TEST):
13125           Some more tests for gst_tag_list_from_vorbiscomment_buffer().
13126
13127 2006-08-21  Tim-Philipp Müller  <tim at centricular dot net>
13128
13129         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_metadata_set1),
13130         (gst_vorbis_enc_set_metadata):
13131           Use vorbis comment utility functions from libgsttag
13132           instead of re-inventing the wheel (partially fixes #347091).
13133
13134 2006-08-21  Jan Schmidt  <thaytan@mad.scientist.com>
13135
13136         * tests/check/elements/audioconvert.c: (GST_START_TEST):
13137         Fix leaks. Wait for state transitions that might happen ASYNC, as well
13138         as some that won't.
13139
13140 2006-08-21  Wim Taymans  <wim@fluendo.com>
13141
13142         * docs/libs/Makefile.am:
13143         * docs/libs/gst-plugins-base-libs-sections.txt:
13144         * docs/libs/gst-plugins-base-libs.types:
13145         Don't try to GObject scan the netbuffer as it's not a GObject.
13146         Fixes #351308.
13147
13148         * gst-libs/gst/netbuffer/gstnetbuffer.c:
13149         * gst-libs/gst/netbuffer/gstnetbuffer.h:
13150         Document GstNetBuffer.
13151
13152 2006-08-21  Stefan Kost  <ensonic@users.sf.net>
13153
13154         * tests/check/elements/audioconvert.c: (GST_START_TEST),
13155         (audioconvert_suite):
13156           Add testcase for caps-size-explosion
13157
13158 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
13159
13160         * gst/audioconvert/gstaudioconvert.c:
13161         (gst_audio_convert_get_unit_size), (set_structure_widths):
13162           Lower debug, use g_assert in _get_unit_size
13163
13164         * gst/audioresample/gstaudioresample.c:
13165         (audioresample_get_unit_size):
13166         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
13167         (gst_ffmpegcsp_get_unit_size):
13168         * gst/videoscale/gstvideoscale.c: (gst_video_scale_get_unit_size):
13169           use g_assert in _get_unit_size
13170
13171 2006-08-18  Wim Taymans  <wim@fluendo.com>
13172
13173         * docs/libs/gst-plugins-base-libs-sections.txt:
13174         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_set_packet_len),
13175         (gst_rtp_buffer_pad_to), (gst_rtp_buffer_get_payload_subbuffer),
13176         (gst_rtp_buffer_get_payload_buffer):
13177         * gst-libs/gst/rtp/gstrtpbuffer.h:
13178         Document GstRTPBuffer.
13179         Added function to efficiently strip payload headers.
13180         API: gst_rtp_buffer_get_payload_subbuffer()
13181
13182 2006-08-17  Tim-Philipp Müller  <tim at centricular dot net>
13183
13184         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
13185         (gst_tag_to_vorbis_comments):
13186           Serialise unknown vorbis comments into GST_TAG_EXTENDED_COMMENT
13187           tags and deserialise them properly as well (#347091).
13188           Add some more gtk-doc blurbs and also some g_return_if_fail().
13189
13190         * tests/check/libs/tag.c: (GST_START_TEST),
13191         (back_to_vorbis_comments), (taglists_are_equal), (tag_suite):
13192           More tests.
13193
13194 2006-08-17  Wim Taymans  <wim@fluendo.com>
13195
13196         * ext/ogg/Makefile.am:
13197         * ext/ogg/gstogg.c: (plugin_init):
13198         * ext/ogg/gstoggaviparse.c: (gst_ogg_avi_parse_get_type),
13199         (gst_ogg_avi_parse_base_init), (gst_ogg_avi_parse_class_init),
13200         (gst_ogg_avi_parse_init), (gst_ogg_avi_parse_finalize),
13201         (gst_ogg_avi_parse_setcaps), (gst_ogg_avi_parse_event),
13202         (gst_ogg_avi_parse_push_packet), (gst_ogg_avi_parse_chain),
13203         (gst_ogg_avi_parse_change_state), (gst_ogg_avi_parse_plugin_init):
13204         Added ogg-in-avi parser element. Fixes #140139.
13205
13206         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
13207         Fixed a bug in oggdemux debug code.
13208
13209         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
13210         (gst_riff_create_audio_template_caps):
13211         Recognise Ogg in the AVI extensible wave format.
13212
13213 2006-08-17  Tim-Philipp Müller  <tim at centricular dot net>
13214
13215         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
13216           Make buffer durations add up (duration should be next_ts-ts for
13217           perfect streams). Fixes CD ripping to Ogg/Vorbis with vorbisenc
13218           from CVS.
13219
13220         * tests/check/libs/cddabasesrc.c: (gst_cd_foo_src_close),
13221         (test_buffer_timestamps), (cddabasesrc_suite):
13222           Add unit test for the above.
13223
13224         * tests/check/Makefile.am:
13225           Don't know why cddabasesrc test was in VALGRIND_TO_FIX, remove
13226           to see what happens.
13227
13228 2006-08-16  Wim Taymans  <wim@fluendo.com>
13229
13230         * ext/alsa/gstalsasink.c: (gst_alsasink_set_property),
13231         (gst_alsasink_open):
13232         * ext/alsa/gstalsasrc.c: (gst_alsasrc_set_property),
13233         (gst_alsasrc_open):
13234         Avoid setting and using a NULL device name.
13235         Print more info when we fail to open a device.
13236
13237 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
13238
13239         * docs/libs/gst-plugins-base-libs-sections.txt:
13240         * gst-libs/gst/tag/tag.h:
13241         * gst-libs/gst/tag/tags.c: (gst_tag_parse_extended_comment):
13242           API: add gst_tag_parse_extended_comment() (#351426).
13243
13244         * tests/check/Makefile.am:
13245         * tests/check/libs/.cvsignore:
13246         * tests/check/libs/tag.c: (GST_START_TEST), (tag_suite), (main):
13247           Add unit test for gst_tag_parse_extended_comment().
13248
13249 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
13250
13251         * sys/ximage/ximagesink.c: (gst_ximagesink_get_property):
13252         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_property):
13253           Fix leak (#351502).
13254
13255 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
13256
13257         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
13258         * docs/plugins/gst-plugins-base-plugins-sections.txt:
13259         * docs/plugins/gst-plugins-base-plugins.args:
13260         * gst/playback/gstplaybin.c:
13261           Document playbin.
13262           
13263         * docs/plugins/inspect/plugin-adder.xml:
13264         * docs/plugins/inspect/plugin-alsa.xml:
13265         * docs/plugins/inspect/plugin-audioconvert.xml:
13266         * docs/plugins/inspect/plugin-audiorate.xml:
13267         * docs/plugins/inspect/plugin-audioresample.xml:
13268         * docs/plugins/inspect/plugin-audiotestsrc.xml:
13269         * docs/plugins/inspect/plugin-cdparanoia.xml:
13270         * docs/plugins/inspect/plugin-decodebin.xml:
13271         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
13272         * docs/plugins/inspect/plugin-gnomevfs.xml:
13273         * docs/plugins/inspect/plugin-ogg.xml:
13274         * docs/plugins/inspect/plugin-pango.xml:
13275         * docs/plugins/inspect/plugin-playbin.xml:
13276         * docs/plugins/inspect/plugin-subparse.xml:
13277         * docs/plugins/inspect/plugin-tcp.xml:
13278         * docs/plugins/inspect/plugin-theora.xml:
13279         * docs/plugins/inspect/plugin-typefindfunctions.xml:
13280         * docs/plugins/inspect/plugin-video4linux.xml:
13281         * docs/plugins/inspect/plugin-videorate.xml:
13282         * docs/plugins/inspect/plugin-videoscale.xml:
13283         * docs/plugins/inspect/plugin-videotestsrc.xml:
13284         * docs/plugins/inspect/plugin-volume.xml:
13285         * docs/plugins/inspect/plugin-vorbis.xml:
13286         * docs/plugins/inspect/plugin-ximagesink.xml:
13287         * docs/plugins/inspect/plugin-xvimagesink.xml:
13288           Update to CVS version.
13289
13290 2006-08-14  Tim-Philipp Müller  <tim at centricular dot net>
13291
13292         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
13293         (gst_play_bin_set_property), (gst_play_bin_get_property),
13294         (value_list_append_structure_list),
13295         (gst_play_bin_handle_redirect_message),
13296         (gst_play_bin_handle_message):
13297           API: GstPlayBin::connection-speed
13298           Add "connection-speed" property; re-order redirect messages with
13299           multiple redirect locations depending on the minimum bitrate if
13300           that information is available and a connection speed is set
13301           (#350399).
13302
13303 2006-08-14  Tim-Philipp Müller  <tim at centricular dot net>
13304
13305         * gst/playback/gstplaybin.c:
13306           Update max volume to the same value that the volume element uses.
13307
13308 2006-08-14  Wim Taymans  <wim@fluendo.com>
13309
13310         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
13311         Less uglyness..
13312
13313 2006-08-14  Wim Taymans  <wim@fluendo.com>
13314
13315         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_submit_buffer),
13316         (gst_ogg_demux_get_next_page), (gst_ogg_demux_perform_seek),
13317         (gst_ogg_demux_read_chain), (gst_ogg_demux_loop):
13318         Add some more debug info.
13319         Don't crash when a seek failed.
13320         Actually return the result of the seek instead of TRUE.
13321         Ignore multiple BOS pages with the same serial so that we don't create
13322         the same stream multiple times.
13323         Post an error when we fail to do the initial seek.
13324
13325 2006-08-13  Wim Taymans  <wim@fluendo.com>
13326
13327         * ext/alsa/gstalsa.c: (gst_alsa_detect_rates),
13328         (gst_alsa_detect_channels), (gst_alsa_probe_supported_formats):
13329         Small code cleanup.
13330
13331         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
13332         (gst_alsa_mixer_new):
13333         Remove hack that always set the device to hw:0*.
13334         Properly find the card name for whatever device was configured.
13335         Do some better debugging.
13336         Fixes #350784.
13337
13338         * ext/alsa/gstalsamixerelement.c:
13339         (gst_alsa_mixer_element_set_property),
13340         (gst_alsa_mixer_element_change_state):
13341         Cleanups.
13342         Handle setting of a NULL device name better.
13343
13344 2006-08-11  Wim Taymans  <wim@fluendo.com>
13345
13346         * gst/adder/gstadder.c:
13347         Don't clip float values. Fixes #350900.
13348
13349 2006-08-11  Andy Wingo  <wingo@pobox.com>
13350
13351         * gst/tcp/gsttcp.c: Really fix the build?
13352
13353         * gst/tcp/gsttcp.h: For now, always disable deprecation here --
13354         fixes the build.
13355
13356 2006-08-10  Tim-Philipp Müller  <tim at centricular dot net>
13357
13358         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes):
13359           Float caps shouldn't have a "signed" field.
13360
13361 2006-08-10  Tim-Philipp Müller  <tim at centricular dot net>
13362
13363         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query):
13364           Implement SEEKING query in its most basic form, so that we can
13365           at least check if we're seekable or not (#350655).
13366
13367 2006-08-09  Tim-Philipp Müller  <tim at centricular dot net>
13368
13369         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
13370           The checks here are not even close to anything that would
13371           justify MAXIMUM probability, lowering to POSSIBLE until someone
13372           fixes the checks (case at hand: quicktime redirection files
13373           might start with 00 00 01 XX and pass the checks here just
13374           fine, see #350399).
13375
13376 2006-08-08  Tim-Philipp Müller  <tim at centricular dot net>
13377
13378         Patch by: Sjoerd Simons  <sjoerd at luon net>
13379
13380         * gst/typefind/gsttypefindfunctions.c: (multipart_type_find):
13381           Better detection for multipart/x-mixed-replace: accept leading
13382           whitespaces before the boundary marker as well (as our very own
13383           multipartmux used to produce) (#349068).
13384
13385 2006-08-07  Tim-Philipp Müller  <tim at centricular dot net>
13386
13387         Patch by: Young-Ho Cha  <ganadist at chollian net>
13388
13389         * gst-libs/gst/riff/riff-ids.h:
13390         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
13391         (gst_riff_create_audio_template_caps):
13392           Detect DTS audio streams (#350157).
13393
13394 2006-08-05  Andy Wingo  <wingo@pobox.com>
13395
13396         * ext/theora/gsttheoraparse.h:
13397         * ext/theora/theoraparse.c (gst_theora_parse_class_init)
13398         (theora_parse_dispose, theora_parse_set_property)
13399         (theora_parse_get_property, theora_parse_munge_granulepos)
13400         (theora_parse_push_buffer, theora_parse_change_state):
13401         API: GstTheoraParse::synchronization-points
13402         Add a property 'synchronization-points' to fix badly synchronized oggs.
13403
13404 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
13405
13406         * tests/check/Makefile.am:
13407         * tests/check/libs/.cvsignore:
13408         * tests/check/libs/audio.c: (structure_contains_channel_positions),
13409         (fixed_caps_have_channel_positions), (GST_START_TEST),
13410         (audio_suite), (main):
13411           Add a few tests for the channel position stuff in libgstaudio.
13412
13413 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
13414
13415         * ext/alsa/gstalsa.c: (caps_add_channel_configuration),
13416         (gst_alsa_detect_channels):
13417         * ext/alsa/gstalsasink.c:
13418           Add support for cards that (only) do more than 8 channels,
13419           like the Delta 44 (#345188).
13420
13421         * gst-libs/gst/audio/multichannel.c:
13422         (gst_audio_check_channel_positions):
13423         * gst-libs/gst/audio/multichannel.h:
13424           API: add GST_AUDIO_CHANNEL_POSITION_NONE, which stands for an
13425           unspecified channel position and cannot be combined with any
13426           of the other audio channel positions; adjust position layout
13427           checks accordingly (#345188).
13428
13429 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
13430
13431         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
13432           Recognise ancient RealAudio files (see #349779).
13433
13434 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
13435
13436         Patch by: Jens Granseuer  <jensgr at gmx net>
13437
13438         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
13439           Add typefinder for Interplay's MVE format (#348973).
13440
13441 2006-08-02  Wim Taymans  <wim@fluendo.com>
13442
13443         Patch by: Marcel Moreaux <marcelm at luon dot net>
13444
13445         * gst-libs/gst/rtp/gstbasertpdepayload.c:
13446         (gst_base_rtp_depayload_add_to_queue):
13447         * gst-libs/gst/rtp/gstbasertpdepayload.h:
13448         Handle RTP sequence number rollover.
13449         Disable jitterbuffer by default.
13450
13451 2006-07-28  Jan Schmidt  <thaytan@mad.scientist.com>
13452
13453         * gst/audioresample/gstaudioresample.c: (audioresample_stop),
13454         (audioresample_set_caps):
13455         Don't leak references to the incoming caps. Clean them up when
13456         stopping.
13457
13458         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
13459         (gst_video_scale_finalize):
13460         Don't leak our temporary pixel buffer.
13461
13462         * tests/check/Makefile.am:
13463         * tests/check/pipelines/simple-launch-lines.c: (run_pipeline),
13464         (GST_START_TEST), (simple_launch_lines_suite):
13465
13466         Fix leaks and re-enable the test for valgrind checking.
13467
13468 2006-07-28  Tim-Philipp Müller  <tim at centricular dot net>
13469
13470         Patch by: Sjoerd Simons  <sjoerd at luon net>
13471
13472         * gst/typefind/gsttypefindfunctions.c: (multipart_type_find),
13473         (plugin_init):
13474           Add typefind function for multipart/x-mixed-replace (#348916).
13475
13476 2006-07-28  Wim Taymans  <wim@fluendo.com>
13477
13478         * gst/adder/gstadder.c: (gst_adder_setcaps),
13479         (gst_adder_query_duration):
13480         Fix leak in duration query.
13481         Reflow some docs and notes.
13482
13483 2006-07-28  Michael Smith  <msmith@fluendo.com>
13484
13485         * tests/check/pipelines/vorbisenc.c: (GST_START_TEST),
13486         (vorbisenc_suite):
13487           Enable Andy's extra vorbisenc test, now that it passes. Also fix one
13488           aspect of it.
13489
13490 2006-07-28  Michael Smith  <msmith@fluendo.com>
13491
13492         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_generate_sink_caps),
13493         (gst_vorbis_enc_sink_getcaps), (gst_vorbis_enc_buffer_from_packet),
13494         (gst_vorbis_enc_push_buffer),
13495         (gst_vorbis_enc_buffer_check_discontinuous),
13496         (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
13497         * ext/vorbis/vorbisenc.h:
13498           Handle discontinuities in the input vorbis stream correctly,
13499           so that the output is properly timestamped (and has good granulepos
13500           values). Needs some oggmux fixes too.
13501
13502 2006-07-27  Wim Taymans  <wim@fluendo.com>
13503
13504         patch by: Kai Vehmanen <kv2004 eca cx>
13505
13506         * gst-libs/gst/rtp/gstbasertpdepayload.c:
13507         (gst_base_rtp_depayload_chain),
13508         (gst_base_rtp_depayload_handle_sink_event),
13509         (gst_base_rtp_depayload_change_state):
13510         Don't send multiple newsegments with different formats.
13511         Fixes #348677.
13512
13513 2006-07-26  Wim Taymans  <wim@fluendo.com>
13514
13515         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
13516         (gst_ogg_demux_do_seek), (gst_ogg_demux_read_chain):
13517         Make seeking in ogg more accurate again by doing the more correct
13518         granuletime to stream time conversion.
13519
13520 2006-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
13521
13522         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_add_full),
13523         (gst_multi_fd_sink_new_client):
13524           debug a little more understandably
13525           do not use goto as a substitute for break, especially if
13526           break is also being used
13527
13528 2006-07-26  Tim-Philipp Müller  <tim at centricular dot net>
13529
13530         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
13531         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
13532           Remove GLib-2.6 compatibility cruft.
13533
13534 2006-07-24  Wim Taymans  <wim@fluendo.com>
13535
13536         * gst-libs/gst/audio/gstbaseaudiosink.c:
13537         (gst_base_audio_sink_render):
13538         Don't try to align a sample to an unknown value.
13539
13540 2006-07-24  Wim Taymans  <wim@fluendo.com>
13541
13542         * gst-libs/gst/audio/gstbaseaudiosink.c:
13543         (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
13544         When the audio clock is slaved to another clock, never try to align
13545         samples but trust the rate interpolation algorithm.
13546
13547 2006-07-24  Wim Taymans  <wim@fluendo.com>
13548
13549         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
13550         Don't try to calculate silence samples, base class does this much
13551         better now.
13552
13553         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
13554         (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps),
13555         (gst_ring_buffer_acquire):
13556         Calculate silence samples correctly.
13557
13558         * gst-libs/gst/audio/gstringbuffer.h:
13559         Add _CAST macro.
13560
13561 2006-07-22  Tim-Philipp Müller  <tim at centricular dot net>
13562
13563         * gst/typefind/gsttypefindfunctions.c: (xml_check_first_element):
13564           Limit search for the first markup tag to the first few kB of
13565           the file. If we don't find one there, it's highly unlikely that
13566           this is an XML(-ish) file.
13567
13568 2006-07-21  Andy Wingo  <wingo@pobox.com>
13569
13570         * tests/check/pipelines/theoraenc.c (test_discontinuity): Similar
13571         test to the one in vorbisenc. Also commented out.
13572
13573         * tests/check/pipelines/vorbisenc.c: 
13574         (test_discontinuity): New test, commented out until Mike lands
13575         some elite vorbisenc patches.
13576
13577         * tests/check/pipelines/theoraenc.c: Port to bufferstraw.
13578         Bufferstraw was actually factored out of these tests. Now we share
13579         code yay.
13580
13581         * configure.ac (GST_MAJORMINOR): Rev core requirements to 0.10.9.1
13582         for bufferstraw addition to gstcheck.
13583
13584 2006-07-21  Wim Taymans  <wim@fluendo.com>
13585
13586         * ext/theora/theoradec.c: (clip_buffer):
13587         Better clipping.
13588
13589 2006-07-21  Wim Taymans  <wim@fluendo.com>
13590
13591         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func),
13592         (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
13593         (gst_audioringbuffer_release), (gst_audioringbuffer_stop):
13594         Fix leak.
13595         Avoid type casting when we can.
13596
13597         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_dispose):
13598         Fix mem leak.
13599
13600 2006-07-20  Tim-Philipp Müller  <tim at centricular dot net>
13601
13602         * ext/alsa/gstalsamixerelement.c:
13603         (gst_alsa_mixer_element_change_state):
13604           Make state change fail if the specified device can't be opened
13605           for some reason.
13606
13607 2006-07-20  Wim Taymans  <wim@fluendo.com>
13608
13609         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
13610         (cb_newpad), (main):
13611         Example of a small audio/video player using decodebin.
13612
13613 2006-07-20  Stefan Kost  <ensonic@users.sf.net>
13614
13615         * gst-libs/gst/riff/riff-ids.h:
13616           Add 'fact' chunk id
13617
13618 2006-07-19  Wim Taymans  <wim@fluendo.com>
13619
13620         * gst-libs/gst/rtp/gstbasertpdepayload.c:
13621         (gst_base_rtp_depayload_chain),
13622         (gst_base_rtp_depayload_change_state):
13623         Don't assert when not negotiated but post a meaningfull 
13624         error message. Fixes #347918.
13625
13626         * gst-libs/gst/rtp/gstbasertppayload.c:
13627         Add comment about better default MTU size.
13628
13629         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data):
13630         Small cleanups, start docs.
13631
13632 2006-07-19  Tim-Philipp Müller  <tim at centricular dot net>
13633
13634         Patch by: Martin Szulecki
13635
13636         * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_property):
13637           If "device-name" is requested and the device is not
13638           open, try to temporarily open it to obtain this
13639           information (#342494).
13640
13641 2006-07-19  Tim-Philipp Müller  <tim at centricular dot net>
13642
13643         * gst-libs/gst/tag/gstid3tag.c:
13644           Add TSSE <=> GST_TAG_ENCODER mapping (see #347898).
13645
13646         * gst-libs/gst/tag/gsttageditingprivate.h:
13647         * gst-libs/gst/tag/gstvorbistag.c:
13648           Some more random const-ifications.
13649
13650 2006-07-18  Stefan Kost  <ensonic@users.sf.net>
13651
13652         * gst-libs/gst/riff/riff-ids.h:
13653         * gst-libs/gst/riff/riff-media.c:
13654         (gst_riff_create_video_template_caps):
13655           Add more FOURCCs (sort list to make stuff easier to find),
13656           add comment what those 16 bytes in struct _gst_riff_strh according to
13657           one avi-dumper are
13658
13659 2006-07-17  Tim-Philipp Müller  <tim at centricular dot net>
13660
13661         * gst-libs/gst/audio/multichannel.c:
13662         (gst_audio_check_channel_positions),
13663         (gst_audio_fixate_channel_positions):
13664           Const-ify two arrays.
13665
13666 2006-07-17  Tim-Philipp Müller  <tim at centricular dot net>
13667
13668         * ext/alsa/gstalsa.c: (caps_add_channel_configuration):
13669           Fix typo, so that alsasink also advertises 8 channels
13670           if that's supported (tags: can, worms, open, alsa, ph34r).
13671
13672 2006-07-17  Wim Taymans  <wim@fluendo.com>
13673
13674         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
13675         (gst_ogg_pad_submit_packet), (gst_ogg_demux_read_chain):
13676         *sigh*, when is the compiler going to warn when the comments
13677         are out-of-sync with the code.. Refix case of busted theora
13678         headers with 0 granule pos.
13679
13680 2006-07-14  Wim Taymans  <wim@fluendo.com>
13681
13682         * gst-libs/gst/rtp/gstbasertpdepayload.c:
13683         (gst_base_rtp_depayload_wait),
13684         (gst_base_rtp_depayload_change_state),
13685         (gst_base_rtp_depayload_set_property),
13686         (gst_base_rtp_depayload_get_property):
13687         Fix 99% cpu load by waiting for absolute times on the
13688         clock. Fixes #347300.
13689
13690 2006-07-14  Andy Wingo  <wingo@pobox.com>
13691
13692         * ext/theora/gsttheoraparse.h: 
13693         * ext/theora/theoraparse.c (theora_parse_drain_event_queue)
13694         (theora_parse_push_headers, theora_parse_clear_queue)
13695         (theora_parse_drain_queue_prematurely, )
13696         (theora_parse_sink_event, theora_parse_change_state): Queue events
13697         until we initialized our state, like in vorbisparse.
13698
13699         * ext/vorbis/vorbisparse.h: 
13700         * ext/vorbis/vorbisparse.c (vorbis_parse_drain_event_queue)
13701         (vorbis_parse_push_headers, vorbis_parse_clear_queue)
13702         (vorbis_parse_drain_queue_prematurely, )
13703         (vorbis_parse_sink_event, vorbis_parse_change_state): Queue events
13704         until we have initialized our state. Fixes seeking after an
13705         initial pad block.
13706
13707 2006-07-14  Andy Wingo  <wingo@pobox.com>
13708
13709         Patch by: Iain Holmes <iaingnome@gmail.com>
13710         
13711         * ext/ogg/gstoggdemux.c (gst_ogg_demux_finalize): Fix memleak.
13712
13713 2006-07-14  Jan Schmidt  <thaytan@mad.scientist.com>
13714
13715         * configure.ac:
13716         Bump nano back to CVS
13717
13718 === release 0.10.9 ===
13719
13720 2006-07-13  Jan Schmidt <thaytan@mad.scientist.com>
13721
13722         * configure.ac:
13723           releasing 0.10.9, "I walk the line"
13724
13725 2006-07-14  Michael Smith  <msmith@fluendo.com>
13726
13727         * tests/check/pipelines/vorbisenc.c: (stop_pipeline):
13728           Move a g_cond_signal to earlier to avoid sometimes deadlocking
13729           (commonly happens when running this test under valgrind) when trying
13730           to remove the buffer probe.
13731
13732 2006-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
13733
13734         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
13735         Fix missing g_unlock from the previous commit
13736
13737 2006-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
13738
13739         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
13740         (gst_ximagesink_change_state):
13741         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
13742         (gst_xvimagesink_change_state):
13743         Implement a locking order to ensure we always take the object lock
13744         before the x_lock and never vice-versa.
13745
13746 2006-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
13747
13748         * gst/playback/gstdecodebin.c: (find_compatibles):
13749         Fix a caps leak when linking (#347304)
13750
13751         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
13752         (gst_ximagesink_ximage_destroy), (gst_ximagesink_xcontext_clear),
13753         (gst_ximagesink_change_state):
13754         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
13755         (gst_xvimage_buffer_finalize), (gst_xvimagesink_check_xshm_calls),
13756         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
13757         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_change_state):
13758         Don't leak shared memory resources. Use the object lock to protect
13759         against the xcontext disappearing while returning a buffer from the
13760         pipeline. (#347304)
13761
13762 2006-07-12  Edward Hervey  <edward@fluendo.com>
13763
13764         * ext/vorbis/vorbisdec.c: (vorbis_dec_finalize),
13765         (vorbis_handle_comment_packet):
13766         gst_tag_list_merge() returns a new object. Take that into account when
13767         using it. This avoids memleak.
13768         Revert previous commit which is not needed.
13769
13770 2006-07-12  Edward Hervey  <edward@fluendo.com>
13771
13772         * ext/vorbis/vorbisdec.c: (vorbis_dec_finalize):
13773         Reset the decoder in finalize so that all fields get cleared.
13774
13775 2006-07-12  Wim Taymans  <wim@fluendo.com>
13776
13777         * gst-libs/gst/audio/gstbaseaudiosrc.c:
13778         (gst_base_audio_src_set_clock),
13779         (gst_base_audio_src_check_get_range), (gst_base_audio_src_create):
13780         Don't try to post an error message when setting the clock fails
13781         as this can happen when adding an element to a bin which will then
13782         deadlock. Fixes #347296.
13783
13784 2006-07-12  Edward Hervey  <edward@fluendo.com>
13785
13786         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
13787         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
13788         (vorbis_handle_type_packet):
13789         Post tag messages on the bus even if we're not initialized.
13790         If we're not initialized, we still postpone the event pushing of tags.
13791
13792 2006-07-12  Wim Taymans  <wim@fluendo.com>
13793
13794         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
13795         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
13796         (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps):
13797         Revert last two changes that broke the freeze.
13798
13799 2006-07-12  Wim Taymans  <wim@fluendo.com>
13800
13801         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
13802         basesink calculates silence sample correctly for us.
13803
13804 2006-07-12  Wim Taymans  <wim@fluendo.com>
13805
13806         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
13807         (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps):
13808         Calculate correct silence samples so we don't fill our ringbuffer
13809         with noise.
13810
13811 2006-07-12  Edward Hervey  <edward@fluendo.com>
13812
13813         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
13814         (gst_vorbis_dec_reset), (vorbis_dec_sink_event),
13815         (vorbis_handle_comment_packet), (vorbis_handle_type_packet):
13816         * ext/vorbis/vorbisdec.h:
13817         Delay sending events (newsegment, tags) until the decoder is properly
13818         initialized.
13819         Fixes #347295
13820
13821 2006-07-11  Jan Schmidt  <thaytan@mad.scientist.com>
13822
13823         * tests/check/elements/audioconvert.c: (get_float_mc_caps),
13824         (get_int_mc_caps), (GST_START_TEST), (audioconvert_suite):
13825           Patch from #347221 adding a test for audioconvert
13826           channel remappings.
13827
13828 2006-07-11  Tim-Philipp Müller  <tim at centricular dot net>
13829
13830         * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
13831         (gst_ssa_parse_parse_line):
13832           Don't include the terminating NUL in the buffer size,
13833           it's only there for extra paranoia (would add random
13834           '*' characters at the end of each subtitle since the
13835           terminator itself is not valid UTF-8 technically).
13836           Also fix indenting after boilerplate macro.
13837
13838 2006-07-10  Tim-Philipp Müller  <tim at centricular dot net>
13839
13840         * gst/playback/gstdecodebin.c: (close_pad_link):
13841           Also emit 'unknown-type' signal (which should really be
13842           called unhandled-type) if we found potential decoders/demuxers
13843           in the registry but none of them worked in the end (as in the
13844           case where the plugins don't exist any longer but are still
13845           listed in the registry). Fixes #329798.
13846
13847 2006-07-08  Andy Wingo  <wingo@pobox.com>
13848
13849         * theoraparse.c (theora_parse_push_buffer)
13850         (theora_parse_drain_queue_prematurely, theora_parse_drain_queue):
13851         Add some more debugging. Fix granulepos reconstruction in the face
13852         of discontinuities.
13853
13854 2006-07-06  Wim Taymans  <wim@fluendo.com>
13855
13856         * gst-libs/gst/audio/gstbaseaudiosink.c:
13857         (gst_base_audio_sink_class_init),
13858         (gst_base_audio_sink_provide_clock):
13859         Use gobject_class instead of G_OBJECT_CLASS (klass)
13860
13861         * gst-libs/gst/audio/gstbaseaudiosrc.c:
13862         (gst_base_audio_src_class_init), (gst_base_audio_src_init),
13863         (gst_base_audio_src_set_clock), (gst_base_audio_src_provide_clock),
13864         (gst_base_audio_src_get_time),
13865         (gst_base_audio_src_check_get_range), (gst_base_audio_src_create),
13866         (gst_base_audio_src_create_ringbuffer):
13867         Fix latency and buffer-time constants and properties ala basesink.
13868         Implement pull based scheduling. Fixes #346527.
13869         Set default blocksize in GstBaseSrc to 0, we default to pushing out
13870         one segment.
13871         Refuse slaving to another clock instead of silently not working.
13872         Only provide a clock when we are actually able to do so.
13873         Various small cleanups and compiler hints.
13874
13875 2006-07-06  Tim-Philipp Müller  <tim at centricular dot net>
13876
13877         Patch by: Lutz Mueller <lutz at topfrose de>
13878
13879         * gst/typefind/gsttypefindfunctions.c: (html_type_find),
13880         (plugin_init):
13881           Add typefinding for text/html (#346581).
13882
13883 2006-07-06  Tim-Philipp Müller  <tim at centricular dot net>
13884
13885         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
13886         (xml_check_first_element), (xml_type_find), (smil_type_find):
13887           Fix SMIL typefinding, make xml_check_first_element() more
13888           useful.
13889
13890 2006-07-06  Tim-Philipp Müller  <tim at centricular dot net>
13891
13892         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
13893         (gst_play_base_bin_finalize), (decodebin_element_added_cb),
13894         (decodebin_element_removed_cb), (gst_play_base_bin_set_property):
13895         * gst/playback/gstplaybasebin.h:
13896           Protect list of elements with a subtitle-encoding property and
13897           the subtitle encoding member itself with a lock of their own
13898           instead of using the object lock. This prevents a dead-lock in
13899           the element-remove callback in some circumstances when shutting
13900           down playbin.
13901
13902 2006-07-05  Sebastien Moutte  <sebastien@moutte.net>
13903
13904         * win32/common/libgsttag.def:
13905         Export some new functions.
13906         * win32/vs6/libgstogg.dsp:
13907         Add a link to libgsttag-0.10.lib.
13908
13909 2006-07-04  Tim-Philipp Müller  <tim at centricular dot net>
13910
13911         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
13912           Some const-ification.
13913
13914 2006-07-04  Wim Taymans  <wim@fluendo.com>
13915
13916         * gst/playback/gstplaybasebin.c: (is_stream), (gen_source_element):
13917         Improve checking if we are dealing with a stream. Added some
13918         more uris that need buffering.
13919
13920 2006-07-03  Edward Hervey  <edward@fluendo.com>
13921
13922         * ext/vorbis/vorbisdec.c: (vorbis_do_clip):
13923         Remove unused variable.
13924
13925 2006-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
13926
13927         * Makefile.am:
13928           include lcov.mak
13929         * configure.ac:
13930           add GCOV_LIBS to GST_LIBS
13931
13932 2006-07-02  Tim-Philipp Müller  <tim at centricular dot net>
13933
13934         Patch by: Michael Sheldon  <webmaster at mikeasoft com>
13935
13936         * ext/alsa/gstalsasrc.c:
13937           Add 32 bps to template caps and increase channels range
13938           from [1,2] to [1,MAX]. See #346326.
13939
13940 2006-06-30  Tim-Philipp Müller  <tim at centricular dot net>
13941
13942         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
13943           Recognise 'WMVA' video codec fourcc (#345879).
13944           
13945 2006-06-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
13946          
13947         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:     
13948           Fixed nasty memory leak
13949
13950 2006-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
13951
13952         * gst/tcp/gsttcp.c: (gst_tcp_read_buffer),
13953         (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps):
13954           fix logging
13955
13956 2006-06-23  Jan Schmidt  <thaytan@mad.scientist.com>
13957
13958         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
13959         (gst_decode_bin_init), (gst_decode_bin_finalize), (add_fakesink),
13960         (remove_fakesink), (pad_probe), (gst_decode_bin_change_state):
13961         Protect remove_fakesink using a mutex, so that we don't try and
13962         remove the fakesink simultaneously from multiple threads.
13963
13964         When going from READY to PAUSED, restore the fakesink, so that
13965         it is there when decodebin gets reused.
13966
13967 2006-06-23  Tim-Philipp Müller  <tim at centricular dot net>
13968
13969         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
13970         * gst-libs/gst/rtp/gstbasertpdepayload.c:
13971         * gst-libs/gst/rtp/gstbasertppayload.c:
13972         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
13973         * gst/tcp/gstmultifdsink.c:
13974         * gst/tcp/gsttcpclientsink.c:
13975         * gst/tcp/gsttcpclientsrc.c:
13976         * gst/tcp/gsttcpserversink.c:
13977         * gst/tcp/gsttcpserversrc.c:
13978         * gst/videorate/gstvideorate.c:
13979         * gst/videotestsrc/gstvideotestsrc.c:
13980         * sys/v4l/gstv4ljpegsrc.c:
13981         * sys/v4l/gstv4lmjpegsink.c:
13982         * sys/v4l/gstv4lsrc.c:
13983         * tests/examples/seek/scrubby.c:
13984         * tests/examples/seek/seek.c:
13985           Use GST_DEBUG_CATEGORY_STATIC where possible (#342503).
13986
13987 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
13988
13989         * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum):
13990           Second field in GEnumValue shouldn't be a description,
13991           but a stringified version of the enum value.
13992
13993 2006-06-22  Wim Taymans  <wim@fluendo.com>
13994
13995         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
13996         (gst_ximage_buffer_free), (gst_ximagesink_ximage_put),
13997         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
13998         Avoid type checking in buffer casts.
13999         Avoid caps copy in buffer_alloc when we can.
14000         Use pad_peer_accept.
14001
14002 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
14003
14004         * gst-libs/gst/tag/tag.h:
14005           Oops, make that 'Since: 0.10.9'.
14006
14007 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
14008
14009         * docs/libs/gst-plugins-base-libs-sections.txt:
14010         * gst-libs/gst/tag/tag.h:
14011         * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum),
14012         (gst_tag_image_type_get_type):
14013           API: add GstTagImageType enum to describe images contained
14014           in image tags (#345641).
14015
14016 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
14017
14018         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
14019           Fix warnings with gst-inspect: "buffers-min" property
14020           should be of G_TYPE_INT and not G_TYPE_INT64. Also fix
14021           typo in property description.
14022
14023 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
14024
14025         Patch by: Cody Russell <bratsche at gnome org>
14026
14027         * gst/audioresample/gstaudioresample.c:
14028         (gst_audioresample_class_init):
14029         * gst/playback/gststreamselector.c:
14030         (gst_stream_selector_class_init):
14031         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
14032         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
14033         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
14034         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_class_init):
14035         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_class_init):
14036         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_class_init):
14037         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init):
14038         * gst/videotestsrc/gstvideotestsrc.c:
14039         (gst_video_test_src_class_init):
14040         * gst/volume/gstvolume.c: (gst_volume_class_init):
14041           Avoid unnecessary class cast check in class_init
14042           functions (#337747).
14043
14044 2006-06-21  Tim-Philipp Müller  <tim at centricular dot net>
14045
14046         * ext/pango/gsttextoverlay.c: (gst_text_overlay_make_utf8),
14047         (gst_text_overlay_video_chain):
14048           g_markup_escape_text() REALLY doesn't like non-UTF8 input
14049           and doesn't validate its input either (and neither did
14050           textoverlay it seems). Let's do that then and fix #345206.
14051
14052 2006-06-19  Wim Taymans  <wim@fluendo.com>
14053
14054         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
14055         (gst_unit_type_get_type), (gst_multi_fd_sink_class_init),
14056         (gst_multi_fd_sink_init), (gst_multi_fd_sink_add_full),
14057         (gst_multi_fd_sink_add), (gst_multi_fd_sink_handle_client_read),
14058         (find_syncframe), (find_limits), (assign_value),
14059         (count_burst_unit), (gst_multi_fd_sink_new_client),
14060         (gst_multi_fd_sink_handle_client_write),
14061         (gst_multi_fd_sink_queue_buffer), (gst_multi_fd_sink_render),
14062         (gst_multi_fd_sink_set_property), (gst_multi_fd_sink_get_property),
14063         (gst_multi_fd_sink_change_state):
14064         * gst/tcp/gstmultifdsink.h:
14065         Added shiny new burst-on-connect methods.
14066         Add properties to control the minimal amount of data queued.
14067         Small cleanups.
14068         API: bytes-min property
14069         API: time-min property
14070         API: buffers-min property
14071         API: burst-unit property
14072         API: burst-value property
14073         API: add-full signal
14074
14075         * gst/tcp/gsttcp-marshal.list:
14076         Added new marshaller code for the new signal.
14077
14078         * tests/check/elements/multifdsink.c: (GST_START_TEST),
14079         (multifdsink_suite):
14080         Added testcases for new burst methods.
14081
14082 2006-06-19  Edward Hervey  <edward@fluendo.com>
14083
14084         * ext/theora/theoradec.c: (clip_buffer), (theora_dec_push):
14085         Implement clipping for accurate seeking.
14086         Closes #345225
14087
14088 2006-06-19  Wim Taymans  <wim@fluendo.com>
14089
14090         Patch by: Philip Jaegenstedt <philip at lysator dot liu dot se>
14091
14092         * gst/videoscale/gstvideoscale.c: (gst_video_scale_prepare_size),
14093         (gst_video_scale_transform):
14094         Make videoscale support RGBA, ARGB, BGRA and ABGR. Fixes #345131
14095
14096 2006-06-17  Tim-Philipp Müller  <tim at centricular dot net>
14097
14098         * configure.ac:
14099           Fix --disable-external (can't set conditionals conditionally,
14100           #343602).
14101
14102 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
14103
14104         * tests/check/elements/audioresample.c: (test_reuse),
14105         (audioresample_suite):
14106           Add test case for bug #342789 fixed below.
14107
14108 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
14109
14110         * gst/audioresample/gstaudioresample.c:
14111         (gst_audioresample_class_init), (gst_audioresample_init),
14112         (audioresample_start), (audioresample_stop),
14113         (gst_audioresample_set_property), (gst_audioresample_get_property):
14114           Implement GstBaseTransform::start and ::stop so that audioresample
14115           can clear its internal state properly and be reused instead of
14116           causing non-negotiated errors with playbin under some circumstances
14117           (#342789).
14118
14119         * tests/check/elements/audioresample.c: (setup_audioresample),
14120         (cleanup_audioresample):
14121           Need to set element state here so that ::start and ::stop are
14122           called.
14123
14124 2006-06-16  Wim Taymans  <wim@fluendo.com>
14125
14126         Patch by: Young-Ho Cha <ganadist at chollian dot net>
14127
14128         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_vids):
14129         Parse extra data better, apparently it's right behind
14130         the normal strf header size. Fixes #343500.
14131
14132 2006-06-16  Wim Taymans  <wim@fluendo.com>
14133
14134         * ext/alsa/gstalsasink.c: (set_hwparams):
14135         If we fail to set the buffer_time and period_time alsa
14136         parameters, post a warning and leave alsa select a 
14137         default instead of failing. Fixes #342085
14138
14139 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
14140
14141         * docs/libs/gst-plugins-base-libs-sections.txt:
14142         * gst-libs/gst/cdda/gstcddabasesrc.h:
14143           Remove GST_CDDA_TAG_TRACK_TAGS again, it is #ifdef 0'ed
14144           out in the header file and shouldn't be listed in the docs.
14145
14146         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
14147           Must dereference pointer to fourcc in the debug statement.
14148
14149 2006-06-16  Stefan Kost  <ensonic@users.sf.net>
14150
14151         * docs/libs/Makefile.am:
14152         * docs/libs/gst-plugins-base-libs-docs.sgml:
14153         * docs/libs/gst-plugins-base-libs-sections.txt:
14154         * docs/libs/gst-plugins-base-libs.types:
14155         add remaining symbols into correct setions
14156         
14157         * gst-libs/gst/audio/gstringbuffer.c:
14158         fix incomplete docs
14159         
14160         * gst-libs/gst/audio/gstringbuffer.h:
14161         comment out not yet implemented function
14162         
14163         
14164         * gst-libs/gst/floatcast/floatcast.h:
14165         * gst-libs/gst/netbuffer/gstnetbuffer.c:
14166         add short descriptions
14167         
14168         
14169         * gst-libs/gst/interfaces/propertyprobe.c:
14170         fix return value docs   
14171         
14172         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
14173         simplify debug logging
14174         
14175         * gst-libs/gst/riff/riff-read.h:
14176         sync function prototype and docs
14177         
14178         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
14179         remove left over symbol
14180
14181 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
14182
14183         * autogen.sh:
14184         * configure.ac:
14185         * docs/Makefile.am:
14186           Use GST_PLUGIN_DOCS macro in configure.ac, add
14187           --enable-plugin-docs default to autogen.sh and use
14188           ENABLE_PLUGIN_DOCS conditional in Makefile.am (#344039).
14189
14190 2006-06-15  Wim Taymans  <wim@fluendo.com>
14191
14192         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
14193         (gst_ogg_demux_activate_chain), (gst_ogg_demux_combine_flows),
14194         (gst_ogg_demux_loop):
14195         Combine GstFlowReturn from the source pads to give a
14196         meaningfull result to the upstream peer or to stop the
14197         processing task in case of errors.
14198
14199 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
14200
14201         * gst/playback/gststreaminfo.c: (cb_probe):
14202           Try GST_TAG_CODEC as fallback when extracting the
14203           codec name; more debug info.
14204
14205 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
14206
14207         * ext/ogg/Makefile.am:
14208         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
14209           Extract language tags from ogm subtitle streams, so that
14210           the subtitle menu choices are labelled correctly in
14211           Totem (fixes #344708).
14212
14213 2006-06-14  Wim Taymans  <wim@fluendo.com>
14214
14215         Patch by: Alessandro Decina <alessandro at nnva dot org>
14216
14217         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_clear),
14218         (gst_ogg_mux_release_pad), (gst_ogg_mux_get_headers),
14219         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_init_collectpads),
14220         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
14221         Fix various leaks. Fixes #343699.
14222         Add x-smoke mime type.
14223
14224 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
14225
14226         * gst-libs/gst/riff/riff-ids.h:
14227           Add IDs for 'bext' chunks (see #343837).
14228
14229 2006-06-12  Tim-Philipp Müller  <tim at centricular dot net>
14230
14231         Patch by: Young-Ho Cha  <ganadist at chollian net>
14232
14233         * gst/subparse/samiparse.c: (sami_context_pop_state),
14234         (handle_start_font), (end_sami_element):
14235           Honour font face tags in SAMI subtitles (#344503).
14236
14237 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
14238
14239         * po/POTFILES.in:
14240           add missing files containing translatable strings
14241
14242 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
14243
14244         * docs/libs/tmpl/.cvsignore:
14245           we don't want those *.sgml files in CVS either
14246
14247 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
14248
14249         * docs/libs/.cvsignore:
14250         * tests/check/elements/.cvsignore:
14251         * tests/check/libs/.cvsignore:
14252           ignore more
14253
14254 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
14255
14256         * docs/libs/Makefile.am:
14257           also commiting the changed Makefile.am (added more libs to the
14258           doc-build)
14259
14260 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
14261
14262         * docs/libs/gst-plugins-base-libs-docs.sgml:
14263         * docs/libs/gst-plugins-base-libs-sections.txt:
14264         * docs/libs/gst-plugins-base-libs.types:
14265           first batch of reordering things, add index & hierarchy
14266
14267 2006-06-11  Thomas Vander Stichele  <thomas at apestaart dot org>
14268
14269         * configure.ac:
14270           use GST_PKG_CHECK_MODULES, cleans up output
14271
14272 2006-06-10  Tim-Philipp Müller  <tim at centricular dot net>
14273
14274         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
14275           Add support for burn:// URIs (#343385); const-ify things a bit,
14276           use G_N_ELEMENTS instead of hard-coded array size.
14277
14278 2006-06-10  Tim-Philipp Müller  <tim at centricular dot net>
14279
14280         Patch by: Young-Ho Cha  <ganadist at chollian net>
14281
14282         * gst/subparse/samiparse.c: (fix_invalid_entities), (parse_sami):
14283           Fix up broken entities before passing them to libxml *sigh*.
14284           (#343303).
14285           
14286 2006-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
14287
14288         * configure.ac:
14289           back to TRUNK
14290
14291 === release 0.10.8 ===
14292
14293 2006-06-09  Thomas Vander Stichele <thomas at apestaart dot org>
14294
14295         * configure.ac:
14296           releasing 0.10.8, "Moar gij ziet mij nie"
14297
14298 2006-06-07  Thomas Vander Stichele  <thomas at apestaart dot org>
14299
14300         * configure.ac:
14301         * po/af.po:
14302         * po/az.po:
14303         * po/cs.po:
14304         * po/en_GB.po:
14305         * po/hu.po:
14306         * po/it.po:
14307         * po/nb.po:
14308         * po/nl.po:
14309         * po/or.po:
14310         * po/sq.po:
14311         * po/sr.po:
14312         * po/sv.po:
14313         * po/uk.po:
14314         * po/vi.po:
14315         * win32/common/config.h:
14316           0.10.7.2 prerelease
14317
14318 2006-06-07  Thomas Vander Stichele  <thomas at apestaart dot org>
14319
14320         * docs/libs/tmpl/gstaudio.sgml:
14321         * docs/libs/tmpl/gstcolorbalance.sgml:
14322         * docs/libs/tmpl/gstmixer.sgml:
14323         * docs/libs/tmpl/gstringbuffer.sgml:
14324         * docs/libs/tmpl/gsttuner.sgml:
14325         * docs/libs/tmpl/gstxoverlay.sgml:
14326         * gst-libs/gst/audio/audio.c:
14327         * gst-libs/gst/audio/gstringbuffer.c:
14328         * gst-libs/gst/interfaces/colorbalance.c:
14329         * gst-libs/gst/interfaces/mixer.c:
14330         * gst-libs/gst/interfaces/tuner.c:
14331         * gst-libs/gst/interfaces/xoverlay.c:
14332           move last template doc snippets to source code and delete them
14333
14334 2006-06-06  Michael Smith  <msmith@fluendo.com>
14335
14336         * ext/theora/theoraparse.c: (theora_parse_drain_queue_prematurely),
14337         (theora_parse_drain_queue):
14338           Mark DELTA_UNIT on non-keyframes.
14339
14340 2006-06-03  Jan Schmidt  <thaytan@mad.scientist.com>
14341
14342         * gst-libs/gst/audio/gstbaseaudiosink.c:
14343         (gst_base_audio_sink_class_init), (gst_base_audio_sink_setcaps):
14344         * gst-libs/gst/audio/gstbaseaudiosink.h:
14345         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps),
14346         (gst_ring_buffer_samples_done):
14347         * gst-libs/gst/audio/gstringbuffer.h:
14348         Document better the fact that latency_time and buffer_time are values
14349         stored in microseconds, and not the usual GStreamer nanoseconds.
14350         Change the variables (compatibly) that store them from GstClockTime 
14351         to guint64 to make it more clear that they're not storing clock times.
14352         Also, remove the bogus property description that says the user can
14353         specify -1 to get the default value, since that's never been the case.
14354
14355         When computing the default segment size for the ring buffer, make it
14356         an integer number of samples.
14357
14358         When the sub-class indicates a delay greater than the number of
14359         samples we've written return 0 from the audio sink get_time method.
14360
14361 2006-06-02  Michael Smith  <msmith@fluendo.com>
14362
14363         * tests/check/elements/audioconvert.c: (set_channel_positions),
14364         (get_float_mc_caps), (get_int_mc_caps):
14365         * tests/check/elements/audioresample.c:
14366         * tests/check/elements/audiotestsrc.c: (GST_START_TEST):
14367         * tests/check/elements/videorate.c:
14368         * tests/check/elements/videotestsrc.c: (GST_START_TEST):
14369         * tests/check/elements/volume.c:
14370         * tests/check/elements/vorbisdec.c:
14371         * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
14372           Don't busy-wait in tests; this was causing test timeouts very
14373           frequently when running under valgrind.
14374
14375 2006-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
14376
14377         * gst/tcp/README:
14378         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_init),
14379         (gst_multi_fd_sink_remove_client_link),
14380         (gst_multi_fd_sink_client_queue_caps),
14381         (gst_multi_fd_sink_client_queue_buffer),
14382         (gst_multi_fd_sink_handle_client_write),
14383         (gst_multi_fd_sink_render):
14384         * gst/tcp/gstmultifdsink.h:
14385           make multifdsink properly deal with streamheader:
14386           - streamheader is taken from caps
14387           - buffers marked with IN_CAPS are not sent
14388           - streamheaders are sent, on connection, from the caps of the
14389             buffer where the client gets positioned to
14390           - further streamheader changes are done every time the client
14391             will receive a buffer with different caps
14392         * tests/check/elements/multifdsink.c: (GST_START_TEST),
14393         (gst_multifdsink_create_streamheader):
14394           add tests for this
14395
14396 2006-06-02  Michael Smith  <msmith@fluendo.com>
14397
14398         * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
14399           Reinstate limit on channel count. Vorbis does not define the meaning
14400           of > 6 channels, so they're just independent channels. Gstreamer
14401           currently has no mechanism to represent N independent channels.
14402
14403 2006-06-02  Michael Smith  <msmith@fluendo.com>
14404
14405         * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
14406           Don't arbitrarily restrict channel counts and rate in vorbis.
14407           In terms of effects likely on real-world files, this fixes 96kHz
14408           playback of vorbis.
14409
14410 2006-06-02  Michael Smith  <msmith@fluendo.com>
14411
14412         * gst/audioconvert/audioconvert.c: (float):
14413           More correct float->int conversion.
14414
14415 2006-06-02  Michael Smith  <msmith@fluendo.com>
14416
14417         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_perform_seek):
14418           Don't accidently send GST_CLOCK_TIME_NONE as a new segment start
14419           value. Fixes g-critical on trying to play back ogg containing
14420           unknown codec.
14421
14422 2006-06-02  Wim Taymans  <wim@fluendo.com>
14423
14424         * gst/playback/gstplaybasebin.c: (group_create), (group_commit),
14425         (setup_source):
14426         * gst/playback/gstplaybasebin.h:
14427         Make the subtitle detection work from any thread so we don't
14428         deadlock. Fixes #343397.
14429
14430 2006-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
14431
14432         * gst/volume/Makefile.am:
14433           Seriously, it's not *that* hard to get compilation right.  Even
14434           a drunk can do it ! Add LIBOIL CFLAGS and LIBS
14435
14436 2006-06-01  Stefan Kost  <ensonic@users.sf.net>
14437
14438         * gst/volume/gstvolume.c: (volume_choose_func),
14439         (volume_update_real_volume), (gst_volume_class_init),
14440         (gst_volume_init), (volume_process_float), (volume_process_int16),
14441         (volume_process_int16_clamp), (volume_set_caps),
14442         (volume_transform_ip), (plugin_init):
14443         * gst/volume/gstvolume.h:
14444         rewrite the passthrough check, split _int16 and _int16_clamp, fix
14445         another property desc., remove unused param from process function
14446         
14447         * tests/check/elements/volume.c: (volume_suite):
14448         reactivate the passthrough test
14449
14450 2006-06-01  Stefan Kost  <ensonic@users.sf.net>
14451
14452         * ext/alsa/gstalsamixerelement.h:
14453         * ext/alsa/gstalsamixeroptions.h:
14454         * ext/alsa/gstalsamixertrack.h:
14455         * ext/gnomevfs/gstgnomevfssink.h:
14456         * ext/gnomevfs/gstgnomevfssrc.h:
14457         * ext/theora/gsttheoradec.h:
14458         * ext/theora/gsttheoraenc.h:
14459         * ext/theora/gsttheoraparse.h:
14460         * ext/vorbis/vorbisparse.h:
14461         * gst-libs/gst/audio/gstaudioclock.h:
14462         * gst-libs/gst/audio/gstaudiofilter.h:
14463         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
14464         * gst/audioconvert/gstaudioconvert.h:
14465         * gst/audioresample/gstaudioresample.h:
14466         * gst/audiotestsrc/gstaudiotestsrc.h:
14467         * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
14468         * gst/playback/gststreamselector.h:
14469         * gst/tcp/gstmultifdsink.h:
14470         * gst/tcp/gsttcpclientsink.h:
14471         * gst/tcp/gsttcpclientsrc.h:
14472         * gst/tcp/gsttcpserversink.h:
14473         * gst/tcp/gsttcpserversrc.h:
14474         * gst/videorate/gstvideorate.h:
14475         * gst/videoscale/gstvideoscale.h:
14476         * gst/videotestsrc/gstvideotestsrc.h:
14477         * gst/volume/gstvolume.h:
14478         * sys/v4l/gstv4ljpegsrc.h:
14479         * sys/v4l/gstv4lmjpegsink.h:
14480         * sys/v4l/gstv4lmjpegsrc.h:
14481         * sys/v4l/gstv4lsrc.h:
14482         * sys/ximage/ximagesink.h:
14483         * sys/xvimage/xvimagesink.h:
14484         * tests/old/testsuite/alsa/sinesrc.h:
14485         Fix more gobject macros: obj<->klass, GstXXX<->GstXXXClass
14486
14487 2006-05-31  Wim Taymans  <wim@fluendo.com>
14488
14489         * ext/libvisual/visual.c: (gst_visual_reset),
14490         (gst_visual_sink_setcaps), (gst_visual_sink_event),
14491         (gst_visual_src_event), (get_buffer), (gst_visual_chain):
14492         Handle DISCONT.
14493         Use running time before doing QoS.
14494         Handle mono too.
14495
14496 2006-05-31  Thomas Vander Stichele  <thomas at apestaart dot org>
14497
14498         * docs/libs/Makefile.am:
14499           set a magic variable to indicate we know the docs are incomplete
14500
14501 2006-05-30  Sebastien Moutte  <sebastien@moutte.net>
14502
14503         * win32/common/libgstvideo.def:
14504           export gst_video_calculate_display_ratio
14505         * win32/vs6/libgstvideoscale.dsp:
14506           add link to libgstvideo-0.10.lib
14507
14508 2006-05-30  Tim-Philipp Müller  <tim at centricular dot net>
14509
14510         * gst/playback/gstplaybasebin.c: (gen_source_element):
14511           Throw a more comprehensible error for rtsp:// URIs (rather
14512           than erroring out with a negotiation error later on) until
14513           we fix playbin to handle rtspsrc etc.
14514
14515 2006-05-30  Wim Taymans  <wim@fluendo.com>
14516
14517         * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event),
14518         (gst_text_overlay_text_event):
14519         Added some FIXMEs.
14520
14521 2006-05-30  Wim Taymans  <wim@fluendo.com>
14522
14523         * gst/adder/gstadder.c: (gst_adder_class_init), (gst_adder_init),
14524         (gst_adder_request_new_pad), (gst_adder_release_pad):
14525         * gst/adder/gstadder.h:
14526         Implement release_request_pad.
14527         Make padcounter atomic.
14528
14529         * tests/check/elements/adder.c: (GST_START_TEST), (adder_suite):
14530         Added check for release_pad in adder.
14531
14532 2006-05-30  Wim Taymans  <wim@fluendo.com>
14533
14534         * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream):
14535         Fix build again.
14536
14537 2006-05-30  Thomas Vander Stichele  <thomas at apestaart dot org>
14538
14539         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
14540         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
14541         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
14542         (gst_ogg_pad_submit_page), (gst_ogg_chain_new_stream),
14543         (gst_ogg_demux_seek), (gst_ogg_demux_get_data),
14544         (gst_ogg_demux_get_next_page), (gst_ogg_demux_do_seek),
14545         (gst_ogg_demux_bisect_forward_serialno),
14546         (gst_ogg_demux_read_chain), (gst_ogg_demux_find_chains),
14547         (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
14548           add more debugging
14549           clean up printf formats for granulepos and serialno
14550
14551 2006-05-30  Michael Smith  <msmith@fluendo.com>
14552
14553         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
14554         (gst_vorbis_enc_class_init), (gst_vorbis_enc_dispose),
14555         (gst_vorbis_enc_generate_sink_caps), (gst_vorbis_enc_sink_getcaps),
14556         (gst_vorbis_enc_init), (gst_vorbis_enc_buffer_from_header_packet),
14557         (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
14558         * ext/vorbis/vorbisenc.h:
14559           Multi-channel caps negotiation, so we can do proper multichannel
14560           vorbis encoding, negotiated through audioconvert.
14561
14562 2006-05-30  Wim Taymans  <wim@fluendo.com>
14563
14564         * tests/check/elements/adder.c: (test_event_message_received),
14565         (test_play_twice_message_received), (GST_START_TEST),
14566         (adder_suite):
14567         Added check to show that #339935 is fixed with ongoing
14568         adder and collectpads fixes.
14569
14570 2006-05-29  Wim Taymans  <wim@fluendo.com>
14571
14572         * gst/adder/gstadder.c: (gst_adder_request_new_pad):
14573         Don't leak pad name.
14574
14575 2006-05-29  Wim Taymans  <wim@fluendo.com>
14576
14577         * gst/adder/gstadder.c: (gst_adder_query_duration),
14578         (forward_event_func), (forward_event), (gst_adder_src_event):
14579         Fix adder seeking.
14580         Make query/seeking code threadsafe.
14581
14582         * tests/check/Makefile.am:
14583         * tests/check/elements/adder.c: (test_event_message_received),
14584         (GST_START_TEST), (test_play_twice_message_received):
14585         Fix adder test case.
14586
14587 2006-05-29  Tim-Philipp Müller  <tim at centricular dot net>
14588
14589         Patch by: Young-Ho Cha  <ganadist at chollian net>
14590
14591         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
14592         (gst_play_base_bin_init), (gst_play_base_bin_dispose),
14593         (set_encoding_element), (decodebin_element_added_cb),
14594         (decodebin_element_removed_cb), (setup_subtitle), (setup_source),
14595         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
14596         * gst/playback/gstplaybasebin.h:
14597           Add 'subtitle-encoding' property to playbin, so applications can
14598           force a subtitle encoding for non-UTF8 subtitles (#342268).
14599
14600         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init),
14601         (gst_sub_parse_set_property):
14602           Rename recently-added 'encoding' property to 'subtitle-encoding'
14603           (so it can be proxied by playbin/decodebin in a generic way
14604           with less danger of false positives).
14605
14606 2006-05-29  Michael Smith  <msmith@fluendo.com>
14607
14608         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
14609         (append_with_other_format), (set_structure_widths),
14610         (gst_audio_convert_transform_caps):
14611           Patch from #341562: give more specific audio caps in get_caps, so
14612           that basetransform  can make better decisions on what caps to
14613           negotiate.
14614
14615 2006-05-28  Stefan Kost  <ensonic@users.sf.net>
14616
14617         * tests/check/elements/volume.c:
14618         make it compile again
14619
14620 2006-05-28  Stefan Kost  <ensonic@users.sf.net>
14621
14622         * tests/check/elements/volume.c: (volume_suite):
14623         disable test until #343196 gets resolved
14624
14625 2006-05-28  Stefan Kost  <ensonic@users.sf.net>
14626
14627         * gst/adder/gstadder.c: (gst_adder_get_type):
14628         Make it easier to copy&paste
14629         
14630         * gst/volume/Makefile.am:
14631         * gst/volume/gstvolume.c: (volume_update_real_volume),
14632         (gst_volume_set_volume), (gst_volume_set_mute),
14633         (gst_volume_class_init), (volume_process_int16), (volume_set_caps),
14634         (volume_transform_ip), (volume_update_mute),
14635         (volume_update_volume):
14636         * gst/volume/gstvolume.h:
14637         Add own debug category, move duplicate code to helper function, fix
14638         property texts, add more comments and prepare ffor liboil-goodness
14639         
14640         * tests/check/Makefile.am:
14641         * tests/check/elements/volume.c: (GST_START_TEST), (volume_suite):
14642         add test for mute and passtrough case, be a bit more verbose to track
14643         failure
14644         
14645         * tests/check/generic/states.c: (GST_START_TEST):
14646         catch elements that fail to instantiate
14647
14648 2006-05-28  Edward Hervey  <edward@fluendo.com>
14649
14650         * tests/check/pipelines/simple-launch-lines.c:
14651         * tests/check/pipelines/theoraenc.c:
14652         * tests/check/pipelines/vorbisenc.c:
14653         Comment out tests using parse_launch() if core was built without
14654         parsing capabilities.
14655
14656 2006-05-27  Edward Hervey  <edward@fluendo.com>
14657
14658         * tests/check/Makefile.am:
14659         Extra bonus points for whoever explains to ensonic that you are meant
14660         to test unit tests thoroughly before commiting them, especially if
14661         you know it's going to break.
14662         De-activated element/adder tests.
14663
14664 2006-05-27  Edward Hervey  <edward@fluendo.com>
14665
14666         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
14667         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps):
14668         Marking caps conversion issues as GST_WARNING is way too verbose,
14669         Moving them to GST_LOG.
14670
14671 2006-05-27  Tim-Philipp Müller  <tim at centricular dot net>
14672
14673         * README:
14674           Replace current README (containing the release notes from
14675           some 0.9.x version) with a proper README taken from the core.
14676
14677 2006-05-26  Wim Taymans  <wim@fluendo.com>
14678
14679         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
14680         (vorbis_dec_src_event), (vorbis_dec_sink_event), (vorbis_do_clip),
14681         (vorbis_dec_push), (vorbis_handle_data_packet), (vorbis_dec_chain),
14682         (vorbis_dec_change_state):
14683         Small cleanups.
14684         Add some FIXMEs
14685         Clip output samples to segment boundaries.
14686
14687 2006-05-26  Jan Schmidt  <thaytan@mad.scientist.com>
14688
14689         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
14690         (gst_ximagesink_xcontext_get), (gst_ximagesink_show_frame):
14691         Improve the errors produced on bad output, including some human
14692         readable description strings.
14693         Handle the (theoretical for ximagesink) case where the XServer 
14694         has a different idea about the size required for a particular 
14695         frame and gives us too small a memory allocation.
14696
14697 2006-05-26  Jan Schmidt  <thaytan@mad.scientist.com>
14698
14699         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
14700         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
14701         (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
14702         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
14703         Improve the errors produced on bad output, including some human 
14704         readable description strings.
14705         Handle RGB Xv formats properly by transforming them into our 
14706         big-endian caps description.
14707         Use gst_caps_truncate to ensure that we never try and choose a
14708         non-fixed caps in buffer_alloc.
14709         Handle the case where the XServer has a different idea about the size
14710         required for a particular frame and gives us too small a memory
14711         allocation.
14712         Use -1 to indicate 'no image format', because 0 is a valid XServer
14713         image format number.
14714         Put RGB Xv formats at the end of the caps, so that we always prefer
14715         YUV format frames.
14716         Iterate the available Xv Encodings to determine the maximum width and
14717         height, and then return that in our caps.
14718         (Closes #315312, #337544)
14719
14720 2006-05-25  Jan Schmidt  <thaytan@mad.scientist.com>
14721
14722         * gst/playback/gstdecodebin.c: (remove_fakesink), (pad_probe):
14723         When there is only one unfinished pad and it receives an event that
14724         doesn't match our requirements, we need to set alldone=FALSE so that
14725         the fakesink is not removed yet.
14726
14727 2006-05-25  Tim-Philipp Müller  <tim at centricular dot net>
14728
14729         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
14730           Use gst_type_find_helper_for_buffer() to find the type
14731           of stream from the first packet.
14732
14733         * configure.ac:
14734           Bump requirements to core CVS (needed for vorbis
14735           typefinding to work).
14736
14737 2006-05-24  Edward Hervey  <edward@fluendo.com>
14738
14739         * gst/typefind/gsttypefindfunctions.c: (qt_type_find): 
14740         Added the 'prfl' atom type which MQV (no, it's not a typo) files
14741         contain.  Else they play perfectly fine with qtdemux.
14742
14743 2006-05-23  Stefan Kost  <ensonic@users.sf.net>
14744
14745         * ext/theora/theoradec.c:
14746         * ext/theora/theoraenc.c:
14747         * ext/theora/theoraparse.c: (gst_theora_parse_class_init):
14748         * gst/audiorate/gstaudiorate.c:
14749           make more debug catagories static
14750         
14751         * tests/check/Makefile.am:
14752         * tests/check/elements/adder.c: (message_received),
14753         (test_event_message_received), (GST_START_TEST),
14754         (test_play_twice_message_received), (adder_suite):
14755           added test case for using element twice, extra bonus points for anyone
14756           who can make these test run reliably
14757
14758 2006-05-23  Tim-Philipp Müller  <tim at centricular dot net>
14759
14760         * ext/theora/theoradec.c: (theora_dec_chain):
14761           Make work with time-stamped input buffers that do not
14762           have a granulepos in BUFFER_OFFSET_END (like theora
14763           buffers coming from matroskademux). Fixes #342448.
14764
14765 2006-05-22  Tim-Philipp Müller  <tim at centricular dot net>
14766
14767         Patch by: Peter Kjellerstedt  <pkj at axis com>
14768
14769         * gst/tcp/Makefile.am:
14770           fdstresstest doesn't need Gtk+, fix compilation if 
14771           gtk is not available (#342566).
14772
14773 2006-05-19 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
14774          
14775         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:     
14776           80 line columns
14777           Removed redundant floor()
14778
14779 2006-05-19  Tim-Philipp Müller  <tim at centricular dot net>
14780
14781         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
14782           On second thought, just skip JUNK chunks automatically, so
14783           the caller doesn't have to handle this. Fixes #342345.
14784           Also, return GST_FLOW_UNEXPECTED if we get a short read,
14785           not GST_FLOW_ERROR.
14786
14787 2006-05-19  Tim-Philipp Müller  <tim at centricular dot net>
14788
14789         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
14790           Don't bail out on JUNK chunks with a size of 0 (would try to
14791           pull_range 0 bytes before, which sources don't like too much).
14792           See #342345.
14793
14794 2006-05-19  Jan Schmidt  <thaytan@mad.scientist.com>
14795
14796         * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
14797         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
14798         Use the gstutil scaling function to preserve 64 bits while calculating
14799         output width and height from the display-aspect-ratio. (A continuation
14800         of #341542)
14801
14802 2006-05-19  Jan Schmidt  <thaytan@mad.scientist.com>
14803
14804         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
14805         (gst_xvimagesink_buffer_alloc):
14806         * sys/xvimage/xvimagesink.h:
14807         When performing buffer allocations, remember the caps and image format
14808         we return so that if the same caps are asked for next time we can
14809         return them immediately without doing any caps intersections.
14810
14811 2006-05-18 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
14812          
14813         * gst-libs/gst/rtp/README:
14814           Some new documentation
14815         * gst-libs/gst/rtp/gstrtpbuffer.h:       
14816           Added GST_RTP_PAYLOAD_DYNAMIC_STRING for use by children       
14817         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:     
14818         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:     
14819           New RTP audio base payloader class. Supports frame or sample based
14820           codecs.  Not enabled in Makefile.am until approved.
14821
14822 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
14823
14824         * tests/check/elements/alsa.c: (test_device_property_probe):
14825           Fix test case: don't try to free NULL GValueArray when there
14826           are no devices.
14827
14828 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
14829
14830         * tests/check/Makefile.am:
14831         * tests/check/elements/alsa.c: (test_device_property_probe),
14832         (alsa_suite), (main):
14833           Add simple test that runs a device property probe on alsasrc,
14834           alsasink and alsamixer. Disable valgrind check for now (too
14835           many leaks in libasound, and valgrind ignored my suppressions
14836           additions).
14837
14838 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
14839
14840         * ext/alsa/gstalsadeviceprobe.c: (gst_alsa_get_device_list),
14841         (gst_alsa_device_property_probe_probe_property),
14842         (gst_alsa_device_property_probe_needs_probe),
14843         (gst_alsa_device_property_probe_get_values),
14844         (gst_alsa_type_add_device_property_probe_interface):
14845         * ext/alsa/gstalsadeviceprobe.h:
14846         * ext/alsa/gstalsamixerelement.c:
14847         (gst_alsa_mixer_element_init_interfaces):
14848         * ext/alsa/gstalsamixerelement.h:
14849           Clean up and simplify alsa device probing. Make it actually work
14850           for multiple classes. Don't cache results any longer.
14851
14852         * ext/alsa/gstalsasink.c: (gst_alsasink_init_interfaces),
14853         (gst_alsasink_init):
14854         * ext/alsa/gstalsasrc.c: (gst_alsasrc_dispose),
14855         (gst_alsasrc_interface_supported), (gst_implements_interface_init),
14856         (gst_alsasrc_init_interfaces), (gst_alsasrc_set_property):
14857           Make alsasink and alsasrc implement the GstPropertyProbe interface
14858           for device probing (#342181).
14859           Patch by: Martin Szulecki  <gnomebugzilla at sukimashita com>
14860
14861 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
14862
14863         * gst/subparse/samiparse.c: (handle_start_font):
14864           Don't ignore return value of strtol (++compiler_happiness).
14865
14866 2006-05-17  Tim-Philipp Müller  <tim at centricular dot net>
14867
14868         Patch by: Young-Ho Cha  <ganadist chollian net>
14869
14870         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
14871         (gst_sub_parse_class_init), (gst_sub_parse_init),
14872         (gst_sub_parse_set_property), (gst_sub_parse_get_property),
14873         (convert_encoding):
14874         * gst/subparse/gstsubparse.h:
14875           Add 'encoding' property (#341681).
14876
14877         * gst/subparse/samiparse.c: (characters_sami):
14878           Output is pango markup, so we need to escape text
14879           between tags (#342143).
14880
14881 2006-05-16  Tim-Philipp Müller  <tim at centricular dot net>
14882
14883         * gst-libs/gst/audio/multichannel.c:
14884         (gst_audio_check_channel_positions):
14885           It's okay to have caps with channels=1 and a channel position
14886           different from GST_AUDIO_CHANNEL_POSITION_FRONT_MONO
14887           (deinterleavers might want to keep the position in the caps,
14888           so that they can be re-interleaved again properly later).
14889           Leave check for unexpected 2-channel layouts intact for now.
14890
14891 2006-05-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14892
14893         * gst/tcp/gsttcp.c: (gst_tcp_socket_read):
14894         Return GST_FLOW_UNEXPECTED when we have an eos on the socket so
14895         basesrc can do its job correctly.
14896
14897 2006-05-16  Tim-Philipp Müller  <tim at centricular dot net>
14898
14899         * ext/alsa/Makefile.am:
14900         * ext/alsa/gstalsa.c: (gst_alsa_detect_rates),
14901         (gst_alsa_detect_formats), (get_channel_free_structure),
14902         (caps_add_channel_configuration), (gst_alsa_detect_channels),
14903         (gst_alsa_probe_supported_formats):
14904         * ext/alsa/gstalsa.h:
14905         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
14906           Refactor and improve caps probing code: probe signedness
14907           when we probe the supported formats/widths; set endianness
14908           to the one we actually probed for (ie. cpu endianness).
14909           
14910         * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (gst_alsasrc_getcaps),
14911         (gst_alsasrc_close):
14912         * ext/alsa/gstalsasrc.h:
14913           Implement caps probing for alsasrc.
14914
14915 2006-05-15  Wim Taymans  <wim@fluendo.com>
14916
14917         * ext/theora/theoradec.c: (gst_theora_dec_reset),
14918         (theora_dec_src_query), (theora_dec_src_event),
14919         (theora_dec_sink_event), (theora_handle_comment_packet),
14920         (theora_handle_data_packet), (theora_dec_change_state):
14921         Cleanups, add some G_LIKELY.
14922         Use segment helpers instead of our own wrong code.
14923         Clear queued buffers on seek and READY.
14924
14925         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
14926         (vorbis_dec_convert), (vorbis_dec_src_query),
14927         (vorbis_dec_src_event), (vorbis_dec_sink_event),
14928         (vorbis_handle_comment_packet), (vorbis_dec_push),
14929         (vorbis_handle_data_packet), (vorbis_dec_chain),
14930         (vorbis_dec_change_state):
14931         * ext/vorbis/vorbisdec.h:
14932         Remove old useless packetno variable.
14933         Do position query properly.
14934         Add some G_LIKELY.
14935         Do cleanup of queued buffers in new helper function
14936         and use it.
14937
14938 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
14939
14940         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
14941           Query supported sample rates. Fixes #341732.
14942
14943 2006-05-15  Julien MOUTTE  <julien@moutte.net>
14944
14945         * gst/playback/gstdecodebin.c: (cleanup_decodebin),
14946         (gst_decode_bin_change_state): Make decodebin reusable
14947         when going from PAUSE_TO_READY and then back to PAUSED.
14948         Fixes #331678.
14949
14950 2006-05-15  Wim Taymans  <wim@fluendo.com>
14951
14952         * ext/vorbis/vorbisdec.c: (vorbis_get_query_types),
14953         (vorbis_dec_convert), (vorbis_dec_src_query),
14954         (vorbis_dec_sink_query), (vorbis_dec_src_event),
14955         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
14956         (vorbis_dec_clean_queued), (vorbis_dec_push),
14957         (vorbis_handle_data_packet), (vorbis_dec_change_state):
14958         Cleanups. Use refcounting and DEBUG_OBJECT.
14959         Reset segment on flush, use code methods instead of our
14960         own wrong version.
14961         Fix potential memleak.
14962
14963 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
14964
14965         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
14966         (gst_alsasink_init):
14967         * ext/alsa/gstalsasink.h:
14968           Don't leak allocated snd_output_t structure if there's
14969           more than one alsasink instance at a time (#341873).
14970           Also fix GObject macros in header file.
14971           
14972 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
14973
14974         * gst/subparse/gstsubparse.c:
14975         (gst_sub_parse_data_format_autodetect):
14976           Don't use libxml functions in the typefinding code.
14977
14978 2006-05-15  Wim Taymans  <wim@fluendo.com>
14979
14980         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
14981         Fix seeking performance in the case where a non-header 
14982         packet has a 0 granulepos (busted theora case). 
14983         Fixes #341719
14984         (nvdr: thanks Wim for not mentioning who spotted and fixed it in
14985          the first place, you limelight stealer you)
14986
14987 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
14988
14989         * gst/subparse/gstsubparse.c:
14990         (gst_sub_parse_data_format_autodetect):
14991           Improve SAMI typefinding: handle case where there are
14992           whitespaces or newlines in front of the first <SAMI>
14993           tag (#169936).
14994
14995 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
14996
14997         * configure.ac:
14998           Build video4linux plugin even if there's no XVIDEO, just
14999           without implementing the GstXOverlay interface (#334002).
15000          
15001 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
15002
15003         * configure.ac:
15004         * ext/libvisual/visual.c: (gst_visual_actor_plugin_is_gl),
15005         (plugin_init):
15006           Add tentative support for libvisual-0.4 (#336881).
15007
15008 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
15009
15010         Patch by: Young-Ho Cha <ganadist at chollian net>
15011
15012         * gst/subparse/samiparse.c: (handle_start_font):
15013           Need to map "silver" colour explicitly (#169936).
15014
15015 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
15016
15017         Patch by: Young-Ho Cha  <ganadist at chollian net>
15018
15019         * gst/subparse/Makefile.am:
15020         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
15021         (parser_state_dispose), (gst_sub_parse_data_format_autodetect),
15022         (gst_sub_parse_format_autodetect), (feed_textbuf),
15023         (gst_subparse_type_find), (plugin_init):
15024         * gst/subparse/gstsubparse.h:
15025         * gst/subparse/samiparse.c:
15026         * gst/subparse/samiparse.h:
15027           Add support for SAMI subtitles (#169936).
15028
15029 2006-05-14  Michael Smith  <msmith@fluendo.com>
15030
15031         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_fill_others):
15032           Fix #341696: crash when mixing L+R+C to mono or stereo.
15033         * tests/check/Makefile.am:
15034         * tests/check/elements/audioconvert.c: (set_channel_positions),
15035         (get_float_mc_caps), (get_int_mc_caps), (GST_START_TEST),
15036         (audioconvert_suite):
15037           Add test for the above, including some generic framework bits for
15038           testing multichannel things.
15039
15040 === release 0.10.7 ===
15041
15042 2006-05-14  Jan Schmidt <thaytan@mad.scientist.com>
15043
15044         * configure.ac:
15045           releasing 0.10.7, "Leave the gun"
15046
15047 2006-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
15048
15049         * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
15050         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
15051         Fix the build.
15052
15053 2006-05-12  Jan Schmidt  <thaytan@mad.scientist.com>
15054
15055         * docs/libs/gst-plugins-base-libs-docs.sgml:
15056         * docs/libs/gst-plugins-base-libs-sections.txt:
15057         * gst-libs/gst/video/video.c: (gst_video_calculate_display_ratio):
15058         * gst-libs/gst/video/video.h:
15059         * gst/videoscale/Makefile.am:
15060         * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
15061         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
15062         * tests/check/Makefile.am:
15063         * tests/check/libs/video.c: (GST_START_TEST), (video_suite),
15064         (main):
15065           Fix integer overflow problem with pixel-aspect-ratio calculations
15066           in videoscale and xvimagesink (#341542)
15067
15068 2006-05-12  Tim-Philipp Müller  <tim at centricular dot net>
15069
15070         * gst-libs/gst/tag/gstid3tag.c:
15071           Map GST_IMAGE_TAG to and from ID2v2 APIC frames (#341557).
15072
15073 2006-05-12  Sebastien Moutte  <sebastien@moutte.net>
15074
15075         * win32/MANIFEST:
15076           update win32 files listing
15077
15078 2006-05-11  Thomas Vander Stichele  <thomas at apestaart dot org>
15079
15080         patch by: Sjoerd Simons (sjoerd@luon.net)
15081
15082         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
15083         (group_create), (group_destroy), (add_stream),
15084         (gst_play_base_bin_get_property),
15085         (gst_play_base_bin_get_streaminfo_value_array):
15086         * gst/playback/gstplaybasebin.h:
15087           API: GstPlayBaseBin::stream-info-value-array property
15088           use a more bindings-friendly way of exposing streaminfo
15089           using a GValueArray.  Tested in ipython.
15090           Closes #341114
15091
15092 2006-05-11  Wim Taymans  <wim@fluendo.com>
15093
15094         * gst/playback/gstdecodebin.c: (try_to_link_1), (queue_enlarge),
15095         (queue_underrun_cb), (queue_filled_cb):
15096         Also catch queue underruns but don't do anything yet.
15097         Refactor and comment queue enlarging code a bit.
15098
15099         * gst/playback/gstplaybasebin.c: (queue_overrun),
15100         (queue_threshold_reached), (queue_out_of_data),
15101         (gen_preroll_element):
15102         If a queue over/underruns check that we don't create nasty
15103         deadlocks when the min-threshold is not reached but the
15104         max-bytes is. In those cases disable max-bytes when we
15105         know that the queue is fed timed data.
15106         Add more comments.
15107
15108 2006-05-11  Tim-Philipp Müller  <tim at centricular dot net>
15109
15110         * gst/playback/gstplaybin.c: (gen_audio_element):
15111           Make playbin automatically plug an 'audioresample'
15112           element before the audio sink as well. This solves
15113           problems with sinks that only accept a very specific
15114           sample rate, like esdsink (e.g. #340379).
15115
15116 2006-05-11  Tim-Philipp Müller  <tim at centricular dot net>
15117
15118         * gst/playback/gstplaybasebin.c: (gen_source_element):
15119           Make http sources send special headers so that we receive
15120           icecast metadata if the http stream is an icecast stream
15121           (otherwise the server will just ignore them). This also
15122           means that from now on users will need the 'icydemux'
15123           element from gst-plugins-good installed if they want to
15124           listen to icecast radio streams. (#341432, #333657).
15125
15126 2006-05-11  Thomas Vander Stichele  <thomas at apestaart dot org>
15127
15128         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_remove_client_link),
15129         (gst_multi_fd_sink_new_client), (gst_multi_fd_sink_stop):
15130           remove stupid example from docs - it should come with a simple
15131           C program instead.
15132           Clean up/fix docs
15133         * tests/check/elements/multifdsink.c: (wait_bytes_served),
15134         (fail_if_can_read), (GST_START_TEST),
15135         (gst_multifdsink_create_streamheader), (multifdsink_suite):
15136           add a test for changing streamheader which exposes a bug in
15137           multifdsink
15138
15139 2006-05-11  Michael Smith  <msmith@fluendo.com>
15140
15141         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_init),
15142         (gst_gnome_vfs_src_received_headers_callback):
15143         * ext/gnomevfs/gstgnomevfssrc.h:
15144           Don't set icy-caps unless we have a sane interval value. Move
15145           interval to a local variable; we never use it outside this function.
15146
15147 2006-05-11  Wim Taymans  <wim@fluendo.com>
15148
15149         * sys/ximage/ximagesink.c: (gst_ximagesink_get_type):
15150         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_type):
15151         Register special buffer types along with the objects so
15152         that they are not registered at runtime from N different
15153         streaming threads since they are not threadsafe.
15154
15155 2006-05-10  Thomas Vander Stichele  <thomas at apestaart dot org>
15156
15157         * tests/check/elements/multifdsink.c: (wait_bytes_served),
15158         (GST_START_TEST), (fail_unless_read), (multifdsink_suite):
15159           add two more tests, one doing streamheader
15160
15161 2006-05-10  Thomas Vander Stichele  <thomas at apestaart dot org>
15162
15163         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_stop):
15164           clean up the bufqueue when shutting down
15165         * tests/check/Makefile.am:
15166         * tests/check/elements/multifdsink.c: (setup_multifdsink),
15167         (cleanup_multifdsink), (GST_START_TEST), (multifdsink_suite),
15168         (main):
15169           add a test for the leak that was just fixed
15170
15171 2006-05-10  Wim Taymans  <wim@fluendo.com>
15172
15173         * gst/adder/gstadder.c: (gst_adder_setcaps),
15174         (gst_adder_query_duration), (gst_adder_query), (forward_event),
15175         (gst_adder_src_event), (gst_adder_sink_event),
15176         (gst_adder_class_init), (gst_adder_finalize),
15177         (gst_adder_request_new_pad), (gst_adder_collected):
15178         * gst/adder/gstadder.h:
15179         Updated some docs. Added comments and FIXMEs all over the place.
15180         Improve debugging info.
15181         Fix leak on finalize by not calling the parent.
15182         Implement duration query.
15183         Make event forwarding threadsafe.
15184         Correctly send NEWSEGMENT at start and after flush.
15185         Handle EOS correctly.
15186         Post error when not negotiated.
15187
15188         * tests/check/elements/adder.c: (GST_START_TEST):
15189         Added FIXME in the test.
15190
15191 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
15192
15193         * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
15194         (gst_text_overlay_halign_get_type),
15195         (gst_text_overlay_wrap_mode_get_type):
15196         * ext/theora/theoradec.c: (theora_handle_type_packet),
15197         (theora_handle_data_packet):
15198         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
15199         (theora_enc_sink_setcaps), (theora_enc_chain):
15200         * gst-libs/gst/cdda/gstcddabasesrc.c:
15201         (gst_cdda_base_src_mode_get_type):
15202         * gst/audiotestsrc/gstaudiotestsrc.c:
15203         (gst_audiostestsrc_wave_get_type):
15204         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
15205         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
15206         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
15207         (gst_sync_method_get_type), (gst_unit_type_get_type),
15208         (gst_client_status_get_type):
15209         * gst/videoscale/gstvideoscale.c:
15210         (gst_video_scale_method_get_type):
15211         * gst/videotestsrc/gstvideotestsrc.c:
15212         (gst_video_test_src_pattern_get_type):
15213         * gst/videotestsrc/videotestsrc.c: (paint_setup_I420),
15214         (paint_setup_YV12), (paint_setup_YUY2), (paint_setup_UYVY),
15215         (paint_setup_YVYU), (paint_setup_IYU2), (paint_setup_Y41B),
15216         (paint_setup_Y42B), (paint_setup_Y800), (paint_setup_YVU9),
15217         (paint_setup_YUV9), (paint_setup_RGB888), (paint_setup_BGR888),
15218         (paint_setup_RGB565), (paint_setup_xRGB1555):
15219           Const-ify GEnumValue and GFlagsValue arrays. Use
15220           GST_ROUND_UP_* macros instead of home-made ones.
15221
15222 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
15223
15224         * configure.ac:
15225           Require core CVS for the new newsegment stuff.
15226
15227 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
15228
15229         Patch by: Sjoerd Simons  <sjoerd at luon net>
15230
15231         * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type):
15232           Register nick for enum value (#341160).
15233
15234 2006-05-09  Stefan Kost  <ensonic@users.sf.net>
15235
15236         * gst/typefind/gsttypefindfunctions.c: (m4a_type_find),
15237         (plugin_init):
15238          backout typefind patch #340375
15239          
15240         * tests/check/elements/adder.c: (message_received),
15241         (GST_START_TEST), (adder_suite):
15242           redo, signal-handling of test
15243
15244 2006-05-09  Wim Taymans  <wim@fluendo.com>
15245
15246         * gst/adder/gstadder.c: (gst_adder_request_new_pad),
15247         (gst_adder_collected):
15248         * gst/adder/gstadder.h:
15249         Remove bogus segment merging and forwarding, we don't
15250         care about timestamps anyway and we just produce a
15251         continuous stream. 
15252         Also create a nice NEWSEGMENT event when we start.
15253         Use _scale_int some more.
15254
15255 2006-05-09  Edward Hervey  <edward@fluendo.com>
15256
15257         * tests/icles/stress-xoverlay.c:
15258         Fix if core was built without parsing support.
15259
15260 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
15261
15262         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
15263           Add SEDG (Samsung MPEG-4) fourcc.
15264
15265 2006-05-09  Edward Hervey  <edward@fluendo.com>
15266
15267         * tests/icles/stress-xoverlay.c:
15268         * tests/examples/volume/volume.c:
15269         Fix if core was built without parsing support.
15270
15271         * tests/examples/seek/seek.c:
15272         Disable the parse_launch example if core was built without parsing
15273         support.
15274
15275 2006-05-08  Edward Hervey  <edward@fluendo.com>
15276
15277         * autogen.sh: (CONFIGURE_DEF_OPT): 
15278         libtoolize on Darwin/MacOSX is called glibtoolize
15279
15280 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
15281
15282         * tests/check/Makefile.am:
15283         * tests/check/elements/adder.c: (event_loop), (GST_START_TEST):
15284           Disable the adder test, until the build-slaves posses the kindness to 
15285           either like it or to give valid reason for not doing so 
15286
15287 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
15288
15289         * tests/check/elements/adder.c: (event_loop), (GST_START_TEST),
15290         (adder_suite):
15291           Shuffle NULL state change around and raise timeout more
15292
15293 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
15294
15295         * gst/typefind/gsttypefindfunctions.c: (mp4_find_box),
15296         (mp4_type_find), (plugin_init):
15297           Add typefind to distinguish between "audio/x-m4a" and new type
15298           "video/mp4". Fixes #340375
15299
15300         * tests/check/elements/adder.c: (adder_suite):
15301           Raise timeout to make buildbot happy
15302
15303 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
15304
15305         * gst/adder/gstadder.c: (gst_adder_sink_event),
15306         (gst_adder_request_new_pad), (gst_adder_change_state):
15307         * gst/adder/gstadder.h:
15308         * tests/check/Makefile.am:
15309         * tests/check/elements/adder.c: (event_loop), (GST_START_TEST),
15310         (adder_suite), (main):
15311           Add sink-event handling to adder. It tries to merge incomming
15312           newsegment-events. Added test to check if segment_done is comming
15313           through. Fixes #340060
15314
15315 2006-05-05  Andy Wingo  <wingo@pobox.com>
15316
15317         * ext/theora/theoraparse.c (gst_theora_parse_init)
15318         (theora_parse_src_convert, theora_parse_src_query):
15319         * ext/vorbis/vorbisparse.c (gst_vorbis_parse_init)
15320         (vorbis_parse_convert, vorbis_parse_src_query): Add convert and
15321         query functions on the source pads of the theora and vorbis parse
15322         elements. Fixes position querying when doing a remux.
15323
15324 2006-05-05  Michael Smith  <msmith@fluendo.com>
15325
15326         * ext/theora/theoraparse.c: (parse_granulepos),
15327         (theora_parse_drain_queue_prematurely),
15328         (theora_parse_queue_buffer), (theora_parse_sink_event):
15329           Fix flushing.
15330           Fix invalid granulepos outputs when starting with a non-keyframe.
15331
15332 2006-05-05  Jan Schmidt  <thaytan@mad.scientist.com>
15333
15334         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find),
15335         (mpeg1_sys_type_find), (ogganx_type_find), (sw_data_destroy):
15336         Rearrange MPEG system stream detection, fixing some memleaks in the
15337         process.
15338         Constify the data for STARTS_WITH and RIFF helper handlers. Make sure
15339         they clean up their data correctly.
15340         Remove unused ogganx caps and move the 'is_annodex' check to inside
15341         the 'is_ogg' if statement.
15342
15343 2006-05-05  Wim Taymans  <wim@fluendo.com>
15344
15345         * gst/playback/gstdecodebin.c: (cleanup_decodebin):
15346         Properly remove ghostpads. Fixes #340392
15347
15348 2006-05-04  David Schleef  <ds@schleef.org>
15349
15350         * gst/typefind/gsttypefindfunctions.c:
15351
15352 2006-05-03  Jan Schmidt  <thaytan@mad.scientist.com>
15353
15354         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
15355         (mpeg_ts_probe_headers), (mpeg_ts_type_find):
15356
15357         When typefinding an MP3 in push-based mode, don't penalise the
15358         probability down to 74% when we found 5 valid frames just because we
15359         can't peek the end of the file.
15360
15361         Make the probability for detecting MPEG Transport Streams based on the
15362         number of sequential headers we successfully detected.
15363
15364 2006-05-03  Wim Taymans  <wim@fluendo.com>
15365
15366         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
15367         (vorbis_dec_push), (vorbis_dec_chain):
15368         Still produce an error when we receive an empty packet.
15369
15370 2006-05-03  Wim Taymans  <wim@fluendo.com>
15371
15372         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
15373         (gst_ogg_chain_mark_discont), (gst_ogg_chain_new_stream),
15374         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek):
15375         Mark buffers with DISCONT after seek and after activating new
15376         chains.
15377
15378         * ext/theora/gsttheoradec.h:
15379         * ext/theora/theoradec.c: (gst_theora_dec_reset),
15380         (theora_get_query_types), (theora_dec_sink_event),
15381         (theora_dec_push), (theora_handle_data_packet), (theora_dec_chain),
15382         (theora_dec_change_state):
15383         Fix frame counter.
15384         Detect and mark DISCONT buffers.
15385
15386         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
15387         (vorbis_dec_sink_event), (vorbis_dec_push), (vorbis_dec_chain),
15388         (vorbis_dec_change_state):
15389         * ext/vorbis/vorbisdec.h:
15390         Use GstSegment.
15391         Detect and mark DISCONT buffers.
15392         Don't crash on 0 sized buffers.
15393
15394 2006-05-03  Wim Taymans  <wim@fluendo.com>
15395
15396         * gst/volume/gstvolume.c: (volume_funcfind), (volume_set_caps),
15397         (volume_transform_ip):
15398         Increase "volume" property to 10.0. Fixes #340369.
15399         Set the process function to NULL when capsnego fails so that
15400         we properly error out.
15401
15402 2006-05-02  Stefan Kost  <ensonic@users.sf.net>
15403
15404         * gst/playback/gstplaybin.c: (add_sink):
15405         * gst/playback/test.c: (main):
15406         * gst/playback/test5.c: (dump_element_stats):
15407         * gst/playback/test6.c: (main):
15408           free caps using gst_caps_unref, don't leak caps-strings
15409
15410 2006-05-01  Tim-Philipp Müller  <tim at centricular dot net>
15411
15412         * gst/typefind/gsttypefindfunctions.c: (musepack_type_find),
15413         (plugin_init):
15414           Refine musepack typefinding a bit. Return MAXIMUM
15415           probability when we detect stream version 7 to make
15416           sure the mpeg audio typefinder doesn't trump us.
15417
15418 2006-04-29  Tim-Philipp Müller  <tim at centricular dot net>
15419
15420         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
15421           Protect against unexpected NULL strf_data buffer.
15422
15423 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
15424
15425         * tests/check/elements/audioconvert.c: (verify_convert),
15426         (GST_START_TEST):
15427           interpret the out[] buffer in the order the bytes are actually
15428           put in, which is LITTLE_ENDIAN, not BYTE_ORDER.
15429           Other tests should use BYTE_ORDER since the array is filled in
15430           with actual values
15431
15432 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
15433
15434         * tests/check/elements/audioconvert.c: (verify_convert),
15435         (GST_START_TEST):
15436           when a test fails, give an indication of which it is
15437
15438 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
15439
15440         * gst-libs/gst/cdda/gstcddabasesrc.c:
15441           compile fix; strtol() needs <stdlib.h>
15442
15443 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
15444
15445         * ext/alsa/gstalsamixerelement.c:
15446         * ext/alsa/gstalsasrc.c:
15447         * ext/cdparanoia/gstcdparanoiasrc.c:
15448         * ext/gnomevfs/gstgnomevfssink.c:
15449         * ext/gnomevfs/gstgnomevfssrc.c:
15450         * ext/ogg/gstoggdemux.c:
15451         * ext/ogg/gstoggmux.c:
15452         * ext/ogg/gstoggparse.c:
15453         * ext/ogg/gstogmparse.c:
15454         * ext/pango/gstclockoverlay.c:
15455         * ext/pango/gsttextoverlay.c:
15456         * ext/pango/gsttextrender.c:
15457         * ext/pango/gsttimeoverlay.c:
15458         * ext/theora/theoradec.c:
15459         * ext/theora/theoraenc.c:
15460         * ext/vorbis/vorbisdec.c:
15461         * ext/vorbis/vorbisenc.c:
15462         * gst-libs/gst/audio/gstaudiofilter.c:
15463         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
15464         * gst/audioconvert/gstaudioconvert.c:
15465         * gst/audiorate/gstaudiorate.c:
15466         * gst/audioresample/gstaudioresample.c:
15467         * gst/audiotestsrc/gstaudiotestsrc.c:
15468         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15469         * gst/playback/gstdecodebin.c:
15470         * gst/playback/gstplaybin.c:
15471         * gst/playback/gststreamselector.c:
15472         * gst/subparse/gstsubparse.c:
15473         * gst/tcp/gstmultifdsink.c:
15474         * gst/tcp/gsttcpclientsink.c:
15475         * gst/tcp/gsttcpclientsrc.c:
15476         * gst/tcp/gsttcpserversink.c:
15477         * gst/tcp/gsttcpserversrc.c:
15478         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
15479         * gst/videorate/gstvideorate.c:
15480         * gst/videoscale/gstvideoscale.c:
15481         * gst/videotestsrc/gstvideotestsrc.c:
15482         * gst/volume/gstvolume.c:
15483         * sys/v4l/gstv4ljpegsrc.c:
15484         * sys/v4l/gstv4lmjpegsink.c:
15485         * sys/v4l/gstv4lmjpegsrc.c:
15486         * sys/v4l/gstv4lsrc.c:
15487         * sys/ximage/ximagesink.c:
15488         * sys/xvimage/xvimagesink.c:
15489         * tests/check/libs/cddabasesrc.c:
15490           make GstElementDetails const
15491
15492 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
15493
15494         * gst/adder/gstadder.c: (gst_adder_setcaps), (gst_adder_src_event),
15495         (gst_adder_init):
15496           send events from src-pad to all sink-pads fixes #338657
15497
15498 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
15499
15500         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps),
15501         (alsasink_parse_spec):
15502           query width capabilities from alsa, fixes #338919
15503
15504 2006-04-28  Wim Taymans  <wim@fluendo.com>
15505
15506         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
15507         (gst_multi_fd_sink_remove_client_link):
15508         * gst/tcp/gstmultifdsink.h:
15509         Fix race condition in multifdsink that can lead to spurious 
15510         duplicate clients. this patch adds a new signal that is fired when
15511         multifdsink has removed all references to the fd.
15512         Fixes #339574.
15513         Updated documentation.
15514         API: client-fd-removed signal added
15515
15516 2006-04-28  Michael Smith  <msmith@fluendo.com>
15517
15518         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_get_stats):
15519           When asking g_value_array_new to prealloc elements, we may as well
15520           ask for the right number of elements.
15521
15522 2006-04-28  Wim Taymans  <wim@fluendo.com>
15523
15524         * gst-libs/gst/audio/gstbaseaudiosink.c:
15525         (gst_base_audio_sink_drain), (gst_base_audio_sink_event),
15526         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
15527         patch to make timestamp checking more tollerant to rounding 
15528         errors given that real discontinuities are to be marked on
15529         buffers. Fixes some asf files and #338778.
15530         Also avoid some crashers when we receive an event in the 
15531         NULL state.
15532
15533 2006-04-28  Michael Smith  <msmith@fluendo.com>
15534
15535         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
15536         (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
15537         (gst_gnome_vfs_src_get_property),
15538         (gst_gnome_vfs_src_send_additional_headers_callback),
15539         (gst_gnome_vfs_src_received_headers_callback),
15540         (gst_gnome_vfs_src_create), (gst_gnome_vfs_src_start),
15541         (gst_gnome_vfs_src_stop):
15542         * ext/gnomevfs/gstgnomevfssrc.h:
15543           Remove ICY handling (mostly) from gnomevfssrc, in favour of
15544           proper shared support within icydemux.
15545
15546 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
15547
15548         * gst/videorate/gstvideorate.c: (gst_video_rate_reset),
15549         (gst_video_rate_swap_prev), (gst_video_rate_chain):
15550           fix up docs
15551           fix a leak when no caps negotiated
15552           fix counting of input frames
15553         * tests/check/elements/.cvsignore:
15554         * tests/check/elements/videorate.c: (assert_videorate_stats),
15555         (GST_START_TEST), (videorate_suite):
15556           add tests for these
15557
15558 2006-04-28  Wim Taymans  <wim@fluendo.com>
15559
15560         * gst-libs/gst/audio/gstringbuffer.c:
15561         (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
15562         (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
15563         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
15564         (gst_ring_buffer_pause), (gst_ring_buffer_stop),
15565         (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
15566         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
15567         (gst_ring_buffer_commit), (gst_ring_buffer_read),
15568         (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
15569         (gst_ring_buffer_clear), (gst_ring_buffer_may_start):
15570         Check arguments passed to public functions instead of
15571         crashing.
15572
15573 2006-04-28  Wim Taymans  <wim@fluendo.com>
15574
15575         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
15576         (gst_base_audio_src_get_time), (gst_base_audio_src_create):
15577         GstBaseAudioSrc must be live or it does not work.
15578
15579         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audio_src_init):
15580         Don't set live to TRUE as this is the default in the parentclass.
15581
15582 2006-04-28  Wim Taymans  <wim@fluendo.com>
15583
15584         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps),
15585         (gst_video_scale_fixate_caps), (gst_video_scale_src_event):
15586         Videoscale doesn't pass on pixel-aspect ratio. Handle all
15587         fixation cases better. Fixes #338991
15588
15589 2006-04-28  Wim Taymans  <wim@fluendo.com>
15590
15591         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
15592         Handle 0/1 framerate correctly Fixes #331901.
15593
15594 2006-04-28  Wim Taymans  <wim@fluendo.com>
15595
15596         * tests/check/elements/audioconvert.c: (get_float_caps),
15597         (GST_START_TEST), (audioconvert_suite):
15598         Added check for correct clipping when doing float samples
15599         in audioconvert.
15600
15601 2006-04-28  Wim Taymans  <wim@fluendo.com>
15602
15603         * gst/videorate/gstvideorate.c: (gst_video_rate_event),
15604         (gst_video_rate_chain):
15605         Print more debugging info.
15606
15607 2006-04-28  Wim Taymans  <wim@fluendo.com>
15608
15609         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
15610         (resample_set_state_from_caps):
15611         Add support for other formats audioresample can handle such as
15612         32 bits in and float and 64 bits float. Fixes #301759
15613
15614 2006-04-28  Wim Taymans  <wim@fluendo.com>
15615
15616         * gst/audioconvert/audioconvert.c: (float):
15617         correctly clip float samples > 1.0. Fixes #338718
15618
15619 2006-04-28  Tim-Philipp Müller  <tim at centricular dot net>
15620
15621         Patch by: Young-Ho Cha  <ganadist at chollian net>
15622
15623         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
15624         (gst_text_overlay_render_text):
15625           Don't strip newlines from the text. Also, center lines
15626           within multi-line paragraphs (#339405).
15627
15628 2006-04-28  Tim-Philipp Müller  <tim at centricular dot net>
15629
15630         * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find):
15631           Fix wavpack typefinding to work in more cases (don't peek
15632           for chunks of multiple hundred kBs at once, but process
15633           things step-by-step in smaller units). Fixes #339786.
15634
15635 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
15636
15637         * configure.ac:
15638           back to HEAD
15639
15640 === release 0.10.6 ===
15641
15642 2006-04-28  Thomas Vander Stichele <thomas at apestaart dot org>
15643
15644         * configure.ac:
15645           releasing 0.10.6, "Chao"
15646
15647 2006-04-26  David Schleef  <ds@schleef.org>
15648
15649         * gst/videoscale/gstvideoscale.c: Add call to oil_init().
15650           Fixes #338897.
15651
15652 2006-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
15653
15654         * configure.ac:
15655         * win32/common/config.h:
15656           new prerelease
15657
15658 2006-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
15659
15660         patch by: Wim Taymans
15661
15662         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
15663         (gst_ogg_demux_perform_seek):
15664           make sure correct newsegments are sent, so that the decoder
15665           and the demuxer agree on timestamps.  Fixes playback of a lot
15666           of Ogg files that do not start from 0.  Fixes #339833.
15667
15668 2006-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
15669
15670         Patch by: Edward Hervey  <edward@fluendo.com>
15671
15672         * gst/videorate/gstvideorate.c: (gst_video_rate_chain):
15673         * tests/check/Makefile.am:
15674         * tests/check/elements/videorate.c: (assert_videorate_stats),
15675         (setup_videorate), (cleanup_videorate), (GST_START_TEST),
15676         (videorate_suite), (main):
15677           Fix an infinite loop if frames are passed in with wrongly ordered
15678           timestamps.  Fixes #339013.
15679
15680 2006-04-22  Thomas Vander Stichele  <thomas at apestaart dot org>
15681
15682         Patch by: Tim-Philipp Müller  <tim at centricular dot net>
15683
15684         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
15685           fix typefinding on some ISO files.  Fixes #339212.
15686
15687 2006-04-22  Thomas Vander Stichele  <thomas at apestaart dot org>
15688
15689         Patch by: Tim-Philipp Müller  <tim at centricular dot net>
15690
15691         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
15692           add another H264 fourcc.  Fixes #339047.
15693
15694 2006-04-22  Thomas Vander Stichele  <thomas at apestaart dot org>
15695
15696         Patch by: Jan Schmidt
15697
15698         * gst/playback/gststreamselector.c:
15699         (gst_stream_selector_bufferalloc):
15700           Restore old StreamSelector behaviour.
15701           Fixes #338419.
15702
15703 2006-04-12  Thomas Vander Stichele  <thomas at apestaart dot org>
15704
15705         * configure.ac:
15706         * win32/common/config.h:
15707           prerelease
15708
15709 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
15710
15711         Patch by: Antoine Tremblay  <hexa00 at gmail dot com>
15712
15713         * gst-libs/gst/rtp/gstbasertpdepayload.c:
15714         (gst_base_rtp_depayload_finalize), (gst_base_rtp_depayload_push):
15715           Fix some memory leaks: on finalize, free buffers left in the queue
15716           before destroying the queue; in _push(), unref rtp_buf even if
15717           the process vfunc returned a NULL buffer as output buffer (#337548);
15718           demote some recuring debug messages to LOG level.
15719
15720 2006-04-11  Wim Taymans  <wim@fluendo.com>
15721
15722         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
15723         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
15724         (gst_ogg_chain_free), (gst_ogg_demux_sink_event),
15725         (gst_ogg_demux_loop):
15726         More cleanups.
15727         Respect segment stop when emiting EOS or SEGMENT_DONE.
15728         Fixes (#337945).
15729
15730 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
15731
15732         * gst/playback/gststreamselector.c:
15733         (gst_stream_selector_get_property):
15734           Don't leak pad name.
15735
15736 2006-04-10  Michael Smith  <msmith@fluendo.com>
15737
15738         * tests/check/Makefile.am:
15739         * tests/check/gst-plugins-base.supp:
15740           Suppress an old libtheora bug (fixed in more recent versions), so 
15741           that FC4 buildslaves can pass.
15742
15743 2006-04-10  Wim Taymans  <wim@fluendo.com>
15744
15745         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
15746         (gst_ogg_demux_receive_event), (gst_ogg_pad_event),
15747         (gst_ogg_demux_init), (gst_ogg_demux_finalize),
15748         (gst_ogg_demux_sink_event), (gst_ogg_demux_get_data),
15749         (gst_ogg_demux_loop):
15750         Don't leak events.
15751         Remember what error we got when finding chains, if we
15752         were shutdown, that would not be an error.
15753
15754 2006-04-10  Wim Taymans  <wim@fluendo.com>
15755
15756         * gst-libs/gst/audio/gstbaseaudiosink.c:
15757         (gst_base_audio_sink_event):
15758         Starting the ringbuffer when we did not acquire it can cause
15759         a deadlock, is pointless and causes nasty things for
15760         subclasses. 
15761         Fixes gst-launch audiotestsrc num-buffers=0 ! alsasink.
15762
15763 2006-04-10  Wim Taymans  <wim@fluendo.com>
15764
15765         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
15766         (gst_ogg_demux_receive_event), (gst_ogg_pad_event),
15767         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
15768         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
15769         (gst_ogg_demux_deactivate_current_chain),
15770         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
15771         (gst_ogg_demux_bisect_forward_serialno),
15772         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain):
15773         Add some more debugging.
15774
15775 2006-04-10  Wim Taymans  <wim@fluendo.com>
15776
15777         * ext/theora/theoradec.c: (theora_dec_src_event),
15778         (theora_handle_data_packet):
15779         Some more debug info.
15780
15781         * tests/examples/seek/seek.c: (start_seek), (main):
15782         Print element messages too.
15783
15784 2006-04-09  Sebastien Moutte  <sebastien@moutte.net>
15785
15786         * gst/audioresample/debug.h:
15787           replace debug macros with variable number of parameters
15788           by a simple alias to gstreamer standard debug macros 
15789          (#define RESAMPLE_ERROR GST_ERROR, __VA_ARGS__ is not
15790           supported by MSVC 6.0 and 7.1)
15791         * gst/audioresample/resample.h:
15792           define M_PI and rint for WIN32
15793         * win32/common/libgstaudio.def:
15794         * win32/common/libgstriff.def:
15795         * win32/common/libgsttag.def:
15796         * win32/common/libgstvideo.def:
15797           add new exported functions
15798         * win32/vs6:
15799           update project files
15800
15801 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
15802
15803         * ext/alsa/gstalsamixeroptions.c:
15804         (gst_alsa_mixer_options_class_init):
15805         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init):
15806         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_class_init):
15807         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init):
15808         * ext/ogg/gstoggparse.c: (gst_ogg_parse_class_init):
15809         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_class_init):
15810         * gst-libs/gst/audio/gstaudiofilter.c:
15811         (gst_audio_filter_class_init):
15812         * gst-libs/gst/audio/gstaudiosink.c:
15813         (gst_audioringbuffer_class_init):
15814         * gst-libs/gst/audio/gstaudiosrc.c:
15815         (gst_audioringbuffer_class_init):
15816         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_class_init):
15817         * gst-libs/gst/interfaces/colorbalancechannel.c:
15818         (gst_color_balance_channel_class_init):
15819         * gst-libs/gst/interfaces/mixeroptions.c:
15820         (gst_mixer_options_class_init):
15821         * gst-libs/gst/interfaces/mixertrack.c:
15822         (gst_mixer_track_class_init):
15823         * gst-libs/gst/interfaces/tunerchannel.c:
15824         (gst_tuner_channel_class_init):
15825         * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_class_init):
15826         * gst-libs/gst/netbuffer/gstnetbuffer.c:
15827         (gst_netbuffer_class_init):
15828         * gst-libs/gst/rtp/gstbasertppayload.c:
15829         (gst_basertppayload_class_init):
15830         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
15831         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
15832         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
15833         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init):
15834         * gst/playback/gststreamselector.c:
15835         (gst_stream_selector_class_init):
15836         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
15837         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
15838         * sys/v4l/gstv4lcolorbalance.c:
15839         (gst_v4l_color_balance_channel_class_init):
15840         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_class_init):
15841         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
15842         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
15843         * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_channel_class_init),
15844         (gst_v4l_tuner_norm_class_init):
15845         * sys/ximage/ximagesink.c: (gst_ximagesink_class_init):
15846         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_class_init):
15847         * tests/old/testsuite/alsa/sinesrc.c: (sinesrc_class_init):
15848         Fix #337365 (g_type_class_ref <-> g_type_class_peek_parent)
15849
15850 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
15851
15852         * ext/pango/gsttextrender.h:
15853         * gst-libs/gst/audio/gstaudiosink.h:
15854         * gst-libs/gst/audio/gstaudiosrc.h:
15855         * gst-libs/gst/audio/gstbaseaudiosink.h:
15856         * gst-libs/gst/audio/gstbaseaudiosrc.h:
15857         * gst-libs/gst/audio/gstringbuffer.h:
15858         * gst-libs/gst/rtp/gstbasertpdepayload.h:
15859         * gst-libs/gst/rtp/gstbasertppayload.h:
15860         * gst-libs/gst/video/gstvideofilter.h:
15861         * gst-libs/gst/video/gstvideosink.h:
15862         * gst/playback/gstplaybasebin.h:
15863         * gst/tcp/gstmultifdsink.h:
15864         * sys/v4l/gstv4lelement.h:
15865         Fix broken GObject macros
15866
15867 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
15868
15869         * ext/alsa/gstalsasink.c: (set_hwparams), (alsasink_parse_spec):
15870         More debug to trace why my USB headset is not working with gst
15871
15872 2006-04-07  Jan Schmidt  <thaytan@mad.scientist.com>
15873
15874         * gst/playback/gstplaybasebin.c: (group_destroy):
15875         Clean up our group elements properly in the case where it never 
15876         got committed - it still got added unconditionally to the bin.
15877
15878 2006-04-07  Wim Taymans  <wim@fluendo.com>
15879
15880         * ext/theora/theoradec.c: (theora_dec_sink_event),
15881         (theora_handle_data_packet), (theora_dec_chain):
15882         Unref unhandled events.
15883         Protect against empty buffers.
15884         Perform QoS on running time.
15885
15886 2006-04-07  Michael Smith  <msmith@fluendo.com>
15887
15888         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_set_header_on_caps),
15889         (gst_vorbis_enc_chain):
15890           Remove leaks from vorbisenc.
15891           Mostly minor changes, the only significant one is that now the
15892           buffers we set as 'streamheader' on the caps are copies of the
15893           original buffers, to avoid circular refcounting problems.
15894
15895 2006-04-07  Jan Schmidt  <thaytan@mad.scientist.com>
15896
15897         * gst/playback/gstplaybasebin.c: (mute_stream), (setup_substreams):
15898           Don't remove our mute-probe if someone else already did so.
15899           Don't set a 2nd one if there is already one pending on the pad.
15900
15901         * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
15902         (do_playbin_seek):
15903           When a seek fails, ensure that playbin is still set back to playing.
15904           
15905         * gst/typefind/gsttypefindfunctions.c: (mpeg_ts_probe_headers),
15906         (mpeg_ts_type_find), (plugin_init):
15907           Add a typefind function for mpeg-ts streams. (Closes: #336617)
15908
15909 2006-04-06  Andy Wingo  <wingo@pobox.com>
15910
15911         * gst/videorate/gstvideorate.c (gst_video_rate_reset) 
15912         (gst_video_rate_init): Caps-related parameters should not be reset
15913         by a flush -- move their inits to the instance init function.
15914         (gst_video_rate_flush_prev): Don't complain if gst_pad_push
15915         is not OK, just return the result.
15916
15917         * gst/audiotestsrc/gstaudiotestsrc.c
15918         (gst_audio_test_src_class_init)
15919         (gst_audio_test_src_get_times): Re-enable is-live=true, as was
15920         broken by Stefan's commit on 24 March.
15921
15922         * ext/ogg/gstoggmux.c (gst_ogg_mux_push_buffer): Set caps on
15923         buffers being pushed out. Fixes oggmux ! multifdsink.
15924
15925 2006-04-05  Tim-Philipp Müller  <tim at centricular dot net>
15926
15927         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
15928         (gst_vorbis_dec_init), (vorbis_dec_finalize):
15929         * ext/vorbis/vorbisdec.h:
15930         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_add_interfaces),
15931         (gst_vorbis_enc_base_init), (gst_vorbis_enc_class_init),
15932         (gst_vorbis_enc_sink_setcaps), (gst_vorbis_enc_convert_src),
15933         (gst_vorbis_enc_convert_sink), (gst_vorbis_enc_get_query_types),
15934         (gst_vorbis_enc_src_query), (gst_vorbis_enc_sink_query),
15935         (gst_vorbis_enc_init), (gst_vorbis_enc_get_tag_value),
15936         (gst_vorbis_enc_metadata_set1), (gst_vorbis_enc_set_metadata),
15937         (gst_vorbis_enc_setup), (gst_vorbis_enc_clear),
15938         (gst_vorbis_enc_buffer_from_packet),
15939         (gst_vorbis_enc_buffer_from_header_packet),
15940         (gst_vorbis_enc_push_buffer), (gst_vorbis_enc_push_packet),
15941         (gst_vorbis_enc_set_header_on_caps), (gst_vorbis_enc_sink_event),
15942         (gst_vorbis_enc_chain), (gst_vorbis_enc_output_buffers),
15943         (gst_vorbis_enc_get_property), (gst_vorbis_enc_set_property),
15944         (gst_vorbis_enc_change_state):
15945         * ext/vorbis/vorbisenc.h:
15946           Remove left-over 0.8 cruft; use GST_DEBUG_FUNCPTR; make
15947           vorbisenc adhere to the official nomenclature; use boilerplate
15948           macro.
15949
15950 2006-04-04  Andy Wingo  <wingo@pobox.com>
15951
15952         * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
15953         Whoops, fix bug introduced. Bad hacker!
15954         
15955         * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
15956         Properly handle the case where you get EOS before any buffers are
15957         received. Use gst_buffer_make_metadata_writable where appropriate.
15958
15959         * ext/theora/theoradec.c (theora_handle_data_packet): This value
15960         is often negative -- make it signed so as not to wrap around.
15961         Fixes segfaults introduced on 9 March.
15962
15963 2006-04-03  Wim Taymans  <wim@fluendo.com>
15964
15965         * ext/theora/gsttheoradec.h:
15966         * ext/theora/theoradec.c: (theora_dec_src_event):
15967         Don't try to store a gdouble in a gboolean.
15968         Small cleanups.
15969
15970 2006-04-03  Michael Smith  <msmith@fluendo.com>
15971
15972         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads):
15973           Oggmux sucks.
15974           Make it suck slightly less by writing out the final page.
15975           Still can't encode a vorbis-in-ogg file correctly, though.
15976
15977 2006-04-03  Andy Wingo  <wingo@pobox.com>
15978
15979         * ext/theora/theoraparse.c (theora_parse_drain_queue): Um, remove
15980         a g_print.
15981
15982         * ext/theora/theora.c (plugin_init): Register theoraparse.
15983
15984         * ext/theora/gsttheoraparse.h: 
15985         * ext/theora/theoraparse.c: New files implementing a theora
15986         parser. Now we can properly remux ogg/theora+vorbis, yay.
15987
15988         * ext/vorbis/vorbisparse.c: Add some docs and a copyright.
15989
15990 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
15991
15992         * gst/audiotestsrc/gstaudiotestsrc.c:
15993           Fixed the sample pipeline (see #323798)
15994
15995 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
15996
15997         * configure.ac:
15998         * win32/common/config.h:
15999         * win32/common/config.h.in:
16000           use AS_VERSION and AS_NANO
16001           more cleanups
16002
16003 2006-03-31  Andy Wingo  <wingo@pobox.com>
16004
16005         * ext/vorbis/vorbisparse.c (vorbis_parse_sink_event): Fix
16006         uninitialized variable return that would happen.
16007         
16008         * ext/vorbis/vorbisparse.c (vorbis_parse_drain_queue): Fix
16009         uninitialized variable return that would never happen.
16010
16011         * ext/vorbis/vorbisparse.c (gst_vorbis_parse_init) 
16012         (vorbis_parse_sink_event): Add an event function to flush our
16013         state on a seek, and to drain buffers on a premature EOS.
16014         (vorbis_parse_push_headers, vorbis_parse_clear_queue) 
16015         (vorbis_parse_push_buffer, vorbis_parse_drain_queue_prematurely) 
16016         (vorbis_parse_chain, vorbis_parse_queue_buffer) 
16017         (vorbis_parse_drain_queue): Queue up buffers until we can set
16018         their timestamps and granulepos values.
16019
16020         * ext/vorbis/vorbisparse.h: Include the vorbis decoder headers,
16021         and keep track of data needed for deriving granulepos and
16022         timestamps for buffers.
16023
16024 2006-03-29  Wim Taymans  <wim@fluendo.com>
16025
16026         Patch by: j^ <j at bootlab dot org>
16027
16028         * ext/alsa/gstalsamixerelement.c:
16029         (gst_alsa_mixer_element_class_init):
16030         * ext/alsa/gstalsasink.c:
16031         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init):
16032         * ext/ogg/gstoggdemux.c:
16033         * ext/ogg/gstoggmux.c:
16034         * ext/ogg/gstoggparse.c:
16035         * ext/pango/gstclockoverlay.c:
16036         * ext/pango/gsttextoverlay.c:
16037         * ext/pango/gsttextrender.c:
16038         * ext/pango/gsttimeoverlay.c:
16039         * ext/theora/theoradec.c:
16040         * ext/theora/theoraenc.c:
16041         * ext/vorbis/vorbisdec.c:
16042         * ext/vorbis/vorbisenc.c:
16043         * gst/audioconvert/gstaudioconvert.c:
16044         * gst/subparse/gstsubparse.c:
16045         * gst/tcp/gstmultifdsink.c:
16046         * gst/tcp/gsttcpclientsink.c:
16047         * gst/tcp/gsttcpclientsrc.c:
16048         * gst/tcp/gsttcpserversink.c:
16049         * gst/tcp/gsttcpserversrc.c:
16050           better/unified long descriptions
16051           Fixes #336477
16052
16053 2006-03-29  Wim Taymans  <wim@fluendo.com>
16054
16055         * tests/examples/seek/seek.c: (end_scrub), (seek_cb), (start_seek),
16056         (stop_seek):
16057         Don't let double and triple clicks mess up our state.
16058
16059 2006-03-28  Tim-Philipp Müller  <tim at centricular dot net>
16060
16061         * gst/playback/gstplaybin.c: (gen_video_element),
16062         (gen_text_element), (gen_audio_element), (gen_vis_element):
16063           Error out gracefully when we can't create any of the usual
16064           conversion elements for some reason. Also, don't try to
16065           create an audioscale (sic) element that's not used anyway.
16066
16067 2006-03-28  Tim-Philipp Müller  <tim at centricular dot net>
16068
16069         * gst/playback/gstplaybasebin.c: (setup_source):
16070           Don't post RESOURCE_NOT_FOUND error when we can't find a source
16071           element for a particular protocol, that's confusing for users.
16072           Instead, post a RESOURCE_FAILED error, so that our own error
16073           message is actually shown in totem etc. (#336303).
16074
16075 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
16076
16077         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
16078
16079         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_finalize),
16080         (gst_gnome_vfs_src_get_icy_metadata):
16081           Fix some minor memory leaks (#336194).
16082
16083 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
16084
16085         * ext/gnomevfs/gstgnomevfs.c:
16086         (gst_gnome_vfs_location_to_uri_string):
16087         * ext/gnomevfs/gstgnomevfs.h:
16088         * ext/gnomevfs/gstgnomevfssink.c:
16089         (gst_gnome_vfs_sink_set_property):
16090         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_set_property):
16091           Make gnomevfssink accept filenames as well as URIs for the
16092           "location" property, just like gnomevfssrc does (and
16093           filesrc/filesink do) (#336190).
16094
16095 2006-03-24  Thomas Vander Stichele <thomas at apestaart dot org>
16096
16097         * tests/check/generic/clock-selection.c: (GST_START_TEST):
16098           set to NULL before unreffing, fixes a valgrind leak.
16099           Why was this not triggering the error that an object needs to
16100           be NULL before unreffing ?
16101         * win32/common/config.h:
16102           update
16103
16104 2006-03-24  Tim-Philipp Müller  <tim at centricular dot net>
16105
16106         * gst/subparse/gstsubparse.c: (convert_encoding),
16107         (gst_sub_parse_change_state):
16108         * gst/subparse/gstsubparse.h:
16109           Text subtitle files may or may not be UTF-8. If it's not, we
16110           don't really want to see '?' characters in place of non-ASCII
16111           characters like accented characters. So let's assume the input
16112           is UTF-8 until we come across text that is clearly not. If it's
16113           not UTF-8, we don't really know what it is, so try the following:
16114           (a) see whether the GST_SUBTITLE_ENCODING environment variable
16115           is set; if not, check (b) if the current locale encoding is
16116           non-UTF-8 and use that if it is, or (c) assume ISO-8859-15 if
16117           the current locale encoding is UTF-8 and the environment variable
16118           was not set to any particular encoding. Not perfect, but better
16119           than nothing (and better than before, I think) (fixes #172848).
16120
16121 2006-03-24  Thomas Vander Stichele <thomas at apestaart dot org>
16122
16123         * configure.ac:
16124           update core requirement to 0.10.4.1 because of async_playback
16125           vmethod on GstBaseSink
16126
16127 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
16128
16129         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
16130         * gst/adder/gstadder.c: (gst_adder_init):
16131         use DEBUG_FUNCPTR for collectpads
16132
16133 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
16134
16135         * docs/plugins/Makefile.am:
16136         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
16137         * docs/plugins/gst-plugins-base-plugins-sections.txt:
16138         * ext/cdparanoia/gstcdparanoiasrc.c:
16139         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_base_init),
16140         (gst_gnome_vfs_sink_class_init):
16141         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_base_init):
16142         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_base_init):
16143         * ext/ogg/gstoggmux.c:
16144         * ext/ogg/gstoggparse.c: (gst_ogg_parse_base_init):
16145         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_base_init),
16146         (gst_ogm_video_parse_base_init), (gst_ogm_text_parse_base_init):
16147         * ext/pango/gsttextoverlay.c:
16148         * ext/pango/gsttextrender.c:
16149         * ext/theora/theoradec.c:
16150         * ext/theora/theoraenc.c:
16151         * ext/vorbis/vorbisdec.c:
16152         * ext/vorbis/vorbisenc.c:
16153         * gst-libs/gst/audio/gstaudiofilter.c:
16154         (gst_audio_filter_base_init):
16155         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
16156         (gst_audio_filter_template_base_init):
16157         * gst/adder/gstadder.c: (gst_adder_get_type):
16158         * gst/adder/gstadder.h:
16159         * gst/audioconvert/gstaudioconvert.c:
16160         * gst/audiotestsrc/gstaudiotestsrc.c:
16161         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
16162         (gst_audio_test_src_create):
16163         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
16164         * gst/playback/gstdecodebin.c:
16165         * gst/playback/gstplaybin.c:
16166         * gst/playback/gststreamselector.c:
16167         (gst_stream_selector_base_init):
16168         * gst/subparse/gstsubparse.c: (gst_sub_parse_base_init):
16169         * gst/volume/gstvolume.c:
16170         * sys/v4l/gstv4lmjpegsink.c:
16171         * sys/v4l/gstv4lmjpegsrc.c:
16172         * tests/check/libs/cddabasesrc.c:
16173         * tests/old/examples/gob/gst-identity2.gob:
16174           Add docs for adder, use GST_ELEMENT_DETAILS macro,
16175           define GstElementDetails at the top
16176
16177 2006-03-23  Sebastien Moutte  <sebastien@moutte.net>
16178
16179         * win32/common/libgstinterfaces.def:
16180         Add a lot of export functions for gst-python
16181         * win32/vs6/libgstinterfaces.dsp:
16182         Add a missing include folder in the project configuration
16183         
16184 2006-03-23  Wim Taymans  <wim@fluendo.com>
16185
16186         * gst-libs/gst/audio/gstbaseaudiosrc.c:
16187         (gst_base_audio_src_get_time), (gst_base_audio_src_create),
16188         (gst_base_audio_src_change_state):
16189         Fix audio sources, forgot to make the ringbuffer
16190         startable...
16191
16192 2006-03-23  Wim Taymans  <wim@fluendo.com>
16193
16194         * gst-libs/gst/audio/gstbaseaudiosrc.c:
16195         (gst_base_audio_src_get_time), (gst_base_audio_src_create),
16196         (gst_base_audio_src_change_state):
16197         unparent instead of unref the ringbuffer.
16198
16199 2006-03-23  Wim Taymans  <wim@fluendo.com>
16200
16201         * gst-libs/gst/audio/gstbaseaudiosink.c:
16202         (gst_base_audio_sink_class_init), (gst_base_audio_sink_async_play),
16203         (gst_base_audio_sink_do_play), (gst_base_audio_sink_change_state):
16204         Implement new async_play vmethod to start slaving and allow
16205         playback start in case of async PLAY state changes. 
16206
16207         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
16208         Enable QoS with new method in base class.
16209
16210 2006-03-23  Wim Taymans  <wim@fluendo.com>
16211
16212         Patch by: Julien MOUTTE <julien at moutte dot net>
16213
16214         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_query),
16215         (gst_video_test_src_do_seek), (gst_video_test_src_create):
16216         Partially handle 0 framerate, only EOS after the first frame
16217         is missing.
16218
16219 2006-03-23  Wim Taymans  <wim@fluendo.com>
16220
16221         Patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
16222
16223         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
16224         (gst_riff_create_video_template_caps):
16225         * gst/ffmpegcolorspace/avcodec.h:
16226         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
16227         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
16228         (gst_ffmpegcsp_avpicture_fill):
16229         * gst/ffmpegcolorspace/imgconvert.c:
16230         Patch for support of YVU9 AVI files (#334822)
16231
16232 2006-03-22  Edward Hervey  <edward@fluendo.com>
16233
16234         * docs/design/design-decodebin.txt:
16235         Added design document for new decodebin
16236         (Target Caps): text/x-pango-markup is also a default target caps.
16237
16238 2006-03-22  Wim Taymans  <wim@fluendo.com>
16239
16240         * gst-libs/gst/audio/gstbaseaudiosink.c:
16241         (gst_base_audio_sink_dispose):
16242         Since we _parent the ringbuffer, we also need to
16243         _unparent instead of a plain _unref.
16244
16245 2006-03-22  Wim Taymans  <wim@fluendo.com>
16246
16247         * tests/examples/seek/seek.c: (end_scrub), (do_seek), (seek_cb),
16248         (stop_seek), (scrub_toggle_cb), (main):
16249         Add scrub checkbox.
16250
16251 2006-03-21  Tim-Philipp Müller  <tim at centricular dot net>
16252
16253         * ext/ogg/gstoggparse.c: (gst_ogg_parse_find_stream),
16254         (gst_ogg_parse_chain):
16255           Fix very inefficient usage of linked lists (#335365).
16256
16257 2006-03-21  Edward Hervey  <edward@fluendo.com>
16258
16259         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
16260         * gst/playback/gstplaybin.c: (handoff):
16261         * gst/playback/gststreamselector.c:
16262         (gst_stream_selector_set_property):
16263         gcc 4.1 unreferenced pointer fixes.
16264         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put):
16265         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
16266         gst_buffer_ref() now takes a GstBuffer*.
16267
16268 2006-03-20  Julien MOUTTE  <julien@moutte.net>
16269
16270         * sys/xvimage/xvimagesink.c:
16271         (gst_xvimagesink_get_format_from_caps): Fix a memleak reported
16272         by Jan Schmidt.
16273
16274 2006-03-19  Tim-Philipp Müller  <tim at centricular dot net>
16275
16276         * gst/typefind/gsttypefindfunctions.c: (id3v2_type_find),
16277         (id3v1_type_find), (apetag_type_find), (plugin_init):
16278           Can't do tag preferences via probability, as tags would then
16279           lose against types that are recognised with MAXIMUM probability
16280           (like .wav); so let all tag typefinders return MAXIMUM themselves
16281           and order them via the rank. Split ID3v1 and ID3v2 typefinders so
16282           that we can prefer APE to ID3v1 (fixes #335028).
16283           
16284 2006-03-17  Wim Taymans  <wim@fluendo.com>
16285
16286         * gst-libs/gst/audio/gstbaseaudiosink.c:
16287         (gst_base_audio_sink_change_state):
16288         * gst-libs/gst/audio/gstringbuffer.c: (wait_segment),
16289         (gst_ring_buffer_may_start):
16290         * gst-libs/gst/audio/gstringbuffer.h:
16291         Only start playback if we are playing.
16292         should fix #330748.
16293
16294 2006-03-17  Jan Schmidt  <thaytan@mad.scientist.com>
16295
16296         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
16297         * win32/common/config.h:
16298           Revert accidental commits to these files.
16299
16300 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
16301
16302         Patch by: Michal Benes  <michal dot benes at xeris dot cz>
16303
16304         * tests/Makefile.am:
16305           Don't try to build tests in tests/icles if we
16306           don't have X (#323852)
16307
16308 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
16309
16310         * gst-libs/gst/tag/gstid3tag.c:
16311           Add TXXX frame identifiers for replaygain stuff as used
16312           by some taggers (see #323721).
16313
16314 2006-03-16  Jan Schmidt  <thaytan@mad.scientist.com>
16315
16316         * gst/playback/gststreamselector.c:
16317         (gst_stream_selector_set_property),
16318         (gst_stream_selector_bufferalloc):
16319           Preserve the existing buggy streamselector behaviour by performing
16320           a fallback buffer allocation when downstream isn't linked yet.
16321           This should really be fixed in playbin by blocking pads until it's
16322           linked them.
16323           Also, use gst_pad_alloc_buffer instead of
16324           gst_pad_alloc_buffer_and_set.
16325
16326 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
16327
16328         * gst-libs/gst/tag/gstid3tag.c:
16329           Don't crash on unknown ID3v2 TXXX frames.
16330           
16331 2006-03-15  Jan Schmidt  <thaytan@mad.scientist.com>
16332
16333         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise):
16334           Chain up to the parent finalize method.
16335           Add 32-bit sample size to the template caps.
16336
16337         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
16338         (gst_riff_create_video_template_caps):
16339           Add the fourcc that the VMWare codec uses.
16340           
16341         * gst/playback/gststreamselector.c:
16342         (gst_stream_selector_set_property),
16343         (gst_stream_selector_bufferalloc),
16344         (gst_stream_selector_request_new_pad):
16345           For the active pad, forward buffer-alloc requests, otherwise
16346           return GST_FLOW_NOT_LINKED. This also prevents xvimagesink
16347           having to memcpy every frame when used by playbin.
16348
16349         * gst/tcp/gstmultifdsink.c:
16350         (gst_multi_fd_sink_handle_client_write):
16351           Get negotiated caps from the sink pad, rather than the sink
16352           pad's peer.
16353
16354 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
16355
16356         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
16357         
16358         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_pop_callbacks):
16359           Don't forget to set src->callbacks_pushed to FALSE again when
16360           popping them, otherwise re-activation in a different mode won't
16361           work (#334620).
16362
16363 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
16364
16365         Patch by: Sebastien Moutte  <sebastien moutte net>
16366
16367         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: (gst_ff_vid_caps_new),
16368         (gst_ff_aud_caps_new), (gst_ffmpeg_pixfmt_to_caps),
16369         (gst_ffmpeg_smpfmt_to_caps):
16370           Replace __VA_ARGS__ caps creation macros with varargs functions.
16371           Makes things compile on MSVC (#320765), looks nicer, and we can
16372           tell the compiler to check for the NULL terminator.
16373
16374 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
16375
16376         Patch by: Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>
16377
16378         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
16379           Make sure the buffer we copy into is really always big
16380           enough, this time for real (#333488).
16381           
16382 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
16383
16384         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
16385           Add support for 24bpp DIB (#305279).
16386
16387 2006-03-14  Wim Taymans  <wim@fluendo.com>
16388
16389         * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_init):
16390         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
16391         * gst/ffmpegcolorspace/gstffmpegcolorspace.c: (gst_ffmpegcsp_init):
16392         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
16393         (gst_video_scale_init), (gst_video_scale_src_event):
16394         Re-enable QoS after the release.
16395         Rework videoscale to use the base class src_event handler.
16396
16397 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
16398
16399         * configure.ac:
16400           back to CVS.
16401
16402 === release 0.10.5 ===
16403
16404 2006-03-13  Thomas Vander Stichele <thomas at apestaart dot org>
16405
16406         * configure.ac:
16407           releasing 0.10.5, "Net"
16408
16409 2006-03-13  Tim-Philipp Müller  <tim at centricular dot net>
16410
16411         * docs/plugins/Makefile.am:
16412           Part of previous cdparanoiasrc docs fixes, forgot to commit.
16413           
16414 2006-03-12  Tim-Philipp Müller  <tim at centricular dot net>
16415
16416         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
16417         * docs/plugins/gst-plugins-base-plugins-sections.txt:
16418         * docs/plugins/gst-plugins-base-plugins.hierarchy:
16419           Add cdparanoiasrc to docs.
16420
16421         * gst-libs/gst/cdda/gstcddabasesrc.c:
16422           More GstCddaBaseSrc docs.
16423
16424 2006-03-12  Tim-Philipp Müller  <tim at centricular dot net>
16425
16426         * docs/libs/gst-plugins-base-libs-sections.txt:
16427         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_user_tag):
16428         * gst-libs/gst/tag/tag.h:
16429           API: libgsttag: new method gst_tag_from_id3_user_tag().
16430
16431 2006-03-11  Tim-Philipp Müller  <tim at centricular dot net>
16432
16433         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
16434           NULL-terminate array of mpeg4 video file extensions.
16435           Fixes crash on PPC (#334226).
16436
16437 2006-03-11  Tim-Philipp Müller  <tim at centricular dot net>
16438
16439         * ext/gnomevfs/gstgnomevfssrc.c:
16440         (gst_gnome_vfs_src_check_get_range):
16441           gnome_vfs_uri_is_local() alone is not a good indicator
16442           whether we can operate in pull-mode with a specific URI,
16443           as it returns FALSE for file:// URIs that point to an
16444           NFS-mounted path. Be more conservative here: whitelist
16445           local files, blacklist http URIs and use the old
16446           mechanism for anything else (fixes #334216).
16447
16448 2006-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
16449
16450         * configure.ac:
16451           back to trunk
16452
16453 === release 0.10.4 ===
16454
16455 2006-03-10  Thomas Vander Stichele <thomas at apestaart dot org>
16456
16457         * configure.ac:
16458           releasing 0.10.4, "Power"
16459
16460 2006-03-10  Jan Schmidt  <thaytan@mad.scientist.com>
16461
16462         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
16463         Disable max-lateness by setting it to -1 for now, so that 
16464         we can bed QoS stuff in thoroughly between now and the next
16465         release.
16466
16467 2006-03-10  Tim-Philipp Müller  <tim at centricular dot net>
16468
16469         Patch by: Fabrizio Gennari
16470
16471         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
16472           Make sure we don't read beyond the palette buffer in case of
16473           broken or manipulated files (#333488)
16474
16475 2006-03-10  Edward Hervey  <edward@fluendo.com>
16476
16477         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
16478         Fix for variable not initialized.
16479
16480 2006-03-09  Wim Taymans  <wim@fluendo.com>
16481
16482         * ext/libvisual/visual.c: (gst_visual_get_type),
16483         (gst_visual_src_setcaps), (gst_vis_src_negotiate),
16484         (gst_visual_chain):
16485         Small cleanups.
16486
16487         * ext/theora/gsttheoradec.h:
16488         * ext/theora/theoradec.c: (gst_theora_dec_init),
16489         (gst_theora_dec_reset), (_theora_granule_time),
16490         (theora_dec_src_convert), (theora_dec_sink_convert),
16491         (theora_dec_src_query), (theora_dec_src_event),
16492         (theora_dec_sink_event), (theora_handle_comment_packet),
16493         (theora_handle_header_packet), (theora_dec_push),
16494         (theora_handle_data_packet), (theora_dec_chain),
16495         (theora_dec_change_state):
16496         Add simple QoS.
16497
16498 2006-03-09  Wim Taymans  <wim@fluendo.com>
16499
16500         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
16501         (audiocast_register_listener), (gst_gnome_vfs_src_start):
16502         Some cleanups.
16503
16504 2006-03-09  Wim Taymans  <wim@fluendo.com>
16505
16506         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
16507         Don't try to activate NULL chains.
16508
16509 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
16510
16511         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
16512           Fix invalid memory access to region before peek'd data (#332964).
16513
16514 2006-03-09  Wim Taymans  <wim@fluendo.com>
16515
16516         Patch by: Christophe Fergeau
16517
16518         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init):
16519         * ext/pango/gsttextrender.c: (gst_text_render_init):
16520         * gst/adder/gstadder.c: (gst_adder_init):
16521         Don't leak padtemplates, closes #333510.
16522
16523 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
16524
16525         * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
16526           Fix invalid memory access: make sure string passed to
16527           regexec() is NUL-termianted.
16528
16529 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
16530
16531         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
16532         (mp3_type_find):
16533           Refactor mpeg/audio typefinding to make it more maintainable
16534           and easier to fine-tune. Make probing into middle of the file
16535           work properly (fixes #333900, also see #152688).
16536
16537 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
16538
16539         * gst/typefind/gsttypefindfunctions.c:
16540         (utf8_type_find_have_valid_utf8_at_offset):
16541           Remove part from previous commit that was bogus:
16542           g_utf8_validate() does in fact not accept embedded
16543           zeroes, so we don't need to check for those (thanks
16544           to Mike for the hint).
16545
16546 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
16547
16548         * gst/typefind/gsttypefindfunctions.c:
16549         (utf8_type_find_count_embedded_zeroes),
16550         (utf8_type_find_have_valid_utf8_at_offset), (utf8_type_find):
16551           Make plain/text typefinder more conservative: firstly, check
16552           for embedded zeroes, which are perfectly valid UTF-8 characters,
16553           but also a fairly good sign that something is not a plain text
16554           file; secondly, probe into the middle of the file if possible.
16555           If we can't probe into the middle, limit the probability value
16556           to be returned to TYPE_FIND_POSSIBLE (see #333900).
16557
16558 2006-03-08  Michael Smith  <msmith@fluendo.com>
16559
16560         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
16561           Make typefind function name for mpeg4 video unique.
16562
16563 2006-03-08  Wim Taymans  <wim@fluendo.com>
16564
16565         * ext/libvisual/visual.c: (gst_visual_init),
16566         (gst_visual_clear_actors), (gst_visual_dispose),
16567         (gst_visual_reset), (gst_visual_src_setcaps),
16568         (gst_visual_sink_setcaps), (gst_vis_src_negotiate),
16569         (gst_visual_sink_event), (gst_visual_src_event), (get_buffer),
16570         (gst_visual_chain), (gst_visual_change_state):
16571         Cleanups, post nice errors.
16572         Handle sink and src events.
16573         Implement simple QoS.
16574
16575         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
16576         Use new basesink methods to configure max-lateness.
16577         Small doc update.
16578
16579         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
16580         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps):
16581         Debug statement cleanups.
16582
16583         * gst/volume/gstvolume.c: (gst_volume_class_init):
16584         Simple cleanup.
16585
16586 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
16587
16588         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init),
16589         (gst_text_overlay_init), (gst_text_overlay_set_property),
16590         (gst_text_overlay_get_property):
16591           Revert API/ABI break from March 1. Keep 'halign' and 'valign'
16592           as string type properties, but mark them deprecated. Add
16593           'halignment' and 'valignment' properties that use enums
16594           instead of strings.
16595
16596 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
16597
16598         Patch by: Fabrizio Gennari
16599
16600         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
16601           Allow palettes with less than 256 colours in AVI files
16602           (#333488)
16603
16604 2006-03-07  Julien MOUTTE  <julien@moutte.net>
16605
16606         * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event),
16607         (gst_text_overlay_video_event): Fix wrong EOS handling on text
16608         pad. We were releasing the queued text buffer when we should keep
16609         it until video pad gets EOS or discard the text buffer because it's
16610         too old. That was eating the last subtitle buffer. Add some more
16611         debug.
16612
16613 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
16614
16615         * ext/pango/gsttextoverlay.c: (gst_text_overlay_render_text),
16616         (gst_text_overlay_video_chain):
16617           Fix invalid memory access (we can't access a buffer after it's been
16618           pushed downstream without taking a reference); fix memory leak (if
16619           there's no text to render, bail out before allocating stuff).
16620
16621 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
16622
16623         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
16624         (gst_text_overlay_setcaps_txt), (gst_text_overlay_video_chain):
16625         * ext/pango/gsttextoverlay.h:
16626           If input is plain text, escape it before passing it to
16627           pango_layout_set_markup().
16628
16629 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
16630
16631         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_chain):
16632           Don't ignore flow return from gst_pad_push().
16633
16634 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
16635
16636         Patch by: Fabrizio Gennari
16637
16638         * ext/libvisual/visual.c: (gst_visual_getcaps),
16639         (gst_visual_src_setcaps), (gst_visual_sink_setcaps):
16640         * ext/ogg/gstoggmux.c: (gst_ogg_mux_sinkconnect):
16641         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
16642         (gst_vorbisenc_convert_sink):
16643         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size),
16644         (gst_audio_duration_from_pad_buffer):
16645         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_link),
16646         (gst_audio_filter_chain):
16647         * gst-libs/gst/rtp/gstbasertpdepayload.c:
16648         (gst_base_rtp_depayload_setcaps):
16649         * gst-libs/gst/video/video.c: (gst_video_frame_rate),
16650         (gst_video_get_size):
16651         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
16652           Don't leak references returned by gst_pad_get_parent()
16653           (#333663)
16654
16655 2006-03-06  Stefan Kost  <ensonic@users.sf.net>
16656
16657         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
16658           change location param details
16659         * gst/volume/gstvolume.c: (plugin_init):
16660           correct plugin description
16661
16662 2006-03-06  Tim-Philipp Müller  <tim at centricular dot net>
16663
16664         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
16665         (gst_gnome_vfs_src_check_get_range):
16666           Override GstBaseSrc::check_get_range() in order to avoid opening
16667           the resource just to check whether we can operate in pull-mode or
16668           not - we can predict that pretty well from the URI alone. Should
16669           fix problems with last.fm (#331690). (Requires latest core CVS).
16670
16671 2006-03-06  Wim Taymans  <wim@fluendo.com>
16672
16673         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
16674         (gst_video_sink_class_init):
16675         Throw away frames that are later than 20 ms.
16676
16677 2006-03-06  Tim-Philipp Müller  <tim at centricular dot net>
16678
16679         Patch by: Fabrizio Gennari
16680
16681         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
16682           Set depth on WMA caps (#333545)
16683
16684 2006-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
16685
16686         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
16687         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
16688           put Theora BOS pages before others.  This hardcodes
16689           the Ogg/Theora I profile, but hey.
16690
16691 2006-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
16692
16693         * ext/ogg/README:
16694           updated with some examples
16695         * ext/theora/theoraenc.c: (granulepos_to_timestamp),
16696         (granulepos_add), (theora_buffer_from_packet):
16697         * ext/vorbis/vorbisenc.c: (granulepos_to_timestamp_offset),
16698         (granulepos_to_timestamp), (gst_vorbisenc_buffer_from_packet),
16699         (gst_vorbisenc_chain):
16700           implement strategy from ext/ogg/README
16701         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
16702         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
16703         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_compare_pads),
16704         (gst_ogg_mux_queue_pads), (gst_ogg_mux_collected):
16705           Fix muxer so that oggz-validate is happy with all streams;
16706           except for no eos mark, and the BOS page ordering
16707         * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
16708         (check_buffer_granulepos):
16709         * tests/check/pipelines/vorbisenc.c: (check_buffer_granulepos):
16710           update tests to check for OFFSET being set as requested
16711           fixed type of granulepos, it's not a ClockTime
16712
16713 2006-03-05  Julien MOUTTE  <julien@moutte.net>
16714
16715         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
16716         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
16717         Check that the xvimage we are creating has a correct size
16718         before returning it. (#314897)
16719
16720 2006-03-05  Tim-Philipp Müller  <tim at centricular dot net>
16721
16722         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
16723           Give id3 and ape tag typefinders a rank slightly higher
16724           than PRIMARY to ensure they're always run before any of
16725           the other typefinders (in particular wav and mp3) (#324186).
16726
16727 2006-03-05  Tim-Philipp Müller  <tim at centricular dot net>
16728
16729         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
16730           Add support for '3IVD' fourcc (#333403).
16731
16732 2006-03-04  Tim-Philipp Müller  <tim at centricular dot net>
16733
16734         * configure.ac:
16735           Bump requirements to GStreamer CVS for the new error enum.
16736
16737         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_render):
16738           Emit new GST_RESOURCE_ERROR_NO_SPACE_LEFT when there's no
16739           space left on the device (fixes #333352).
16740
16741 2006-03-04  Sebastien Moutte  <sebastien@moutte.net>
16742
16743         * win32/vs6:
16744           add a project file for libgstvolume
16745           update the workspace
16746
16747 2006-03-03  Thomas Vander Stichele  <thomas at apestaart dot org>
16748
16749         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
16750         * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
16751         (GST_START_TEST):
16752           Fix for http://bugzilla.gnome.org/show_bug.cgi?id=333254
16753           Set IN_CAPS on header buffers
16754
16755 2006-03-02  Wim Taymans  <wim@fluendo.com>
16756
16757         * docs/plugins/Makefile.am:
16758         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
16759         * docs/plugins/gst-plugins-base-plugins-sections.txt:
16760         Add audioresample to docs.
16761
16762         * gst/audioconvert/gstaudioconvert.c:
16763         Add revision date.
16764
16765         * gst/audioresample/gstaudioresample.c:
16766         (gst_audioresample_base_init), (gst_audioresample_class_init),
16767         (gst_audioresample_init), (gst_audioresample_dispose),
16768         (audioresample_get_unit_size), (audioresample_transform_caps),
16769         (resample_set_state_from_caps), (audioresample_transform_size),
16770         (audioresample_set_caps), (audioresample_event),
16771         (audioresample_do_output), (audioresample_transform),
16772         (audioresample_pushthrough), (gst_audioresample_set_property),
16773         (gst_audioresample_get_property), (plugin_init):
16774         * gst/audioresample/gstaudioresample.h:
16775         Added docs.
16776         Small code cleanups.
16777
16778 2006-03-02  Wim Taymans  <wim@fluendo.com>
16779
16780         * docs/plugins/Makefile.am:
16781         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
16782         * docs/plugins/gst-plugins-base-plugins-sections.txt:
16783         Added videoscale to docs.
16784
16785         * gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
16786         (gst_video_rate_swap_prev), (gst_video_rate_event),
16787         (gst_video_rate_chain):
16788         Fix typo in docs.
16789
16790         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
16791         (gst_video_scale_init), (gst_video_scale_prepare_size),
16792         (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
16793         (gst_video_scale_fixate_caps), (gst_video_scale_transform):
16794         * gst/videoscale/gstvideoscale.h:
16795         Added docs, examples.
16796         Some code cleanups.
16797         Post errors instead of g_warning.
16798
16799 2006-03-02  Wim Taymans  <wim@fluendo.com>
16800
16801         * docs/libs/gst-plugins-base-libs-docs.sgml:
16802         * docs/libs/gst-plugins-base-libs-sections.txt:
16803         * docs/libs/gst-plugins-base-libs.types:
16804         * docs/plugins/Makefile.am:
16805         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
16806         * docs/plugins/gst-plugins-base-plugins-sections.txt:
16807         Added some more docs to libs and plugins.
16808
16809         * gst-libs/gst/audio/gstringbuffer.c:
16810         (gst_ring_buffer_prepare_read), (gst_ring_buffer_clear):
16811         * gst-libs/gst/audio/gstringbuffer.h:
16812         Document ringbuffer some more.
16813
16814         * gst/videorate/gstvideorate.c: (gst_video_rate_class_init),
16815         (gst_video_rate_setcaps), (gst_video_rate_reset),
16816         (gst_video_rate_init), (gst_video_rate_flush_prev),
16817         (gst_video_rate_swap_prev), (gst_video_rate_event),
16818         (gst_video_rate_chain), (gst_video_rate_change_state):
16819         * gst/videorate/gstvideorate.h:
16820         Fix videorate to use segments.
16821         Make it work with 0/1 framerates (closes #331903)
16822         Handle EOS correctly.
16823         Added docs.
16824
16825 2006-03-02  Tim-Philipp Müller  <tim at centricular dot net>
16826
16827         * ext/ogg/gstogmparse.c: (gst_ogm_parse_class_init),
16828         (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
16829         (gst_ogm_text_parse_init), (gst_ogm_parse_change_state):
16830           In state change function, first chain up to parent class,
16831           then handle downwards state change stuff. Remove some
16832           commented out cruft from 0.8 code.
16833
16834 2006-03-02  Tim-Philipp Müller  <tim at centricular dot net>
16835
16836         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
16837         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
16838         (gst_ogm_parse_sink_convert), (gst_ogm_parse_sink_query),
16839         (gst_ogm_parse_chain):
16840           Don't remove/re-add source pad if the new caps are the same as
16841           the old caps anyway (#333042). When removing source pad, don't
16842           unref it afterwards - we didn't ref it when adding. Sprinkle some
16843           GST_DEBUG_FUNCPTR goodness here and there. Don't leak references
16844           after using gst_pad_get_parent(). Return downstream flow return
16845           value in chain function.
16846
16847 2006-03-02  Wim Taymans  <wim@fluendo.com>
16848
16849         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
16850         * docs/plugins/gst-plugins-base-plugins.args:
16851         * docs/plugins/gst-plugins-base-plugins.hierarchy:
16852         * docs/plugins/gst-plugins-base-plugins.interfaces:
16853         * docs/plugins/gst-plugins-base-plugins.signals:
16854         Fix hierarchy, added some more elements to the docs.
16855
16856         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
16857         (gst_ffmpegcsp_get_type):
16858         * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
16859         Fix docs for ffmpegcolorspace.
16860
16861 2006-03-01  Tim-Philipp Müller  <tim at centricular dot net>
16862
16863         * gst/typefind/gsttypefindfunctions.c: (id3_type_find),
16864         (apetag_type_find), (ape_type_find), (plugin_init):
16865           Some typefinding fine-tuning:
16866           - rank ID3/APE tags in order of preference via probabilities, so that
16867             ID3v2 > APEv2 > APEv1 > ID3v1.
16868           - three or four bytes don't really justify MAXIMUM probability,
16869             change those to 'very likely' (musepack and monkeysaudio).
16870
16871 2006-03-01  Wim Taymans  <wim@fluendo.com>
16872
16873         * docs/plugins/Makefile.am:
16874         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
16875         * docs/plugins/gst-plugins-base-plugins-sections.txt:
16876         * ext/alsa/gstalsamixer.c:
16877         * ext/alsa/gstalsamixer.h:
16878         * ext/alsa/gstalsamixerelement.c:
16879         (gst_alsa_mixer_element_class_init), (gst_alsa_mixer_element_init):
16880         * ext/alsa/gstalsamixerelement.h:
16881         * ext/alsa/gstalsasink.c:
16882         * ext/alsa/gstalsasink.h:
16883         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
16884         (gst_alsasrc_init):
16885         * ext/alsa/gstalsasrc.h:
16886         Added alsa docs.
16887         Small code cleanups.
16888
16889 2006-03-01  Wim Taymans  <wim@fluendo.com>
16890
16891         * ext/theora/Makefile.am:
16892         Dist new header too,
16893
16894 2006-03-01  Wim Taymans  <wim@fluendo.com>
16895
16896         * docs/plugins/Makefile.am:
16897         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
16898         * docs/plugins/gst-plugins-base-plugins-sections.txt:
16899         * ext/gnomevfs/gstgnomevfssink.h:
16900         * ext/gnomevfs/gstgnomevfssrc.h:
16901         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
16902         * ext/vorbis/vorbisdec.h:
16903         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_sink):
16904         * ext/vorbis/vorbisenc.h:
16905         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps),
16906         (vorbis_parse_chain), (vorbis_parse_change_state):
16907         * ext/vorbis/vorbisparse.h:
16908         * gst/audioconvert/gstaudioconvert.h:
16909         * gst/tcp/gsttcpserversink.h:
16910         * gst/videotestsrc/gstvideotestsrc.c:
16911         * gst/videotestsrc/gstvideotestsrc.h:
16912         * gst/volume/gstvolume.c:
16913         * gst/volume/gstvolume.h:
16914         Fix some more docs.
16915         Added docs for vorbisdec and vorbisparse.
16916         Fix vorbisparse.
16917
16918 2006-03-01  Wim Taymans  <wim@fluendo.com>
16919
16920         * docs/plugins/Makefile.am:
16921         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
16922         * docs/plugins/gst-plugins-base-plugins-sections.txt:
16923         * ext/pango/gstclockoverlay.h:
16924         * ext/pango/gsttextoverlay.h:
16925         * ext/pango/gsttextrender.h:
16926         * ext/pango/gsttimeoverlay.h:
16927         * ext/theora/gsttheoradec.h:
16928         * ext/theora/gsttheoraenc.h:
16929         * ext/theora/theoradec.c:
16930         * ext/theora/theoraenc.c:
16931         * gst/audioconvert/gstaudioconvert.h:
16932         * gst/audiotestsrc/gstaudiotestsrc.h:
16933         * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
16934         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
16935         * gst/tcp/gstmultifdsink.h:
16936         Updated/added documentation.
16937
16938         * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
16939         (gst_text_overlay_halign_get_type),
16940         (gst_text_overlay_wrap_mode_get_type),
16941         (gst_text_overlay_base_init), (gst_text_overlay_class_init),
16942         (gst_text_overlay_init), (gst_text_overlay_set_property),
16943         (gst_text_overlay_get_property):
16944         Fix up properties to be enums instead of string to make bindings,
16945         introspection and automatic GUI creation possible.
16946         Add getters for the properties.
16947
16948 2006-02-28  Sebastien Moutte  <sebastien@moutte.net>
16949
16950         * gst/audiotestsrc/gstaudiotestsrc.c:
16951           added defines of M_PI and M_PI_2
16952         * gst/ffmpegcolorspace/avcodec.h:
16953           removed #include "stdint.h" for win32 as _stdint.h is 
16954           autogenerated to win32/common
16955         * win32/common/libgstaudio.def:
16956         * win32/common/libgsttag.def:
16957           added some exports
16958         * win32/vs6:
16959           some project files bugs corrected
16960         * win32/vs7:
16961           project files are reset to the default vs7 configuration 
16962           (they link to msvcr71.dll using default optimizations)
16963           
16964 2006-02-28  Wim Taymans  <wim@fluendo.com>
16965
16966         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
16967         Fix some docs.
16968
16969 2006-02-28  Edward Hervey  <edward@fluendo.com>
16970
16971         * ext/alsa/gstalsasrc.c:
16972         Set proper class on the ElementDetails:
16973         Source/Audio instead of Src/Audio/
16974
16975 2006-02-28  Edward Hervey  <edward@fluendo.com>
16976
16977         * gst/videoscale/vs_scanline.c:
16978         (vs_scanline_resample_nearest_RGBA):
16979         Revert optimization in videoscale. It should go in liboil and have
16980         an appropriate liboil function.
16981
16982 2006-02-28  Wim Taymans  <wim@fluendo.com>
16983
16984         * gst-libs/gst/audio/gstbaseaudiosink.c:
16985         (gst_base_audio_sink_provide_clock):
16986         Don't try to provide a clock in the NULL state.
16987
16988 2006-02-28  Wim Taymans  <wim@fluendo.com>
16989
16990         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
16991         (gst_ogg_pad_event), (gst_ogg_pad_internal_chain),
16992         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
16993         (gst_ogg_demux_deactivate_current_chain),
16994         (gst_ogg_demux_activate_chain), (gst_ogg_demux_do_seek),
16995         (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_info),
16996         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
16997         (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
16998         Use GstSegment infrastructure to remove duplicated code
16999         and handle more seek cases correctly.
17000
17001 2006-02-28  Wim Taymans  <wim@fluendo.com>
17002
17003         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
17004         (gst_ffmpegcsp_transform):
17005         Don't ignore return code from ffmpeg convert function.
17006
17007         * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
17008         Split out some long statements to ease debugging.
17009
17010 2006-02-27  Jan Schmidt  <thaytan@mad.scientist.com>
17011
17012         * ext/libvisual/visual.c: (gst_visual_init),
17013         (gst_vis_src_negotiate), (get_buffer), (plugin_init):
17014         Don't use gst_pad_use_fixed_caps, because it prevents downstream from
17015         being able to renegotiate the size. Instead, use the negotiation
17016         algorithm from the goom plugin to pick an initial output caps. 
17017
17018         Also, allow theoretical libvisual plugins that might support non-GL 
17019         output even if they also do GL.
17020
17021 2006-02-26  Julien MOUTTE  <julien@moutte.net>
17022
17023         * ext/libvisual/visual.c: (gst_visual_init),
17024         (gst_visual_src_setcaps), (get_buffer), (gst_visual_chain),
17025         (plugin_init): Load only non GL plugins. Fix some memleaks and 
17026         possible negotiation issues.
17027
17028 2006-02-25  Julien MOUTTE  <julien@moutte.net>
17029
17030         * gst-libs/gst/tag/tag.h: Adding Annodex tags here.
17031
17032 2006-02-24  Michael Smith  <msmith@fluendo.com>
17033
17034         * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find),
17035         (cmml_type_find), (plugin_init):
17036           Fix CMML type find function to not require a specific minor version
17037           of the CMML header.
17038
17039           Add an MPEG4 video elementary stream typefind function.
17040
17041 2006-02-04  Michael Smith  <msmith@fluendo.com>
17042
17043         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_parse_skeleton_fishead),
17044         (gst_ogg_pad_parse_skeleton_fisbone), (gst_ogg_pad_query_convert),
17045         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
17046         (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
17047         (gst_ogg_demux_read_end_chain), (gst_ogg_demux_collect_chain_info),
17048         (gst_ogg_demux_change_state), (gst_annodex_granule_to_time):
17049           Annodex support in ogg demuxer. Doesn't do very much without the
17050           other annodex patches (to come).
17051
17052 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
17053
17054         Patch by: Fabrizio Gennari <fabrizio dot get at tiscali dot it>
17055
17056         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
17057           Pick up palette for MS video v1 (#327028)
17058
17059 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
17060
17061         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
17062         (gst_ffmpegcsp_caps_remove_format_info),
17063         (gst_ffmpegcsp_get_unit_size):
17064           The 'palette_data' field from incoming RGB caps shouldn't be
17065           proxied on outgoing YUV caps; also, restrict unit size
17066           adjustment in case of paletted data only to the unit that
17067           actually has a palette. Fixes #330711.
17068
17069 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
17070
17071         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
17072         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
17073         (gst_ffmpegcsp_finalize), (gst_ffmpegcsp_class_init),
17074         (gst_ffmpegcsp_get_unit_size):
17075           Plug some memory leaks.
17076
17077 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
17078
17079         * sys/ximage/Makefile.am:
17080         * sys/xvimage/Makefile.am:
17081           Add some _CFLAGS and _LIBS that seem to be missing
17082           and/or required for Cygwin (see #317048).
17083
17084 2006-02-22  Wim Taymans  <wim@fluendo.com>
17085
17086         * ext/alsa/gstalsasrc.c:
17087         Fix description as pointed out by caugier.
17088
17089 2006-02-22  Tommi Myöhänen  <ext-tommi do myohanen at nokia dot com>
17090
17091         Reviewed by : Edward Hervey  <edward@fluendo.com>
17092
17093         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
17094         (qt_type_find):
17095         Better 3gp typefinding (#331526).
17096
17097 2006-02-21  Tim-Philipp Müller  <tim at centricular dot net>
17098
17099         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
17100           Don't send EOS event here, the base class will send one for us.
17101
17102         * gst/playback/gstplaybasebin.c: (prepare_output):
17103           Subpictures without video stream aren't allowed either.
17104         
17105         * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
17106           Fix debug statement copy'n'paste-o.
17107
17108 2006-02-21  Tim-Philipp Müller  <tim at centricular dot net>
17109
17110         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume):
17111           Fix issues with mixer keeping state when muting/unmuting
17112           and when changing the volume whilst muted (see #331763
17113           and #331765).
17114
17115 2006-02-20  Tim-Philipp Müller  <tim at centricular dot net>
17116
17117         * gst/subparse/gstsubparse.c: (subrip_unescape_formatting),
17118         (parse_subrip), (gst_sub_parse_format_autodetect):
17119           Set right caps given that we send escaped text. Also,
17120           honour <i></i>, <b></b> and <u></u> markers that can be found
17121           in .srt files (fixes #310202).
17122
17123 2006-02-20  Tim-Philipp Müller  <tim at centricular dot net>
17124
17125         * gst-libs/gst/audio/mixerutils.c:
17126         (element_factory_rank_compare_func):
17127           Make order in which elements are tried more determinable.
17128
17129 2006-02-20  Julien MOUTTE  <julien@moutte.net>
17130
17131         * gst/playback/gstdecodebin.c: (get_our_ghost_pad),
17132         (remove_element_chain), (cleanup_decodebin),
17133         (gst_decode_bin_change_state): Make decodebin reusable by
17134         fixing remove_element_chain first and then introduce a
17135         cleaner in state change to ->NULL. (Closes #331678)
17136
17137 2006-02-19  Wim Taymans  <wim@fluendo.com>
17138
17139         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_open_file):
17140         use 0666 mask when creating files so umask gets applied
17141         correctly. Fixes #331295.
17142
17143 2006-02-19  Tim-Philipp Müller  <tim at centricular dot net>
17144
17145         * gst/subparse/Makefile.am:
17146         * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
17147         (gst_ssa_parse_dispose), (gst_ssa_parse_init),
17148         (gst_ssa_parse_class_init), (gst_ssa_parse_src_event),
17149         (gst_ssa_parse_sink_event), (gst_ssa_parse_setcaps),
17150         (gst_ssa_parse_remove_override_codes), (gst_ssa_parse_parse_line),
17151         (gst_ssa_parse_chain), (gst_ssa_parse_change_state):
17152         * gst/subparse/gstssaparse.h:
17153         * gst/subparse/gstsubparse.c: (plugin_init):
17154           Add very basic parser for SSA subtitle streams (as often
17155           found in matroska files).
17156
17157 2006-02-19  Tim-Philipp Müller  <tim at centricular dot net>
17158
17159         * gst/playback/gstdecodebin.c: (mimetype_is_raw):
17160           That should be text/x-pango-markup, not text/x-pango-layout.
17161
17162 2006-02-19  Julien MOUTTE  <julien@moutte.net>
17163
17164         * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize):
17165         Polishing.
17166
17167 2006-02-19  Julien MOUTTE  <julien@moutte.net>
17168
17169         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
17170         (gst_text_overlay_finalize), (gst_text_overlay_init),
17171         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
17172         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
17173         (gst_text_overlay_text_event), (gst_text_overlay_video_event),
17174         (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
17175         (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
17176         Fix state change deadlock.
17177
17178 2006-02-19  Julien MOUTTE  <julien@moutte.net>
17179
17180         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
17181         (gst_text_overlay_finalize), (gst_text_overlay_init),
17182         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
17183         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
17184         (gst_text_overlay_text_event), (gst_text_overlay_video_event),
17185         (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
17186         (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
17187         * ext/pango/gsttextoverlay.h: Fix seeking both for muxed formats
17188         and subtitles files.
17189
17190 2006-02-19  Julien MOUTTE  <julien@moutte.net>
17191
17192         * gst/playback/gstdecodebin.c: (mimetype_is_raw): pango layout
17193         should be considered as raw.
17194
17195 2006-02-19  Julien MOUTTE  <julien@moutte.net>
17196
17197         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
17198         (cb_probe):
17199         * gst/playback/gststreaminfo.h: Introduce language informations.
17200
17201 2006-02-18  Jan Schmidt  <thaytan@mad.scientist.com>
17202
17203         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
17204         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
17205         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
17206         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new):
17207         Set shared memory segments to be deleted as soon as we have attached,
17208         that way they get cleaned up automatically if we crash.
17209
17210 2006-02-18  Julien MOUTTE  <julien@moutte.net>
17211
17212         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_get_text): 
17213         * ext/pango/gsttimeoverlay.c: (gst_time_overlay_get_text): Those
17214         functions are called with lock held.
17215
17216 2006-02-18  Julien MOUTTE  <julien@moutte.net>
17217
17218         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
17219         (gst_text_overlay_finalize), (gst_text_overlay_init),
17220         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
17221         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
17222         (gst_text_overlay_text_pad_unlink), (gst_text_overlay_text_event),
17223         (gst_text_overlay_video_event), (gst_text_overlay_pop_text),
17224         (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
17225         (gst_text_overlay_change_state): Refactoring of textoverlay
17226         without collectpads. This now supports sparse subtitles coming
17227         from a demuxer instead of a sub file. Seeking is still broken 
17228         though. Need to discuss with wtay some more on how to handle
17229         seeking correctly.
17230         * ext/pango/gsttextoverlay.h:
17231         * gst/playback/gstplaybin.c: (setup_sinks): Support linking with
17232         subtitles coming from the demuxer.
17233
17234 2006-02-17  Wim Taymans  <wim@fluendo.com>
17235
17236         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
17237         (gst_vorbisenc_convert_sink):
17238         Use some more scaling functions.
17239
17240 2006-02-17  Tim-Philipp Müller  <tim at centricular dot net>
17241
17242         * ext/cdparanoia/gstcdparanoiasrc.c:
17243         (gst_cd_paranoia_src_class_init), (gst_cd_paranoia_dummy_callback),
17244         (gst_cd_paranoia_paranoia_callback),
17245         (gst_cd_paranoia_src_signal_is_being_watched),
17246         (gst_cd_paranoia_src_read_sector):
17247         * ext/cdparanoia/gstcdparanoiasrc.h:
17248           Add back 'transport-error' and 'uncorrected-error' signals and
17249           make them actually be fired when bad stuff happens (#319340).
17250
17251 2006-02-17  Wim Taymans  <wim@fluendo.com>
17252
17253         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
17254         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
17255         (gst_ring_buffer_device_is_open), (gst_ring_buffer_acquire),
17256         (gst_ring_buffer_release), (gst_ring_buffer_set_flushing),
17257         (gst_ring_buffer_start), (gst_ring_buffer_pause_unlocked),
17258         (gst_ring_buffer_pause), (gst_ring_buffer_stop),
17259         (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
17260         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
17261         (gst_ring_buffer_commit), (gst_ring_buffer_prepare_read),
17262         (gst_ring_buffer_clear):
17263         Small cleanups.
17264         Added some G_LIKELY.
17265
17266 2006-02-17  Wim Taymans  <wim@fluendo.com>
17267
17268         * gst-libs/gst/audio/TODO:
17269         Update TODO
17270
17271         * gst-libs/gst/audio/gstbaseaudiosink.c:
17272         (gst_base_audio_sink_get_offset):
17273         When trying to play samples ASAP and we don't have a
17274         previous sample, try to play at position 0 instead of
17275         an invalid position.
17276
17277 2006-02-17  Wim Taymans  <wim@fluendo.com>
17278
17279         * ext/alsa/gstalsasink.c: (gst_alsasink_open),
17280         (gst_alsasink_reset):
17281         Also release lock when we get an error in _reset();
17282         fix an error message.
17283
17284 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
17285
17286         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
17287         (gst_alsasink_init), (get_channel_free_structure),
17288         (caps_add_channel_configuration), (gst_alsasink_getcaps),
17289         (gst_alsasink_close):
17290         * ext/alsa/gstalsasink.h:
17291           Add support for more than 2 channels (#326720).
17292
17293 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
17294
17295         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
17296           Set codec_name for WAVEFORMATEX as well. When we have 'normal PCM'
17297           with 4 or 6 channels, assume a default channel layout to make things
17298           work (not sure there's anything else we can do in those cases).
17299
17300 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
17301
17302         * gst-libs/gst/audio/multichannel.c:
17303           Minor docs fix.
17304
17305         * gst-libs/gst/riff/Makefile.am:
17306         * gst-libs/gst/riff/riff-ids.h:
17307         * gst-libs/gst/riff/riff-media.c:
17308         (gst_riff_wavext_add_channel_layout), (gst_riff_create_audio_caps):
17309           Add support for WAVEFORMATEX, eg. PCM audio with more than two
17310           channels and a channel layout map.
17311           
17312 2006-02-16  Mathieu Garcia <b0nk at free dot fr>
17313
17314         Reviewed by Edward Hervey  <edward@fluendo.com>
17315
17316         * gst/videoscale/vs_scanline.c: (vs_scanline_resample_nearest_RGBA): 
17317         C-level optimization of the RGBA nearest neighbour function.
17318         Eventually this might end up in liboil with vectorized versions.
17319
17320 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
17321
17322         * gst-libs/gst/audio/multichannel.c:
17323         (gst_audio_get_channel_positions):
17324           When we have more than 2 channels, but no channel layout is
17325           specified in the caps, return some default channel layout
17326           to the caller and warn about about a possibly buggy element
17327           (could be buggy filtercaps as well of course) (#317038).
17328
17329 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
17330
17331         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
17332           Add gst-libs/gst/cdda to list of lib search paths.
17333
17334 2006-02-15  Andy Wingo  <wingo@pobox.com>
17335
17336         * ext/ogg/gstoggmux.c (gst_ogg_mux_collected): When updating
17337         timestamp, update timestamp_end as well. Fixes a bugaboo. I hope
17338         to the Lord Jesus that I do not have to touch the ogg muxer ever
17339         again.
17340
17341 2006-02-15  Edward Hervey  <edward@fluendo.com>
17342
17343         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
17344         quicktime movie files can also contain 'uuid' atoms.
17345
17346 2006-02-14  Tim-Philipp Müller  <tim at centricular dot net>
17347
17348         * gst/audioconvert/plugin.c: (plugin_init):
17349           Register the GstAudioChannelPosition enum type with the type
17350           system in the plugin_init function, so that it is known before
17351           any element actually makes use of multi-channel stuff. This is
17352           required for example if one wants to be able to deserialise/use
17353           a caps string with channel positions before any pipeline has
17354           been setup and started, like with gst-launch.
17355
17356 2006-02-14  Wim Taymans  <wim@fluendo.com>
17357
17358         * gst-libs/gst/audio/gstringbuffer.c:
17359         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_delay),
17360         (gst_ring_buffer_samples_done), (wait_segment),
17361         (gst_ring_buffer_commit), (gst_ring_buffer_clear):
17362         Add some compiler G_(UN_)LIKELY help.
17363         SIGNAL the ringbuffer waiters when going to PAUSED as well to
17364         make sure they can exit their functions. Should fix #330748
17365
17366 2006-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
17367
17368         * Makefile.am:
17369         * configure.ac:
17370         * win32/MANIFEST:
17371         * win32/common/_stdint.h:
17372           Windows does not have long long; copy the generated _stdint.h
17373         * win32/common/interfaces-enumtypes.c:
17374         (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
17375         (gst_mixer_track_flags_get_type),
17376         (gst_tuner_channel_flags_get_type):
17377         * win32/common/multichannel-enumtypes.c:
17378         (gst_audio_channel_position_get_type):
17379           update
17380
17381 2006-02-13  Wim Taymans  <wim@fluendo.com>
17382
17383         * gst-libs/gst/audio/gstbaseaudiosink.c:
17384         (gst_base_audio_sink_get_time), (gst_base_audio_sink_preroll),
17385         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
17386         Always sync on first sample we receive when starting.
17387
17388 2006-02-13  Wim Taymans  <wim@fluendo.com>
17389
17390         * gst/playback/gstplaybin.c: (gen_vis_element):
17391         Update vis bin docs.
17392         Move queue after tee so we don't queue video buffers but
17393         audio samples instead. Fixes problems where the video queue
17394         is filled and the audio queue empty.
17395
17396 2006-02-13  Tim-Philipp Müller  <tim at centricular dot net>
17397
17398         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
17399           No need to push an EOS event here, GstBaseSrc will do that for us
17400           when we return FLOW_UNEXPECTED.
17401           
17402 2006-02-12  Wim Taymans  <wim@fluendo.com>
17403
17404         * gst-libs/gst/audio/gstbaseaudiosink.c:
17405         (gst_base_audio_sink_get_time), (gst_base_audio_sink_setcaps),
17406         (gst_base_audio_sink_drain), (gst_base_audio_sink_preroll),
17407         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
17408         Use scale functions when possible.
17409         Fix error messages.
17410         Free clockid when after waiting for EOS.
17411         Use G_(UN_)LIKLY when it makes sense.
17412         Fix sample clipping bug found by Arwed v. Merkatz fixes #330789.
17413
17414 2006-02-12  Edward Hervey  <edward@fluendo.com>
17415
17416         * gst/playback/gstplaybasebin.c: (prepare_output): 
17417         Remove stray semi-colon (fixes #330888).
17418
17419 2006-02-12  Jan Schmidt  <thaytan@mad.scientist.com>
17420
17421         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
17422         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls):
17423         Fix up the XShm call testing so that we catch errors, and don't
17424         cause new ones by attempting to detach from a segment we failed
17425         to attach to. Fixes #312439.
17426
17427 2006-02-10  Edward Hervey  <edward@fluendo.com>
17428
17429         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
17430         Added flv file typefind (video/x-flv).
17431
17432 2006-02-10  Edward Hervey  <edward@fluendo.com>
17433
17434         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
17435         (gst_riff_create_video_template_caps):
17436         Added FLV1 <==> 'video/x-flash-video,flvversion=1' conversion.
17437         Also added the caps to the default set of riff video caps.
17438
17439 2006-02-09  Andy Wingo  <wingo@pobox.com>
17440
17441         * ext/ogg/gstoggmux.c (GstOggPad): Keep track of both the start
17442         time and the end time of the last packet in the page.
17443         (gst_ogg_mux_pad_queue_page): In addition to setting the timestamp
17444         on the pages in our queue, set the duration as well. Reflow a
17445         debug statement.
17446         (gst_ogg_mux_collected): Keep track of GstOggPad->timestamp_end.
17447         Fixes bad muxing order.
17448
17449 2006-02-09  Thomas Vander Stichele  <thomas at apestaart dot org>
17450
17451         * gst-libs/gst/rtp/gstbasertppayload.c:
17452         (gst_basertppayload_setcaps), (gst_basertppayload_push):
17453           update seqnum before setting it on the packet; this makes sure
17454           that the timestamp and seqnum properties match after pushing
17455           a buffer
17456
17457 2006-02-09  Andy Wingo  <wingo@pobox.com>
17458
17459         * gst-libs/gst/audio/gstringbuffer.c
17460         (gst_ring_buffer_samples_done): Cast to guint64, fixes an integer
17461         overflow after 13.5 hours of recording. Kapow!
17462
17463         * ext/alsa/gstalsasrc.c (gst_alsasrc_delay): Clamp the delay to
17464         the buffer size -- we don't care about underrun/overrun reporting
17465         right now, just need to return a useful value.
17466
17467 2006-02-09  Jan Schmidt  <thaytan@mad.scientist.com>
17468
17469         * configure.ac:
17470           Back to CVS
17471
17472 === release 0.10.3 ===
17473
17474 2006-02-09  Jan Schmidt <thaytan@mad.scientist.com>
17475
17476         * configure.ac:
17477           releasing 0.10.3, "Under Pressure"
17478
17479 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
17480
17481         * configure.ac:
17482         Drat. Bump libtool version number for new API.
17483         Prelease 0.10.2.3 (of 0.10.3)
17484
17485 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
17486
17487         * configure.ac:
17488         * win32/common/config.h:
17489         0.10.2.2 prerelease (of 0.10.3).
17490
17491 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
17492
17493         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_create):
17494           Revert Andy's newsegment change pending a more correct
17495           fix.
17496
17497 2006-02-08  Thomas Vander Stichele  <thomas at apestaart dot org>
17498
17499         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
17500         (qt_type_find), (plugin_init):
17501           detect more files as 3gp
17502           group and reorder the iso file formats
17503
17504 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
17505
17506         * ext/vorbis/vorbis.c: (plugin_init):
17507           Register musicbrainz tags, so apps don't have to.
17508
17509 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
17510
17511         * gst-libs/gst/tag/gstvorbistag.c: (gst_tag_from_vorbis_tag),
17512         (gst_tag_to_vorbis_tag):
17513           Make sure we called gst_tag_register_musicbrainz_tags()
17514           before possibly mapping a vorbiscomment string from/to a
17515           musicbrainz tag.
17516
17517 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
17518
17519         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
17520           In case we can't find the required number of consecutive
17521           mpeg audio frames to positively identify an MPEG audio
17522           stream, check if there's at least a valid mpeg audio
17523           frame right at offset 0 and if so suggest mpeg/audio
17524           caps with a very low probability (#153004).
17525
17526 2006-02-07  Andy Wingo  <wingo@pobox.com>
17527
17528         * gst/tcp/gsttcpclientsrc.c (gst_tcp_client_src_create): Switch to
17529         a TIME segment if we get timestamped buffers. Requires recent
17530         fixes in core to work properly.
17531
17532 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
17533
17534         * gst/playback/gstplaybasebin.c: (prepare_output):
17535           Don't print the URI as part of the error message, it
17536           makes error dialogs look rather ugly, especially if
17537           the URI is very long or has characters in it that
17538           need escaping.
17539
17540 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
17541
17542         * gst/playback/gstplaybasebin.c: (prepare_output):
17543           Error out if we have only text or subtitles, but nothing
17544           else. Also error out if we have subtitles but no video
17545           stream.
17546
17547 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
17548
17549         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
17550           Treat GNOME_VFS_RESULT_EOF as EOS, not as error (#329194).
17551           Post an error message on the bus when we encounter an
17552           error, which will hopefully be more meaningful than the
17553           'Internal Flow Error' message users get to see if we
17554           just return GST_FLOW_ERROR.
17555
17556 2006-02-07  Andy Wingo  <wingo@pobox.com>
17557
17558         * configure.ac (GST_MAJORMINOR): Update core version req to
17559         0.10.2.2, for the collectpads API addition (#330244).
17560
17561 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
17562
17563         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
17564           Return FALSE from plugin_init() when GnomeVFS can't
17565           be initialised for some reason (#328423).
17566
17567 2006-02-06  Julien MOUTTE  <julien@moutte.net>
17568
17569         * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event): 
17570         Stick to seeking theory until i find the bug.
17571         * gst/subparse/gstsubparse.c: (parse_subrip): Fix debug.
17572
17573 2006-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
17574
17575         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
17576         (theora_enc_finalize), (theora_enc_sink_setcaps),
17577         (theora_set_header_on_caps), (theora_enc_chain),
17578         (theora_enc_change_state):
17579         * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
17580           Make theoraenc and the tests leak free. Like, really.
17581
17582 2006-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
17583
17584         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
17585         (theora_enc_finalize), (theora_enc_sink_setcaps):
17586           Add a finalize method to ensure we clean up state even if
17587           someone omitted the state change back to NULL.
17588
17589         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1),
17590         (gst_vorbisenc_chain):
17591           Free some more leaked bits.
17592
17593         * tests/check/pipelines/theoraenc.c: (start_pipeline),
17594         (stop_pipeline):
17595           Wait for state changes to happen if they're ASYNC.
17596
17597           This ought to teach those fancy pants buildbots a lesson.
17598
17599 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
17600
17601         * gst-libs/gst/tag/gstid3tag.c:
17602           Add mapping for ID3 International Standard Recording Code
17603           tag "TSRC"
17604
17605 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
17606
17607         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1):
17608           Don't leak tag names.
17609
17610 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
17611
17612         * docs/libs/gst-plugins-base-libs-docs.sgml:
17613         * docs/libs/gst-plugins-base-libs-sections.txt:
17614         * gst-libs/gst/tag/gstid3tag.c:
17615         * gst-libs/gst/tag/gstvorbistag.c:
17616         * gst-libs/gst/tag/tags.c:
17617           Split libgsttag docs into multiple sections.
17618
17619 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
17620
17621         * docs/libs/Makefile.am:
17622         * docs/libs/gst-plugins-base-libs-docs.sgml:
17623         * docs/libs/gst-plugins-base-libs-sections.txt:
17624         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_tag):
17625         * gst-libs/gst/tag/gstvorbistag.c:
17626         * gst-libs/gst/tag/tag.h:
17627         * gst-libs/gst/tag/tags.c:
17628           Add libgsttag to the docs.
17629
17630 2006-02-05  Julien MOUTTE  <julien@moutte.net>
17631
17632         * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize),
17633         (gst_text_overlay_init), (gst_text_overlay_src_event),
17634         (gst_text_overlay_collected): Fix clockoverlay.
17635
17636 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
17637
17638         * docs/libs/compiling.sgml:
17639           Fix typo: it's pkg-config, not pkg-gconfig
17640
17641         * docs/libs/gst-plugins-base-libs-docs.sgml:
17642         * docs/libs/gst-plugins-base-libs-sections.txt:
17643         * docs/libs/tmpl/gstgconf.sgml:
17644           There is no libgstgconf in 0.10, remove it
17645           from the docs.
17646
17647 2006-02-05  Julien MOUTTE  <julien@moutte.net>
17648
17649         * docs/libs/tmpl/gstcolorbalance.sgml: Updated.
17650         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
17651         (gst_text_overlay_src_event), (gst_text_overlay_collected):
17652         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
17653         (gst_sub_parse_class_init), (gst_sub_parse_init),
17654         (gst_sub_parse_src_event), (parse_mdvdsub), (parse_subrip),
17655         (parse_mpsub), (parser_state_init), (handle_buffer),
17656         (gst_sub_parse_chain), (gst_sub_parse_sink_event), (plugin_init):
17657         * gst/subparse/gstsubparse.h: Introduce seeking code.
17658
17659 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
17660
17661         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
17662           Add comment about LANGUAGE tag inconsistency (we want
17663           ISO-639-1, but extract three-letter identifiers?)
17664
17665         * po/POTFILES.in:
17666           Add two translatable files.
17667
17668 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
17669
17670         * gst-libs/gst/tag/Makefile.am:
17671         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
17672         * gst-libs/gst/tag/tag.h:
17673         * gst-libs/gst/tag/tags.c:
17674         (gst_tag_register_musicbrainz_tags_internal),
17675         (gst_tag_register_musicbrainz_tags):
17676           Forward-port some tags stuff from the 0.8 branch. This is
17677           mostly the addition of musicbrainz tags and their mapping
17678           to vorbistags, and a vorbistag mapping of the language tag.
17679
17680 2006-02-05  Julien MOUTTE  <julien@moutte.net>
17681
17682         * gst/playback/gstplaybin.c: (gen_text_element): Fix broken code
17683         refactoring.
17684
17685 2006-02-04  David Schleef  <ds@schleef.org>
17686
17687         * ext/ogg/gstoggmux.c:
17688         * gst/typefind/gsttypefindfunctions.c:
17689           Add Dirac typefinding and add dirac format to oggmux.
17690
17691 2006-02-03  Tim-Philipp Müller  <tim at centricular dot net>
17692
17693         * gst/playback/gstdecodebin.c: (try_to_link_1):
17694           Don't put essential function call into
17695           g_return_*() macro, otherwise it'll all be
17696           replaced by NOOPs when compiling with
17697           G_DISABLE_CHECKS defined.
17698
17699 2006-02-03  Edgard Lima <edgard.lima@indt.org.br>
17700
17701         * ext/ogg/gstoggdemux.c:
17702         * ext/ogg/gstoggparse.c:
17703         * gst/tcp/gsttcpserversink.c:
17704         * sys/v4l/v4lsrc_calls.c:
17705         * sys/v4l/v4lsrc_calls.h:
17706         Just make it compile with --disable-gst-debug.
17707
17708 2006-02-03  Wim Taymans  <wim@fluendo.com>
17709
17710         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
17711         (gst_alsasink_class_init), (gst_alsasink_init),
17712         (gst_alsasink_write), (gst_alsasink_reset):
17713         * ext/alsa/gstalsasink.h:
17714         Add lock to protect alsa calls.
17715         Implement reset to flush samples ASAP, does not work
17716         with dmix though.
17717
17718 2006-02-02  Wim Taymans  <wim@fluendo.com>
17719
17720         * gst-libs/gst/audio/gstbaseaudiosink.c:
17721         (gst_base_audio_sink_provide_clock):
17722         Ugh.. getting late I guess...
17723
17724 2006-02-02  Wim Taymans  <wim@fluendo.com>
17725
17726         * gst-libs/gst/audio/gstbaseaudiosink.c:
17727         (gst_base_audio_sink_provide_clock),
17728         (gst_base_audio_sink_set_property),
17729         (gst_base_audio_sink_get_property), (gst_base_audio_sink_render):
17730         Don't try to provide a clock when we are not negotiated since
17731         we might not be able to make it run.
17732
17733 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
17734
17735         * gst/playback/gstdecodebin.c: (try_to_link_1):
17736           Unlinking two source pads is ... hard.
17737
17738 2006-02-02  Wim Taymans  <wim@fluendo.com>
17739
17740         * gst-libs/gst/audio/TODO:
17741         Updated.
17742
17743         * gst-libs/gst/audio/gstbaseaudiosink.c:
17744         (gst_base_audio_sink_drain), (gst_base_audio_sink_event):
17745         On EOS, wait till the last sample is played before posting EOS.
17746
17747 2006-02-01  Philippe Kalaf <burger at speedy dot org>
17748
17749         Patch by: Kai Vehmanen
17750         * gst-libs/gst/rtp/gstbasertpdepayload.c:
17751           Adds ability to enable newsegment bypass by setting queue_delay to
17752           zero. Also avoid thread being started if queue_delay is zero.
17753
17754 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
17755
17756         * gst/playback/test6.c: (new_decoded_pad_cb), (show_error), (main):
17757           Make test work again by connecting fakesinks to each decoded pad,
17758           which makes the pipeline wait until each fakesink has a buffer
17759           queued before going to PAUSED state. At that point we know the
17760           decodebin pads are negotiated.
17761
17762 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
17763
17764         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_query),
17765         (gst_cdda_base_src_handle_event):
17766         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_query):
17767           Pass unhandled queries to the parent class's query function.
17768
17769 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
17770
17771         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_types),
17772         (gst_ogg_pad_src_query):
17773         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
17774         * ext/theora/theoradec.c: (theora_dec_src_query),
17775         (theora_dec_sink_query):
17776         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
17777         (vorbis_dec_sink_query):
17778         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
17779         (gst_vorbisenc_sink_query):
17780         * gst/adder/gstadder.c: (gst_adder_query):
17781           Pass unhandled queries upstream instead of just
17782           dropping them (#326447). Also, fix supported
17783           query types list for some elements.
17784
17785 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
17786
17787         * gst/typefind/gsttypefindfunctions.c: (au_type_find),
17788         (paris_type_find), (ilbc_type_find), (plugin_init):
17789           Fix typefinding for audio/x-au, audio/x-paris and
17790           audio/iLBC-sh. We cannot use the START_WITH macros
17791           here, because there can only be one typefind factory
17792           with the same name (caps), so the second one would
17793           replace the first one and the first one would never
17794           be called when doing typefinding (see #161712).
17795           
17796
17797 2006-01-31  Wim Taymans  <wim@fluendo.com>
17798
17799         * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
17800         (vorbis_handle_header_packet), (vorbis_dec_push),
17801         (vorbis_handle_data_packet):
17802         Use scale_int when we can, add some more scaling.
17803         Check packettype before parsing it.
17804
17805 2006-01-31  Wim Taymans  <wim@fluendo.com>
17806
17807         * ext/theora/theoradec.c: (_theora_granule_time),
17808         (theora_dec_src_convert), (theora_dec_sink_convert):
17809         Call right _scale functions.
17810         Use parameter instead of some other random value.
17811
17812 2006-01-31  Wim Taymans  <wim@fluendo.com>
17813
17814         * ext/theora/theoradec.c: (_theora_granule_frame),
17815         (_theora_granule_time), (_inc_granulepos),
17816         (theora_dec_src_convert), (theora_dec_sink_convert),
17817         (theora_handle_type_packet), (theora_handle_data_packet),
17818         (theora_dec_chain):
17819         Use higher precision timestamps calculation.
17820         Convert some other conversions to _scale.
17821
17822 2006-01-31  Stefan Kost  <ensonic@users.sf.net>
17823
17824         * gst/audiotestsrc/gstaudiotestsrc.c:
17825         (gst_audio_test_src_create_sine_table), (plugin_init):
17826         * gst/volume/gstvolume.c: (plugin_init):
17827           initialize gst_controller before using
17828
17829 2006-01-31  Jan Schmidt  <thaytan@mad.scientist.com>
17830
17831         * tests/check/pipelines/theoraenc.c:
17832         * tests/check/pipelines/vorbisenc.c:
17833         Define constant using G_GINT64_CONSTANT to avoid errors when
17834         passing it around - otherwise it gets truncated to 32 bits.
17835
17836         Fixes failing tests.
17837
17838 2006-01-31  Andy Wingo  <wingo@pobox.com>
17839
17840         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_set_caps): Don't segfault if the
17841         caps being set doesn't have a framerate value. Basically a stopgap
17842         measure.
17843
17844         * ext/ogg/gstoggmux.c (GST_BUFFER_END_TIME): New macro. Not
17845         technically correct enough to put into core though.
17846         (gst_ogg_mux_dequeue_page): Use END_TIME instead of TIMESTAMP +
17847         DURATION. Fixes theoraenc ! oggmux.
17848
17849         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Fixate to the nearest
17850         fraction, not double.
17851
17852 2006-01-31  Sebastien Moutte  <sebastien@moutte.net>
17853
17854         * win32/vs7:
17855         add vs7 project files created by Sergey Scobich
17856
17857 2006-01-30  Sebastien Moutte  <sebastien@moutte.net>
17858
17859         * win32/vs8:
17860         add vs8 project files created by Sergey Scobich
17861         
17862 2006-01-30  Andy Wingo  <wingo@pobox.com>
17863
17864         * ext/ogg/gstoggmux.c (gst_ogg_mux_dequeue_page): Compare
17865         timestamp + duration, not just timestamp -- ogg pages should be
17866         ordered by stop time. Necessary fix given the change in vorbis
17867         timestamps.
17868
17869         * ext/theora/theoraenc.c (theora_enc_sink_setcaps) 
17870         (gst_theora_enc_init): Pull the granule shift out of the encoder.
17871         (granulepos_add): New function, handles the messiness of adjusting
17872         granulepos values.
17873         (theora_buffer_from_packet):
17874         (theora_enc_chain):
17875         (theora_enc_sink_event): Use granulepos_add, not +.
17876
17877         * tests/check/pipelines/theoraenc.c
17878         (check_buffer_granulepos_from_starttime): Just check the frame
17879         count, not the actual granulepos -- we can't dictate to the
17880         encoder when it should be placing keyframes.
17881
17882 2006-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
17883
17884         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
17885           SERVICE_NOT_AVAILABLE happens for example when you're trying to
17886           play an http:// stream from a server that's not serving
17887
17888 2006-01-30  Andy Wingo  <wingo@pobox.com>
17889
17890         * tests/check/pipelines/vorbisenc.c (TIMESTAMP_OFFSET): 
17891         * tests/check/pipelines/theoraenc.c (TIMESTAMP_OFFSET): Totally
17892         remove the UINT64_CONSTANT macro, doesn't appear to be needed or
17893         available.
17894
17895         * ext/theora/gsttheoraenc.h:
17896         * ext/theora/theoraenc.c: Same changes as were done to vorbisenc,
17897         although theoraenc was timestamping correctly. Added handling of
17898         streams that start with nonzero timestamps.
17899
17900         * tests/check/Makefile.am:
17901         * tests/check/pipelines/theoraenc.c: New file, basically does same
17902         tests as vorbisenc.
17903
17904         * tests/check/pipelines/vorbisenc.c: I claim these bugs.
17905
17906 2006-01-30  Wim Taymans  <wim@fluendo.com>
17907
17908         * gst-libs/gst/audio/gstaudiosink.c:
17909         (gst_audioringbuffer_class_init), (gst_audioringbuffer_release),
17910         (gst_audioringbuffer_pause):
17911         Implement pause that does not wait for completion.
17912
17913         * gst-libs/gst/audio/gstbaseaudiosink.c:
17914         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
17915         Don't drop buffers when going to PAUSED but perform preroll on
17916         remaining samples now that core base class supports this.
17917
17918         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_release),
17919         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_stop),
17920         (gst_ring_buffer_commit):
17921         Pause should not signal waiters.
17922         Implement return value of _commit correctly.
17923
17924 2006-01-30  Andy Wingo  <wingo@pobox.com>
17925
17926         * tests/check/Makefile.am (check_vorbis): Add pipelines/vorbisenc.
17927
17928         * ext/vorbis/vorbisenc.c (gst_vorbisenc_buffer_from_packet): Logic
17929         updated to timestamp from the first sample, not the last.
17930         (gst_vorbisenc_buffer_from_header_packet): New function, takes
17931         special care of granulepos and timestamp for header packets.
17932         (gst_vorbisenc_chain): Reflow, fix some leaks, and handle the case
17933         when the first buffer has a nonzero timestamp.
17934
17935         * ext/vorbis/vorbisenc.h (GstVorbisEnc.granulepos_offset)
17936         (GstVorbisEnc.subgranule_offset): New members. Take care of the
17937         case when the first audio buffer we get has a nonzero timestamp.
17938         (GstVorbisEnc.next_ts): Renamed from prev_ts, because now we
17939         properly timestamp vorbis buffers with the time of the first
17940         sample, not the last.
17941         
17942         * ext/vorbis/vorbisenc.c (granulepos_to_clocktime): Renamed from
17943         vorbis_granule_time_copy -- now it takes the granule/subgranule
17944         offset into account.
17945
17946         * tests/check/pipelines/vorbisenc.c: New test for correctness of
17947         timestamps, durations, and granulepos on buffers produced by
17948         vorbisenc.
17949
17950 2006-01-30  Jan Schmidt  <thaytan@mad.scientist.com>
17951
17952         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17953         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
17954           Patch from Eric Jonas to support conversions to/from UYVY 
17955           (Fixes: #324626)
17956
17957 2006-01-30  Julien MOUTTE  <julien@moutte.net>
17958
17959         * gst/playback/gstplaybasebin.c: (group_commit), (queue_overrun),
17960         (setup_subtitle), (setup_source), (set_active_source):
17961         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
17962         (gen_text_element), (gen_audio_element), (gen_vis_element),
17963         (remove_sinks), (add_sink), (setup_sinks): Implement subtitles.
17964
17965 2006-01-29  Sebastien Moutte  <sebastien@moutte.net>
17966
17967         * gst-libs/gst/audio/audio.h: (GST_CLOCK_TIME_TO_FRAMES)
17968         * gst-libs/gst/audio/gstbaseaudiosink.c: (gst_base_audio_sink_render)
17969                 use gst_guint64_to_gdouble to be compliant with vs6
17970         * gst/playback/gstdecodebin.c: (try_to_link_1)
17971         * gst/videorate/videorate.c: (gst_video_rate_blank_data)
17972                 use G_GINT64_CONSTANT for int64 constants
17973         * win32/common/libgstinterfaces.def:
17974                 export some symbols (gst_mixer_get_type,gst_mixer_track_get_type)
17975         * win32/vs6:
17976                 update and add new project files
17977                 
17978 2006-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
17979
17980         * Makefile.am:
17981         * win32/MANIFEST:
17982         * win32/common/interfaces-enumtypes.c:
17983         (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
17984         (gst_mixer_track_flags_get_type),
17985         (gst_tuner_channel_flags_get_type):
17986         * win32/common/interfaces-enumtypes.h:
17987         * win32/common/multichannel-enumtypes.c:
17988         (gst_audio_channel_position_get_type):
17989         * win32/common/multichannel-enumtypes.h:
17990           add a win32-update rule like in core, and copy over enumtypes files
17991
17992 2006-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
17993
17994         * win32/MANIFEST:
17995         * win32/common/config.h:
17996         * win32/common/config.h.in:
17997           add config files just like in core
17998
17999 2006-01-28  Tim-Philipp Müller  <tim at centricular dot net>
18000
18001         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format):
18002           Make gcc-4.1 happy (part of #327357).
18003
18004 2006-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
18005
18006         * ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
18007         (set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
18008         (gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
18009         * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
18010         (set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
18011         (gst_alsasrc_unprepare), (gst_alsasrc_read):
18012           Update all error messages.  All of them should either use
18013           the default translated message, or actually provide a
18014           translatable string.
18015           Make the string for channel count problems meaningful.
18016
18017 2006-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
18018
18019         * sys/v4l/v4l_calls.c: (gst_v4l_open):
18020           check for and throw RESOURCE_BUSY
18021
18022 2006-01-27  David Schleef  <ds@schleef.org>
18023
18024         * gst/videoscale/vs_scanline.c: Oops, *that's* why I never
18025           checked in this change -- it requires liboil features not
18026           in 0.3.6.  Revert parts.
18027
18028 2006-01-27  David Schleef  <ds@schleef.org>
18029
18030         * REQUIREMENTS:
18031         * configure.ac: update liboil requirement to 0.3.6
18032         * gst/videoscale/Makefile.am:
18033         * gst/videoscale/vs_scanline.c: liboilify
18034
18035 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
18036
18037         * ext/libvisual/visual.c: (get_buffer):
18038           When pad_alloc returns a GstFlowReturn other
18039           than GST_FLOW_OK, make sure it is passed upstream.
18040
18041 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
18042
18043         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
18044         (gst_alsasink_class_init):
18045           Free the device name string.
18046
18047         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
18048         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad),
18049         (gst_ogg_mux_handle_src_event), (gst_ogg_mux_clear_collectpads):
18050           Don't remove a pad from the collectpads structure until it
18051           is released - it's a request pad, and may receive data again
18052           if the element gets moved back to PLAYING state.
18053
18054         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
18055           Ensure we turn on double buffering on the Xv port, and
18056           set the colour key to something dark and mysterious that
18057           isn't black.
18058
18059 2006-01-27  Thomas Vander Stichele  <thomas at apestaart dot org>
18060
18061         * ext/alsa/gstalsaplugin.c: (plugin_init):
18062         * ext/cdparanoia/gstcdparanoiasrc.c:
18063         (gst_cd_paranoia_src_base_init), (plugin_init):
18064         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
18065         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init):
18066           - a library should not call setlocale. see "Libraries" node in
18067             gettext manual
18068           - make sure all plugins that use translation do bindtextdomain
18069             to point to the localedir
18070         * gst/playback/gstplaybin.c: (gen_vis_element), (add_sink),
18071         (setup_sinks), (plugin_init):
18072           all this, and check for NULL when creating sinks
18073
18074 2006-01-27  Julien MOUTTE  <julien@moutte.net>
18075
18076         * gst/subparse/gstsubparse.c: (gst_subparse_type_find),
18077         (plugin_init): Make typefinding of subtitles work again.
18078
18079 2006-01-26  Tim-Philipp Müller  <tim at centricular dot net>
18080
18081         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
18082         (mp3_type_frame_length_from_header), (mp3_type_find),
18083         (wavpack_type_find), (m4a_type_find), (ircam_type_find),
18084         (plugin_init):
18085           Backport a bunch of typefinding fixes from the 0.8 branch.
18086           Also, improve wavpack typefinding: if we can't peek the
18087           entire wavpack block, try to parse the bits we can get and
18088           see if we find what we're looking for in those.
18089
18090 2006-01-26  Julien MOUTTE  <julien@moutte.net>
18091
18092         * sys/ximage/ximagesink.c:
18093         (gst_ximagesink_calculate_pixel_aspect_ratio):
18094         * sys/xvimage/xvimagesink.c:
18095         (gst_xvimagesink_calculate_pixel_aspect_ratio): Handle some
18096         more cases of pixel aspect ratio.
18097
18098 2006-01-26  Edward Hervey  <edward@fluendo.com>
18099
18100         * gst/playback/gstdecodebin.c: (pad_probe):
18101         Also consider the flush-start and tag events as unblockers
18102         for the pad probes.
18103
18104 2006-01-26  Julien MOUTTE  <julien@moutte.net>
18105
18106         * gst/playback/gstplaybin.c: (gst_play_bin_init),
18107         (gst_play_bin_dispose), (gst_play_bin_vis_unblocked),
18108         (gst_play_bin_vis_blocked), (gst_play_bin_set_property): 
18109         On the fly visualisation switch, works disabling, enabling as
18110         well but it won't be able to enable vis in a playbin that was
18111         created with no visualisation.
18112
18113 2006-01-25  Wim Taymans  <wim@fluendo.com>
18114
18115         * gst-libs/gst/audio/gstbaseaudiosink.c:
18116         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
18117         Undo previous commit that returned WRONG_STATE sooner, it breaks 
18118         resume after pause.
18119
18120 2006-01-25  Wim Taymans  <wim@fluendo.com>
18121
18122         * gst-libs/gst/audio/gstbaseaudiosink.c:
18123         (gst_base_audio_sink_setcaps), (gst_base_audio_sink_event),
18124         (gst_base_audio_sink_preroll), (gst_base_audio_sink_render):
18125         Improve debugging.
18126         Post error when caps cannot be parsed.
18127         Resync on discontinuity in the stream.
18128         Clip samples to segment boundaries.
18129         return WRONG_STATE sooner when we are flushing.
18130
18131         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
18132         (gst_base_audio_src_get_time), (gst_base_audio_src_create):
18133         Make audiosrc operate in TIME.
18134         Set TIMESTAMP and DURATION on buffers.
18135
18136 2006-01-24  Tim-Philipp Müller  <tim at centricular dot net>
18137
18138         * tests/examples/seek/seek.c: (main):
18139           Output tag messages as well.
18140
18141 2006-01-23  Edward Hervey  <edward@fluendo.com>
18142
18143         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
18144         (free_pad_probes), (remove_fakesink), (pad_probe),
18145         (close_pad_link), (gst_decode_bin_change_state):
18146         Replace GstPadBlockCallback with pad probes that detect
18147         first buffer AND eos before removing fakesink.
18148         Fixes hang with demuxers doing EOS while pre-rolling.
18149         Solves #328279
18150
18151 2006-01-23  Andy Wingo  <wingo@pobox.com>
18152
18153         * ext/alsa/gstalsasink.c:
18154         * gst-libs/gst/rtp/gstbasertpdepayload.c:
18155         (gst_base_rtp_depayload_setcaps),
18156         (gst_base_rtp_depayload_add_to_queue),
18157         (gst_base_rtp_depayload_queue_release): GCC 2.95 fixes (#328263).
18158         
18159         Patch by: Jens Granseuer <jensgr at gmx dot net>
18160
18161 2006-01-22  Julien MOUTTE  <julien@moutte.net>
18162
18163         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
18164         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
18165         (gst_xvimagesink_buffer_alloc): Playbin keeps some ref to some 
18166         frames. We might get a frame destroyed after changing state to
18167         NULL, adding a safety check on xcontext.
18168
18169 2006-01-22  Tim-Philipp Müller  <tim at centricular dot net>
18170
18171         * gst-libs/gst/interfaces/xoverlay.c:
18172           Fix prepare-xwindow-id code example in the docs - we need to
18173           ignore all messages that aren't element messages as well.
18174           
18175 2006-01-21  Julien MOUTTE  <julien@moutte.net>
18176
18177         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
18178           I think one day i'll completely undestand how caps negotiation
18179           is supposed to work. This refactoring handles buffer_alloc
18180           called with caps we can't handle. We definitely don't want a
18181           set_caps with those caps, so we define and allocate a buffer
18182           we would like to receive.
18183
18184 2006-01-19  Tim-Philipp Müller  <tim at centricular dot net>
18185
18186         * gst/playback/gstplaybasebin.c: (setup_source):
18187           Free iterator when done.
18188
18189 2006-01-17  Jan Schmidt  <thaytan@mad.scientist.com>
18190
18191         * gst-libs/gst/audio/gstbaseaudiosink.c:
18192         (gst_base_audio_sink_render):
18193           Fix playback of non-synchronised streams by assuming a rate
18194           of 1.0 instead of a random one.
18195
18196           Makes this work again:
18197
18198           gst-launch filesrc location=raw_audio.file ! 'audio/x-raw-int,
18199           endianness=(int)4321, signed=(boolean)true, width=(int)16,
18200           depth=(int)16, rate=(int)44100, channels=(int)2' ! audioconvert !
18201           audioresample ! alsasink
18202
18203 === release 0.10.2 ===
18204
18205 2006-01-16  Thomas Vander Stichele <thomas at apestaart dot org>
18206
18207         * configure.ac:
18208           releasing 0.10.2, "Then the devil is six"
18209
18210 2006-01-16  Jan Schmidt  <thaytan@mad.scientist.com>
18211
18212         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
18213         * gst/playback/gststreamselector.c:
18214         (gst_stream_selector_set_property):
18215           Comment out broken code that connects to the state-changed signal.
18216           At this point, changing current stream selection is broken, but 
18217           stuff like gst-launch playbin current-audio=1 works and filters
18218           to the chosen stream.
18219
18220 2006-01-16  Thomas Vander Stichele  <thomas at apestaart dot org>
18221
18222         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
18223           Fix #327216 (null dereference in vorbisdec)
18224
18225 2006-01-16  Tim-Philipp Müller  <tim at centricular dot net>
18226
18227         * ext/theora/theoradec.c: (theora_handle_comment_packet):
18228           Post taglist actually on bus instead of just freeing it
18229           (fixes #327114 and totem bug #327080).
18230
18231         * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
18232           Use gst_element_found_tags_for_pad(), so that the tags
18233           are sent downstream as an event as well.
18234
18235 2006-01-15  Thomas Vander Stichele  <thomas at apestaart dot org>
18236
18237         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
18238         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
18239         (gst_ximagesink_buffer_alloc):
18240         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
18241         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_show_frame),
18242         (gst_xvimagesink_buffer_alloc):
18243           move all regularly occurring messages to GST_LOG level
18244           add some more object logs
18245
18246 2006-01-14  Thomas Vander Stichele  <thomas at apestaart dot org>
18247
18248         * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
18249           fix a silly segfault
18250
18251 2006-01-14  Tim-Philipp Müller  <tim at centricular dot net>
18252
18253         * docs/libs/gst-plugins-base-libs-docs.sgml:
18254         * docs/libs/gst-plugins-base-libs-sections.txt:
18255         * gst-libs/gst/audio/mixerutils.c:
18256         * gst-libs/gst/audio/mixerutils.h:
18257           Add docs for mixerutils stuff.
18258
18259 2006-01-13  Tim-Philipp Müller  <tim at centricular dot net>
18260
18261         * gst/playback/gstplaybasebin.c: (setup_source):
18262           Fix playback for sources that emit raw audio or
18263           raw video streams (e.g.: cd audio sources) (#325984).
18264
18265 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
18266
18267         * gst-libs/gst/audio/mixerutils.c:
18268         (gst_audio_mixer_filter_do_filter):
18269           actually save the element we create
18270
18271 2006-01-12  Tim-Philipp Müller  <tim at centricular dot net>
18272
18273         * gst-libs/gst/cdda/gstcddabasesrc.c:
18274         (gst_cdda_base_src_handle_track_seek):
18275           No need to post a tag message on the bus when seeking
18276           within the same track, only post it when the current
18277           track changes.
18278
18279 2006-01-11  Jan Schmidt  <thaytan@mad.scientist.com>
18280
18281         * gst/playback/gstplaybasebin.c: (group_destroy),
18282         (probe_triggered), (new_decoded_pad), (mute_group_type),
18283         (set_active_source):
18284         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
18285         * gst/playback/gststreamselector.c:
18286         (gst_stream_selector_base_init),
18287         (gst_stream_selector_set_property),
18288         (gst_stream_selector_request_new_pad):
18289           Reenable stream selection. These mechanisms need a complete overhaul
18290           in the face of 0.8->0.10 changes though.
18291
18292 2006-01-11  Jan Schmidt  <thaytan@mad.scientist.com>
18293
18294         * ext/ogg/gstoggdemux.c:
18295           Change the pad template to src_%d to match the pads that 
18296           are created from it. decodebin needs this information in order
18297           to decide that oggdemux is capable of producing multiple pads
18298           (and hence needs queues inserted).
18299
18300         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
18301         (gst_ogg_mux_collected):
18302           Make debug output more useful by using GST_PTR_FORMAT.
18303
18304 2006-01-11  Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
18305
18306         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
18307
18308         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps):
18309           Set depth and width for alaw/mulaw (fixes #326601).
18310
18311 2006-01-11  Thomas Vander Stichele  <thomas at apestaart dot org>
18312
18313         * tests/icles/Makefile.am:
18314           don't build the tests if we don't have the libs
18315
18316 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
18317
18318         * ext/cdparanoia/gstcdparanoiasrc.c: (gst_cd_paranoia_src_close),
18319         (gst_cd_paranoia_paranoia_callback):
18320           Don't try to free NULL pointers.
18321
18322 2006-01-10  Edward Hervey  <edward@fluendo.com>
18323
18324         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain),
18325         (gst_audio_rate_change_state), (plugin_init):
18326         Add debugging category.
18327         Fix type issues.
18328         Add case for incoming buffers without valid offset/offset_end.
18329
18330 2006-01-10  Michael Smith  <msmith@fluendo.com>
18331
18332         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_dispose):
18333           Don't leak GCond in audio sources.
18334
18335 2006-01-10  Jan Schmidt  <thaytan@mad.scientist.com>
18336
18337         * gst/playback/gstplaybin.c: (gen_audio_element):
18338           Don't leak an autoaudiosink/alsasink when we generate
18339           a new audio element. (old code, I guess)
18340
18341 2006-01-10  Michael Smith  <msmith@fluendo.com>
18342
18343         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
18344           Support float audio in audiorate.
18345           Use width rather than depth for selecting sample width.
18346
18347 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
18348
18349         * gst/videotestsrc/videotestsrc.h:
18350           Use GLib types here (that way we don't have to include the
18351           generated _stdint.h header, which makes life easier for win32
18352           folks that don't use autotools for the build) (#325990, patch
18353           by: Sergey Scobich).
18354
18355 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
18356
18357         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
18358         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
18359         (gst_ring_buffer_pause), (wait_segment):
18360         * gst-libs/gst/audio/gstringbuffer.h:
18361           Name (private) union, makes Forte compiler happy (this time
18362           for real) (#324900).
18363
18364 2006-01-09  Tim-Philipp Müller  <tim at centricular dot net>
18365
18366         * gst-libs/gst/audio/Makefile.am:
18367           Link against libgstinterfaces, needed for mixer
18368           and property probe stuff.
18369
18370 2006-01-09  Edward Hervey  <edward@fluendo.com>
18371
18372         * gst-libs/gst/Makefile.am:
18373
18374 2006-01-09  Tim-Philipp Müller  <tim at centricular dot net>
18375
18376         * gst-libs/gst/audio/Makefile.am:
18377         * gst-libs/gst/audio/mixerutils.c:
18378         (gst_audio_mixer_filter_do_filter),
18379         (gst_audio_mixer_filter_check_element),
18380         (gst_audio_mixer_filter_probe_feature),
18381         (element_factory_rank_compare_func),
18382         (gst_audio_default_registry_mixer_filter):
18383         * gst-libs/gst/audio/mixerutils.h:
18384           Add gst_audio_default_registry_mixer_filter() utility
18385           function.
18386
18387 2006-01-03  Michael Smith  <msmith@fluendo.com>
18388
18389         * gst/audioresample/resample.h:
18390           As before, but for o_buf
18391
18392 2006-01-03  Michael Smith  <msmith@fluendo.com>
18393
18394         * gst/audioresample/resample.h:
18395           Declare struct _ResampleState.buffer as unsigned char *, not void *,
18396           since we do arithmetic on it.
18397
18398 2006-01-02  Tim-Philipp Müller  <tim at centricular dot net>
18399
18400         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
18401         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
18402         (gst_ring_buffer_pause), (wait_segment):
18403         * gst-libs/gst/audio/gstringbuffer.h:
18404           Sun's Forte compiler doesn't seem to like anonymous structs,
18405           so use same setup as in GstBaseSrc (fixes #324900).
18406
18407 2005-12-30  Stefan Kost  <ensonic@users.sf.net>
18408
18409         * configure.ac:
18410         * gst/volume/Makefile.am:
18411         * gst/volume/demo.c:
18412           move old example to tests/examples/volume/volune.c
18413         * tests/examples/Makefile.am:
18414         * tests/examples/seek/seek.c: (main):
18415           change window-close event from "delete-event" to "destroy"
18416         * tests/examples/volume/Makefile.am:
18417         * tests/examples/volume/volume.c: (value_changed_callback),
18418         (setup_gui), (message_received), (eos_message_received), (main):
18419           fix event handling and bus usage
18420
18421 2005-12-29  Stefan Kost  <ensonic@users.sf.net>
18422
18423         * gst/audiotestsrc/gstaudiotestsrc.c:
18424         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
18425         (gst_audio_test_src_init), (gst_audio_test_src_src_fixate),
18426         (gst_audio_test_src_query), (gst_audio_test_src_create_sine),
18427         (gst_audio_test_src_create_square),
18428         (gst_audio_test_src_create_saw),
18429         (gst_audio_test_src_create_triangle),
18430         (gst_audio_test_src_create_silence),
18431         (gst_audio_test_src_create_white_noise),
18432         (gst_audio_test_src_create_pink_noise),
18433         (gst_audio_test_src_init_sine_table),
18434         (gst_audio_test_src_create_sine_table),
18435         (gst_audio_test_src_change_wave),
18436         (gst_audio_test_src_change_volume), (gst_audio_test_src_do_seek),
18437         (gst_audio_test_src_create), (gst_audio_test_src_set_property):
18438         * gst/audiotestsrc/gstaudiotestsrc.h:
18439           update to basesrc changes, implement segmented seeking and eos
18440           handling, add a 'sine-tab' waveform for performance critical playback
18441
18442 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
18443
18444         * po/POTFILES.in:
18445           ... and this time the other modified file that I missed last time.
18446
18447 2005-12-29  Michael Smith  <msmith@fluendo.com>
18448
18449         * gst/playback/gstdecodebin.c: (new_pad):
18450           Fix non-C89 variable declaration not at the start of a block. Should
18451           help some compilers.
18452
18453 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
18454
18455         * tests/check/Makefile.am:
18456           And now fix 'make distcheck' (builddir != srcdir)
18457
18458 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
18459
18460         * configure.ac:
18461         * ext/cdparanoia/Makefile.am:
18462         * ext/cdparanoia/gstcdparanoia.c:
18463         * ext/cdparanoia/gstcdparanoia.h:
18464         * ext/cdparanoia/gstcdparanoiasrc.c:
18465         (gst_cd_paranoia_mode_get_type), (gst_cd_paranoia_src_base_init),
18466         (gst_cd_paranoia_src_init), (gst_cd_paranoia_src_class_init),
18467         (gst_cd_paranoia_src_open), (gst_cd_paranoia_src_close),
18468         (gst_cd_paranoia_paranoia_callback),
18469         (gst_cd_paranoia_src_read_sector), (gst_cd_paranoia_src_finalize),
18470         (gst_cd_paranoia_src_set_property),
18471         (gst_cd_paranoia_src_get_property), (plugin_init):
18472         * ext/cdparanoia/gstcdparanoiasrc.h:
18473           New cdparanoiasrc element based on cddabasesrc; enable cdparanoia
18474           plugin again (there are still fixes required to playbin to make
18475           cdda:// uris work there).
18476
18477 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
18478
18479         * tests/check/Makefile.am:
18480           Fix test case compilation.
18481
18482 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
18483
18484         * gst-libs/gst/cdda/gstcddabasesrc.c:
18485         (gst_cdda_base_src_update_duration),
18486         (gst_cdda_base_src_calculate_cddb_id):
18487           An integer is not a string. Fix access to uninitialised variable.
18488
18489         * tests/check/Makefile.am:
18490           Add cddabasesrc unit test; also actually enable the vorbis test.
18491
18492         * tests/check/generic/states.c:
18493           Blacklist new cd audio elements as well.
18494
18495         * tests/check/libs/cddabasesrc.c:
18496           Unit test for GstCddaBaseSrc (discid calculation mostly).
18497
18498 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
18499
18500         * docs/libs/Makefile.am:
18501         * docs/libs/gst-plugins-base-libs-docs.sgml:
18502         * docs/libs/gst-plugins-base-libs-sections.txt:
18503         * docs/libs/gst-plugins-base-libs.types:
18504           Add docs for libgstcdda/GstCddaBaseSrc.
18505
18506         * gst-libs/gst/interfaces/mixertrack.h:
18507           Do one struct member per line with a semicolon at the end, that way
18508           even gtk-doc might parse it without complaining.
18509
18510 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
18511
18512         * configure.ac:
18513         * gst-libs/gst/Makefile.am:
18514         * gst-libs/gst/cdda/Makefile.am:
18515         * gst-libs/gst/cdda/base64.c:
18516         * gst-libs/gst/cdda/base64.h:
18517         * gst-libs/gst/cdda/gstcddabasesrc.c:
18518         (gst_cdda_base_src_mode_get_type), (gst_cdda_base_src_base_init),
18519         (gst_cdda_base_src_class_init), (gst_cdda_base_src_init),
18520         (gst_cdda_base_src_finalize), (gst_cdda_base_src_set_property),
18521         (gst_cdda_base_src_get_property),
18522         (gst_cdda_base_src_get_track_from_sector),
18523         (gst_cdda_base_src_get_query_types), (gst_cdda_base_src_convert),
18524         (gst_cdda_base_src_query), (gst_cdda_base_src_is_seekable),
18525         (gst_cdda_base_src_do_seek), (gst_cdda_base_src_handle_track_seek),
18526         (gst_cdda_base_src_handle_event), (gst_cdda_base_src_uri_get_type),
18527         (gst_cdda_base_src_uri_get_protocols),
18528         (gst_cdda_base_src_uri_get_uri), (gst_cdda_base_src_uri_set_uri),
18529         (gst_cdda_base_src_uri_handler_init),
18530         (gst_cdda_base_src_setup_interfaces),
18531         (gst_cdda_base_src_add_track), (gst_cdda_base_src_update_duration),
18532         (cddb_sum), (gst_cddabasesrc_calculate_musicbrainz_discid),
18533         (lba_to_msf), (gst_cdda_base_src_calculate_cddb_id),
18534         (gst_cdda_base_src_add_tags),
18535         (gst_cdda_base_src_add_index_associations),
18536         (gst_cdda_base_src_set_index), (gst_cdda_base_src_get_index),
18537         (gst_cdda_base_src_track_sort_func), (gst_cdda_base_src_start),
18538         (gst_cdda_base_src_clear_tracks), (gst_cdda_base_src_stop),
18539         (gst_cdda_base_src_create):
18540         * gst-libs/gst/cdda/gstcddabasesrc.h:
18541         * gst-libs/gst/cdda/sha1.c:
18542         * gst-libs/gst/cdda/sha1.h:
18543           Add new libgstcdda with GstCddaBaseSrc class.
18544
18545 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
18546
18547         * ext/gnomevfs/gstgnomevfssink.h:
18548           Use GstBaseSinkClass as parent_class member for class struct, not
18549           GstBaseSink.
18550
18551 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
18552
18553         Patch by: Michael Benes
18554
18555         * gst/videotestsrc/gstvideotestsrc.c:
18556         (gst_video_test_src_class_init), (gst_video_test_src_start):
18557           Add start method to reset running time and number of frames sent
18558           when starting up (fixes #324696)
18559
18560 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
18561
18562         * docs/plugins/Makefile.am:
18563         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
18564         * docs/plugins/gst-plugins-base-plugins-sections.txt:
18565         * docs/plugins/gst-plugins-base-plugins.args:
18566         * docs/plugins/gst-plugins-base-plugins.hierarchy:
18567         * docs/plugins/gst-plugins-base-plugins.signals:
18568           Add docs stuff for gnomevfssrc and gnomevfssink.
18569
18570         * ext/gnomevfs/gstgnomevfssrc.c:
18571           Fix example pipeline in gtk-doc blurb.
18572
18573 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
18574
18575         * ext/gnomevfs/Makefile.am:
18576         * ext/gnomevfs/gstgnomevfs.c: (gst_gnome_vfs_uri_get_type),
18577         (gst_gnome_vfs_handle_copy), (gst_gnome_vfs_handle_free),
18578         (gst_gnome_vfs_handle_get_type), (plugin_init):
18579         * ext/gnomevfs/gstgnomevfs.h:
18580         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_do_init),
18581         (gst_gnome_vfs_sink_base_init), (gst_gnome_vfs_sink_class_init),
18582         (gst_gnome_vfs_sink_finalize), (gst_gnome_vfs_sink_init),
18583         (gst_gnome_vfs_sink_set_property),
18584         (gst_gnome_vfs_sink_get_property), (gst_gnome_vfs_sink_open_file),
18585         (gst_gnome_vfs_sink_close_file), (gst_gnome_vfs_sink_start),
18586         (gst_gnome_vfs_sink_stop), (gst_gnome_vfs_sink_handle_event),
18587         (gst_gnome_vfs_sink_query), (gst_gnome_vfs_sink_render),
18588         (gst_gnome_vfs_sink_uri_get_type),
18589         (gst_gnome_vfs_sink_uri_get_protocols),
18590         (gst_gnome_vfs_sink_uri_get_uri), (gst_gnome_vfs_sink_uri_set_uri),
18591         (gst_gnome_vfs_sink_uri_handler_init):
18592         * ext/gnomevfs/gstgnomevfssink.h:
18593           Port gnomevfssink; add gtk-doc blurb.
18594
18595         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_get_type),
18596         (gst_gnome_vfs_src_base_init), (gst_gnome_vfs_src_class_init),
18597         (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
18598         (gst_gnome_vfs_src_uri_get_type),
18599         (gst_gnome_vfs_src_uri_get_protocols),
18600         (gst_gnome_vfs_src_uri_get_uri), (gst_gnome_vfs_src_uri_set_uri),
18601         (gst_gnome_vfs_src_uri_handler_init),
18602         (gst_gnome_vfs_src_set_property), (gst_gnome_vfs_src_get_property),
18603         (gst_gnome_vfs_src_unicodify), (audiocast_thread_run),
18604         (gst_gnome_vfs_src_send_additional_headers_callback),
18605         (gst_gnome_vfs_src_received_headers_callback),
18606         (gst_gnome_vfs_src_push_callbacks),
18607         (gst_gnome_vfs_src_pop_callbacks),
18608         (gst_gnome_vfs_src_get_icy_metadata), (gst_gnome_vfs_src_create),
18609         (gst_gnome_vfs_src_is_seekable), (gst_gnome_vfs_src_get_size),
18610         (gst_gnome_vfs_src_start), (gst_gnome_vfs_src_stop):
18611         * ext/gnomevfs/gstgnomevfssrc.h:
18612           s/gst_gnomevfssrc/gst_gnome_vfs_src/; move header stuff to header
18613           file; add gtk-doc blurb with example pipelines.
18614
18615 === release 0.10.1 ===
18616
18617 2005-12-23  Thomas Vander Stichele <thomas at apestaart dot org>
18618
18619         * configure.ac:
18620           releasing 0.10.1, "Dobro Dedek"
18621
18622 2005-12-21  Edgard Lima <edgard.lima@indt.org.br>
18623
18624         * gst/typefind/gsttypefindfunctions.c:
18625         iLBC30 and iLBC20 added to typefind.
18626
18627 2005-12-20  Thomas Vander Stichele  <thomas at apestaart dot org>
18628
18629         * gst-libs/gst/audio/gstbaseaudiosink.c:
18630         (gst_base_audio_sink_class_init):
18631         * gst-libs/gst/audio/gstbaseaudiosrc.c:
18632         (gst_base_audio_src_class_init):
18633           update strings, values are in microseconds
18634           change the default sink buffer time to something that is smaller
18635           (to help software volume mixing have a slightly lower delay) but
18636           still be acceptable on Wim's laptop
18637
18638 2005-12-20  Edward Hervey  <edward@fluendo.com>
18639
18640         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_template_caps):
18641         Made a quack, forgot to add DUCK to the riff video template.
18642
18643 2005-12-19  Edward Hervey  <edward@fluendo.com>
18644
18645         * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_base_init),
18646         (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
18647         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
18648         (gst_ogm_parse_chain):
18649         Make sure pads are initialized correctly.
18650         * gst-libs/gst/riff/riff-ids.h:
18651         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
18652         (gst_riff_create_video_template_caps):
18653         Add a whole bunch of FOURCC <=> MimeType.
18654         Extend the riff video pad template to support the newly added fourcc.
18655
18656 2005-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
18657
18658         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain),
18659         (gst_ogg_demux_activate_chain):
18660           Extra debug output when activating/deactivating chains.
18661
18662         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
18663         (is_demuxer_element), (try_to_link_1), (remove_element_chain),
18664         (unlinked):
18665           Remove a queue from our list when it becomes unlinked.
18666           Don't add queues to elements in class 'Demux' if they
18667           can only produce one pad 
18668
18669 2005-12-18  Julien MOUTTE  <julien@moutte.net>
18670
18671         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_base_init),
18672         (gst_video_sink_get_type): Add a debug category.
18673
18674 2005-12-17  Philippe Khalaf  <burger@speedy.org> 
18675
18676         * gst-libs/gst/rtp/gstbasertpdepayload.c:
18677         (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_handle_sink_event):
18678           Handle downstream newsegment by sending our own newsegment before the
18679           next buffer to be released. (#323900)
18680
18681 2005-12-17  Philippe Khalaf  <burger@speedy.org> 
18682
18683         * gst-libs/gst/rtp/gstbasertpdepayload.c:
18684         (gst_base_rtp_depayload_set_gst_timestamp):
18685           add queue delay to new segment as well (as opposed to just the first
18686           buffer). (bug #322347)
18687
18688 2005-12-16  Stefan Kost  <ensonic@users.sf.net>
18689
18690         * ext/libvisual/visual.c: (make_valid_name):
18691           change some char* into char[]
18692         * gst/audiotestsrc/gstaudiotestsrc.c:
18693         (gst_audio_test_src_class_init), (gst_audio_test_src_do_seek),
18694         (gst_audio_test_src_create):
18695         * gst/audiotestsrc/gstaudiotestsrc.h:
18696           prepare to handle EOS and SEGMENT_DONE
18697
18698 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
18699
18700         * tests/check/generic/states.c: (GST_START_TEST):
18701           Blacklist cdparanoia element in state test.
18702
18703 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
18704
18705           Patch by: Benjamin Pineau
18706
18707         * gst/tcp/gsttcp.c:
18708         * gst/tcp/gsttcpclientsink.c:
18709         * gst/tcp/gsttcpserversink.c:
18710         * gst/tcp/gsttcpserversrc.c:
18711           Add <string.h> includes for memset and FD_ZERO (fixes #323878)
18712
18713 2005-12-15  Michael Smith  <msmith@fluendo.com>
18714
18715         * gst/videorate/gstvideorate.c: (gst_video_rate_blank_data),
18716         (gst_video_rate_chain):
18717           Fix timestamping for videorate when the first buffer it sees has a
18718           non-zero timestamp. Fix some misleading debug output.
18719
18720 2005-12-15  Michael Smith  <msmith@fluendo.com>
18721
18722         * gst/audioresample/gstaudioresample.c:
18723           Don't leak all input buffers to audioresample.
18724
18725 2005-12-15  Tim-Philipp Müller  <tim at centricular dot net>
18726
18727         * ext/pango/gsttextoverlay.c: (gst_text_overlay_collected):
18728           Don't operate on empty text buffers. Strip newlines and
18729           tabs only from the end of the text, but leave them intact
18730           in the middle. Fix typo in gtk-doc description.
18731
18732 2005-12-15  Tim-Philipp Müller  <tim at centricular dot net>
18733
18734         * gst/playback/gstplaybasebin.c:
18735         * gst/playback/gstplaybin.c: (handoff):
18736           Make sure the video frame buffer we return to apps via the
18737           "frame" property always has caps set on it. Modify
18738           _gst_gvalue_set_object() macro to handle NULL objects
18739           gracefully too.
18740
18741 2005-12-14  Stefan Kost  <ensonic@users.sf.net>
18742
18743         * gst/audiotestsrc/gstaudiotestsrc.c:
18744         (gst_audio_test_src_class_init), (gst_audio_test_src_init),
18745         (gst_audio_test_src_setcaps), (gst_audio_test_src_src_query),
18746         (gst_audio_test_src_do_seek), (gst_audio_test_src_is_seekable),
18747         (gst_audio_test_src_create):
18748         * gst/audiotestsrc/gstaudiotestsrc.h:
18749         Adjust to some recent api changes and add wtays new cool seeking
18750         capabillities
18751
18752 2005-12-14  Tim-Philipp Müller  <tim at centricular dot net>
18753
18754         * ext/alsa/Makefile.am:
18755         * ext/alsa/gstalsadeviceprobe.c:
18756         * ext/alsa/gstalsadeviceprobe.h:
18757           Helper functions to add device probing via the GstPropertyProbe
18758           interface to a class.
18759
18760         * ext/alsa/gstalsamixer.h:
18761           Comment out GST_ALSA_MIXER, it returns a struct that's not
18762           used.
18763
18764         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
18765           Add some debug info. 
18766
18767         * ext/alsa/gstalsamixerelement.c:
18768         (gst_alsa_mixer_element_interface_supported),
18769         (gst_implements_interface_init),
18770         (gst_alsa_mixer_element_init_interfaces),
18771         (gst_alsa_mixer_element_class_init),
18772         (gst_alsa_mixer_element_finalize), (gst_alsa_mixer_element_init),
18773         (gst_alsa_mixer_element_set_property),
18774         (gst_alsa_mixer_element_get_property),
18775         (gst_alsa_mixer_element_change_state):
18776         * ext/alsa/gstalsamixerelement.h:
18777           Add 'device' and 'device-name' properties. Add GstPropertyProbe
18778           for device handling (gnome-volume-control will need that).
18779
18780 2005-12-12  Christian Schaller  <uraeus@gnome.org>
18781
18782         * ext/Makefile.am: fix cdparanoia entry
18783         * gst-plugins-base.spec.in: add cdparanoia
18784
18785 2005-12-12  Michael Smith  <msmith@fluendo.com>
18786
18787         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
18788           Use the correct function to free list of typefind factories.
18789
18790 2005-12-12  Wim Taymans  <wim@fluendo.com>
18791
18792         * gst/videotestsrc/gstvideotestsrc.c:
18793         (gst_video_test_src_class_init), (gst_video_test_src_init),
18794         (gst_video_test_src_parse_caps), (gst_video_test_src_query),
18795         (gst_video_test_src_do_seek), (gst_video_test_src_is_seekable),
18796         (gst_video_test_src_create):
18797         * gst/videotestsrc/gstvideotestsrc.h:
18798         Implement seeking in videotestsrc.
18799         Small cleanups.
18800
18801 2005-12-12  Wim Taymans  <wim@fluendo.com>
18802
18803         * ext/cdparanoia/Makefile.am:
18804         * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
18805         (gst_paranoia_endian_get_type), (_do_init),
18806         (cdparanoia_class_init), (cdparanoia_init),
18807         (cdparanoia_set_property), (cdparanoia_get_property),
18808         (cdparanoia_do_seek), (cdparanoia_is_seekable),
18809         (cdparanoia_create), (cdparanoia_start), (cdparanoia_stop),
18810         (cdparanoia_convert), (cdparanoia_get_query_types),
18811         (cdparanoia_query), (cdparanoia_set_index),
18812         (cdparanoia_uri_set_uri):
18813         * ext/cdparanoia/gstcdparanoia.h:
18814         Partially ported cdparanoia now that basesrc can support a
18815         plugin like this..
18816
18817 2005-12-12  Wim Taymans  <wim@fluendo.com>
18818
18819         * tests/examples/seek/scrubby.c: (main):
18820         Set higher priority for bus events so they don't get reordered with
18821         gtk gui events.
18822
18823         * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
18824         (flush_toggle_cb), (main):
18825         Added checkbox to disable flushing seeks. 
18826         Disable scrubbing when doing non flushing seeks.
18827
18828 2005-12-12  Tim-Philipp Müller  <tim at centricular dot net>
18829
18830         * gst/subparse/gstsubparse.c: (gst_sub_parse_init),
18831         (gst_sub_parse_do_seek), (gst_sub_parse_src_event), (parse_subrip),
18832         (parser_state_init), (handle_buffer), (gst_sub_parse_chain),
18833         (gst_sub_parse_sink_event), (gst_sub_parse_change_state):
18834           Implement some sort of event handling that doesn't rely on
18835           g_return_if_fail; make sure we always push the last chunk of an 
18836           .srt out when we receive an EOS; use gst_pad_alloc_buffer; fix
18837           state change function; remove some old cruft. Seeking is still
18838           rather unlikely to work though.
18839
18840         * tools/.cvsignore:
18841           Ignore more.
18842
18843 2005-12-11  Julien MOUTTE  <julien@moutte.net>
18844
18845         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state): 
18846         Fixed a leak of the current image reference when cleaning up.
18847         Thanks to Arwed von Merkatz (alley_cat) for pointing it out.
18848
18849 2005-12-09  Michael Smith  <msmith@fluendo.com>
18850
18851         * tools/Makefile.am:
18852         * tools/gst-launch-ext-m.m:
18853           Remove gst-launch-ext. It doesn't work, and is no longer
18854           particularly useful.
18855
18856 2005-12-08  Luca Ognibene  <luogni@tin.it>
18857
18858         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
18859           don't pass random values to ogmparse convert function.
18860           Make seeking possible in the exile1.ogm file.
18861
18862 2005-12-07  Tim-Philipp Müller  <tim at centricular dot net>
18863
18864         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
18865         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
18866           Work around refcount problem with g_value_set_object() that occur
18867           if the core has been compiled against GLib-2.6 (g_value_set_object()
18868           will only g_object_ref() the element, but the caller will
18869           gst_object_unref() it and bad things will happen due to the way
18870           GstObjects are refcounted in the GLib-2.6 case). Fixes problems with
18871           totem for people on FC4 using Thomas's 0.10 RPMs.
18872           
18873 2005-12-07  Edward Hervey  <edward@fluendo.com>
18874
18875         Time to welcome ogm to 0.10 :)
18876         
18877         * ext/ogg/gstoggdemux.c: (internal_element_pad_added_cb),
18878         (gst_ogg_pad_typefind):
18879         Oggdemux can now properly typefind elements with dynamic pads.
18880         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
18881         Properly set caps on src pad, and set caps on outgoing buffers.
18882
18883 2005-12-06  Thomas Vander Stichele  <thomas at apestaart dot org>
18884
18885         * ext/alsa/gstalsamixer.h:
18886         * ext/alsa/gstalsamixerelement.h:
18887         * ext/alsa/gstalsamixeroptions.h:
18888         * ext/alsa/gstalsamixertrack.h:
18889         * ext/alsa/gstalsasink.c:
18890         * ext/alsa/gstalsasink.h:
18891         * ext/alsa/gstalsasrc.c:
18892         * ext/alsa/gstalsasrc.h:
18893         * ext/cdparanoia/gstcdparanoia.h:
18894         * ext/gnomevfs/gstgnomevfsuri.h:
18895         * ext/ogg/gstoggdemux.c:
18896         * ext/ogg/gstoggmux.c:
18897         * ext/pango/gsttextoverlay.h:
18898         * ext/theora/theoradec.c:
18899         * ext/theora/theoraenc.c:
18900         * ext/vorbis/vorbisdec.h:
18901         * ext/vorbis/vorbisenc.c:
18902         * ext/vorbis/vorbisenc.h:
18903         * ext/vorbis/vorbisparse.h:
18904         * gst-libs/gst/audio/gstaudioclock.h:
18905         * gst-libs/gst/audio/gstaudiosink.c:
18906         * gst-libs/gst/audio/gstaudiosink.h:
18907         * gst-libs/gst/audio/gstaudiosrc.c:
18908         * gst-libs/gst/audio/gstaudiosrc.h:
18909         * gst-libs/gst/audio/gstbaseaudiosink.c:
18910         * gst-libs/gst/audio/gstbaseaudiosink.h:
18911         * gst-libs/gst/audio/gstbaseaudiosrc.c:
18912         * gst-libs/gst/audio/gstbaseaudiosrc.h:
18913         * gst-libs/gst/audio/gstringbuffer.h:
18914         * gst-libs/gst/audio/multichannel.h:
18915         * gst-libs/gst/floatcast/floatcast.h:
18916         * gst-libs/gst/interfaces/colorbalance.c:
18917         * gst-libs/gst/interfaces/colorbalance.h:
18918         * gst-libs/gst/interfaces/colorbalancechannel.h:
18919         * gst-libs/gst/interfaces/mixer.h:
18920         * gst-libs/gst/interfaces/mixeroptions.h:
18921         * gst-libs/gst/interfaces/mixertrack.h:
18922         * gst-libs/gst/interfaces/navigation.h:
18923         * gst-libs/gst/interfaces/propertyprobe.h:
18924         * gst-libs/gst/interfaces/tuner.h:
18925         * gst-libs/gst/interfaces/tunerchannel.h:
18926         * gst-libs/gst/interfaces/tunernorm.h:
18927         * gst-libs/gst/interfaces/xoverlay.h:
18928         * gst-libs/gst/netbuffer/gstnetbuffer.h:
18929         * gst-libs/gst/riff/riff-ids.h:
18930         * gst-libs/gst/riff/riff-media.h:
18931         * gst-libs/gst/riff/riff-read.h:
18932         * gst-libs/gst/rtp/gstbasertpdepayload.h:
18933         * gst-libs/gst/rtp/gstbasertppayload.c:
18934         * gst-libs/gst/rtp/gstbasertppayload.h:
18935         * gst-libs/gst/rtp/gstrtpbuffer.c:
18936         * gst-libs/gst/rtp/gstrtpbuffer.h:
18937         * gst-libs/gst/tag/gsttageditingprivate.h:
18938         * gst-libs/gst/tag/gstvorbistag.c:
18939         (gst_tag_list_from_vorbiscomment_buffer):
18940         * gst-libs/gst/tag/tag.h:
18941         * gst-libs/gst/video/video.h:
18942         * gst/adder/gstadder.c:
18943         * gst/adder/gstadder.h:
18944         * gst/audioconvert/audioconvert.c:
18945         * gst/audioconvert/audioconvert.h:
18946         * gst/audioconvert/gstaudioconvert.c:
18947         * gst/audioconvert/gstchannelmix.c:
18948         * gst/audioconvert/gstchannelmix.h:
18949         * gst/audiorate/gstaudiorate.c:
18950         * gst/audioresample/buffer.h:
18951         * gst/audioresample/functable.h:
18952         * gst/audioresample/gstaudioresample.c:
18953         * gst/audioresample/resample.h:
18954         * gst/ffmpegcolorspace/avcodec.h:
18955         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
18956         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
18957         * gst/ffmpegcolorspace/imgconvert.c:
18958         * gst/ffmpegcolorspace/imgconvert_template.h:
18959         * gst/playback/gstdecodebin.c:
18960         * gst/playback/gstplaybasebin.h:
18961         * gst/playback/gstplaybin.c:
18962         * gst/playback/gststreaminfo.h:
18963         * gst/tcp/gstfdset.c:
18964         * gst/tcp/gstfdset.h:
18965         * gst/tcp/gstmultifdsink.c:
18966         * gst/tcp/gstmultifdsink.h:
18967         * gst/tcp/gsttcp.h:
18968         * gst/tcp/gsttcpclientsrc.c:
18969         * gst/tcp/gsttcpclientsrc.h:
18970         * gst/tcp/gsttcpplugin.h:
18971         * gst/tcp/gsttcpserversink.c:
18972         * gst/tcp/gsttcpserversrc.c:
18973         * gst/typefind/gsttypefindfunctions.c:
18974         * gst/videorate/gstvideorate.c:
18975         * gst/videotestsrc/gstvideotestsrc.h:
18976         * gst/videotestsrc/videotestsrc.h:
18977         * sys/v4l/gstv4lcolorbalance.h:
18978         * sys/v4l/gstv4ltuner.h:
18979         * sys/v4l/gstv4lxoverlay.h:
18980         * sys/v4l/v4l_calls.h:
18981         * sys/v4l/videodev_mjpeg.h:
18982         * tests/check/elements/audioconvert.c:
18983         * tests/check/elements/audioresample.c:
18984         * tests/check/elements/audiotestsrc.c:
18985         * tests/check/elements/videotestsrc.c:
18986         * tests/check/elements/volume.c:
18987         * tests/examples/seek/scrubby.c:
18988         * tests/examples/seek/seek.c:
18989           expand tabs
18990
18991 === release 0.10.0 ===
18992
18993 2005-12-05 Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
18994
18995         * configure.ac:
18996           releasing 0.10.0, "Mont-d'or"
18997
18998 2005-12-05  Jan Schmidt  <thaytan@mad.scientist.com>
18999
19000         * tests/examples/seek/Makefile.am:
19001         Build fix for when gtk is not available.
19002
19003 2005-12-05  Andy Wingo  <wingo@pobox.com>
19004
19005         * ext/libvisual/visual.c: (get_buffer):
19006         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
19007         * ext/pango/gsttextrender.c: (gst_text_render_chain):
19008         * ext/theora/theoradec.c: (theora_handle_data_packet):
19009         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
19010         (theora_enc_chain):
19011         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
19012         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
19013         Update for alloc_buffer changes.
19014
19015 2005-12-05  Andy Wingo  <wingo@pobox.com>
19016
19017         patch by: Kai Vehmanen <kv2004 eca cx>
19018         
19019         * gst-libs/gst/rtp/gstbasertpdepayload.c
19020         (gst_base_rtp_depayload_thread): Fix busy loop (#323017).
19021
19022 2005-12-04  Andy Wingo  <wingo@pobox.com>
19023
19024         patch by: Sebastien Cote <sebas642 yahoo ca>
19025         
19026         * pkgconfig/gstreamer-plugins-base.pc.in (Libs): Add -L flag.
19027         Fixes #319172.
19028
19029 2005-12-02  Tim-Philipp Müller  <tim at centricular dot net>
19030
19031         * docs/plugins/Makefile.am:
19032         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
19033         * docs/plugins/gst-plugins-base-plugins-sections.txt:
19034         * docs/plugins/gst-plugins-base-plugins.hierarchy:
19035         * ext/pango/gstclockoverlay.c:
19036         * ext/pango/gsttextoverlay.c: 
19037         * ext/pango/gsttextrender.c:
19038         * ext/pango/gsttimeoverlay.c:
19039           Add gtk-doc blurbs to pango elements.
19040
19041 2005-12-02  Wim Taymans  <wim@fluendo.com>
19042
19043         * gst/audioresample/buffer.c: (audioresample_buffer_queue_flush):
19044         * gst/audioresample/buffer.h:
19045         * gst/audioresample/gstaudioresample.c:
19046         * gst/audioresample/gstaudioresample.h:
19047         * gst/audioresample/resample.c: (resample_input_flush),
19048         (resample_input_pushthrough), (resample_input_eos),
19049         (resample_get_output_size_for_input),
19050         (resample_get_input_size_for_output), (resample_get_output_size),
19051         (resample_get_output_data):
19052         * gst/audioresample/resample.h:
19053         * gst/audioresample/resample_ref.c: (resample_scale_ref):
19054         Fix audioresample, seek torture, new segments, reverse negotiation
19055         etc.. work fine.
19056
19057 2005-12-02  Wim Taymans  <wim@fluendo.com>
19058
19059         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
19060         Small cleanups.
19061
19062 2005-12-02  Wim Taymans  <wim@fluendo.com>
19063
19064         * gst/audioconvert/gstaudioconvert.c:
19065         (gst_audio_convert_transform):
19066         Post errors.
19067
19068 === release 0.9.7 ===
19069
19070 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19071
19072         * configure.ac:
19073           releasing 0.9.7, "Mi Perro No Tiene Ninguna Nariz"
19074
19075 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
19076
19077         * Makefile.am:
19078         * po/hu.po:
19079         * win32/MANIFEST:
19080         * win32/gst.sln:
19081           add win32 MANIFEST file
19082           do something to the hungarian translation
19083
19084 2005-12-01  Tim-Philipp Müller  <tim at centricular dot net>
19085
19086         * ext/Makefile.am:
19087           Add $(PANGO_DIR) to SUBDIRS
19088
19089         * ext/pango/gstclockoverlay.c:
19090         * ext/pango/gsttimeoverlay.c:
19091           Fix and improve element descriptions.
19092
19093 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19094
19095         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
19096         * docs/plugins/inspect/plugin-libvisual.xml:
19097         * docs/plugins/inspect/plugin-pango.xml:
19098           add pango plugin to docs
19099
19100 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19101
19102         * configure.ac:
19103         * ext/Makefile.am:
19104           moved pango to base
19105
19106 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
19107
19108         * configure.ac:
19109         * tests/Makefile.am:
19110         * tests/icles/.cvsignore:
19111         * tests/icles/Makefile.am:
19112         * tests/icles/stress-xoverlay.c: (myclock), (open_display),
19113         (close_display), (resize_window), (move_window), (create_window),
19114         (terminate_playback), (pause_playback), (start_playback), (main):
19115           add stress test for xoverlay from Julien
19116
19117 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19118
19119         * docs/libs/tmpl/gstcolorbalance.sgml:
19120         * gst-libs/gst/rtp/gstbasertpdepayload.c:
19121         * gst-libs/gst/rtp/gstbasertppayload.c:
19122         * gst-libs/gst/rtp/gstrtpbuffer.c:
19123         * gst-libs/gst/rtp/gstrtpbuffer.h:
19124           Do burger's rename for rtp payloaders and depayloaders
19125
19126 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
19127
19128         * win32/:
19129           add Visual Studio 6 build files
19130
19131 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
19132
19133         * docs/libs/gst-plugins-base-libs-docs.sgml:
19134         * docs/libs/gst-plugins-base-libs-sections.txt:
19135         * docs/libs/tmpl/gstaudio.sgml:
19136         * docs/libs/tmpl/gstringbuffer.sgml:
19137         * gst-libs/gst/interfaces/xoverlay.c:
19138         * gst-libs/gst/video/gstvideofilter.c:
19139         * gst-libs/gst/video/gstvideosink.c:
19140           update documentation
19141
19142 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
19143
19144         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_base_init),
19145         (gst_multi_fd_sink_class_init), (gst_multi_fd_sink_init),
19146         (gst_multi_fd_sink_finalize), (gst_multi_fd_sink_add),
19147         (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
19148         (gst_multi_fd_sink_get_stats),
19149         (gst_multi_fd_sink_remove_client_link),
19150         (gst_multi_fd_sink_handle_client_read),
19151         (gst_multi_fd_sink_client_queue_data),
19152         (gst_multi_fd_sink_client_queue_caps),
19153         (gst_multi_fd_sink_client_queue_buffer),
19154         (gst_multi_fd_sink_new_client),
19155         (gst_multi_fd_sink_handle_client_write),
19156         (gst_multi_fd_sink_recover_client),
19157         (gst_multi_fd_sink_queue_buffer),
19158         (gst_multi_fd_sink_handle_clients), (gst_multi_fd_sink_thread),
19159         (gst_multi_fd_sink_render), (gst_multi_fd_sink_set_property),
19160         (gst_multi_fd_sink_get_property), (gst_multi_fd_sink_start),
19161         (gst_multi_fd_sink_stop), (gst_multi_fd_sink_change_state):
19162         * gst/tcp/gstmultifdsink.h:
19163         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_get_type),
19164         (gst_tcp_client_sink_base_init), (gst_tcp_client_sink_class_init),
19165         (gst_tcp_client_sink_init), (gst_tcp_client_sink_finalize),
19166         (gst_tcp_client_sink_setcaps), (gst_tcp_client_sink_render),
19167         (gst_tcp_client_sink_set_property),
19168         (gst_tcp_client_sink_get_property), (gst_tcp_client_sink_start),
19169         (gst_tcp_client_sink_stop), (gst_tcp_client_sink_change_state):
19170         * gst/tcp/gsttcpclientsink.h:
19171         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_base_init),
19172         (gst_tcp_client_src_class_init), (gst_tcp_client_src_init),
19173         (gst_tcp_client_src_finalize), (gst_tcp_client_src_getcaps),
19174         (gst_tcp_client_src_create), (gst_tcp_client_src_set_property),
19175         (gst_tcp_client_src_get_property), (gst_tcp_client_src_start),
19176         (gst_tcp_client_src_stop), (gst_tcp_client_src_unlock):
19177         * gst/tcp/gsttcpclientsrc.h:
19178         * gst/tcp/gsttcpplugin.c: (plugin_init):
19179         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_base_init),
19180         (gst_tcp_server_sink_class_init), (gst_tcp_server_sink_init),
19181         (gst_tcp_server_sink_finalize),
19182         (gst_tcp_server_sink_handle_server_read),
19183         (gst_tcp_server_sink_removed), (gst_tcp_server_sink_handle_wait),
19184         (gst_tcp_server_sink_set_property),
19185         (gst_tcp_server_sink_get_property),
19186         (gst_tcp_server_sink_init_send), (gst_tcp_server_sink_close):
19187         * gst/tcp/gsttcpserversink.h:
19188         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_base_init),
19189         (gst_tcp_server_src_class_init), (gst_tcp_server_src_init),
19190         (gst_tcp_server_src_finalize), (gst_tcp_server_src_create),
19191         (gst_tcp_server_src_set_property),
19192         (gst_tcp_server_src_get_property), (gst_tcp_server_src_start),
19193         (gst_tcp_server_src_stop), (gst_tcp_server_src_unlock):
19194         * gst/tcp/gsttcpserversrc.h:
19195           more borgifying
19196
19197 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
19198
19199         * docs/plugins/Makefile.am:
19200         * docs/plugins/gst-plugins-base-plugins.args:
19201         * docs/plugins/inspect/plugin-libvisual.xml:
19202         * gst/audioconvert/plugin.h:
19203         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_get_type),
19204         (gst_audio_rate_base_init), (gst_audio_rate_class_init),
19205         (gst_audio_rate_setcaps), (gst_audio_rate_init),
19206         (gst_audio_rate_chain), (gst_audio_rate_set_property),
19207         (gst_audio_rate_get_property), (gst_audio_rate_change_state),
19208         (plugin_init):
19209         * gst/audiotestsrc/gstaudiotestsrc.c:
19210         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_base_init),
19211         (gst_audio_test_src_class_init), (gst_audio_test_src_init),
19212         (gst_audio_test_src_src_fixate), (gst_audio_test_src_setcaps),
19213         (gst_audio_test_src_get_query_types),
19214         (gst_audio_test_src_src_query), (gst_audio_test_src_create_sine),
19215         (gst_audio_test_src_create_square),
19216         (gst_audio_test_src_create_saw),
19217         (gst_audio_test_src_create_triangle),
19218         (gst_audio_test_src_create_silence),
19219         (gst_audio_test_src_create_white_noise),
19220         (gst_audio_test_src_init_pink_noise),
19221         (gst_audio_test_src_generate_pink_noise_value),
19222         (gst_audio_test_src_create_pink_noise),
19223         (gst_audio_test_src_change_wave), (gst_audio_test_src_get_times),
19224         (gst_audio_test_src_create), (gst_audio_test_src_set_property),
19225         (gst_audio_test_src_get_property), (gst_audio_test_src_start),
19226         (plugin_init):
19227         * gst/audiotestsrc/gstaudiotestsrc.h:
19228         * gst/subparse/gstsubparse.c: (gst_sub_parse_get_type),
19229         (gst_sub_parse_base_init), (gst_sub_parse_class_init),
19230         (gst_sub_parse_init), (gst_sub_parse_formats),
19231         (gst_sub_parse_src_eventmask), (gst_sub_parse_src_event),
19232         (convert_encoding), (get_next_line),
19233         (gst_sub_parse_data_format_autodetect),
19234         (gst_sub_parse_format_autodetect), (feed_textbuf), (handle_buffer),
19235         (gst_sub_parse_loop), (gst_sub_parse_chain),
19236         (gst_sub_parse_change_state), (gst_sub_parse_type_find),
19237         (plugin_init):
19238         * gst/subparse/gstsubparse.h:
19239         * gst/videorate/gstvideorate.c: (gst_video_rate_get_type),
19240         (gst_video_rate_base_init), (gst_video_rate_class_init),
19241         (gst_video_rate_transformcaps), (gst_video_rate_getcaps),
19242         (gst_video_rate_setcaps), (gst_video_rate_blank_data),
19243         (gst_video_rate_init), (gst_video_rate_event),
19244         (gst_video_rate_chain), (gst_video_rate_set_property),
19245         (gst_video_rate_get_property), (gst_video_rate_change_state),
19246         (plugin_init):
19247         * gst/videoscale/gstvideoscale.c:
19248         (gst_video_scale_method_get_type), (gst_video_scale_get_capslist),
19249         (gst_video_scale_src_template_factory),
19250         (gst_video_scale_sink_template_factory),
19251         (gst_video_scale_get_type), (gst_video_scale_base_init),
19252         (gst_video_scale_class_init), (gst_video_scale_init),
19253         (gst_video_scale_set_property), (gst_video_scale_get_property),
19254         (gst_video_scale_transform_caps), (gst_video_scale_get_format),
19255         (gst_video_scale_prepare_size), (parse_caps),
19256         (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
19257         (gst_video_scale_fixate_caps), (gst_video_scale_prepare_image),
19258         (gst_video_scale_transform), (gst_video_scale_handle_src_event),
19259         (plugin_init):
19260         * gst/videoscale/gstvideoscale.h:
19261         * gst/videotestsrc/gstvideotestsrc.c:
19262         (gst_video_test_src_pattern_get_type),
19263         (gst_video_test_src_base_init), (gst_video_test_src_class_init),
19264         (gst_video_test_src_init), (gst_video_test_src_src_fixate),
19265         (gst_video_test_src_set_pattern),
19266         (gst_video_test_src_set_property),
19267         (gst_video_test_src_get_property), (gst_video_test_src_getcaps),
19268         (gst_video_test_src_parse_caps), (gst_video_test_src_setcaps),
19269         (gst_video_test_src_event), (gst_video_test_src_get_times),
19270         (gst_video_test_src_create), (plugin_init):
19271         * gst/videotestsrc/gstvideotestsrc.h:
19272         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_get_size),
19273         (gst_video_test_src_smpte), (gst_video_test_src_snow),
19274         (gst_video_test_src_black):
19275         * gst/videotestsrc/videotestsrc.h:
19276           borgify further
19277           clean up docs a little
19278
19279 2005-11-30  Wim Taymans  <wim@fluendo.com>
19280
19281         * gst-libs/gst/rtp/gstbasertpdepayload.h:
19282         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
19283         (gst_basertppayload_event), (gst_basertppayload_push),
19284         (gst_basertppayload_change_state):
19285         * gst-libs/gst/rtp/gstbasertppayload.h:
19286         closed #320644.
19287
19288 2005-11-30  Julien MOUTTE  <julien@moutte.net>
19289
19290         * docs/libs/gst-plugins-base-libs-docs.sgml:
19291         * docs/libs/gst-plugins-base-libs-sections.txt:
19292         * gst-libs/gst/video/gstvideofilter.c:
19293         * gst-libs/gst/video/gstvideosink.c:
19294         * gst-libs/gst/video/gstvideosink.h: Adding docs.
19295
19296 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19297
19298         * LICENSE:
19299           move
19300         * po/af.po:
19301         * po/az.po:
19302         * po/cs.po:
19303         * po/en_GB.po:
19304         * po/hu.po:
19305         * po/it.po:
19306         * po/nb.po:
19307         * po/nl.po:
19308         * po/or.po:
19309         * po/sq.po:
19310         * po/sr.po:
19311         * po/sv.po:
19312         * po/uk.po:
19313         * po/vi.po:
19314         * Makefile.am:
19315           update
19316         * scripts/autoplugins.sh:
19317           remove
19318
19319 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19320
19321         * Makefile.am:
19322         * configure.ac:
19323         * examples/Makefile.am:
19324         * examples/capsfilter/Makefile.am:
19325         * examples/capsfilter/capsfilter1.c:
19326         * examples/gob/Makefile.am:
19327         * examples/gob/gst-identity2.gob:
19328         * examples/indexing/.cvsignore:
19329         * examples/indexing/Makefile.am:
19330         * examples/indexing/indexmpeg.c:
19331         * examples/seeking/.cvsignore:
19332         * examples/seeking/Makefile.am:
19333         * examples/seeking/cdparanoia.c:
19334         * examples/seeking/cdplayer.c:
19335         * examples/seeking/chained.c:
19336         * examples/seeking/scrubby.c:
19337         * examples/seeking/seek.c:
19338         * examples/stats/Makefile.am:
19339         * examples/stats/mp2ogg.c:
19340         * examples/switch/.cvsignore:
19341         * examples/switch/Makefile.am:
19342         * examples/switch/switcher.c:
19343         * tests/Makefile.am:
19344         * tests/check/generic/.cvsignore:
19345         * tests/check/pipelines/.cvsignore:
19346         * tests/examples/Makefile.am:
19347         * tests/examples/seek/Makefile.am:
19348           reorganize stuff under tests/
19349
19350 2005-11-30  Edward Hervey  <edward@fluendo.com>
19351
19352         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
19353         Go away you stupid GstStaticPadTemplate memleak.
19354
19355 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
19356
19357         * gst-libs/gst/net/Makefile.am:
19358         * gst-libs/gst/net/README:
19359         * gst-libs/gst/net/gstnetbuffer.c:
19360         * gst-libs/gst/net/gstnetbuffer.h:
19361           this was moved to "netbuffer"
19362
19363 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
19364
19365         * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_get_type),
19366         (gst_video_filter_class_init), (gst_video_filter_init):
19367         * gst-libs/gst/video/gstvideofilter.h:
19368           borgify name to bring in line with other classes
19369
19370 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
19371
19372         * gst/audioscale/.cvsignore:
19373         * gst/audioscale/Makefile.am:
19374         * gst/audioscale/README:
19375         * gst/audioscale/audioscale.vcproj:
19376         * gst/audioscale/dtof.c:
19377         * gst/audioscale/dtos.c:
19378         * gst/audioscale/functable.c:
19379         * gst/audioscale/gstaudioscale.c:
19380         * gst/audioscale/gstaudioscale.h:
19381         * gst/audioscale/private.h:
19382         * gst/audioscale/resample.c:
19383         * gst/audioscale/resample.h:
19384         * gst/audioscale/test.c:
19385           remove
19386
19387 2005-11-30  Edward Hervey  <edward@fluendo.com>
19388
19389         * gst-libs/gst/netbuffer/Makefile.am:
19390         really, really tired
19391
19392 2005-11-30  Edward Hervey  <edward@fluendo.com>
19393
19394         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
19395         Update for new GstTypeFindFactory _register()
19396
19397 2005-11-30  Edward Hervey  <edward@fluendo.com>
19398
19399         * gst-libs/gst/netbuffer/Makefile.am: (libgstnetbufferincludedir): 
19400         Let's not override libgstnet from core for no reason...
19401         (libgstnetbuffer_@GST_MAJORMINOR@_la_SOURCES):
19402         Ok, maybe not so quick next time.
19403
19404 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
19405
19406         * configure.ac:
19407         * gst-libs/gst/Makefile.am:
19408           moved gst-libs/gst/net to netbuffer through CVS surgery
19409           remove old directory
19410           updating build to accomodate
19411           (#322257)
19412
19413 2005-11-29  Andy Wingo  <wingo@pobox.com>
19414
19415         * pkgconfig/gstreamer-plugins-base.pc.in:
19416         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
19417         * gst-libs/gst/net/Makefile.am: Rename gstnet to gstnetbuffer
19418         (#322257).
19419
19420 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
19421
19422         * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
19423         3rd time's the charm. Correct ref-counting for discarded buffers.
19424
19425 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
19426
19427         * gst/playback/gststreamselector.c:
19428         (gst_stream_selector_class_init),
19429         (gst_stream_selector_set_property),
19430         (gst_stream_selector_get_property),
19431         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
19432         Fix ref-counting
19433
19434 2005-11-29  Tim-Philipp Müller  <tim at centricular dot net>
19435
19436         * gst/subparse/gstsubparse.c: (feed_textbuf):
19437           Don't access already unref'ed buffer.
19438
19439 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
19440
19441         * gst/playback/gststreamselector.c:
19442         (gst_stream_selector_class_init), (gst_stream_selector_init),
19443         (gst_stream_selector_dispose), (gst_stream_selector_set_property),
19444         (gst_stream_selector_get_property),
19445         (gst_stream_selector_get_linked_pad),
19446         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
19447         * gst/playback/gststreamselector.h:
19448         Add the active-pad property for playbin to use shortly. Ignore buffers
19449         from any other pad, returning GST_FLOW_NOT_LINKED
19450
19451 2005-11-29  Julien MOUTTE  <julien@moutte.net>
19452
19453         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find): Free the list,
19454         patch from bug #322704 (Alessandro Decina).
19455
19456 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
19457
19458         * gst-libs/gst/audio/Makefile.am:
19459           folded audiofilter into the audio library
19460
19461 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
19462
19463         * gst/videoscale/gstvideoscale.h:
19464         * gst/videoscale/gstvideoscale.c:
19465           remove unimplemented scale methods
19466
19467 2005-11-28  Tim-Philipp Müller  <tim at centricular dot net>
19468
19469         * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers):
19470           Don't leak caps.
19471
19472 2005-11-28  Julien MOUTTE  <julien@moutte.net>
19473
19474         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
19475         (gst_ximagesink_setcaps):
19476         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
19477         (gst_xvimagesink_setcaps): Fixed a tricky bug. When caps renegotiation
19478         happens (only visible on ximagesink but bug is in xv too) set_caps was
19479         destroying the internal x[v]image used to memcpy non locally alloced
19480         buffers so that it got renewed on next _chain. The issue is that 
19481         _expose will try to put that image as it reffed it in _put.
19482         Using gst_buffer_unref instead of destroy fixes it !
19483
19484 2005-11-28  Edward Hervey  <edward@fluendo.com>
19485
19486         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
19487         (try_to_link_1), (queue_filled_cb):
19488         Better use of the queues. Start with a small size queue and only increase
19489         the size of the queues when the other queues are empty.
19490
19491 2005-11-28  Thomas Vander Stichele  <thomas at apestaart dot org>
19492
19493         * gst-libs/gst/video/Makefile.am:
19494           compile in copied-over videofilter into the video library
19495         * gst-libs/gst/video/videosink.h:
19496           rename the header to gstvideosink.h since it's a base GstObject class
19497         * sys/ximage/ximagesink.h:
19498         * sys/xvimage/xvimagesink.h:
19499           use the new header
19500
19501 2005-11-28  Wim Taymans  <wim@fluendo.com>
19502
19503         * gst/playback/gstplaybasebin.c: (group_commit), (probe_triggered):
19504         * gst/playback/gstplaybasebin.h:
19505         Prepare to handle errors betters.
19506
19507         * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
19508         Set sinks to PAUSED first before adding and linking them so that
19509         we don't interrupt dataflow.
19510
19511 2005-11-28  Wim Taymans  <wim@fluendo.com>
19512
19513         * gst-libs/gst/audio/TODO:
19514         Updated TODO
19515
19516         * gst-libs/gst/audio/gstaudiosink.c:
19517         (gst_audioringbuffer_open_device),
19518         (gst_audioringbuffer_close_device), (gst_audioringbuffer_acquire),
19519         (gst_audioringbuffer_release):
19520         Small cleanups.
19521
19522         * gst-libs/gst/audio/gstbaseaudiosink.c:
19523         (gst_base_audio_sink_class_init), (gst_base_audio_sink_render),
19524         (gst_base_audio_sink_change_state):
19525         Slave to the master clock when going to PLAYING and unslave when
19526         going to PAUSED.
19527
19528         * gst-libs/gst/audio/gstringbuffer.c:
19529         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
19530         (gst_ring_buffer_acquire), (gst_ring_buffer_release),
19531         (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
19532         (gst_ring_buffer_clear_all), (wait_segment),
19533         (gst_ring_buffer_commit), (gst_ring_buffer_read),
19534         (gst_ring_buffer_advance):
19535         * gst-libs/gst/audio/gstringbuffer.h:
19536         Add some docs and cleanups.
19537
19538 2005-11-28  Julien MOUTTE  <julien@moutte.net>
19539
19540         * sys/xvimage/xvimagesink.c:
19541         (gst_xvimagesink_navigation_send_event): Fix navigation events
19542         coordinates translation with pixel aspect ratios.
19543
19544 2005-11-28  Julien MOUTTE  <julien@moutte.net>
19545
19546         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
19547         Use calculated video geometry from _setcaps instead of buffer
19548         caps to respect pixel aspect ratio. (fixes #322388)
19549
19550 2005-11-28  Julien MOUTTE  <julien@moutte.net>
19551
19552         * docs/libs/tmpl/gstcolorbalance.sgml:
19553         * docs/libs/tmpl/gstmixer.sgml:
19554         * docs/libs/tmpl/gstxoverlay.sgml:
19555         * gst-libs/gst/interfaces/xoverlay.c: Add docs for the Xoverlay
19556         interface.
19557
19558 2005-11-28  Julien MOUTTE  <julien@moutte.net>
19559
19560         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
19561         Refuse to create an XvImage if we can't find the format.
19562
19563 2005-11-28  Edward Hervey  <edward@fluendo.com>
19564
19565         * gst-libs/gst/riff/riff-media.c:
19566         (gst_riff_create_audio_template_caps):
19567         Add ATRAC3 to the list of riff-possible audio caps.
19568         I know we still don't have a plugin for atrac3, but it's saner to output
19569         that than a cryptic mimetype.
19570
19571 2005-11-27  Edward Hervey  <edward@fluendo.com>
19572
19573         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds):
19574         Don't try to create a zero-sized subbuffer.
19575
19576 2005-11-27  Julien MOUTTE  <julien@moutte.net>
19577
19578         * sys/ximage/ximagesink.c: (gst_ximage_buffer_free),
19579         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
19580         (gst_ximagesink_bufferpool_clear), (gst_ximagesink_buffer_alloc),
19581         (gst_ximagesink_expose): Fixed a tricky race.
19582         * sys/ximage/ximagesink.h:
19583         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
19584         (gst_xvimagesink_expose): Fixed a tricky race.
19585         * sys/xvimage/xvimagesink.h:
19586
19587 2005-11-27  Edward Hervey  <edward@fluendo.com>
19588
19589         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
19590         (gst_decode_bin_init), (close_pad_link), (try_to_link_1):
19591         Remove unused properties, and add queues between demuxers and decoders
19592         so that a lot more files can preroll properly.
19593
19594 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
19595
19596         * gst-libs/gst/net/Makefile.am:
19597         * gst-libs/gst/rtp/Makefile.am:
19598         * gst-libs/gst/tag/Makefile.am:
19599           remove silly include
19600         * gst/tags/Makefile.am:
19601         * gst/tags/gsttagediting.c:
19602         * gst/tags/gsttageditingprivate.h:
19603         * gst/tags/tagedit.vcproj:
19604           remove directory, is as good as empty
19605
19606 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
19607
19608         * configure.ac:
19609           added GST_LIB_LDFLAGS and GST_ALL_LDFLAGS
19610         * gst-libs/Makefile.am:
19611         * gst-libs/gst/audio/Makefile.am:
19612         * gst-libs/gst/interfaces/Makefile.am:
19613         * gst-libs/gst/net/Makefile.am:
19614         * gst-libs/gst/riff/Makefile.am:
19615         * gst-libs/gst/rtp/Makefile.am:
19616         * gst-libs/gst/tag/Makefile.am:
19617         * gst-libs/gst/video/Makefile.am:
19618           and use them
19619
19620 2005-11-27  Julien MOUTTE  <julien@moutte.net>
19621
19622         * docs/libs/tmpl/gstcolorbalance.sgml:
19623         * docs/libs/tmpl/gstmixer.sgml:
19624         * docs/libs/tmpl/gstxoverlay.sgml:
19625         * sys/ximage/ximagesink.c: (gst_ximagesink_buffer_alloc):
19626         * sys/ximage/ximagesink.h:
19627         * sys/xvimage/xvimagesink.h: More and more documentation.
19628
19629 2005-11-26  Julien MOUTTE  <julien@moutte.net>
19630
19631         * docs/libs/gst-plugins-base-libs-docs.sgml:
19632         * docs/libs/gst-plugins-base-libs-sections.txt:
19633         * docs/libs/tmpl/gstcolorbalance.sgml:
19634         * docs/libs/tmpl/gstmixer.sgml:
19635         * docs/libs/tmpl/gstxoverlay.sgml: Add the XOverlay interface
19636         to documentation.
19637
19638 2005-11-26  Julien MOUTTE  <julien@moutte.net>
19639
19640         * docs/plugins/Makefile.am:
19641         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
19642         * docs/plugins/gst-plugins-base-plugins-sections.txt:
19643         * sys/xvimage/xvimagesink.c: Added doc for xvimagesink.
19644
19645 2005-11-26  Julien MOUTTE  <julien@moutte.net>
19646
19647         * docs/plugins/Makefile.am:
19648         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
19649         * docs/plugins/gst-plugins-base-plugins-sections.txt:
19650         * docs/plugins/inspect/plugin-adder.xml:
19651         * docs/plugins/inspect/plugin-alsa.xml:
19652         * docs/plugins/inspect/plugin-audioconvert.xml:
19653         * docs/plugins/inspect/plugin-audiorate.xml:
19654         * docs/plugins/inspect/plugin-audioresample.xml:
19655         * docs/plugins/inspect/plugin-audiotestsrc.xml:
19656         * docs/plugins/inspect/plugin-decodebin.xml:
19657         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
19658         * docs/plugins/inspect/plugin-gnomevfs.xml:
19659         * docs/plugins/inspect/plugin-ogg.xml:
19660         * docs/plugins/inspect/plugin-playbin.xml:
19661         * docs/plugins/inspect/plugin-subparse.xml:
19662         * docs/plugins/inspect/plugin-tcp.xml:
19663         * docs/plugins/inspect/plugin-theora.xml:
19664         * docs/plugins/inspect/plugin-typefindfunctions.xml:
19665         * docs/plugins/inspect/plugin-video4linux.xml:
19666         * docs/plugins/inspect/plugin-videorate.xml:
19667         * docs/plugins/inspect/plugin-videoscale.xml:
19668         * docs/plugins/inspect/plugin-videotestsrc.xml:
19669         * docs/plugins/inspect/plugin-volume.xml:
19670         * docs/plugins/inspect/plugin-vorbis.xml:
19671         * docs/plugins/inspect/plugin-ximagesink.xml:
19672         * docs/plugins/inspect/plugin-xvimagesink.xml: Updated version.
19673         * sys/ximage/ximagesink.c: Adding documentation for ximagesink.
19674
19675 2005-11-26  Edward Hervey  <edward@fluendo.com>
19676
19677         * gst/audiorate/gstaudiorate.c: (gst_audiorate_chain):
19678         Properly return GstFlowReturn from gst_pad_push in chain functions.
19679
19680 2005-11-25  Michael Smith  <msmith@fluendo.com>
19681
19682         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
19683         (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
19684         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
19685         (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
19686           Handle various conditions better when we don't understand a stream.
19687           Removes a heap of CRITICALs on ogg streams containing unknown data.
19688
19689 2005-11-24  Andy Wingo  <wingo@pobox.com>
19690
19691         * gst/tcp/gstmultifdsink.c (gst_multifdsink_handle_client_write):
19692         Be threadsafe.
19693
19694 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
19695
19696         * configure.ac: back to HEAD
19697
19698 === release 0.9.6 ===
19699
19700 2005-11-23  Thomas Vander Stichele <thomas at apestaart dot org>
19701
19702         * configure.ac:
19703           releasing 0.9.6, "White Eight"
19704
19705 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
19706
19707         * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
19708         * docs/plugins/inspect/plugin-sine.xml:
19709           remove sinesrc some more
19710
19711 2005-11-23  Wim Taymans  <wim@fluendo.com>
19712
19713         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
19714         If we are reading too slowly, jump forward in the ringbuffer
19715         instead of blocking.
19716
19717 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
19718
19719         * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
19720         (gst_visual_chain):
19721         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps):
19722         * gst/videorate/gstvideorate.c: (gst_videorate_setcaps),
19723         (gst_videorate_chain):
19724         * gst/videotestsrc/gstvideotestsrc.c:
19725         (gst_videotestsrc_src_fixate), (gst_videotestsrc_create):
19726         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_fps),
19727         (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query),
19728         (gst_v4lmjpegsrc_get), (gst_v4lmjpegsrc_getcaps):
19729         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
19730         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
19731           Updates for API changes
19732
19733 2005-11-23  Wim Taymans  <wim@fluendo.com>
19734
19735         * gst-libs/gst/audio/gstbaseaudiosink.c:
19736         (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
19737         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
19738         Fix for calibration API change.
19739
19740 2005-11-23  Michael Smith <msmith@fluendo.com>
19741
19742         * gst-libs/gst/audio/multichannel.c:
19743         (gst_audio_get_channel_positions),
19744         (gst_audio_set_channel_positions),
19745         (gst_audio_set_structure_channel_positions_list),
19746         (gst_audio_fixate_channel_positions):
19747           Use gst_value_array_*() functions on value arrays, not
19748           gst_value_list_*().
19749
19750 2005-11-23  Edward Hervey  <edward@fluendo.com>
19751
19752         * autogen.sh:
19753         eheh, sinesrc is gone. Replacing sample srcfile by existing one.
19754         Fixes autogen
19755
19756 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
19757
19758         * check/Makefile.am:
19759         * check/elements/videotestsrc.c: (setup_videotestsrc),
19760         (cleanup_videotestsrc), (GST_START_TEST), (videotestsrc_suite),
19761         (main):
19762           add a test for videotestsrc
19763
19764 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
19765
19766         * gst/sine/.cvsignore:
19767         * gst/sine/Makefile.am:
19768         * gst/sine/gstsinesrc.c:
19769         * gst/sine/gstsinesrc.h:
19770         * gst/sine/sinesrc.vcproj:
19771           and remove sinesrc from the repository.  Closes #321446
19772
19773 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
19774
19775         * configure.ac:
19776         * gst-plugins-base.spec.in:
19777           remove sinesrc from the build
19778
19779 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
19780
19781         * check/Makefile.am:
19782         * check/elements/audiotestsrc.c: (setup_audiotestsrc),
19783         (cleanup_audiotestsrc), (GST_START_TEST), (audiotestsrc_suite),
19784         (main):
19785           add a test for audiotestsrc, testing all waves.  Even seems
19786           leak-free at first glance, nice job Stefan
19787
19788 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
19789
19790         * po/af.po:
19791         * po/az.po:
19792         * po/cs.po:
19793         * po/en_GB.po:
19794         * po/hu.po:
19795         * po/it.po:
19796         * po/nb.po:
19797         * po/nl.po:
19798         * po/or.po:
19799         * po/sq.po:
19800         * po/sr.po:
19801         * po/sv.po:
19802         * po/uk.po:
19803         * po/vi.po:
19804           Translation string updates
19805
19806         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
19807         (gst_v4lsrc_set_caps):
19808         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
19809         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
19810         * sys/v4l/v4lsrc_calls.h:
19811           Improve v4lsrc, by making it work again.
19812
19813 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
19814
19815         * ext/libvisual/visual.c: (gst_visual_chain):
19816           Fix the fps calculations.
19817
19818         * gst/ffmpegcolorspace/avcodec.h:
19819           Move structure element for clarity
19820
19821         * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_init):
19822         * gst-libs/gst/interfaces/tunernorm.h:
19823         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_src_link):
19824         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
19825         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
19826         (gst_v4lmjpegsrc_get_fps), (gst_v4lmjpegsrc_src_convert),
19827         (gst_v4lmjpegsrc_src_query), (gst_v4lmjpegsrc_get),
19828         (gst_v4lmjpegsrc_getcaps):
19829         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
19830         (gst_v4lsrc_set_caps):
19831         * sys/v4l/gstv4lsrc.h:
19832         * sys/v4l/v4l_calls.c: (gst_v4l_open):
19833         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
19834         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
19835         * sys/v4l/v4lsrc_calls.h:
19836           Fractional framerates...
19837
19838 2005-11-22  Wim Taymans  <wim@fluendo.com>
19839
19840         * gst-libs/gst/audio/gstbaseaudiosink.c:
19841         (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
19842         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
19843         And we provide a clock by default, of course...
19844
19845 2005-11-22  Wim Taymans  <wim@fluendo.com>
19846
19847         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init):
19848         This clock can be slaved to a master clock now.
19849
19850         * gst-libs/gst/audio/gstbaseaudiosink.c:
19851         (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
19852         (gst_base_audio_sink_dispose), (gst_base_audio_sink_provide_clock),
19853         (gst_base_audio_sink_set_clock),
19854         (gst_base_audio_sink_set_property),
19855         (gst_base_audio_sink_get_property), (gst_base_audio_sink_preroll),
19856         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
19857         * gst-libs/gst/audio/gstbaseaudiosink.h:
19858         Handle slaving the internal clock to the clock selected in the
19859         pipeline.
19860         Add property to make the basesink not provide a clock.
19861
19862         * gst-libs/gst/rtp/gstbasertpdepayload.c:
19863         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
19864         (gst_base_rtp_depayload_wait):
19865         * gst-libs/gst/rtp/gstbasertpdepayload.h:
19866         We can use the clock in GstElement, no need to store it ourselves.
19867
19868 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
19869
19870         * docs/libs/tmpl/gstaudio.sgml:
19871           update
19872         * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
19873         (gst_paranoia_endian_get_type):
19874         * ext/theora/theoraenc.c: (gst_border_mode_get_type):
19875         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
19876         * gst/audiotestsrc/gstaudiotestsrc.c:
19877         (gst_audiostestsrc_wave_get_type):
19878         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
19879         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
19880         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
19881         (gst_sync_method_get_type), (gst_unit_type_get_type),
19882         (gst_client_status_get_type), (gst_multifdsink_class_init),
19883         (gst_multifdsink_new_client), (gst_multifdsink_recover_client),
19884         (gst_multifdsink_queue_buffer), (gst_multifdsink_set_property),
19885         (gst_multifdsink_get_property):
19886         * gst/tcp/gstmultifdsink.h:
19887         * gst/videoscale/gstvideoscale.c: (gst_videoscale_method_get_type):
19888         * gst/videotestsrc/gstvideotestsrc.c:
19889         (gst_videotestsrc_pattern_get_type):
19890           remove deprecated properties
19891           fix up enums to correctly have short lowercase dashed nicks
19892
19893 2005-11-22  Michael Smith <msmith@fluendo.com>
19894
19895         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
19896         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
19897           Add underscore.
19898
19899 2005-11-22  Michael Smith <msmith@fluendo.com>
19900
19901         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
19902         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
19903           Use utility method for scaling clocktime for fractional framerates.
19904
19905 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
19906
19907         * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
19908         (gst_visual_chain):
19909         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
19910         * ext/theora/theoradec.c: (theora_handle_type_packet):
19911         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
19912         (theora_enc_chain):
19913         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
19914         * gst-libs/gst/video/video.c: (gst_video_frame_rate):
19915         * gst-libs/gst/video/video.h:
19916         * gst/ffmpegcolorspace/avcodec.h:
19917         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19918         (gst_ffmpeg_caps_to_pixfmt):
19919         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19920         (gst_ffmpegcsp_set_caps):
19921         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
19922         (gst_videorate_setcaps), (gst_videorate_blank_data),
19923         (gst_videorate_chain):
19924         * gst/videotestsrc/gstvideotestsrc.c:
19925         (gst_videotestsrc_src_fixate), (gst_videotestsrc_getcaps),
19926         (gst_videotestsrc_parse_caps), (gst_videotestsrc_setcaps),
19927         (gst_videotestsrc_event), (gst_videotestsrc_create):
19928         * gst/videotestsrc/gstvideotestsrc.h:
19929         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
19930         (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
19931         (gst_ximagesink_get_times), (gst_ximagesink_init):
19932         * sys/ximage/ximagesink.h:
19933         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
19934         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
19935         (gst_xvimagesink_get_times), (gst_xvimagesink_init):
19936         * sys/xvimage/xvimagesink.h:
19937           Convert elements to use fractions for their framerate.
19938           V4L elements to come later tonight.
19939
19940 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
19941
19942         * gst-libs/gst/audio/audio.c:
19943         * gst-libs/gst/audio/audio.h:
19944           remove some deprecated functions
19945
19946 2005-11-22  Andy Wingo  <wingo@pobox.com>
19947
19948         * Update for gst_tag_setter API changes.
19949
19950 2005-11-22  Andy Wingo  <wingo@pobox.com>
19951
19952         * ext/ogg/gstoggdemux.c (gst_ogg_pad_submit_packet)
19953         (gst_ogg_demux_perform_seek):
19954         * ext/theora/theoradec.c (theora_dec_sink_event):
19955         * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event): Run
19956         update-funcnames.
19957
19958 2005-11-22  Wim Taymans  <wim@fluendo.com>
19959
19960         * examples/seeking/seek.c: (main):
19961         Give higher priority to bus signals than the gtk events
19962         to fix a race condition in the segment looping.
19963
19964 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
19965
19966         * ext/theora/Makefile.am:
19967         * ext/vorbis/Makefile.am:
19968         * gst-libs/gst/tag/Makefile.am:
19969         * gst-plugins-base.spec.in:
19970           Rename libgsttagedit to libgsttag (#322117).
19971
19972 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
19973
19974         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
19975         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
19976           Call gst_x_overlay_prepare_xwindow_id() to give applications
19977           a final chance to set their own xwindow id before the video
19978           sink creates its own window.
19979
19980 2005-11-22  Julien MOUTTE  <julien@moutte.net>
19981
19982         * sys/xvimage/xvimagesink.c:
19983         (gst_xvimagesink_navigation_send_event): Handle navigation
19984         events correcly with borders if applicable.
19985
19986 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
19987
19988         Patch by: Luca Ognibene
19989
19990         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19991         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
19992         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19993         (gst_ffmpegcsp_caps_remove_format_info):
19994         * gst/ffmpegcolorspace/imgconvert.c:
19995         * gst/ffmpegcolorspace/imgconvert_template.h:
19996           Forward-port fixes from the 0.8 branch (patch by Luca Ognibene,
19997           #318353); use gst_structure_has_name().
19998
19999 2005-11-22  Julien MOUTTE  <julien@moutte.net>
20000
20001         * sys/ximage/ximagesink.c: (gst_ximagesink_event_thread),
20002         (gst_ximagesink_class_init): Add debug macros on functions.
20003         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
20004         (gst_xvimagesink_xwindow_draw_borders),
20005         (gst_xvimagesink_xvimage_put),
20006         (gst_xvimagesink_xwindow_update_geometry),
20007         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_get_xv_support),
20008         (gst_xvimagesink_event_thread), (gst_xvimagesink_xcontext_get),
20009         (gst_xvimagesink_xcontext_clear),
20010         (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
20011         (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
20012         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
20013         (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
20014         (gst_xvimagesink_get_property), (gst_xvimagesink_finalize),
20015         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
20016         * sys/xvimage/xvimagesink.h: Refactoring to handle aspect ratio,
20017         expose while being PAUSED, out of data flow navigation events, etc..
20018
20019 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
20020
20021         * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
20022         * gst-libs/gst/audio/audio.h:
20023           fix prototype - wondering why the test worked regardless
20024
20025 2005-11-21  Thomas Vander Stichele  <thomas at apestaart dot org>
20026
20027         * check/Makefile.am:
20028         * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
20029         * gst-libs/gst/audio/audio.h:
20030           add a method that returns a proper GstClockTime
20031
20032 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20033
20034         * gst-libs/gst/interfaces/xoverlay.c: (gst_x_overlay_base_init),
20035         (gst_x_overlay_got_xwindow_id), (gst_x_overlay_prepare_xwindow_id):
20036         * gst-libs/gst/interfaces/xoverlay.h:
20037           Remove everything having to do with the desired size; add 
20038           gst_x_overlay_prepare_xwindow_id() function; remove the
20039           'have-xwindow-id' signal and make gst_x_overlay_got_xwindow_id()
20040           post a message on the bus instead (#321816).
20041
20042         * sys/ximage/ximagesink.c: (gst_ximagesink_xoverlay_init):
20043         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps),
20044         (gst_xvimagesink_xoverlay_init):
20045           Remove desired size stuff (#321816).
20046
20047 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20048
20049         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
20050         (mpeg2_sys_type_find), (mpeg1_sys_type_find),
20051         (mpeg_video_type_find), (mpeg_video_stream_type_find):
20052           Terminate vararg functions with NULL instead of 0 to 
20053           make gcc4 happy.
20054
20055 2005-11-21  Andy Wingo  <wingo@pobox.com>
20056
20057         patch by: Sebastien Cote <sebas642@yahoo.ca>
20058         
20059         * gst-libs/gst/rtp/gstrtpbuffer.h: 
20060         * gst-libs/gst/rtp/gstrtpbuffer.c
20061         (gst_rtpbuffer_get_payload_buffer): New function. Fixes #321451.
20062
20063 2005-11-21  Andy Wingo  <wingo@pobox.com>
20064
20065         * gst/playback/gstplaybin.c (gen_audio_element) 
20066         (gen_video_element): Use the new MISSING_PLUGIN core error
20067         category. Closes #320060.
20068
20069         * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event): 
20070         * gst/videorate/gstvideorate.c (gst_videorate_event):
20071         * ext/theora/theoradec.c (theora_dec_sink_event): 
20072         * ext/theora/theoraenc.c (theora_enc_sink_event): Don't take
20073         stream lock.
20074
20075         * gst/subparse/gstsubparse.c (gst_subparse_src_event):
20076         * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek): Update for
20077         stream lock changes.
20078
20079 2005-11-21  Wim Taymans  <wim@fluendo.com>
20080
20081         * gst-libs/gst/audio/gstbaseaudiosink.c:
20082         (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
20083         (gst_base_audio_sink_provide_clock),
20084         (gst_base_audio_sink_set_clock), (gst_base_audio_sink_render),
20085         (gst_base_audio_sink_change_state):
20086         * gst/audioresample/gstaudioresample.c:
20087         Segment update fix.
20088
20089 2005-11-21  Andy Wingo  <wingo@pobox.com>
20090
20091         * *.h:
20092         * *.c: Ran scripts/update-macros. Oh yes.
20093
20094 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20095
20096         * sys/ximage/Makefile.am:
20097         * sys/ximage/ximage.c:
20098           Rename ximage plugin to ximagesink (#321426) (Don't forget to
20099           remove your old libgstximage.* manually if necessary).
20100
20101 2005-11-21  Michael Smith <msmith@fluendo.com>
20102
20103         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup):
20104           Minimal fix for bug #320200: set the min/max bitrate in the correct
20105           units. A better fix would be to upgrade to the RATEMANAGE2
20106           interface, rather than using the deprecated interface used here, but
20107           that would require an update in our libvorbis dependency (to 1.1),
20108           which is probably undesirable.
20109
20110 2005-11-21  Jan Schmidt  <thaytan@mad.scientist.com>
20111
20112         * ext/libvisual/visual.c: (get_buffer):
20113         * gst-libs/gst/audio/gstbaseaudiosrc.c:
20114         (gst_base_audio_src_fixate):
20115         * gst/audioconvert/gstaudioconvert.c:
20116         (gst_audio_convert_fixate_caps):
20117         * gst/audioscale/gstaudioscale.c: (gst_audioscale_fixate):
20118         * gst/audiotestsrc/gstaudiotestsrc.c:
20119         (gst_audiotestsrc_src_fixate):
20120         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
20121         * gst/videorate/gstvideorate.c: (gst_videorate_setcaps):
20122         * gst/videoscale/gstvideoscale.c: (gst_videoscale_fixate_caps):
20123         * gst/videotestsrc/gstvideotestsrc.c:
20124         (gst_videotestsrc_src_fixate):
20125         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
20126         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
20127           Rename gst_caps_structure_fixate_* to gst_structure_fixate_*
20128           (#322027)
20129
20130
20131 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20132
20133         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
20134         (gst_riff_create_iavs_caps):
20135         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_file_header),
20136         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
20137         (gst_riff_parse_info):
20138         * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure):
20139         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_caps):
20140         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
20141           Fixes for GST_FOURCC_FORMAT API change.
20142
20143 2005-11-21  Andy Wingo  <wingo@pobox.com>
20144
20145         patch by: Alessandro Dessina <alessandro nnva org>
20146
20147         * ext/ogg/gstoggmux.c (gst_ogg_mux_set_header_on_caps):
20148         * ext/ogg/gstoggparse.c (gst_ogg_parse_append_header)
20149         (gst_ogg_parse_chain):
20150         * ext/theora/theoraenc.c (theora_set_header_on_caps):
20151         * ext/vorbis/vorbisenc.c (gst_vorbisenc_set_header_on_caps):
20152         * ext/vorbis/vorbisparse.c (vorbis_parse_set_header_on_caps): Fix
20153         gst_value_list calls on arrays. Fixes #321962.
20154
20155 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20156
20157         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
20158         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_queue_pads),
20159         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
20160         * gst/adder/gstadder.c: (gst_adder_init),
20161         (gst_adder_request_new_pad), (gst_adder_collected),
20162         (gst_adder_change_state):
20163           Update for gst_collectpads_foo() to gst_collect_pads_foo()
20164           API change.
20165
20166 2005-11-21  Michael Smith <msmith@fluendo.com>
20167
20168         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
20169         (gst_vorbisenc_chain), (gst_vorbisenc_output_buffers):
20170           Properly handle pad_push return values.
20171
20172 2005-11-20  Jan Schmidt  <thaytan@mad.scientist.com>
20173
20174         * gst-libs/gst/tag/Makefile.am:
20175         * gst-libs/gst/tag/gstvorbistag.c:
20176         (gst_tag_list_to_vorbiscomment_buffer):
20177           Remove obsolete vorbistag element and debug category.
20178
20179         * gst/playback/gstplaybasebin.c: (check_queue):
20180           Don't divide by 0 when queue-threshold is 0.
20181
20182         * sys/ximage/ximagesink.c: (gst_ximagesink_set_property):
20183           Don't modify an existing pixel-aspect-ratio if we fail to read
20184           a new one.
20185
20186 2005-11-20  Wim Taymans  <wim@fluendo.com>
20187
20188         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_push_buffer),
20189         (gst_vorbisenc_push_packet):
20190         GST_PAD_IS_USABLE is gone, use the return value of
20191         the push or pad_alloc_buffer instead.
20192
20193 2005-11-18  Julien MOUTTE  <julien@moutte.net>
20194
20195         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
20196         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
20197         (gst_ximagesink_ximage_destroy),
20198         (gst_ximagesink_xwindow_draw_borders), (gst_ximagesink_ximage_put),
20199         (gst_ximagesink_xwindow_new),
20200         (gst_ximagesink_xwindow_update_geometry),
20201         (gst_ximagesink_handle_xevents), (gst_ximagesink_event_thread),
20202         (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
20203         (gst_ximagesink_bufferpool_clear), (gst_ximagesink_getcaps),
20204         (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
20205         (gst_ximagesink_show_frame), (gst_ximagesink_buffer_alloc),
20206         (gst_ximagesink_navigation_send_event),
20207         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_expose),
20208         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
20209         (gst_ximagesink_finalize), (gst_ximagesink_init),
20210         (gst_ximagesink_class_init):
20211         * sys/ximage/ximagesink.h: Refactoring of ximagesink.
20212         This new version brings correct software scaling, non flickering
20213         window while resizing, pixel aspect ratio handling, usage of
20214         hardware buffer pools, out of data flow event thread for 
20215         navigation and handling of expose events even when being PAUSED,
20216         a new property to keep video aspect ratio when resizing, etc...
20217
20218 2005-11-18  Julien MOUTTE  <julien@moutte.net>
20219
20220         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
20221         (gst_videoscale_fixate_caps): Introduce back caps fixate with
20222         handling of PAR.
20223
20224 2005-11-18  Edward Hervey  <bilboed@dvdsrc.fluendo.com>
20225
20226         * gst/playback/gstdecodebin.c: (gst_decode_bin_init): 
20227         Unsetting IS_SINK flag from the fakesink, so decodebin
20228         never behaves as a sink.
20229
20230 2005-11-17  Wim Taymans  <wim@fluendo.com>
20231
20232         * gst-libs/gst/audio/gstbaseaudiosrc.c:
20233         (gst_base_audio_src_change_state):
20234         Fix the audiosrc base class again, we did not unflush.
20235
20236 2005-11-17  Julien MOUTTE  <julien@moutte.net>
20237
20238         * examples/seeking/seek.c: (make_dv_pipeline),
20239         (make_vorbis_theora_pipeline), (make_avi_pipeline),
20240         (make_mpegnt_pipeline): Use VSINK everywhere, add a scaler
20241         to ogg/vorbis/theora pipeline.
20242
20243 2005-11-17  Wim Taymans  <wim@fluendo.com>
20244
20245         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
20246         (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
20247         (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
20248         Fix EOS on multiple streams.
20249         More debugging.
20250
20251 2005-11-16  Wim Taymans  <wim@fluendo.com>
20252
20253         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_configure_segment),
20254         (gst_ogg_demux_perform_seek):
20255         Segment done must include stream time.
20256
20257         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
20258         (gst_ogg_mux_clear), (gst_ogg_mux_init), (gst_ogg_mux_finalize),
20259         (gst_ogg_mux_change_state):
20260         Fix ogg muxer again.
20261
20262 2005-11-16  Wim Taymans  <wim@fluendo.com>
20263
20264         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init):
20265         Fix compile again.
20266
20267 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
20268
20269         * ext/libvisual/visual.c: (gst_visual_init):
20270         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
20271         * ext/ogg/gstoggparse.c: (gst_ogg_parse_init),
20272         (gst_ogg_parse_chain):
20273         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
20274         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init):
20275         * ext/theora/theoradec.c: (gst_theora_dec_init):
20276         * ext/theora/theoraenc.c: (gst_theora_enc_init):
20277         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
20278         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init):
20279         * gst/adder/gstadder.c: (gst_adder_class_init),
20280         (gst_adder_dispose):
20281         * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
20282         * gst/subparse/gstsubparse.c: (gst_subparse_init):
20283         * gst/videorate/gstvideorate.c: (gst_videorate_init):
20284           Fix a whole set of pad template leaks
20285
20286 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
20287
20288         * check/generic/states.c: (GST_START_TEST):
20289           fix the test so that it only checks for elements that are part of
20290           this source module
20291
20292 2005-11-16  Michael Smith <msmith@fluendo.com>
20293
20294         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_reset),
20295         (gst_ogg_mux_init), (gst_ogg_mux_request_new_pad),
20296         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
20297         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
20298         (gst_ogg_mux_collected), (gst_ogg_mux_clear_collectpads),
20299         (gst_ogg_mux_change_state):
20300           Fix leaking collectpads.
20301
20302 2005-11-16  Edward Hervey  <edward@fluendo.com>
20303
20304         * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
20305         (gst_videorate_event), (gst_videorate_chain):
20306         Handle segment seeks
20307
20308 2005-11-16  Wim Taymans  <wim@fluendo.com>
20309
20310         * gst-libs/gst/audio/gstbaseaudiosink.c:
20311         (gst_base_audio_sink_provide_clock),
20312         (gst_base_audio_sink_change_state):
20313         Set ringbuffer to non-flushing when going to PAUSED, set to
20314         flushing again when going to READY.
20315
20316         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
20317         (gst_ring_buffer_stop):
20318         Start in flushing mode by default.
20319         Don't set flushing in the _stop method, let the app call
20320         this explicitly.
20321
20322 2005-11-16  Julien MOUTTE  <julien@moutte.net>
20323
20324         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_center_rect):
20325         * gst-libs/gst/video/videosink.h: Add helper function needed
20326         for video sinks.
20327
20328 2005-11-16  Tim-Philipp Müller  <tim at centricular dot net>
20329
20330         * gst/videoscale/gstvideoscale.c:
20331         (gst_videoscale_handle_src_event):
20332           Don't leak reference to pad parent.
20333
20334 2005-11-16  Wim Taymans  <wim@fluendo.com>
20335
20336         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop):
20337         Set ringbuffer to flushing when stopping so that we don't
20338         block on wait_segment anymore and livelock.
20339
20340 2005-11-16  Wim Taymans  <wim@fluendo.com>
20341
20342         * examples/seeking/seek.c: (send_event), (do_seek),
20343         (loop_toggle_cb), (segment_done), (main):
20344         Added looping checkbox.
20345
20346 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
20347
20348         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
20349         (gst_ogg_demux_init):
20350         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
20351         (gst_vorbis_dec_init):
20352           revert unrefs, they don't pass make check
20353
20354 2005-11-15  Johan Dahlin  <johan@gnome.org>
20355
20356         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
20357         (gst_ogg_demux_init), (gst_ogg_demux_finalize):
20358         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
20359         (gst_vorbis_dec_init):
20360         Fix pad template leaks. 
20361
20362 2005-11-15  Tim-Philipp Müller  <tim at centricular dot net>
20363
20364         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
20365           Make state change function thread safe.
20366
20367 2005-11-15  Edward Hervey  <edward@fluendo.com>
20368
20369         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
20370         (gst_ogg_demux_class_init):
20371         Implement GstElement::send_event, so we can send seek events
20372         in GST_STATE_READY
20373
20374 2005-11-14  Julien MOUTTE  <julien@moutte.net>
20375
20376         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new):
20377         Discovered how to take away flickering while resizing the
20378         window. Please don't put that in ximagesink, refactoring in
20379         progress.
20380
20381 2005-11-14  Michael Smith <msmith@fluendo.com>
20382
20383         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_client_queue_data),
20384         (gst_multifdsink_render):
20385           Don't leak GDP headers when using GDP mode (i.e. tcpserversink).
20386
20387 2005-11-14  Tim-Philipp Müller  <tim at centricular dot net>
20388
20389         * gst/playback/gstplaybin.c: (gen_audio_element):
20390           Use autoaudiosink, it tends to be more widely available than
20391           autoaudiiosink.
20392           
20393 2005-11-14  Andy Wingo  <wingo@pobox.com>
20394
20395         * gst/playback/gstplaybin.c (gen_audio_element): Use autoaudiosink
20396         as well if it is available. Fixes #316442.
20397
20398 2005-11-14  Michael Smith <msmith@fluendo.com>
20399
20400         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_init),
20401         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
20402         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
20403         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
20404         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_collected),
20405         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
20406         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_buffer_from_packet),
20407         (gst_vorbisenc_change_state):
20408           Fix a small memory leak in vorbisenc.
20409           Fix large memory leaks in oggmux, also fix lots of state change
20410           bugs in oggmux.
20411
20412 2005-11-14  Thomas Vander Stichele  <thomas at apestaart dot org>
20413
20414         * gst/videotestsrc/gstvideotestsrc.c:
20415         (gst_videotestsrc_class_init), (gst_videotestsrc_init),
20416         (gst_videotestsrc_src_fixate):
20417           move fixation to a fixate function
20418           remove negotiate function, basesrc's is good enough
20419           fixes a bug for check when using the element alone
20420
20421 2005-11-13  Edward Hervey  <edward@fluendo.com>
20422
20423         * examples/seeking/seek.c: (do_seek), (accurate_toggle_cb),
20424         (key_toggle_cb), (main):
20425         Added checkboxes for adding/removing the accurate and key_unit seek
20426         flags.
20427
20428 2005-11-11  Thomas Vander Stichele  <thomas at apestaart dot org>
20429
20430         * configure.ac: back to HEAD
20431
20432 === release 0.9.5 ===
20433
20434 2005-11-11  Thomas Vander Stichele <thomas at apestaart dot org>
20435
20436         * configure.ac:
20437           releasing 0.9.5, "No No Kia"
20438
20439 2005-11-11  Edward Hervey  <edward@fluendo.com>
20440
20441         * examples/seeking/seek.c: (make_parselaunch_pipeline):
20442         Added parse-launch syntax seeking mode for the seeking example.
20443         This should help stress-test even more cases.
20444         Ex usage : ./seek 15 "filesrc location=uranus.avi ! decodebin ! xvimagesink"
20445
20446 2005-11-11  Tim-Philipp Müller  <tim at centricular dot net>
20447
20448         * sys/xvimage/xvimagesink.c:
20449         (gst_xvimagesink_navigation_send_event):
20450           Check whether peer pad exists before sending navigation events
20451           to it.
20452
20453 2005-11-11  Michael Smith <msmith@fluendo.com>
20454
20455         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup),
20456         (gst_vorbisenc_buffer_from_packet):
20457         * ext/vorbis/vorbisenc.h:
20458           Set duration on encoded buffers. This allows oggmux's
20459           max_page_delay parameter to actually work.
20460
20461 2005-11-11  Tim-Philipp Müller  <tim at centricular dot net>
20462
20463         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
20464         (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
20465         (gst_ffmpegcsp_avpicture_fill):
20466         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
20467         (gst_ffmpegcsp_get_unit_size), (gst_ffmpegcsp_transform):
20468           Make palettes work again (see #132341). Use our own macros
20469           for rounding up.
20470
20471 2005-11-10  Andy Wingo  <wingo@pobox.com>
20472
20473         * gst/playback/gstplaybasebin.c (prepare_output): Fix format
20474         string doober.
20475
20476 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
20477
20478         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
20479         (gst_ffmpegcsp_transform_caps):
20480           Prefer passthrough in transform_caps
20481
20482 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
20483
20484         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
20485           check for ALSA errors properly, instead of relying on ALSA's
20486           error strings to serve to the user.
20487
20488 2005-11-10  Wim Taymans  <wim@fluendo.com>
20489
20490         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event), (gst_ogg_demux_init),
20491         (gst_ogg_demux_configure_segment), (gst_ogg_demux_perform_seek),
20492         (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
20493         Modernise the seek code.
20494
20495 2005-11-10  Michael Smith <msmith@fluendo.com>
20496         
20497         * gst/playback/gstplaybasebin.c: (group_commit), (new_decoded_pad),
20498         (setup_substreams), (set_active_source):
20499           Unlock GROUP_LOCK in failure cases, so that we don't deadlock when
20500           trying to go to NULL if we failed to read a file.
20501
20502 2005-11-10  Wim Taymans  <wim@fluendo.com>
20503
20504         * gst/audiotestsrc/gstaudiotestsrc.c:
20505         (gst_audiotestsrc_class_init), (gst_audiotestsrc_get_times),
20506         (gst_audiotestsrc_create):
20507         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
20508         (gst_sinesrc_get_times), (gst_sinesrc_create):
20509         * gst/videotestsrc/gstvideotestsrc.c:
20510         (gst_videotestsrc_class_init), (gst_videotestsrc_get_times),
20511         (gst_videotestsrc_create):
20512         The base class can now sync for us.
20513
20514 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
20515
20516         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate): Check if the caps have
20517           a fourcc field. Fixes crash for gst-launch-0.9 v4lsrc
20518           name=source autoprobe=false autoprobe-fps=false copy-mode=1
20519           device=/dev/video0 ! ffmpegcolorspace ! "video/x-raw-yuv,
20520           format=(fourcc)I420" ! xvimagesink
20521
20522 2005-11-10  Tim-Philipp Müller  <tim at centricular dot net>
20523
20524         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
20525         (gst_sinesrc_get_query_types), (gst_sinesrc_src_query),
20526         (gst_sinesrc_newsegment):
20527           Send newsegment event in TIME format, set duration if
20528           num-buffers is set, fix duration querying.
20529
20530 2005-11-10  Michael Smith <msmith@fluendo.com>
20531
20532         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
20533         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
20534         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
20535         (gst_ogg_mux_collected):
20536          Fix EOS handling, partially. Now forwarding an EOS event once we have
20537          EOS on all pads works correctly. However, we still don't properly set
20538          EOS on the actual ogg stream pages.
20539
20540 2005-11-09  Tim-Philipp Müller  <tim at centricular dot net>
20541
20542         * gst/playback/gstplaybin.c: (gst_play_bin_dispose):
20543           Set elements to NULL state before disposing of them.
20544
20545 2005-11-08  Sebastien Cote  <sebas642 at yahoo dot ca>
20546
20547         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
20548
20549         * gst-libs/gst/rtp/gstbasertpdepayload.c:
20550         (gst_base_rtp_depayload_init),
20551         (gst_base_rtp_depayload_set_gst_timestamp):
20552         * gst-libs/gst/rtp/gstbasertpdepayload.h:
20553           We need to send a newsegment event for each instance, not
20554           just for the first instance of this class (get rid of
20555           static variable in function). (#321011).
20556           
20557 2005-11-08  Michael Smith <msmith@fluendo.com>
20558
20559         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
20560         (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_buffer),
20561         (gst_ogg_mux_dequeue_page), (gst_ogg_mux_pad_queue_page),
20562         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
20563           Forward port rewrite of muxing strategy to 0.9 version of oggmux.
20564           This makes us mux things correctly according to the ogg muxing
20565           rules. Still not handling EOS correctly right now, though.
20566
20567 2005-11-08  Tim-Philipp Müller  <tim at centricular dot net>
20568
20569         * gst/audioconvert/gstaudioconvert.c:
20570           Fix typo in docs. 
20571
20572 2005-11-08  Tim-Philipp Müller  <tim at centricular dot net>
20573
20574         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
20575         (gst_ogg_pad_submit_packet), (gst_ogg_chain_new):
20576           Initialise segment_stop to GST_CLOCK_TIME_NONE when
20577           creating a new chain; should fix live streaming. Also
20578           add more debug output and fix a typo.
20579
20580 2005-11-08  Brian Cameron  <brian dot cameron at sun dot com>
20581
20582         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
20583
20584         * gst/volume/gstvolume.c: (volume_set_caps):
20585           Fix compilation on Solaris with Forte. (#320923)
20586
20587 2005-11-08  Wim Taymans  <wim@fluendo.com>
20588
20589         * gst-libs/gst/audio/gstbaseaudiosink.c:
20590         (gst_base_audio_sink_render):
20591         No need to do a typecheck.
20592
20593 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
20594
20595         * ext/alsa/gstalsa.h:
20596           We register a debug category, so let's use it.
20597
20598 2005-11-04  Zeeshan Ali  <zeenix@gmail.com>
20599
20600         * gst-libs/gst/rtp/gstbasertpdepayload.c:
20601         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_wait):
20602         Fixed a small problem.
20603
20604 2005-11-04  Wim Taymans  <wim@fluendo.com>
20605
20606         * examples/seeking/Makefile.am:
20607         * examples/seeking/scrubby.c: (gst_element_factory_make_or_warn),
20608         (dynamic_link), (setup_dynamic_link), (make_wav_pipeline),
20609         (make_playerbin_pipeline), (format_value), (update_scale),
20610         (speed_cb), (seek_cb), (do_seek), (start_seek), (stop_seek),
20611         (play_cb), (pause_cb), (stop_cb), (print_message), (bus_message),
20612         (print_usage), (main):
20613         Added app for playback speed testing.
20614
20615         * examples/seeking/seek.c: (dynamic_link),
20616         (make_avi_msmpeg4v3_mp3_pipeline), (make_avi_pipeline),
20617         (make_mpeg_pipeline), (do_seek), (set_update_scale),
20618         (message_received), (main):
20619         Updated seek example.
20620
20621 2005-11-04  Zeeshan Ali  <zeenix@gmail.com>
20622
20623         * gst-libs/gst/rtp/gstbasertpdepayload.c:
20624         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
20625         (gst_base_rtp_depayload_thread), (gst_base_rtp_depayload_wait),
20626         (gst_base_rtp_depayload_set_clock):
20627         * gst-libs/gst/rtp/gstbasertpdepayload.h:
20628         Don't sleep on the bench (system clock) when you have a nice 
20629         comfortable bed (Gstreamer clock) to sleep on.
20630
20631 2005-11-03  Wim Taymans  <wim@fluendo.com>
20632
20633         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
20634         (gst_decode_bin_dispose), (free_dynamics), (remove_fakesink),
20635         (pad_blocked), (close_pad_link), (new_pad), (no_more_pads):
20636         Handle the case where a pad_block failed.
20637
20638 2005-11-02  Sebastien Cote  <sebas642@yahoo.ca> 
20639
20640         reviewed by: Zeeshan Ali  <zeenix@gmail.com>
20641
20642         * gst-libs/gst/rtp/gstbasertpdepayload.c:
20643         (gst_base_rtp_depayload_add_to_queue),
20644         (gst_base_rtp_depayload_push),
20645         (gst_base_rtp_depayload_set_gst_timestamp),
20646         (gst_base_rtp_depayload_queue_release):
20647           Fixes some bugs in the depayloader's queuing/de-queueing code.
20648
20649 2005-10-31  Michael Smith <msmith@fluendo.com>
20650
20651         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
20652         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
20653         (gst_ogg_demux_collect_chain_info), (gst_ogg_print):
20654           Patch from Alessandro Decina <alessandro@nnva.org>.
20655           Make oggdemux only find the final time in a chain, not per-pad,
20656           since the per-pad information can be very expensive to locate, and
20657           it isn't used anywhere. This makes reading a file containing
20658           OggSkeleton reasonably fast.
20659           Also, make chain finding work when there are logical bitstreams that
20660           can't be decoded. Fixes #319110.
20661
20662 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
20663
20664         * gst-libs/gst/rtp/gstbasertpdepayload.c:
20665         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
20666         (gst_base_rtp_depayload_chain),
20667         (gst_base_rtp_depayload_add_to_queue),
20668         (gst_base_rtp_depayload_push),
20669         (gst_base_rtp_depayload_set_gst_timestamp),
20670         (gst_base_rtp_depayload_queue_release),
20671         (gst_base_rtp_depayload_start_thread),
20672         (gst_base_rtp_depayload_set_property),
20673         (gst_base_rtp_depayload_get_property):
20674         * gst-libs/gst/rtp/gstbasertpdepayload.h:
20675         Some random fixes, to fullfill the desires of thomas.
20676
20677 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
20678
20679         * gst-libs/gst/rtp/gstbasertpdepayload.c:
20680         (gst_base_rtp_depayload_add_to_queue),
20681         (gst_base_rtp_depayload_push):
20682         Fixed the queueing algorithm.
20683
20684 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
20685
20686         * gst-libs/gst/rtp/gstbasertpdepayload.c:
20687         (gst_base_rtp_depayload_push):
20688         A small fix
20689
20690 2005-10-31  Wim Taymans  <wim@fluendo.com>
20691
20692         * gst-libs/gst/audio/gstringbuffer.h:
20693         Don't break ABI.
20694
20695         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
20696         (gst_ffmpeg_caps_to_pixfmt):
20697         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
20698         (gst_ffmpegcsp_set_caps):
20699         Some more comments.
20700         Handle missing required caps fields better.
20701
20702 2005-10-31  Wim Taymans  <wim@fluendo.com>
20703
20704         * gst-libs/gst/audio/gstbaseaudiosink.c:
20705         (gst_base_audio_sink_event), (gst_base_audio_sink_get_offset),
20706         (gst_base_audio_sink_render):
20707         * gst-libs/gst/audio/gstringbuffer.c:
20708         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
20709         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
20710         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_pause),
20711         (gst_ring_buffer_stop), (wait_segment), (gst_ring_buffer_commit),
20712         (gst_ring_buffer_read):
20713         * gst-libs/gst/audio/gstringbuffer.h:
20714         Add flushing mode to the ringbuffer so that it in all cases does
20715         not try to handle more audio. This makes sure it does not try to
20716         block anymore when flushing and fixes a livelock.
20717
20718 2005-10-29  Tim-Philipp Müller  <tim at centricular dot net>
20719
20720         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
20721         (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
20722         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain):
20723           Explicitly check for -1 values before doing a conversion
20724           and always map them to -1. (#315545)
20725
20726 2005-10-28  Thomas Vander Stichele  <thomas at apestaart dot org>
20727
20728         * gst/playback/gstplaybin.c: (gen_video_element):
20729           first try autovideosink, then xvimagesink, then error out
20730         * po/POTFILES.in:
20731           add translatable file
20732         * po/af.po:
20733         * po/az.po:
20734         * po/cs.po:
20735         * po/en_GB.po:
20736         * po/hu.po:
20737         * po/it.po:
20738         * po/nb.po:
20739         * po/nl.po:
20740         * po/or.po:
20741         * po/sq.po:
20742         * po/sr.po:
20743         * po/sv.po:
20744         * po/uk.po:
20745         * po/vi.po:
20746           update translations
20747
20748 2005-10-27  Philippe Khalaf <burger at speedy dot org> 
20749
20750         * gst-libs/gst/rtp/gstbasedepayload.c:
20751         * gst-libs/gst/rtp/gstbasedepayload.h:
20752           Minor cleanups
20753
20754 2005-10-27  Tim-Philipp Müller  <tim at centricular dot net>
20755
20756         * gst/playback/.cvsignore:
20757         * gst/playback/decodetest.c:
20758         * gst/playback/test3.c:
20759           Port these two tests as well.
20760
20761 2005-10-27  Wim Taymans  <wim@fluendo.com>
20762
20763         * ext/theora/theoradec.c: (theora_dec_src_query),
20764         (theora_dec_sink_event):
20765         * ext/theora/theoraenc.c: (theora_enc_sink_event),
20766         (theora_enc_change_state):
20767         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
20768         (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
20769         Take proper locks when handling events.
20770
20771 2005-10-27  Wim Taymans  <wim@fluendo.com>
20772
20773         * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_collected),
20774         (gst_adder_change_state):
20775         Fix timestamps and fix deadlock when stopping the collectpads.
20776
20777 2005-10-27  Zeeshan Ali  <zeenix@gmail.com>
20778
20779         * gst-libs/gst/rtp/gstrtpbuffer.h:
20780         Declaring the payload types as strings too so that they can be used
20781         in the padtemplate inialization.
20782
20783 2005-10-26  Andre Magalhaes  <andrunko@gmail.com>
20784
20785         reviewed by: Zeeshan Ali   <zeenix@gmail.com>
20786
20787         * gst-libs/gst/rtp/gstbasertpdepayload.c:
20788         (gst_base_rtp_depayload_class_init):
20789         Fixes a small but nasty bug. The derived elements no longer segfaults
20790         on finalization.
20791
20792 2005-10-26  Michael Smith <msmith@fluendo.com>
20793
20794         * gst/audioconvert/audioconvert.c: (audio_convert_clean_context):
20795           When clearing an audioconvert context, set tmpbufsize to zero, so
20796           we'll allocate it again later if required.
20797           This fixes audioconvert re-negotiating formats, which previously
20798           segfaulted with a NULL destination buffer.
20799
20800 2005-10-26  Zeeshan Ali <zeenix@gmail.com>
20801
20802         * gst-libs/gst/rtp/gstbasertpdepayload.c:
20803         (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_push),
20804         (gst_base_rtp_depayload_set_gst_timestamp),
20805         (gst_base_rtp_depayload_queue_release):
20806         Fixed a smalll memleak.
20807
20808 2005-10-26  Zeeshan Ali  <zeenix@gmail.com>
20809         * gst-libs/gst/rtp/gstbasertpdepayload.c:
20810         (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_init),
20811         (gst_base_rtp_depayload_finalize),
20812         (gst_base_rtp_depayload_setcaps),
20813         (gst_base_rtp_depayload_add_to_queue),
20814         (gst_base_rtp_depayload_push),
20815         (gst_base_rtp_depayload_set_gst_timestamp),
20816         (gst_base_rtp_depayload_queue_release),
20817         (gst_base_rtp_depayload_thread),
20818         (gst_base_rtp_depayload_change_state):
20819         * gst-libs/gst/rtp/gstbasertpdepayload.h:
20820         Changed the C++ comments to C comments
20821
20822 2005-10-26  Tim-Philipp Müller  <tim at centricular dot net>
20823
20824         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init):
20825         * gst/tcp/gsttcpclientsrc.h:
20826         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init):
20827         * gst/tcp/gsttcpserversrc.h:
20828           Remove unused 'curoffset' structure member.
20829
20830 2005-10-25  Zeeshan Ali  <zeenix@gmail.com>
20831
20832         * gst-libs/gst/rtp/gstbasertpdepayload.c:
20833         (gst_base_rtp_depayload_base_init),
20834         (gst_base_rtp_depayload_finalize):
20835         * gst-libs/gst/rtp/gstbasertpdepayload.h:
20836         * gst-libs/gst/rtp/gstbasertppayload.h:
20837           The pad-template on the sinkpad should be set by the derived classes.
20838           Also added some useful macros.
20839
20840 2005-10-24  Wim Taymans  <wim@fluendo.com>
20841
20842         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
20843         Correctly flush decoder samples even if we could not
20844         copy them to an output buffer. Fixes #319618.
20845
20846 2005-10-24  Julien MOUTTE  <julien@moutte.net>
20847
20848         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
20849         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Check
20850         the caps against our xcontext caps.
20851
20852 2005-10-24  Wim Taymans  <wim@fluendo.com>
20853
20854         * gst-libs/gst/audio/gstbaseaudiosink.c:
20855         (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
20856         Remove g_print
20857         Use sync property from baseclass to disable sync.
20858
20859 2005-10-24  Wim Taymans  <wim@fluendo.com>
20860
20861         * gst-libs/gst/audio/gstbaseaudiosink.c:
20862         (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
20863         Buffers with no timestamps get aligned with previous buffers or
20864         on underrun, played ASAP.
20865
20866 2005-10-24  Julien MOUTTE  <julien@moutte.net>
20867
20868         * gst-libs/gst/video/video.h:
20869         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
20870         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
20871         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): And
20872         here comes my change on caps for framerate and geometry range.
20873         We are now accepting 1 to MAXINT for width and height, and from
20874         0.0 to MAXDOUBLE for framerate. That allows duration less png frames
20875         to be blended correctly in videomixer.
20876
20877 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
20878
20879         * configure.ac:
20880           back to HEAD
20881
20882 === release 0.9.4 ===
20883
20884 2005-10-23  Thomas Vander Stichele  <thomas at apestaart dot org>
20885
20886         * NEWS:
20887         * RELEASE:
20888         * configure.ac:
20889           releasing 0.9.4, "Velociraptor"
20890
20891 2005-10-23  Thomas Vander Stichele  <thomas at apestaart dot org>
20892
20893         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
20894         * po/POTFILES.in:
20895           STOPPED -> FAILED
20896
20897 2005-10-21  Wim Taymans  <wim@fluendo.com>
20898
20899         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
20900         (gst_decode_bin_dispose), (free_dynamics), (pad_unblocked),
20901         (pad_blocked), (close_pad_link), (new_pad):
20902         Don't try to remove elements twice.
20903
20904 2005-10-21  Wim Taymans  <wim@fluendo.com>
20905
20906         * ext/theora/theoradec.c: (theora_dec_src_query),
20907         (theora_dec_sink_event):
20908         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
20909         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
20910         (vorbis_handle_data_packet):
20911         * ext/vorbis/vorbisdec.h:
20912         Fix old naming.
20913
20914         * gst-libs/gst/audio/gstbaseaudiosink.c:
20915         (gst_base_audio_sink_render):
20916         Don't try to sync on buffers without a timestamp.
20917
20918 2005-10-21  Wim Taymans  <wim@fluendo.com>
20919
20920         * ext/theora/theoradec.c: (theora_dec_src_query),
20921         (theora_dec_sink_event):
20922         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
20923         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
20924         (vorbis_handle_data_packet):
20925         * ext/vorbis/vorbisdec.h:
20926         Fix old naming.
20927
20928 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
20929
20930         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types),
20931         (gst_vorbisenc_src_query):
20932           Implement position and duration queries.
20933
20934         * gst/playback/test3.c: (update_scale), (main):
20935           Fix for async state changes and print nicer output.
20936
20937 2005-10-20  Wim Taymans  <wim@fluendo.com>
20938
20939         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
20940         (dump_element_stats), (main):
20941         * gst/playback/test6.c: (main):
20942         Fix tests again
20943
20944 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
20945
20946         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
20947         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
20948           Don't use functions for position queries when handling
20949           duration queries.
20950
20951 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
20952
20953         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
20954         (vorbis_handle_data_packet), (vorbis_dec_chain),
20955         (vorbis_dec_change_state):
20956         * ext/vorbis/vorbisdec.h:
20957           Vorbis streams can be embedded in other container formats
20958           than ogg, container formats where the demuxer might set 
20959           timestamps on encoded vorbis buffers instead of those silly 
20960           granulepos thingies. In short: make vorbisdec handle 
20961           timestamps on incoming buffers as well.
20962
20963 2005-10-20  Wim Taymans  <wim@fluendo.com>
20964
20965         * gst/playback/gstplaybasebin.c: (group_destroy),
20966         (gst_play_base_bin_change_state):
20967         Fix leak.
20968         Handle case where playbasebin is now ASYNC because
20969         decodebin is.
20970
20971 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
20972
20973         * gst/audioconvert/Makefile.am:
20974         * gst/audioconvert/bufferframesconvert.c:
20975         * gst/audioconvert/plugin.c: (plugin_init):
20976         * gst/audioconvert/plugin.h:
20977           And bye bye buffer-frames-convert
20978
20979 2005-10-19  Wim Taymans  <wim@fluendo.com>
20980
20981         * check/elements/audioconvert.c:
20982         * docs/libs/tmpl/gstaudio.sgml:
20983         * docs/libs/tmpl/gstcolorbalance.sgml:
20984         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
20985         (vorbis_handle_identification_packet), (vorbis_handle_data_packet):
20986         * ext/vorbis/vorbisenc.c: (raw_caps_factory):
20987         * gst-libs/gst/audio/audio.c: (gst_audio_structure_set_int):
20988         * gst-libs/gst/audio/audio.h:
20989         * gst/audioconvert/audioconvert.h:
20990         * gst/audioconvert/gstaudioconvert.c:
20991         (gst_audio_convert_parse_caps):
20992         * gst/volume/gstvolume.c:
20993         Bye bye buffer-frames.
20994
20995 2005-10-19  Wim Taymans  <wim@fluendo.com>
20996
20997         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
20998         (query_positions_elems), (query_positions_pads), (update_scale),
20999         (do_seek), (set_update_scale), (message_received), (main):
21000         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
21001         (gst_ogg_demux_perform_seek), (gst_ogg_demux_find_chains),
21002         (gst_ogg_demux_loop):
21003         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
21004         * ext/theora/theoradec.c: (theora_dec_src_query),
21005         (theora_dec_sink_event):
21006         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
21007         (vorbis_dec_sink_event), (vorbis_handle_data_packet):
21008         * gst/adder/gstadder.c: (gst_adder_query):
21009         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
21010         * gst/playback/test3.c: (update_scale):
21011         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
21012         (dump_element_stats), (main):
21013         * gst/playback/test6.c: (main):
21014         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
21015         Query API update.
21016
21017 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
21018
21019         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
21020         (xml_check_first_element), (xml_type_find), (smil_type_find),
21021         (plugin_init):
21022           Add typefinding for SMIL and for generic XML. Based on patch by
21023           Akos Maroy (#308663).
21024
21025 2005-10-18  Wim Taymans  <wim@fluendo.com>
21026
21027         * gst/playback/Makefile.am:
21028         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
21029         (gst_decode_bin_dispose), (dynamic_create), (dynamic_free),
21030         (free_dynamics), (pad_unblocked), (pad_blocked), (close_pad_link),
21031         (try_to_link_1), (new_pad), (no_more_pads), (type_found),
21032         (gst_decode_bin_change_state):
21033         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
21034         (gst_play_bin_send_event_to_sink):
21035         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
21036         (dump_element_stats), (main):
21037         * gst/playback/test6.c: (main):
21038         Make playbin async, it'll commit state to paused when all streams
21039         are detected.
21040         Remove ugly hack.
21041         Added test6.c to show async behaviour.
21042
21043 2005-10-18  Wim Taymans  <wim@fluendo.com>
21044
21045         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
21046         (gst_ogg_demux_perform_seek), (gst_ogg_demux_loop):
21047         Fix for segment-start/stop API change.
21048
21049 2005-10-18  Wim Taymans  <wim@fluendo.com>
21050
21051         * check/Makefile.am:
21052         * check/clocks/selection.c: (GST_START_TEST), (volume_suite),
21053         (main):
21054         Add future test for clock selection.
21055
21056 2005-10-18  Wim Taymans  <wim@fluendo.com>
21057
21058         * ext/alsa/gstalsasink.c: (gst_alsasink_init),
21059         (gst_alsasink_close):
21060         Set handle to NULL.
21061
21062         * gst-libs/gst/audio/gstringbuffer.c:
21063         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
21064         (gst_ring_buffer_acquire), (gst_ring_buffer_release),
21065         (gst_ring_buffer_start), (gst_ring_buffer_pause),
21066         (gst_ring_buffer_stop), (gst_ring_buffer_commit),
21067         (gst_ring_buffer_read):
21068         More debug info.
21069
21070 2005-10-17  Stefan Kost  <ensonic@users.sf.net>
21071
21072         * gst/audiotestsrc/Makefile.am:
21073         * gst/sine/Makefile.am:
21074         * gst/volume/Makefile.am:
21075           fix broken build of controllerized plugins
21076
21077 2005-10-17  Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>
21078
21079         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
21080
21081         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
21082         (gst_riff_create_video_template_caps):
21083           Add support for Indeo-3 (IV32).
21084
21085 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
21086
21087         * configure.ac:
21088           rewrite
21089
21090 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
21091
21092         * gst-libs/gst/video/video.c: (gst_video_get_size):
21093         * gst/audiotestsrc/gstaudiotestsrc.c:
21094           doc updates
21095
21096 2005-10-17  Andy Wingo  <wingo@pobox.com>
21097
21098         * ext/ogg/gstoggmux.c (gst_ogg_mux_queue_pads): Fix bug introduced
21099         with the collectpads change.
21100         (gst_ogg_mux_send_headers): Elevate warning to a g_critical.
21101
21102         * gst/tcp/gstmultifdsink.c: Convert to use the boilerplate macro.
21103
21104         * gst/tcp/gsttcp.c (gst_tcp_socket_read): Comment update.
21105
21106         * ext/theora/theoraenc.c (theora_buffer_from_packet): Pass the
21107         alloc_buffer flow return to callers.
21108         (theora_enc_chain, theora_enc_chain): Adapt to buffer_from_packet
21109         change. Fix some memleaks in theoraenc.
21110
21111         * ext/ogg/gstoggmux.c (gst_ogg_mux_send_headers): Fix a segfault
21112         in strange circumstance.
21113
21114 2005-10-17  Julien MOUTTE  <julien@moutte.net>
21115
21116         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
21117         (gst_ffmpegcsp_get_unit_size): We are asked to compute a buffer size
21118         from caps, let's use the caps...
21119
21120 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
21121
21122         * configure.ac:
21123           put back AX_CREATE_STDINT_H, ffmpegcolorspace includes _stdint.h
21124
21125 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
21126
21127         * gst-libs/gst/interfaces/Makefile.am:
21128           fix silly typo
21129
21130 2005-10-16  Andy Wingo  <wingo@pobox.com>
21131
21132         * gst/playback/gstdecodebin.c
21133         (gst_element_set_state_like_a_crazy_man): New kraaaaaaazy
21134         function!
21135         (try_to_link_1): Increase kraziness level.
21136
21137 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
21138
21139         * configure.ac:
21140           restructure like the core one
21141         * gst-libs/gst/audio/Makefile.am:
21142         * gst-libs/gst/interfaces/Makefile.am:
21143         * gst-libs/gst/net/Makefile.am:
21144         * gst-libs/gst/riff/Makefile.am:
21145         * gst-libs/gst/rtp/Makefile.am:
21146         * gst-libs/gst/tag/Makefile.am:
21147         * gst-libs/gst/video/Makefile.am:
21148           use correct linker flags, now the libs are properly versioned
21149         * check/elements/audioconvert.c: (verify_convert):
21150         * ext/alsa/gstalsaplugin.c:
21151         * ext/cdparanoia/gstcdparanoia.c:
21152         * ext/gnomevfs/gstgnomevfs.c:
21153         * ext/libvisual/visual.c:
21154         * ext/ogg/gstogg.c:
21155         * ext/ogg/gstoggparse.c: (gst_ogg_parse_chain):
21156         * ext/theora/theora.c:
21157         * ext/vorbis/vorbis.c:
21158         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
21159         * gst-libs/gst/tag/gsttagediting.c:
21160         * gst-libs/gst/video/video.c:
21161         * gst/adder/gstadder.c:
21162         * gst/audioconvert/plugin.c:
21163         * gst/audiorate/gstaudiorate.c:
21164         * gst/audioresample/gstaudioresample.c:
21165         * gst/audioresample/resample_ref.c: (resample_scale_ref):
21166         * gst/audioscale/gstaudioscale.c:
21167         * gst/audioscale/resample.c:
21168         * gst/audiotestsrc/gstaudiotestsrc.c:
21169         * gst/ffmpegcolorspace/gstffmpeg.c:
21170         * gst/playback/gstdecodebin.c: (close_pad_link):
21171         * gst/playback/gstplaybin.c: (gen_video_element),
21172         (gen_audio_element):
21173         * gst/sine/gstsinesrc.c:
21174         * gst/subparse/gstsubparse.c:
21175         * gst/tags/gsttagediting.c:
21176         * gst/tcp/gsttcpplugin.c:
21177         * gst/typefind/gsttypefindfunctions.c:
21178         * gst/videorate/gstvideorate.c:
21179         * gst/videoscale/gstvideoscale.c:
21180         * gst/videotestsrc/gstvideotestsrc.c:
21181         * gst/volume/gstvolume.c:
21182         * sys/v4l/gstv4l.c:
21183         * sys/ximage/ximage.c:
21184         * sys/xvimage/xvimagesink.c:
21185           fix up defines
21186
21187 2005-10-13  Tim-Philipp Müller  <tim at centricular dot net>
21188
21189         * ext/vorbis/vorbisenc.c:
21190         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
21191         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
21192         (gst_tag_to_vorbis_comments):
21193           Fix handling of GST_TAG_DATE, which is now of GST_TYPE_DATE.
21194
21195 2005-10-13  Stefan Kost  <ensonic@users.sf.net>
21196
21197         * examples/stats/mp2ogg.c:
21198         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
21199           typo fixes
21200
21201 2005-10-13  Michael Smith <msmith@fluendo.com>
21202
21203         * ext/ogg/gstoggmux.c:
21204           Use magic glib macros to define constants as 64 bit, to ensure
21205           appropriate vararg passing.
21206
21207 2005-10-13  Michael Smith <msmith@fluendo.com>
21208
21209         * ext/ogg/gstoggmux.c:
21210         * gst/audioconvert/audioconvert.c: (float):
21211           Don't use LL suffix, as it's not portable, and neither of these
21212           uses required it anyway.
21213
21214 2005-10-12  Stefan Kost  <ensonic@users.sf.net>
21215
21216         * examples/indexing/indexmpeg.c: (main):
21217         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get),
21218         (cdparanoia_open), (cdparanoia_close), (cdparanoia_event),
21219         (cdparanoia_convert), (cdparanoia_query):
21220         * ext/cdparanoia/gstcdparanoia.h:
21221         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
21222         (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file),
21223         (gst_gnomevfssink_chain), (gst_gnomevfssink_change_state):
21224         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
21225         * gst/audioscale/gstaudioscale.c: (gst_audioscale_init):
21226         * gst/playback/gststreamselector.c: (gst_stream_selector_init):
21227         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
21228         (gst_multifdsink_render), (gst_multifdsink_start),
21229         (gst_multifdsink_stop):
21230         * gst/tcp/gstmultifdsink.h:
21231         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init),
21232         (gst_tcpclientsink_render), (gst_tcpclientsink_start),
21233         (gst_tcpclientsink_stop):
21234         * gst/tcp/gsttcpclientsink.h:
21235         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
21236         (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_create),
21237         (gst_tcpclientsrc_start), (gst_tcpclientsrc_stop):
21238         * gst/tcp/gsttcpclientsrc.h:
21239         * gst/tcp/gsttcpserversink.h:
21240         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init),
21241         (gst_tcpserversrc_create), (gst_tcpserversrc_start),
21242         (gst_tcpserversrc_stop):
21243         * gst/tcp/gsttcpserversrc.h:
21244         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
21245         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
21246         * sys/ximage/ximagesink.c: (gst_ximagesink_init):
21247           renamed GST_FLAGS macros to GST_OBJECT_FLAGS
21248           moved bitshift from macro to enum definition
21249
21250 2005-10-12  Wim Taymans  <wim@fluendo.com>
21251
21252         * examples/seeking/Makefile.am:
21253         Oops.
21254
21255 2005-10-12  Wim Taymans  <wim@fluendo.com>
21256
21257         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
21258         (gst_ring_buffer_read), (gst_ring_buffer_clear):
21259         Don't assert on normal stuff.
21260
21261         * gst/playback/gstplaybin.c: (do_playbin_seek):
21262         API fix.
21263
21264 2005-10-12  Wim Taymans  <wim@fluendo.com>
21265
21266         * check/pipelines/simple_launch_lines.c: (run_pipeline):
21267         * examples/seeking/Makefile.am:
21268         * examples/seeking/cdplayer.c: (play_cb), (pause_cb), (stop_cb):
21269         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
21270         (do_seek), (set_update_scale), (message_received), (main):
21271         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
21272         (gst_ring_buffer_read), (gst_ring_buffer_clear):
21273         Update for _get_state() API change.
21274
21275 2005-10-11  Wim Taymans  <wim@fluendo.com>
21276
21277         * gst-libs/gst/audio/gstbaseaudiosink.c:
21278         (gst_base_audio_sink_render):
21279         * gst-libs/gst/audio/gstbaseaudiosrc.c:
21280         (gst_base_audio_src_create):
21281         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
21282         (gst_ring_buffer_read):
21283         Cleanups.
21284         Commit and read from ringbuffer in samples rather than bytes.
21285
21286 2005-10-11  Wim Taymans  <wim@fluendo.com>
21287
21288         * gst-libs/gst/audio/gstbaseaudiosink.c:
21289         (gst_base_audio_sink_render):
21290         Respect segment rate and accum when scheduling samples.
21291
21292 2005-10-11  Julien MOUTTE  <julien@moutte.net>
21293
21294         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
21295         (gst_ogg_mux_collected): Quick hack to fix build. We need to handle
21296         EOS correctly, that needs more work.
21297
21298 2005-10-11  Wim Taymans  <wim@fluendo.com>
21299
21300         * check/generic/states.c: (GST_START_TEST):
21301         remove old property.
21302
21303         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
21304         (gst_ogg_demux_perform_seek):
21305         * ext/theora/theoradec.c: (theora_dec_sink_event):
21306         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
21307         (vorbis_handle_data_packet):
21308         * gst-libs/gst/rtp/gstbasertpdepayload.c:
21309         (gst_base_rtp_depayload_set_gst_timestamp):
21310         * gst/videorate/gstvideorate.c: (gst_videorate_event):
21311         Update for newsegment API change.
21312
21313 2005-10-11  Michael Smith <msmith@fluendo.com>
21314
21315         * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
21316         (do_playbin_seek), (gst_play_bin_send_event):
21317           Override send_event differently, so that we can takes bits of
21318           functionality from GstPipeline (special handling for seeks,
21319           including pausing/resuming, and resetting stream time) and still get
21320           the appropriate behaviour of only forwarding event to a single sink,
21321           rather than all of them.
21322           Unfortunately requires a lot of code duplication, but the
21323           alternatives are equally ugly in the end.
21324
21325 2005-10-11  Thomas Vander Stichele  <thomas at apestaart dot org>
21326
21327         * check/elements/audioconvert.c: (setup_audioconvert),
21328         (cleanup_audioconvert), (get_int_caps), (verify_convert),
21329         (GST_START_TEST), (audioconvert_suite):
21330           clean up tests a little, fix some leaks.
21331
21332 2005-10-10  Wim Taymans  <wim@fluendo.com>
21333
21334         * ext/alsa/gstalsasink.c:
21335         Also allow unsigned int.
21336
21337         * gst-libs/gst/audio/gstbaseaudiosrc.c:
21338         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
21339         Small cleanup
21340
21341 2005-10-10  Wim Taymans  <wim@fluendo.com>
21342
21343         * check/pipelines/simple_launch_lines.c: (run_pipeline):
21344         Small update, use API as stated in design docs.
21345
21346         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
21347         (update_scale), (do_seek), (seek_cb), (set_update_scale),
21348         (start_seek), (stop_seek), (play_cb), (pause_cb), (stop_cb),
21349         (message_received), (main):
21350         Updated seek example for GOption. Some usability improvements.
21351
21352 2005-10-10  Wim Taymans  <wim@fluendo.com>
21353
21354         * gst/audioconvert/audioconvert.h:
21355         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
21356         (gst_channel_mix_setup_matrix), (gst_channel_mix_mix):
21357         Alloc temp storage somewhere else where we can do it more
21358         portable.
21359
21360 2005-10-10  Wim Taymans  <wim@fluendo.com>
21361
21362         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_create),
21363         (gst_tcpserversrc_start):
21364         Don't block in accept while doing the state change, move
21365         to poll and make cancellable.
21366
21367 2005-10-09  Philippe Khalaf <burger@speedy.org>
21368
21369         * gst-libs/gst/rtp/rtpbasedepayload.c:
21370         Set timestamp and add queue delay to timestamp
21371         * gst-libs/gst/rtp/rtpbuffer.h:
21372         Set correct payload type for h263
21373
21374 2005-10-09  Stefan Kost  <ensonic@users.sf.net>
21375
21376         * gst/audiotestsrc/gstaudiotestsrc.c:
21377         (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_class_init),
21378         (gst_audiotestsrc_init), (gst_audiotestsrc_create_sine),
21379         (gst_audiotestsrc_create_square), (gst_audiotestsrc_create_saw),
21380         (gst_audiotestsrc_create_triangle),
21381         (gst_audiotestsrc_create_silence),
21382         (gst_audiotestsrc_create_white_noise),
21383         (gst_audiotestsrc_init_pink_noise),
21384         (gst_audiotestsrc_generate_pink_noise_value),
21385         (gst_audiotestsrc_create_pink_noise),
21386         (gst_audiotestsrc_change_wave):
21387         * gst/audiotestsrc/gstaudiotestsrc.h:
21388           fixed typo, added pink noise
21389
21390 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
21391
21392         * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find),
21393         (plugin_init):
21394           Add wavpack and spc typefind functions from 0.8 branch.
21395
21396 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
21397
21398         * gst/typefind/gsttypefindfunctions.c: (tar_type_find),
21399         (ar_type_find), (msdos_type_find), (plugin_init):
21400           Add typefind functions for tar archives, ar archives,
21401           RAR archives, and msdos-executables (dlls, exe, etc.).
21402           Some of those would be wrongly identified as mpeg
21403           streams of some sort before (#315550).
21404
21405 2005-10-09  Stefan Kost  <ensonic@users.sf.net>
21406
21407         * configure.ac:
21408         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
21409         * docs/plugins/gst-plugins-base-plugins-sections.txt:
21410         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
21411         * gst/audiotestsrc/Makefile.am:
21412         * gst/audiotestsrc/gstaudiotestsrc.c:
21413         (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_base_init),
21414         (gst_audiotestsrc_class_init), (gst_audiotestsrc_init),
21415         (gst_audiotestsrc_src_fixate), (gst_audiotestsrc_setcaps),
21416         (gst_audiotestsrc_get_query_types), (gst_audiotestsrc_src_query),
21417         (gst_audiotestsrc_wait), (gst_audiotestsrc_unlock),
21418         (gst_audiotestsrc_create_sine), (gst_audiotestsrc_create_square),
21419         (gst_audiotestsrc_create_saw), (gst_audiotestsrc_create_triangle),
21420         (gst_audiotestsrc_create_silence),
21421         (gst_audiotestsrc_create_white_noise),
21422         (gst_audiotestsrc_change_wave), (gst_audiotestsrc_create),
21423         (gst_audiotestsrc_set_property), (gst_audiotestsrc_get_property),
21424         (gst_audiotestsrc_start), (plugin_init):
21425         * gst/audiotestsrc/gstaudiotestsrc.h:
21426           add new plugin and element
21427         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init):
21428           use gobject_class
21429
21430 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
21431
21432         * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_class_init),
21433         (gst_adder_init), (gst_adder_request_new_pad),
21434         (gst_adder_change_state):
21435           Add query function to source pad, so adder reports the correct
21436           time/sample position when queried (#315457); fix state change
21437           function; use GST_DEBUG_FUNCPTR() for pad functions.
21438
21439 2005-10-08  Thomas Vander Stichele  <thomas at apestaart dot org>
21440
21441         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find):
21442           Fix leaks in typefind registration
21443           Clean up the gratuitous commenting and whitespacing a little
21444
21445 2005-10-08  Wim Taymans  <wim@fluendo.com>
21446
21447         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_stop):
21448         Only actually wait for the thread to be stopped if it's 
21449         running.
21450
21451 2005-10-08  Wim Taymans  <wim@fluendo.com>
21452
21453         * gst-libs/gst/audio/gstbaseaudiosink.c:
21454         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
21455         If we receive EOS we can start playback of what we had.
21456
21457 2005-10-08  Wim Taymans  <wim@fluendo.com>
21458
21459         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
21460         (gst_multifdsink_finalize), (multifdsink_hash_remove),
21461         (gst_multifdsink_stop):
21462         Fix crasher when going to NULL multiple times.
21463
21464 2005-10-06  Wim Taymans  <wim@fluendo.com>
21465
21466         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event),
21467         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
21468         * gst-libs/gst/audio/gstbaseaudiosrc.h:
21469         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
21470         patch from Edgard Lima <edgard.lima@indt.org.br>
21471         Fixed gstbaseaudiosrc adding ring buffer sync to it.
21472
21473 2005-10-06  Wim Taymans  <wim@fluendo.com>
21474
21475         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
21476         Report the FLOW_RETURN as string in the error message.
21477
21478         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_clear_all):
21479         Don't assert when clearing an unnegotiated buffer.
21480
21481 2005-10-04  Michael Smith <msmith@fluendo.com>
21482
21483         * gst/playback/gstplaybasebin.c: (group_destroy),
21484         (gen_preroll_element), (remove_groups), (setup_source):
21485         * gst/playback/gstplaybin.c: (remove_sinks), (add_sink),
21486         (setup_sinks), (gst_play_bin_send_event),
21487         (gst_play_bin_change_state):
21488           Set state to NULL before removing from bin. Fix refcounting.
21489
21490 2005-10-04  Michael Smith <msmith@fluendo.com>
21491
21492         * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
21493           Correct refcounting in send_event() function. Previously was wrong
21494           if the first sink was unable to handle the event.
21495
21496 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
21497
21498         * configure.ac:
21499           back to development
21500
21501 === release 0.9.3 ===
21502
21503 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
21504
21505         * configure.ac:
21506           Releasing 0.9.3, "De Facto"
21507
21508 2005-10-03  Andy Wingo  <wingo@pobox.com>
21509
21510         * gst/playback/gstdecodebin.c (try_to_link_1)
21511         (remove_element_chain): set element to NULL before removing it.
21512
21513 2005-10-02  Johan Dahlin  <johan@gnome.org>
21514
21515         * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_uri_get_protocols): 
21516         protect gst_gnomevfs_get_supported_uris by a mutex, to make it
21517         MT safe.
21518
21519 2005-10-02  Andy Wingo  <wingo@pobox.com>
21520
21521         * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_clear) 
21522         (gst_ring_buffer_prepare_read): 
21523         * gst-libs/gst/audio/gstaudiosink.c (audioringbuffer_thread_func):
21524         Demote to LOG.
21525
21526 2005-09-29  Wim Taymans  <wim@fluendo.com>
21527
21528         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
21529         * ext/theora/theoradec.c: (theora_handle_data_packet):
21530         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
21531         Propagate error codes from alloc_buffer too.
21532
21533 2005-09-29  Wim Taymans  <wim@fluendo.com>
21534
21535         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
21536         We use fixed caps.
21537
21538         * gst/playback/Makefile.am:
21539         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
21540         (dump_element_stats), (main):
21541         Added example stream introspection code.
21542
21543 2005-09-28  Stefan Kost  <ensonic@users.sf.net>
21544
21545         * gst/adder/gstadder.c: (gst_adder_collected):
21546           fix adder for float elements
21547
21548 2005-09-28  Wim Taymans  <wim@fluendo.com>
21549
21550         * gst-libs/gst/audio/gstbaseaudiosink.c:
21551         (gst_base_audio_sink_class_init),
21552         (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
21553         * gst-libs/gst/audio/gstbaseaudiosrc.c:
21554         (gst_base_audio_src_class_init),
21555         (gst_base_audio_src_provide_clock):
21556         get_clock -> provide_clock
21557
21558 2005-09-28  Andy Wingo  <wingo@pobox.com>
21559
21560         * gst/videotestsrc/gstvideotestsrc.c: Implement live source mode
21561         and unlocking.
21562
21563         * gst/sine/gstsinesrc.c (gst_sinesrc_unlock): Actually implement
21564         unlocking.
21565
21566         * gst/tcp/gsttcpclientsink.c (gst_tcpclientsink_base_init):
21567         Actually add the pad template.
21568         (gst_tcpclientsink_get_type): We're a base sink. Woot, works.
21569
21570         * gst/tcp/gsttcpserversrc.c: Go ahead and fix up serversrc while
21571         I'm at it...
21572
21573         * gst/tcp/gsttcpclientsrc.c: Make interruptable -- code stolen
21574         from fdsrc. Get caps in create() instead of start() so it can be
21575         interrupted. Interruption somewhat untested.
21576
21577         * gst/tcp/gsttcp.c (gst_tcp_read_buffer, gst_tcp_socket_read):
21578         Proper EOS handling.
21579
21580 2005-09-27  Andy Wingo  <wingo@pobox.com>
21581
21582         * gst/tcp/gsttcpclientsrc.c: Cleaned up.
21583
21584         * gst/tcp/gsttcpserversrc.c: Cleaned up.
21585
21586         * gst/tcp/gsttcpclientsrc.c: Updated for new gsttcp API.
21587
21588         * gst/tcp/gsttcp.h: 
21589         * gst/tcp/gsttcp.c (gst_tcp_read_buffer): New function, factored
21590         out of tcpclientsrc.c. Cancellable.
21591         (gst_tcp_socket_read): Made private, cancellable, with better
21592         diagnostics. Also the FIONREAD ioctl takes a int*, not a size_t*.
21593         (gst_tcp_gdp_read_buffer): Made cancellable, actually returns the
21594         whole buffer, and better diagnostics.
21595         (gst_tcp_gdp_read_caps): Same.
21596
21597         * gst/sine/gstsinesrc.c (gst_sinesrc_wait): Add the base time.
21598
21599 2005-09-26  Andy Wingo  <wingo@pobox.com>
21600
21601         * gst/sine/gstsinesrc.h:
21602         * gst/sine/gstsinesrc.c: Refactor, remove the table lookup code,
21603         change the 'sync' property to 'is-live' and implement it halfway,
21604         update for controller api change.
21605
21606         * gst/volume/gstvolume.c (volume_transform_ip): Update for
21607         controller api change.
21608
21609 2005-09-24  Wim Taymans  <wim@fluendo.com>
21610
21611         * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
21612         * gst-libs/gst/audio/gstaudiosink.c:
21613         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
21614         (gst_audioringbuffer_stop):
21615         * gst-libs/gst/audio/gstbaseaudiosink.c:
21616         (gst_base_audio_sink_event), (gst_base_audio_sink_render),
21617         (gst_base_audio_sink_change_state):
21618         * gst-libs/gst/audio/gstbaseaudiosink.h:
21619         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop),
21620         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
21621         (gst_ring_buffer_commit), (gst_ring_buffer_read):
21622         * gst-libs/gst/audio/gstringbuffer.h:
21623         Fix sync again. Moved sample alignment to basesink.
21624
21625 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
21626
21627         * docs/plugins/Makefile.am:
21628         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
21629         * docs/plugins/gst-plugins-base-plugins-sections.txt:
21630         * gst/volume/gstvolume.c:
21631           add/fix docs
21632         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size):
21633         * gst-libs/gst/audio/audio.h:
21634           add conversion macros for frames <-> clocktime
21635
21636 2005-09-23  David Schleef  <ds@schleef.org>
21637
21638         * gst/audioresample/Makefile.am:
21639         * gst/audioresample/debug.h:
21640         * gst/audioresample/gstaudioresample.c:
21641         * gst/audioresample/resample.c: Convert to using gst debugging
21642
21643 2005-09-22  Wim Taymans  <wim@fluendo.com>
21644
21645         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
21646         (gst_play_bin_send_event):
21647         Only seek on one sink, the first one that succeeds.
21648
21649 2005-09-22  Michael Smith <msmith@fluendo.com>
21650
21651         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
21652         (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
21653         Don't flush encoder state unless we have an initialised encoder.
21654         Clear out encoder state on PAUSED_TO_READY.
21655
21656 2005-09-22  Wim Taymans  <wim@fluendo.com>
21657
21658         * gst-libs/gst/rtp/gstbasertppayload.c:
21659         (gst_basertppayload_class_init), (gst_basertppayload_init),
21660         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
21661         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
21662         (gst_basertppayload_is_filled), (gst_basertppayload_push),
21663         (gst_basertppayload_set_property),
21664         (gst_basertppayload_get_property),
21665         (gst_basertppayload_change_state):
21666         * gst-libs/gst/rtp/gstbasertppayload.h:
21667         Added max-ptime to control amount of data in the rtp packets.
21668
21669 2005-09-21  Andy Wingo  <wingo@pobox.com>
21670
21671         * gst/playback/gstplaybasebin.c: Attempt to fix up buffer probe
21672         thingies.
21673
21674         * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Dispose
21675         can be called multiple times, dogs.
21676
21677 2005-09-21  Wim Taymans  <wim@fluendo.com>
21678
21679         * gst-libs/gst/rtp/gstbasertppayload.c:
21680         (gst_basertppayload_class_init), (gst_basertppayload_init),
21681         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
21682         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
21683         (gst_basertppayload_push), (gst_basertppayload_get_property),
21684         (gst_basertppayload_change_state):
21685         Allow 0 ssrc too.
21686
21687 2005-09-21  Stefan Kost  <ensonic@users.sf.net>
21688
21689         * docs/libs/compiling.sgml:
21690           fixing typos
21691
21692 2005-09-20  Wim Taymans  <wim@fluendo.com>
21693
21694         * gst-libs/gst/rtp/gstbasertppayload.c:
21695         (gst_basertppayload_class_init), (gst_basertppayload_init),
21696         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
21697         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
21698         (gst_basertppayload_push), (gst_basertppayload_set_property),
21699         (gst_basertppayload_get_property),
21700         (gst_basertppayload_change_state):
21701         * gst-libs/gst/rtp/gstbasertppayload.h:
21702         Added property to configure sequence number offsets.
21703
21704 2005-09-20  Wim Taymans  <wim@fluendo.com>
21705
21706         * gst-libs/gst/rtp/gstbasertppayload.c:
21707         (gst_basertppayload_class_init), (gst_basertppayload_init),
21708         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
21709         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
21710         (gst_basertppayload_push), (gst_basertppayload_set_property),
21711         (gst_basertppayload_get_property),
21712         (gst_basertppayload_change_state):
21713         * gst-libs/gst/rtp/gstbasertppayload.h:
21714         Make timestamp offset configurable.
21715
21716 2005-09-20  Thomas Vander Stichele  <thomas at apestaart dot org>
21717
21718         * check/pipelines/simple_launch_lines.c: (run_pipeline):
21719           fix wrong pop/unref
21720
21721 2005-09-19  Torsten Schoenfeld  <kaffeetisch at gmx dot net>
21722
21723         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
21724
21725         * gst-libs/gst/interfaces/propertyprobe.c:
21726         (gst_property_probe_probe_property_name),
21727         (gst_property_probe_needs_probe_name),
21728         (gst_property_probe_get_values_name),
21729         (gst_property_probe_probe_and_get_values_name):
21730           Fix wrong macro usage; it's G_OBJECT_GET_CLASS(obj) or
21731           G_OBJECT_CLASS(klass), not G_OBJECT_CLASS(obj). (#316571)
21732
21733 2005-09-19  Thomas Vander Stichele  <thomas at apestaart dot org>
21734
21735         * check/Makefile.am:
21736           have some tests be disabled for valgrinding
21737         * check/elements/vorbisdec.c: (cleanup_vorbisdec),
21738         (GST_START_TEST):
21739         * ext/vorbis/vorbisdec.c: (vorbisdec_finalize):
21740           Fix A Leak.  Chain To Parent Finalize.
21741
21742 2005-09-19  Wim Taymans  <wim@fluendo.com>
21743
21744         * examples/seeking/seek.c: (make_wav_pipeline), (main):
21745         Fixed wav pipeline.
21746
21747 2005-09-19  Wim Taymans  <wim@fluendo.com>
21748
21749         * gst-libs/gst/rtp/gstbasertppayload.c:
21750         (gst_basertppayload_class_init), (gst_basertppayload_init),
21751         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
21752         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
21753         (gst_basertppayload_push), (gst_basertppayload_get_property),
21754         (gst_basertppayload_change_state):
21755         Posting ERROR and WARNING messages is good.
21756
21757 2005-09-19  Wim Taymans  <wim@fluendo.com>
21758
21759         * gst-libs/gst/rtp/gstbasertpdepayload.c:
21760         (gst_base_rtp_depayload_add_to_queue),
21761         (gst_base_rtp_depayload_push),
21762         (gst_base_rtp_depayload_set_gst_timestamp),
21763         (gst_base_rtp_depayload_queue_release):
21764         This one was not supposed to go in.
21765
21766 2005-09-19  Wim Taymans  <wim@fluendo.com>
21767
21768         * check/pipelines/simple_launch_lines.c: (run_pipeline):
21769         Fix for bus API.
21770
21771         * gst-libs/gst/rtp/gstbasertpdepayload.c:
21772         (gst_base_rtp_depayload_chain),
21773         (gst_base_rtp_depayload_add_to_queue),
21774         (gst_base_rtp_depayload_push),
21775         (gst_base_rtp_depayload_set_gst_timestamp),
21776         (gst_base_rtp_depayload_queue_release):
21777         Some cleanups.
21778
21779         * gst-libs/gst/rtp/gstbasertppayload.c:
21780         (gst_basertppayload_class_init), (gst_basertppayload_init),
21781         (gst_basertppayload_setcaps), (gst_basertppayload_set_options),
21782         (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
21783         (gst_basertppayload_get_property),
21784         (gst_basertppayload_change_state):
21785         Added debugging category.
21786
21787 2005-09-18  David Schleef  <ds@schleef.org>
21788
21789         * gst/playback/gstdecodebin.c: free plugin list correctly
21790         * gst/playback/gstplaybin.c: emit warning if autovideosink
21791           and autoaudiosink can't be found (instead of segfaulting)
21792
21793 2005-09-17  Thomas Vander Stichele  <thomas at apestaart dot org>
21794
21795         * check/elements/audioconvert.c: (GST_START_TEST):
21796           try out 24 bit conversion
21797
21798 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
21799
21800         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
21801         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
21802         (gst_vorbisenc_output_buffers), (gst_vorbisenc_change_state):
21803         * ext/vorbis/vorbisenc.h:
21804           Fix EOS handling.  Still needs a fix in the ogg muxer to
21805           mark the last page as eos.
21806
21807 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
21808
21809         * common/gtk-doc-plugins.mak:
21810         * docs/plugins/Makefile.am:
21811         * docs/plugins/gst-plugins-base-plugins-sections.txt:
21812         * gst/ffmpegcolorspace/Makefile.am:
21813         * gst/ffmpegcolorspace/avcodec.h:
21814         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
21815         * gst/tcp/gstmultifdsink.c:
21816           fix up ffmpegcolorspace docs; extract header
21817
21818 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
21819
21820         * common/gtk-doc-plugins.mak:
21821         * docs/plugins/Makefile.am:
21822         * docs/plugins/gst-plugins-base-plugins-sections.txt:
21823         * ext/theora/Makefile.am:
21824         * ext/theora/gsttheoraenc.h:
21825         * ext/theora/theoraenc.c:
21826         * ext/vorbis/vorbisenc.c:
21827           pick up signals and args for vorbis; add some docs for vorbis
21828
21829 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
21830
21831         * common/gstdoc-scangobj:
21832         * common/gtk-doc-plugins.mak:
21833         * docs/libs/Makefile.am:
21834         * docs/plugins/gst-plugins-base-plugins.args:
21835         * docs/plugins/gst-plugins-base-plugins.hierarchy:
21836         * docs/plugins/gst-plugins-base-plugins.interfaces:
21837         * docs/plugins/gst-plugins-base-plugins.prerequisites:
21838         * docs/plugins/gst-plugins-base-plugins.signals:
21839           only scanobj stuff from our source module.  Not sure yet
21840           if that's correct, given the hierarchy stuff :)
21841
21842 2005-09-15  Wim Taymans  <wim@fluendo.com>
21843
21844         * gst/audioconvert/gstaudioconvert.c:
21845         And enable 24 bits mode as well..
21846
21847 2005-09-15  Wim Taymans  <wim@fluendo.com>
21848
21849         * gst-libs/gst/rtp/Makefile.am:
21850         * gst-libs/gst/rtp/gstbasertppayload.c:
21851         (gst_basertppayload_get_type), (gst_basertppayload_base_init),
21852         (gst_basertppayload_class_init), (gst_basertppayload_init),
21853         (gst_basertppayload_finalize), (gst_basertppayload_setcaps),
21854         (gst_basertppayload_chain), (gst_basertppayload_set_options),
21855         (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
21856         (gst_basertppayload_set_property),
21857         (gst_basertppayload_get_property),
21858         (gst_basertppayload_change_state):
21859         * gst-libs/gst/rtp/gstbasertppayload.h:
21860         Added rtp payloader base class.
21861
21862 2005-09-15  Andy Wingo  <wingo@pobox.com>
21863
21864         * configure.ac (plugindir): Remove the EOL matcher from the
21865         regexp, as it causes me problems. Libtool? Make? Who knows?
21866
21867 2005-09-14  David Schleef  <ds@schleef.org>
21868
21869         * check/generic/states.c: 
21870         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
21871         * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
21872           Fixes for changes in registry API.
21873
21874         * configure.ac: Only export gst_plugins_desc.  Add -no-undefined
21875           to GST_PLUGIN_LDFLAGS.
21876         * ext/libvisual/visual.c: Make the library shut up.
21877         * gst-libs/gst/audio/audio.c: Don't define a plugin in a library.
21878         * gst-libs/gst/audio/gstaudiofilter.c: same
21879
21880 2005-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
21881
21882         * docs/plugins/Makefile.am:
21883         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
21884         * docs/plugins/inspect/plugin-libvisual.xml:
21885         * docs/plugins/tmpl/element-tcpserversink.sgml:
21886         * ext/theora/theoraenc.c:
21887           add libvisual plugin and theoraenc element to docs
21888
21889 2005-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
21890
21891         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
21892         * docs/plugins/gst-plugins-base-plugins-sections.txt:
21893         * ext/theora/theoraenc.c:
21894           add theoraenc
21895
21896 2005-09-13  Tim-Philipp Müller  <tim at centricular dot net>
21897
21898         * gst/audioconvert/Makefile.am:
21899           Audioconvert derives from GstBaseTransform and should
21900           link to the library with our base elements to avoid
21901           unresolved symbols. Makes things work with MinGW (#316160)
21902
21903         * gst/playback/test4.c: (main):
21904           Fix MinGW build problem and use g_usleep() instead of 
21905           sleep() (#316162)
21906
21907 2005-09-12  Wim Taymans  <wim@fluendo.com>
21908
21909         * gst/audioconvert/audioconvert.c: (float),
21910         (audio_convert_prepare_context), (audio_convert_convert):
21911         * gst/audioconvert/audioconvert.h:
21912         Cleanups, speedups, simplifications, added back support
21913         for 24 bits.
21914
21915 2005-09-11  Thomas Vander Stichele  <thomas at apestaart dot org>
21916
21917         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
21918         * docs/plugins/gst-plugins-base-plugins-sections.txt:
21919         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
21920         * docs/plugins/tmpl/element-tcpserversink.sgml:
21921         * gst/ffmpegcolorspace/gstffmpeg.c:
21922         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
21923         * gst/videotestsrc/gstvideotestsrc.c:
21924         * gst/volume/gstvolume.c:
21925           add more elements to the docs
21926
21927 2005-09-09  Jan Schmidt  <thaytan@mad.scientist.com>
21928
21929         * check/Makefile.am:
21930         * check/pipelines/simple_launch_lines.c: (setup_pipeline),
21931         (run_pipeline), (GST_START_TEST), (simple_launch_lines_suite):
21932           Add extra tests for basetransform based components. 
21933           Comment out the test_element_negotiation test until we decide
21934           if it's testing correct behaviour.
21935         * ext/libvisual/visual.c: (gst_visual_init), (get_buffer),
21936         (gst_visual_chain), (gst_visual_change_state):
21937           Slightly more correct but still bogus timestamping.
21938           Fix state change function.
21939         * gst/audioconvert/gstaudioconvert.c:
21940         (gst_audio_convert_class_init):
21941         * gst/audioresample/gstaudioresample.c:
21942         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
21943         (gst_ffmpegcsp_class_init):
21944         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
21945         (gst_videoscale_prepare_size), (gst_videoscale_set_caps),
21946         (gst_videoscale_prepare_image):
21947         * gst/volume/gstvolume.c: (gst_volume_class_init),
21948         (volume_transform_ip):
21949           Basetransform updates. Enable passthrough modes.
21950         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
21951         (gst_ximagesink_renegotiate_size), (gst_ximagesink_xcontext_get),
21952         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
21953           Negotiation fix that allows the window to return to the original
21954           size and renegotiate passthrough upstream. Extra debug output.
21955
21956 2005-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
21957
21958         * gst/sine/gstsinesrc.c:
21959         * gst/volume/gstvolume.c:
21960           fix up header include
21961
21962 2005-09-09  Stefan Kost  <ensonic@users.sf.net>
21963
21964         * gst-libs/gst/audio/gstbaseaudiosink.c:
21965         (gst_base_audio_sink_render):
21966         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit):
21967         * gst/volume/gstvolume.c: (gst_volume_class_init),
21968         (volume_transform):
21969           fixing lost sync, some more debugging
21970
21971 2005-09-08  Jan Schmidt  <thaytan@mad.scientist.com>
21972
21973         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
21974         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_xcontext_get):
21975         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
21976         (gst_xvimagesink_check_xshm_calls):
21977           Fix compilation when XShm is not available.
21978
21979 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
21980
21981         * ext/libvisual/visual.c: (gst_visual_dispose),
21982         (gst_visual_getcaps), (gst_visual_src_setcaps),
21983         (gst_visual_sink_setcaps), (get_buffer), (gst_visual_chain),
21984         (gst_visual_change_state):
21985           Finish fixing up libvisual plugin so that it runs. 
21986
21987 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
21988
21989         * ext/vorbis/vorbisenc.c:
21990         * gst-libs/gst/tag/gstvorbistag.c:
21991           gsttaginterface.h -> gsttagsetter.h
21992
21993 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
21994
21995         * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
21996           added another test that failes for me (test is not active by default)
21997
21998 2005-09-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
21999
22000         * configure.ac:
22001           v4l2 is no longer in gst-plugins-base
22002
22003 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
22004
22005         * configure.ac:
22006           In the output at the end, don't show the first plugin on the same
22007           line as "Core plug-ins, always built:".
22008           Indent the output as for other plugin categories
22009         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
22010           #define that can be used to not use peer buffer_alloc functions for
22011           test purposes.
22012         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
22013         (gst_ximage_buffer_get_type), (gst_ximagesink_ximage_new),
22014         (gst_ximagesink_show_frame):
22015         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
22016         (gst_xvimage_buffer_get_type), (gst_xvimagesink_setcaps),
22017         (gst_xvimagesink_show_frame):
22018           Error case handling fixes. gst-launch fakesrc ! x[v]imagesink now
22019           fails gracefully instead of XError aborting or deadlocking.
22020
22021 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
22022
22023         * ext/libvisual/Makefile.am:
22024           link against gst-base-libs
22025
22026 2005-09-06  David Schleef  <ds@schleef.org>
22027
22028         * configure.ac: Enable libvisual plugin.
22029         * ext/libvisual/Makefile.am:
22030         * ext/libvisual/visual.c: Fixes to make it compile.
22031
22032 === release 0.9.2 ===
22033
22034 2005-09-06  Thomas Vander Stichele  <thomas at apestaart dot org>
22035
22036         * NEWS:
22037         * RELEASE:
22038         * configure.ac:
22039         * docs/random/ChangeLog-0.8:
22040           releasing 0.9.2, "Spoon"
22041
22042 2005-09-05  Michael Smith <msmith@fluendo.com>
22043
22044         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
22045           libvorbis accepts quality as low as -0.1, not just 0.0. So accept
22046           that in the vorbisenc element.
22047
22048 2005-09-04  Thomas Vander Stichele  <thomas at apestaart dot org>
22049
22050         * common/gtk-doc-plugins.mak:
22051         * docs/plugins/Makefile.am:
22052           fix distcheck
22053         * gst/audioresample/resample.c:
22054           fix wrong docstring
22055
22056 2005-09-04  Thomas Vander Stichele  <thomas at apestaart dot org>
22057
22058         * common/gst-xmlinspect.py:
22059         * common/gtk-doc-plugins.mak:
22060           only inspect plugins for this given package
22061           require gst-python 0.9
22062
22063 2005-09-03  Thomas Vander Stichele  <thomas at apestaart dot org>
22064
22065         * Makefile.am:
22066         * autogen.sh:
22067         * common/gst-xmlinspect.py:
22068         * configure.ac:
22069         * docs/Makefile.am:
22070         * docs/plugins/inspect/plugin-alsa.xml:
22071         * docs/plugins/inspect/plugin-audioresample.xml:
22072         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
22073         * docs/plugins/inspect/plugin-ogg.xml:
22074         * docs/plugins/tmpl/element-gnomevfssink.sgml:
22075         * docs/plugins/tmpl/element-multifdsink.sgml:
22076         * docs/plugins/tmpl/element-tcpserversink.sgml:
22077         * docs/plugins/tmpl/element-vorbisenc.sgml:
22078         * gst-plugins-base.spec.in:
22079           various doc-related updates
22080
22081 2005-08-31  Wim Taymans  <wim@fluendo.com>
22082
22083         * gst-libs/gst/audio/gstbaseaudiosink.c:
22084         (gst_base_audio_sink_render):
22085         Resync if the buffer timestamps drift more than a 10th 
22086         of a second.
22087
22088 2005-08-31  Tim-Philipp Müller  <tim at centricular dot net>
22089
22090         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_property),
22091         (gst_v4lsrc_get_property):
22092           The 'timestamp-offset' property is registered as an int64, so
22093           let's use g_value_{set|get}_int64() in our setter and getter
22094           functions (makes it work and fixes warnings with gst-inspect).
22095
22096 2005-08-30  Wim Taymans  <wim@fluendo.com>
22097
22098         * check/elements/audioconvert.c: (setup_audioconvert):
22099         * check/elements/audioresample.c: (setup_audioresample):
22100         * check/elements/volume.c: (setup_volume):
22101         Fix checks.
22102
22103 2005-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
22104
22105         * common/gtk-doc-plugins.mak:
22106         * common/plugins.xsl:
22107         * docs/plugins/Makefile.am:
22108           make module a param
22109
22110 2005-08-30  Stefan Kost  <ensonic@users.sf.net>
22111
22112         * examples/seeking/seek.c: (make_mp3_pipeline),
22113         (make_mpeg_pipeline), (seek_cb), (start_seek), (stop_seek),
22114         (play_cb), (pause_cb), (stop_cb):
22115           update the example
22116
22117 2005-08-30  Stefan Kost  <ensonic@users.sf.net>
22118
22119         * gst/volume/gstvolume.c: (gst_volume_class_init),
22120         (volume_transform):
22121           do not update controlled params, if buffer has no timestamp
22122
22123 2005-08-29  Stefan Kost  <ensonic@users.sf.net>
22124
22125         * configure.ac:
22126         * gst/sine/Makefile.am:
22127         * gst/volume/Makefile.am:
22128           controllerized elements also need to link against controller-libs ;)
22129
22130 2005-08-29  Stefan Kost  <ensonic@users.sf.net>
22131
22132         * docs/libs/tmpl/gstcolorbalance.sgml:
22133         * docs/libs/tmpl/gstgconf.sgml:
22134         * docs/libs/tmpl/gstmixer.sgml:
22135         * docs/libs/tmpl/gstringbuffer.sgml:
22136         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
22137         (gst_sinesrc_create):
22138         * gst/volume/gstvolume.c: (gst_volume_class_init),
22139         (volume_transform):
22140           controllerized two audio plugins
22141
22142 2005-08-29  Andy Wingo  <wingo@pobox.com>
22143
22144         * ext/vorbis/vorbisdec.c (vorbis_dec_convert, vorbis_dec_push) 
22145         (vorbis_handle_data_packet): Fix some int overflow errors.
22146
22147         * ext/ogg/gstoggdemux.c (gst_ogg_demux_init): Init total_time to
22148         -1.
22149         (gst_ogg_demux_perform_seek): Clamp segment_stop only if it's
22150         valid.
22151         (gst_ogg_pad_submit_packet): Subtract the chain's begin_time only
22152         if it's valid. Fixed streaming-mode playback.
22153
22154         * check/elements/volume.c (cleanup_volume): Fix for running
22155         CK_FORK=no.
22156
22157         * check/elements/audioconvert.c: Convert from native endian, not
22158         little endian.
22159
22160 2005-08-29  Michael Smith <msmith@fluendo.com>
22161
22162         * ext/ogg/Makefile.am:
22163         * ext/ogg/gstogg.c: (plugin_init):
22164         * ext/ogg/gstoggparse.c: (gst_ogg_parse_get_type), (free_stream),
22165         (gst_ogg_parse_delete_all_streams), (gst_ogg_parse_new_stream),
22166         (gst_ogg_parse_find_stream), (gst_ogg_parse_base_init),
22167         (gst_ogg_parse_class_init), (gst_ogg_parse_init),
22168         (gst_ogg_parse_dispose), (gst_ogg_parse_submit_buffer),
22169         (gst_ogg_parse_append_header), (gst_ogg_parse_is_header),
22170         (gst_ogg_parse_buffer_from_page), (gst_ogg_parse_chain),
22171         (gst_ogg_parse_change_state), (gst_ogg_parse_plugin_init):
22172         Add an ogg parser element.
22173
22174 2005-08-28  Andy Wingo  <wingo@pobox.com>
22175
22176         * Updates for two-arg init from GST_BOILERPLATE_FULL.
22177
22178 2005-08-26  Wim Taymans  <wim@fluendo.com>
22179
22180         * gst/audioconvert/audioconvert.c: (if), (float),
22181         (audio_convert_get_func_index), (check_default),
22182         (audio_convert_clean_fmt), (audio_convert_prepare_context),
22183         (audio_convert_clean_context), (audio_convert_get_sizes),
22184         (audio_convert_convert):
22185         Cleanups.
22186
22187 2005-08-26  Wim Taymans  <wim@fluendo.com>
22188
22189         * gst/audioconvert/audioconvert.c: (if), (float),
22190         (audio_convert_get_func_index), (check_default),
22191         (audio_convert_clean_fmt), (audio_convert_prepare_context),
22192         (audio_convert_clean_context), (audio_convert_get_sizes),
22193         (audio_convert_convert):
22194         More elegant and working temp buffer selection algo.
22195
22196 2005-08-26  Wim Taymans  <wim@fluendo.com>
22197
22198         * gst/audioconvert/audioconvert.c: (if), (float),
22199         (audio_convert_get_func_index), (check_default),
22200         (audio_convert_clean_fmt), (audio_convert_prepare_context),
22201         (audio_convert_clean_context), (audio_convert_get_sizes),
22202         (get_temp_buffer), (audio_convert_convert):
22203         Use realloc else we lose our original data.
22204
22205 2005-08-26  Thomas Vander Stichele  <thomas at apestaart dot org>
22206
22207         * gst/audioresample/gstaudioresample.c:
22208           use base class' newsegment to properly timestamp
22209
22210 2005-08-26  Wim Taymans  <wim@fluendo.com>
22211
22212         * gst/audioconvert/audioconvert.c: (if), (float),
22213         (audio_convert_get_func_index), (check_default),
22214         (audio_convert_clean_fmt), (audio_convert_prepare_context),
22215         (audio_convert_clean_context), (audio_convert_get_sizes),
22216         (get_temp_buffer), (audio_convert_convert):
22217         * gst/audioconvert/gstaudioconvert.c:
22218         (gst_audio_convert_parse_caps), (gst_audio_convert_get_unit_size),
22219         (gst_audio_convert_transform_caps),
22220         (gst_audio_convert_fixate_caps), (gst_audio_convert_transform):
22221         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_mix):
22222         Oops, allocate enough space to perform the channel mix.
22223
22224 2005-08-26  Wim Taymans  <wim@fluendo.com>
22225
22226         * gst/audioconvert/Makefile.am:
22227         * gst/audioconvert/audioconvert.c: (if), (float),
22228         (audio_convert_get_func_index), (check_default),
22229         (audio_convert_clean_fmt), (audio_convert_prepare_context),
22230         (audio_convert_clean_context), (audio_convert_get_sizes),
22231         (get_temp_buffer), (audio_convert_convert):
22232         * gst/audioconvert/audioconvert.h:
22233         * gst/audioconvert/gstaudioconvert.c:
22234         (gst_audio_convert_class_init), (gst_audio_convert_init),
22235         (gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
22236         (gst_audio_convert_get_unit_size),
22237         (gst_audio_convert_transform_caps),
22238         (gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
22239         (gst_audio_convert_transform_ip), (gst_audio_convert_transform):
22240         * gst/audioconvert/gstaudioconvert.h:
22241         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
22242         (gst_channel_mix_fill_identical),
22243         (gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
22244         (gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
22245         (gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
22246         (gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
22247         (gst_channel_mix_mix):
22248         * gst/audioconvert/gstchannelmix.h:
22249         Cleanups, librarify a bit, optimize, better negotiation and more.
22250
22251 2005-08-26  Jan Schmidt  <thaytan@mad.scientist.com>
22252
22253         * ext/ogg/gstoggdemux.c: (ogg_find_peek):
22254         Another from MikeS:
22255         During typefinding, don't support negative offsets
22256         (offsets from the end of the stream) in our typefind->peek() function
22257         - nothing embedded in ogg ever needs them. However, we need to recognise
22258         those requests and reject them, otherwise we return invalid pointers.
22259
22260 2005-08-26  Jan Schmidt  <thaytan@mad.scientist.com>
22261
22262         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
22263         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
22264         (vorbisdec_finalize), (vorbis_handle_type_packet):
22265           Big shout-out to MikeS for fixing this giant memory leak.
22266           Huzzah!
22267
22268 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
22269
22270         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose),
22271         (audio_convert_get_unit_size):
22272           plug some leaks
22273
22274 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
22275
22276         * check/Makefile.am:
22277         * check/elements/audioconvert.c: (setup_audioconvert),
22278         (cleanup_audioconvert), (get_int_caps), (verify_convert),
22279         (GST_START_TEST), (audioconvert_suite), (main):
22280           add a test for audioconvert
22281         * gst/audioresample/gstaudioresample.c:
22282         * gst/audioresample/gstaudioresample.h:
22283           set DURATION so that TIMESTAMP(a) + DURATION(a) == TIMESTAMP(b);
22284           note that for buffers of 1/3 sec this means DURATION(c) is 
22285           one nanosecond more than for a and b
22286
22287 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
22288
22289         * check/Makefile.am:
22290         * check/elements/audioresample.c: (setup_audioresample),
22291         (cleanup_audioresample), (fail_unless_perfect_stream),
22292         (test_perfect_stream_instance), (GST_START_TEST),
22293           add a check for audioresample
22294         (audioresample_suite), (main):
22295         * check/elements/volume.c: (GST_START_TEST):
22296           remove unused method
22297         * gst/audioresample/gstaudioresample.c:
22298           set correct buffer parameters since we're changing them
22299         * gst/audioresample/resample_ref.c: (resample_scale_ref):
22300           add some debug
22301
22302 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
22303
22304         * gst/audioresample/debug.c:
22305         * gst/audioresample/gstaudioresample.c:
22306           add room for extra overlap samples when asked to transform size
22307           protect against possible mem corruption and check for discrepancies
22308           between written size and outbuffer's size so we can warn for
22309           potential problems
22310         * gst/audioresample/resample.c: (resample_init),
22311         (resample_get_output_size_for_input), (resample_get_output_size),
22312         (resample_set_n_channels), (resample_set_format):
22313           set debug level based on RESAMPLE_DEBUG env var
22314           make sure that get_output_size* returns a whole number of
22315           sample_size
22316           set sample_size each time either channel or format is set
22317         * gst/audioresample/resample_chunk.c: (resample_scale_chunk):
22318         * gst/audioresample/resample_functable.c:
22319         (resample_scale_functable):
22320         * gst/audioresample/resample_ref.c: (resample_scale_ref):
22321           remove r->sample_size, it's done in resample.c now
22322           add some debugging to the ref implementation
22323           make sure we only give back bytes that are wholes of the sample
22324           size
22325
22326 2005-08-25  Jan Schmidt  <thaytan@mad.scientist.com>
22327         * gst/playback/gstplaybasebin.c: (fill_buffer):
22328         Revert unpopular change for GST_MESSAGE_SRC to GObject.
22329
22330 2005-08-25  Stefan Kost  <ensonic@users.sf.net>
22331
22332         * gst/volume/gstvolume.c:
22333           made set_caps function static
22334
22335 2005-08-24  Wim Taymans  <wim@fluendo.com>
22336
22337         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
22338         (gst_vorbisenc_change_state):
22339         Stop leaking taglists.
22340
22341 2005-08-24  Wim Taymans  <wim@fluendo.com>
22342
22343         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
22344         (gst_ogg_pad_event), (gst_ogg_demux_factory_filter),
22345         (gst_ogg_pad_submit_packet), (gst_ogg_chain_new),
22346         (gst_ogg_demux_init), (gst_ogg_demux_perform_seek),
22347         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
22348         (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
22349         Parse seeking events better.
22350         Unref static caps.
22351         Generate correct newsegment events, fixes seeking in live oggs.
22352
22353         * ext/theora/theoradec.c: (theora_dec_src_query),
22354         (theora_dec_src_event), (theora_dec_src_getcaps),
22355         (theora_dec_sink_event), (theora_dec_push), (theora_dec_chain):
22356         Use newsegment values to report correct play time.
22357
22358         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
22359         (vorbis_dec_src_event), (vorbis_dec_sink_event):
22360         * ext/vorbis/vorbisdec.h:
22361         Parse and use newsegment values to report correct play time.
22362
22363         * gst-libs/gst/audio/gstbaseaudiosink.c:
22364         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
22365         Clear ringbuffer on flush.
22366         Use newsegment values to calculate playback time.
22367
22368         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
22369         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
22370         Basesink does newsegment calculations for us now.
22371
22372 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
22373
22374         * check/Makefile.am:
22375         * configure.ac:
22376           add core's plugins to the mix so that playbin works
22377         * check/generic/states.c: (GST_START_TEST):
22378           set a 0 timeout on pipelines, so they don't force the next
22379           state change
22380         * gst/playback/gstplaybasebin.c: (setup_source), (prepare_output),
22381         (gst_play_base_bin_change_state):
22382           remove the crappy error handling and do GST error handling
22383
22384 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
22385
22386         * check/Makefile.am:
22387         * check/generic/states.c: (GST_START_TEST), (states_suite), (main):
22388           add same test as to core, it bitches out on playbin atm.
22389
22390 2005-08-24  Wim Taymans  <wim@fluendo.com>
22391
22392         * configure.ac:
22393         Remove audioscale.
22394
22395 2005-08-24  Wim Taymans  <wim@fluendo.com>
22396
22397         * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
22398         (gst_videoscale_prepare_size), (parse_caps),
22399         (gst_videoscale_set_caps), (gst_videoscale_get_size),
22400         (gst_videoscale_prepare_image), (gst_videoscale_transform_ip),
22401         (gst_videoscale_transform):
22402         * gst/videoscale/gstvideoscale.h:
22403         Refactor, make use of BaseTranform really well.
22404
22405 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
22406
22407         * configure.ac:
22408           compile audioresample
22409         * gst/audioresample/Makefile.am:
22410         * gst/audioresample/buffer.c:
22411         * gst/audioresample/functable.c:
22412         * gst/audioresample/gstaudioresample.c:
22413         * gst/audioresample/gstaudioresample.h:
22414         * gst/audioresample/resample.c:
22415         (resample_get_output_size_for_input):
22416         * gst/audioresample/resample.h:
22417         * gst/audioresample/resample_chunk.c:
22418         * gst/audioresample/resample_functable.c:
22419         * gst/audioresample/resample_ref.c:
22420           port to use basetransform; doesn't work in all cases yet
22421
22422 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
22423
22424         * gst/audioconvert/gstaudioconvert.c:
22425         (gst_audio_convert_class_init), (gst_audio_convert_init),
22426         (audio_convert_get_unit_size), (audio_convert_transform_caps),
22427         (audio_convert_fixate_caps), (audio_convert_set_caps),
22428         (audio_convert_transform),
22429         (gst_audio_convert_buffer_to_default_format),
22430         (gst_audio_convert_buffer_from_default_format),
22431         (gst_audio_convert_channels):
22432         * gst/audioconvert/gstchannelmix.c:
22433         * gst/audioconvert/gstchannelmix.h:
22434           port to basetransform
22435         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22436         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_class_init),
22437         (gst_ffmpegcsp_get_unit_size):
22438         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
22439         (gst_videoscale_transform_caps), (gst_videoscale_get_unit_size):
22440           fix for basetransform changes
22441
22442 2005-08-24  Jan Schmidt  <thaytan@mad.scientist.com>
22443
22444         * check/Makefile.am:
22445           Add CHECK_CFLAGS and LDFLAGS
22446
22447         * gst/playback/gstplaybasebin.c: (fill_buffer):
22448           GST_MESSAGE_SRC became a GObject
22449
22450 2005-08-24  Wim Taymans  <wim@fluendo.com>
22451
22452         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_set_sample),
22453         (gst_ring_buffer_clear_all):
22454         * gst-libs/gst/audio/gstringbuffer.h:
22455         Added function to clear the ringbuffer.
22456
22457 2005-08-24  Andy Wingo  <wingo@pobox.com>
22458
22459         * sys/v4l/gstv4lelement.c (gst_v4lelement_start) 
22460         (gst_v4lelement_stop): Call _start and _stop for xoverlay instead
22461         of _open and _close.
22462
22463         * sys/v4l/gstv4lxoverlay.h:
22464         * sys/v4l/gstv4lxoverlay.c (gst_v4l_xoverlay_set_xwindow_id): Open
22465         an Xv connection here, instead of all the time. Make Xv only be
22466         loaded if you axe for it. Kindof a workaround for buggy behaviour
22467         of Xv when using remote xservers (XvQueryExtension would block).
22468         (gst_v4l_xoverlay_stop, gst_v4l_xoverlay_start): New functions,
22469         replace the _open and _close public API. Only start the xv
22470         connection if necessary.
22471         (gst_v4l_xoverlay_open, gst_v4l_xoverlay_close): Made static.
22472
22473 2005-08-23  David Schleef  <ds@schleef.org>
22474
22475         * gst/audioresample/Makefile.am: Leet audioresampling code
22476         * gst/audioresample/buffer.c:
22477         * gst/audioresample/buffer.h:
22478         * gst/audioresample/debug.c:
22479         * gst/audioresample/debug.h:
22480         * gst/audioresample/functable.c:
22481         * gst/audioresample/functable.h:
22482         * gst/audioresample/gstaudioresample.c:
22483         * gst/audioresample/gstaudioresample.h:
22484         * gst/audioresample/resample.c:
22485         * gst/audioresample/resample.h:
22486         * gst/audioresample/resample_chunk.c:
22487         * gst/audioresample/resample_functable.c:
22488         * gst/audioresample/resample_ref.c:
22489
22490 2005-08-23  Wim Taymans  <wim@fluendo.com>
22491
22492         * examples/seeking/seek.c: (make_vorbis_pipeline),
22493         (make_theora_pipeline), (make_vorbis_theora_pipeline), (do_seek):
22494         Small seek updates.
22495
22496 2005-08-23  Andy Wingo  <wingo@pobox.com>
22497
22498         * gst-libs/gst/audio/gstbaseaudiosrc.c
22499         (gst_base_audio_src_fixate): Only fixate endianness if it is
22500         present in the caps.
22501
22502 2005-08-22  Andy Wingo  <wingo@pobox.com>
22503
22504         * ext/alsa/gstalsasink.c (gst_alsasink_get_property): 
22505         * ext/alsa/gstalsasrc.c (gst_alsasrc_get_property): Add a
22506         device-name property.
22507
22508         * gst-libs/gst/audio/gstaudiosrc.h:
22509         * gst-libs/gst/audio/gstaudiosrc.c: Implement open_device and
22510         close_device in the ring buffer, like gstaudiosink.
22511
22512         * ext/alsa/gstalsamixer.h:
22513         * ext/alsa/gstalsamixer.c: Not a GObject any more. Include a nifty
22514         macro to implement the interface without much code. Cleanups. 
22515
22516         * ext/alsa/gstalsasrc.h:
22517         * ext/alsa/gstalsasrc.c: Be a mixer. Open device and mixer in
22518         READY.
22519
22520         * ext/alsa/Makefile.am: Add new files.
22521         * ext/alsa/gstalsamixerelement.c: 
22522         * ext/alsa/gstalsamixerelement.c: Split element code out from
22523         mixer code so that alsasrc can be a mixer too.
22524
22525 2005-08-21  Thomas Vander Stichele  <thomas at apestaart dot org>
22526
22527         * check/elements/volume.c: (setup_volume), (cleanup_volume),
22528         (GST_START_TEST):
22529         * check/elements/vorbisdec.c: (setup_vorbisdec),
22530         (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite):
22531         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
22532         (vorbis_handle_identification_packet),
22533         (vorbis_handle_comment_packet), (vorbis_handle_type_packet),
22534         (vorbis_handle_header_packet), (vorbis_dec_push),
22535         (vorbis_dec_chain):
22536           use the setup/teardown methods to save code.  save code is good.
22537
22538 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
22539
22540         * check/Makefile.am:
22541           add ext dir for plugins
22542           add vorbisdec test conditionally
22543         * check/elements/volume.c: (setup_volume), (cleanup_volume),
22544         (GST_START_TEST), (volume_suite):
22545           add a test with wrong caps
22546         * check/elements/vorbisdec.c: (chain_func), (setup_vorbisdec),
22547         (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite), (main):
22548           add a vorbisdec test
22549         * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream),
22550         (gst_ogg_demux_chain), (gst_ogg_demux_loop):
22551           clean up debug output
22552         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
22553           yay, fix a segfault/security issue in vorbisdec
22554           gst-launch fakesrc ! vorbisdec wasn't happy
22555         * ext/vorbis/vorbisenc.c: (vorbisenc_get_type),
22556         (gst_vorbisenc_class_init), (gst_vorbisenc_sink_setcaps),
22557         (gst_vorbisenc_convert_src), (gst_vorbisenc_convert_sink),
22558         (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
22559         (gst_vorbisenc_init), (gst_vorbisenc_metadata_set1),
22560         (gst_vorbisenc_set_metadata), (get_constraints_string),
22561         (update_start_message), (gst_vorbisenc_setup),
22562         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
22563         (gst_vorbisenc_push_packet), (gst_vorbisenc_sink_event),
22564         (gst_vorbisenc_chain), (gst_vorbisenc_get_property),
22565         (gst_vorbisenc_set_property), (gst_vorbisenc_change_state):
22566         * ext/vorbis/vorbisenc.h:
22567           march in line
22568         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22569         (gst_ffmpegcsp_transform):
22570           have the kow come home
22571         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
22572           debug my func ptr
22573         * gst/volume/gstvolume.c: (volume_set_caps):
22574           add a debug
22575
22576 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
22577
22578         * Makefile.am:
22579         * check/.cvsignore:
22580         * check/Makefile.am:
22581         * check/elements/.cvsignore:
22582         * check/elements/volume.c: (chain_func), (event_func),
22583         (setup_volume), (cleanup_volume), (GST_START_TEST), (volume_suite),
22584         (main):
22585         * configure.ac:
22586           add unit test structure for gst-plugins-base
22587           add a test for volume
22588         * gst/volume/gstvolume.c: (gst_volume_list_tracks),
22589         (gst_volume_set_volume), (gst_volume_get_volume),
22590         (gst_volume_set_mute), (gst_volume_class_init), (gst_volume_init),
22591         (volume_funcfind), (volume_process_float), (volume_process_int16),
22592         (volume_set_caps), (volume_transform), (volume_update_mute),
22593         (volume_update_volume), (volume_set_property),
22594         (volume_get_property):
22595           document a little; use basetransform vmethod _set_caps
22596
22597 2005-08-19  Andy Wingo  <wingo@pobox.com>
22598
22599         * ext/alsa/gstalsamixertrack.h:
22600         * ext/alsa/gstalsamixertrack.c:
22601         * ext/alsa/gstalsamixeroptions.h:
22602         * ext/alsa/gstalsamixeroptions.c:
22603         * ext/alsa/gstalsamixer.h:
22604         * ext/alsa/gstalsamixer.c: Port to 0.9.
22605
22606         * ext/alsa/Makefile.am: Build mixer, mixeroptions, mixertracks.
22607         Remove gstalsa.c and alsaclock. No more cruft here.
22608         
22609 2005-08-18  Wim Taymans  <wim@fluendo.com>
22610
22611         * gst-libs/gst/rtp/gstbasertpdepayload.c:
22612         (gst_base_rtp_depayload_chain),
22613         (gst_base_rtp_depayload_add_to_queue),
22614         (gst_base_rtp_depayload_push),
22615         (gst_base_rtp_depayload_queue_release):
22616         * gst-libs/gst/rtp/gstbasertpdepayload.h:
22617         Fix for RTPBuffer changes.
22618
22619         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtpbuffer_allocate_data),
22620         (gst_rtpbuffer_new_take_data), (gst_rtpbuffer_new_copy_data),
22621         (gst_rtpbuffer_new_allocate), (gst_rtpbuffer_new_allocate_len),
22622         (gst_rtpbuffer_calc_header_len), (gst_rtpbuffer_calc_packet_len),
22623         (gst_rtpbuffer_calc_payload_len), (gst_rtpbuffer_validate_data),
22624         (gst_rtpbuffer_validate), (gst_rtpbuffer_set_packet_len),
22625         (gst_rtpbuffer_get_packet_len), (gst_rtpbuffer_get_version),
22626         (gst_rtpbuffer_set_version), (gst_rtpbuffer_get_padding),
22627         (gst_rtpbuffer_set_padding), (gst_rtpbuffer_pad_to),
22628         (gst_rtpbuffer_get_extension), (gst_rtpbuffer_set_extension),
22629         (gst_rtpbuffer_get_ssrc), (gst_rtpbuffer_set_ssrc),
22630         (gst_rtpbuffer_get_csrc_count), (gst_rtpbuffer_get_csrc),
22631         (gst_rtpbuffer_set_csrc), (gst_rtpbuffer_get_marker),
22632         (gst_rtpbuffer_set_marker), (gst_rtpbuffer_get_payload_type),
22633         (gst_rtpbuffer_set_payload_type), (gst_rtpbuffer_get_seq),
22634         (gst_rtpbuffer_set_seq), (gst_rtpbuffer_get_timestamp),
22635         (gst_rtpbuffer_set_timestamp), (gst_rtpbuffer_get_payload_len),
22636         (gst_rtpbuffer_get_payload):
22637         * gst-libs/gst/rtp/gstrtpbuffer.h:
22638         Don't subclass GstBuffer but add methods and helper functions
22639         to construct and manipulate RTP packets in regular GstBuffers.
22640
22641 2005-08-18  Stefan Kost  <ensonic@users.sf.net>
22642
22643         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
22644           moved statement below switch
22645         * gst/volume/gstvolume.c: (gst_volume_class_init):
22646           added debug ptr
22647
22648 2005-08-16  Wim Taymans  <wim@fluendo.com>
22649
22650         * gst-libs/gst/audio/gstbaseaudiosrc.c:
22651         (gst_base_audio_src_change_state):
22652         Open and close device in READY<->NULL state change.
22653
22654 2005-08-16  Andy Wingo  <wingo@pobox.com>
22655
22656         * examples/seeking/Makefile.am: Don't compile non-compiling
22657         compiled objects with the compiler.
22658
22659         * examples/seeking/seek.c (make_dv_pipeline): Update for new DV
22660         elements.
22661
22662 2005-08-12  Philippe Khalaf <burger@speedy.org>
22663         * gst-libs/gst/rtp/gstbasertpdepayload.c:
22664         * gst-libs/gst/rtp/gstbasertpdepayload.h:
22665           Made a thread to release the queue.
22666           Removed timestamp conversion for now.
22667
22668 2005-08-10  Philippe Khalaf <burger@speedy.org>
22669         * gst-libs/gst/rtp/gstbasertpdepayload.c:
22670         * gst-libs/gst/rtp/gstbasertpdepayload.h:
22671           Added rtp timestamp -> gst timestamp conversion.
22672           Fixed several problems with queue.
22673
22674 2005-08-09  Tim-Philipp Müller  <tim at centricular dot net>
22675
22676         * gst-libs/gst/audio/gstaudioclock.h:
22677         * gst-libs/gst/audio/gstaudiofilter.h:
22678         * gst-libs/gst/audio/gstaudiosink.h:
22679         * gst-libs/gst/audio/gstaudiosrc.h:
22680         * gst-libs/gst/audio/gstbaseaudiosink.h:
22681         * gst-libs/gst/audio/gstbaseaudiosrc.h:
22682         * gst-libs/gst/audio/gstringbuffer.h:
22683         * gst-libs/gst/net/gstnetbuffer.h:
22684         * gst-libs/gst/rtp/gstbasertpdepayload.h:
22685         * gst-libs/gst/rtp/gstrtpbuffer.h:
22686           Add padding (you will need to rebuild gst-plugins-base,
22687           gst-plugins and all applications afterwards!)
22688
22689 2005-08-09  Tim-Philipp Müller  <tim at centricular dot net>
22690
22691         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
22692         (gst_riff_parse_chunk):
22693           Fix bug in debug message and add some more debug messages.
22694
22695 2005-08-08  Edward Hervey  <edward@fluendo.com>
22696
22697         * gst-libs/gst/riff/riff-media.c:
22698         backported updates since branch
22699
22700 2005-08-08  Andy Wingo  <wingo@pobox.com>
22701
22702         * gst-libs/gst/audio/gstbaseaudiosink.c
22703         (gst_base_audio_sink_change_state): Open the device in NULL->READY
22704         like good elements should. Close on READY->NULL too.
22705
22706         * gst-libs/gst/audio/gstaudiosink.c
22707         (gst_audioringbuffer_open_device,
22708         (gst_audioringbuffer_close_device, gst_audioringbuffer_acquire)
22709         (gst_audioringbuffer_release): Updates for new ring buffer API,
22710         hook into the new audio sink api.
22711
22712         * gst-libs/gst/audio/gstaudiosink.h (GstAudioSinkClass.open)
22713         (GstAudioSinkClass.close): Just open and close the device -- no
22714         resource allocation or configuration.
22715         (GstAudioSinkClass.prepare, GstAudioSinkClass.unprepare): New
22716         vmethods, handle device setup and resource allocation.
22717
22718         * ext/alsa/gstalsasink.c (gst_alsasink_open, gst_alsasink_close)
22719         (gst_alsasink_prepare, gst_alsasink_unprepare): Update for new
22720         base class API.
22721
22722         * gst-libs/gst/audio/gstringbuffer.h
22723         (GstRingBufferClass.open_device, GstRingBufferClass.close_device):
22724         New vmethods.
22725
22726         * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_open_device)
22727         (gst_ring_buffer_close_device, gst_ring_buffer_device_is_open):
22728         New API functions. The device should be opened before acquiring
22729         and closed after releasing.
22730
22731 2005-08-08  Tim-Philipp Müller  <tim at centricular dot net>
22732
22733         * gst-libs/gst/interfaces/mixer.h:
22734           Reset padding to GST_PADDING.
22735
22736 2005-08-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22737
22738         * gst/playback/gstplaybin.c: (remove_sinks):
22739           Remove visualization from parent explicitely; works around some
22740           apparent refcount issue that I haven't tracked down yet.
22741
22742 2005-08-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22743
22744         * ext/alsa/gstalsasink.c: (set_hwparams):
22745           Assign debug category, add negotiation debug msgs.
22746
22747 2005-08-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22748
22749         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_start):
22750           Fix error code for file-not-found to NOT_FOUND.
22751
22752 2005-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
22753
22754         * common/gtk-doc-plugins.mak:
22755         * docs/plugins/Makefile.am:
22756         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
22757         * docs/plugins/gst-plugins-base-plugins-sections.txt:
22758           renamed to actual element names, so much nicer to look at
22759         * docs/plugins/tmpl/gstmultifdsink.sgml:
22760           remove
22761         * docs/plugins/tmpl/multifdsink.sgml:
22762         * docs/plugins/tmpl/tcpserversink.sgml:
22763           add
22764         * ext/alsa/gstalsa.c:
22765         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get_property):
22766         * ext/ogg/gstoggmux.c:
22767         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
22768         * gst/playback/gstdecodebin.c:
22769         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
22770         * gst/tcp/gsttcpserversink.c:
22771           various fixes and documentation additions
22772
22773 2005-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
22774
22775         * common/Makefile.am:
22776         * common/gstdoc-scangobj:
22777         * common/gtk-doc-plugins.mak:
22778         * common/gtk-doc.mak:
22779           add a custom scangobj that uses the registry
22780           add a custom gtk-doc-plugins.mak that uses it
22781           some doc build fixes
22782         * configure.ac:
22783         * docs/Makefile.am:
22784         * docs/plugins/Makefile.am:
22785         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
22786         * docs/plugins/gst-plugins-base-plugins-sections.txt:
22787         * docs/plugins/gst-plugins-base-plugins.types:
22788         * docs/plugins/tmpl/gstmultifdsink.sgml:
22789           add docs for one element, multifdsink
22790         * gst/adder/gstadder.h:
22791         * gst/volume/gstvolume.h:
22792           don't privatize enum
22793         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
22794         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
22795         (gst_sync_method_get_type), (gst_client_status_get_type),
22796         (gst_multifdsink_class_init),
22797         (gst_multifdsink_client_queue_buffer),
22798         (gst_multifdsink_handle_client_write):
22799         * gst/tcp/gstmultifdsink.h:
22800         * gst/tcp/gsttcp.h:
22801         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
22802         (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
22803         (gst_tcpclientsink_render):
22804         * gst/tcp/gsttcpclientsink.h:
22805         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
22806         (gst_tcpclientsrc_init), (gst_tcpclientsrc_create),
22807         (gst_tcpclientsrc_start):
22808         * gst/tcp/gsttcpclientsrc.h:
22809         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
22810         (gst_tcpserversrc_init), (gst_tcpserversrc_create):
22811         * gst/tcp/gsttcpserversrc.h:
22812         * gst/typefind/gsttypefindfunctions.c:
22813           remove superfluous Type stuff
22814
22815 2005-08-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22816
22817         * gst/playback/gstplaybin.c: (gen_video_element):
22818           Enable videoscale.
22819
22820 2005-08-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22821
22822         * gst-libs/gst/gconf/gconf.c:
22823         * gst-libs/gst/gconf/gconf.h:
22824           Fix some Andy Problem [tm].
22825
22826 2005-08-04  Andy Wingo  <wingo@pobox.com>
22827
22828         * gst/videoscale/gstvideoscale.c (gst_videoscale_get_size):
22829         * gst/ffmpegcolorspace/gstffmpegcolorspace.c
22830         (gst_ffmpegcsp_get_size): Adapt to API changes.
22831
22832         * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_ip):
22833         Implement an in-place do-nothing transform.
22834
22835 2005-08-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22836
22837         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
22838         (gst_ximagesink_renegotiate_size):
22839           Do not set new window sizes yet if we prepare a new buffer size
22840           for upstream renegotiation (software scaling) at some point in the
22841           future, because this new size waqs not actually accepted yet. Once
22842           accepted, renegotiation later on will set the new sizes just fine.
22843           Fixes a videotestsrc ! queue ! videoscale ! ximagesink xoverlay
22844           embedding testcase.
22845
22846 2005-08-03  Andy Wingo  <wingo@pobox.com>
22847
22848         * sys/ximage/ximagesink.c (gst_ximagesink_renegotiate_size):
22849         (gst_ximagesink_buffer_alloc): 
22850         Protect the height, width, and desired_caps with the pool_lock.
22851         Fixes videotestsrc ! queue ! ximagesink.
22852
22853 2005-08-02  Edward Hervey  <edward@fluendo.com>
22854
22855         * gst/volume/gstvolume.c:
22856         include left from controller cleanup
22857
22858 2005-08-02  Jan Schmidt  <thaytan@mad.scientist.com>
22859         * ext/ogg/gstoggmux.c: (gst_ogg_mux_change_state):
22860           Stop collectpads before calling the parent state
22861           change function on PAUSED->READY.
22862
22863 2005-08-01  Jan Schmidt  <thaytan@mad.scientist.com>
22864         * configure.ac:
22865           When testing for X libs, use the X CFlags 
22866         * gst/adder/gstadder.c: (gst_adder_change_state):
22867           Stop the collectpads before calling parent state change function
22868           on PAUSED->READY, otherwise we deadlock deactivating pads.
22869
22870 2005-08-01  Stefan Kost  <ensonic@users.sf.net>
22871
22872         * configure.ac:
22873         * docs/libs/tmpl/gstcolorbalance.sgml:
22874         * docs/libs/tmpl/gstmixer.sgml:
22875         * examples/Makefile.am:
22876         * gst/sine/Makefile.am:
22877         * gst/sine/gstsinesrc.c: (gst_sinesrc_init), (gst_sinesrc_create),
22878         (gst_sinesrc_set_property), (plugin_init):
22879         * gst/sine/gstsinesrc.h:
22880         * gst/volume/Makefile.am:
22881         * gst/volume/gstvolume.c: (gst_volume_set_volume),
22882         (gst_volume_set_mute), (gst_volume_dispose), (gst_volume_init),
22883         (volume_process_float), (volume_process_int16),
22884         (volume_set_property), (plugin_init):
22885         * gst/volume/gstvolume.h:
22886           deactivate and remove dparams (libgstcontrol)
22887
22888 2005-07-29  Wim Taymans  <wim@fluendo.com>
22889
22890         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link_src):
22891         Convert me to BaseTransform!! help..
22892
22893 2005-07-29  Andy Wingo  <wingo@pobox.com>
22894
22895         * ext/alsa/gstalsaplugin.c (plugin_init): We are primary audio
22896         sinks.
22897
22898         * ext/alsa/gstalsasink.c (alsasink_sink_factory): Advertise our
22899         support of both endiannesses.
22900
22901 2005-07-28  Tim-Philipp Müller  <tim at centricular dot net>
22902
22903         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
22904           Fix confusing debug message (s/event/query/)
22905
22906 2005-07-28  Tim-Philipp Müller  <tim at centricular dot net>
22907
22908         * gst/videotestsrc/videotestsrc.h:
22909           Use "_stdint.h" instead of <stdint.h>
22910
22911 2005-07-27  Wim Taymans  <wim@fluendo.com>
22912
22913         * ext/vorbis/Makefile.am:
22914         Revert wrong commit.
22915
22916 2005-07-27  Wim Taymans  <wim@fluendo.com>
22917
22918         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event):
22919         More compilation fixen.
22920
22921 2005-07-27  Wim Taymans  <wim@fluendo.com>
22922
22923         * gst-libs/gst/audio/gstbaseaudiosink.c:
22924         (gst_base_audio_sink_event), (gst_base_audio_sink_render),
22925         (gst_base_audio_sink_create_ringbuffer),
22926         (gst_base_audio_sink_change_state):
22927         Fix compilation.
22928
22929 2005-07-27  Wim Taymans  <wim@fluendo.com>
22930
22931         * examples/seeking/seek.c: (setup_dynamic_link),
22932         (make_dv_pipeline), (make_vorbis_theora_pipeline), (query_rates),
22933         (query_positions_elems), (query_positions_pads), (do_seek):
22934         Update seek example.
22935
22936         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
22937         (gst_ogg_pad_typefind), (gst_ogg_demux_chain_elem_pad),
22938         (gst_ogg_demux_queue_data), (gst_ogg_demux_chain_peer),
22939         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
22940         (gst_ogg_demux_handle_event),
22941         (gst_ogg_demux_deactivate_current_chain),
22942         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
22943         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
22944         (gst_ogg_demux_chain), (gst_ogg_demux_send_event),
22945         (gst_ogg_demux_loop):
22946         * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
22947         * ext/theora/theoradec.c: (theora_dec_src_event),
22948         (theora_dec_src_getcaps), (theora_dec_sink_event),
22949         (theora_dec_push), (theora_dec_chain):
22950         * ext/vorbis/Makefile.am:
22951         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_event),
22952         (vorbis_dec_sink_event), (vorbis_dec_push),
22953         (vorbis_handle_data_packet):
22954         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_event),
22955         (gst_vorbisenc_chain):
22956         * gst/playback/gststreaminfo.c: (cb_probe):
22957         * gst/subparse/gstsubparse.c: (gst_subparse_src_event):
22958         * gst/videorate/gstvideorate.c: (gst_videorate_event):
22959         * gst/videoscale/gstvideoscale.c:
22960         (gst_videoscale_handle_src_event):
22961         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_event):
22962         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame),
22963         (gst_ximagesink_navigation_send_event):
22964         * sys/xvimage/xvimagesink.c:
22965         (gst_xvimagesink_navigation_send_event):
22966         Various event updates and cleanups
22967
22968 2005-07-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22969
22970         * gst/videoscale/gstvideoscale.c: (gst_videoscale_prepare_images):
22971           Fix segfault for I420/YV12.
22972
22973 2005-07-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22974
22975         * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
22976           Report bitrate.
22977
22978 2005-07-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22979
22980         * gst/playback/gstplaybin.c: (gen_video_element),
22981         (gen_audio_element):
22982           Switch to auto*sink elements as default sinks; add volume element
22983           so that volume control in totem works.
22984
22985 2005-07-21  Wim Taymans  <wim@fluendo.com>
22986
22987         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
22988         * gst/playback/gstplaybin.c: (setup_sinks),
22989         (gst_play_bin_change_state):
22990         Refcount fix and more comments.
22991
22992 2005-07-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
22993
22994         * sys/ximage/Makefile.am:
22995         * sys/ximage/ximage.c: (plugin_init):
22996         * sys/ximage/ximagesink.c:
22997         Prepare for adding ximagesrc, rename of plugin to ximage etc.
22998         
22999
23000 2005-07-21  Wim Taymans  <wim@fluendo.com>
23001
23002         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
23003         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
23004         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
23005         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
23006         (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
23007         (gst_ogg_demux_init), (gst_ogg_demux_activate_chain),
23008         (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_chain_info),
23009         (gst_ogg_demux_collect_info), (gst_ogg_demux_chain),
23010         (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
23011         Generate correct disconts for live chained oggs.
23012
23013         * gst-libs/gst/audio/gstbaseaudiosink.c:
23014         (gst_base_audio_sink_render),
23015         (gst_base_audio_sink_create_ringbuffer),
23016         (gst_base_audio_sink_change_state):
23017         Handle discont math correctly.
23018
23019         * gst/playback/gstplaybin.c: (add_sink):
23020         Some small debug cleanup.
23021
23022 2005-07-21  Wim Taymans  <wim@fluendo.com>
23023
23024         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init), (gst_ogg_pad_event),
23025         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
23026         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
23027         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
23028         (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
23029         (gst_ogg_demux_init), (gst_ogg_demux_deactivate_current_chain),
23030         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
23031         (gst_ogg_demux_read_chain), (gst_ogg_demux_find_pad),
23032         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
23033         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
23034         (gst_ogg_demux_send_event), (gst_ogg_demux_loop),
23035         (gst_ogg_demux_change_state), (gst_ogg_print):
23036         Reorganize code to send the right disconts when in streaming
23037         mode.
23038
23039 2005-07-20  Andy Wingo  <wingo@pobox.com>
23040
23041         * gst/videoscale/vs_image.c (vs_image_scale_nearest_YUYV): Typo
23042         fix (?), fixes a seggie mcfalterson (#310894).
23043
23044 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23045
23046         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_headers),
23047         (gst_ogg_mux_set_header_on_caps):
23048         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
23049         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
23050         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
23051         * gst-libs/gst/audio/multichannel.c:
23052         (gst_audio_set_channel_positions),
23053         (gst_audio_set_structure_channel_positions_list):
23054         * gst/playback/gstdecodebin.c: (dynamic_create):
23055         * gst/playback/gstplaybasebin.c: (setup_source), (mute_group_type):
23056         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
23057           Fixes for API changes in core.
23058
23059 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23060
23061         * gst/playback/gstplaybasebin.c: (fill_buffer):
23062           Use _new_custom() so we can set custom message types for buffering
23063           messages.
23064
23065 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23066
23067         * configure.ac:
23068         * gst-libs/gst/Makefile.am:
23069         * gst-libs/gst/gconf/.cvsignore:
23070         * gst-libs/gst/gconf/Makefile.am:
23071         * gst-libs/gst/gconf/test-gconf.c:
23072         * pkgconfig/Makefile.am:
23073         * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
23074         * pkgconfig/gstreamer-gconf.pc.in:
23075           Remove gconf stuff, use gconf elements instead from now on.
23076
23077 2005-07-20  Wim Taymans  <wim@fluendo.com>
23078
23079         * gst-libs/gst/audio/TODO:
23080         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
23081         (gst_audio_clock_get_internal_time):
23082         * gst-libs/gst/audio/gstaudioclock.h:
23083         * gst-libs/gst/audio/gstbaseaudiosink.c:
23084         (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
23085         (gst_base_audio_sink_get_time), (gst_base_audio_sink_event),
23086         (gst_base_audio_sink_render),
23087         (gst_base_audio_sink_create_ringbuffer),
23088         (gst_base_audio_sink_change_state):
23089         Make sure the audio clock always returns an increasing value.
23090
23091 2005-07-19  Andy Wingo  <wingo@pobox.com>
23092
23093         * gst/videotestsrc/: Cleanups.
23094
23095 2005-07-19  Wim Taymans  <wim@fluendo.com>
23096
23097         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
23098         Better debugging.
23099
23100 2005-07-19  Wim Taymans  <wim@fluendo.com>
23101
23102         * examples/seeking/seek.c: (make_dv_pipeline),
23103         (make_vorbis_theora_pipeline), (query_rates),
23104         (query_positions_elems), (query_positions_pads), (do_seek):
23105         Make correct DV pipeline.
23106
23107 2005-07-18  Andy Wingo  <wingo@pobox.com>
23108
23109         * configure.ac (DEFAULT_AUDIOSINK, DEFAULT_AUDIOSRC): Use alsa by
23110         default. Also because it's the only thing that really works. (This
23111         is used in the GConf elements).
23112         Use AS_LIBTOOL_TAGS.
23113
23114 2005-07-18  Wim Taymans  <wim@fluendo.com>
23115
23116         * gst/playback/gstdecodebin.c: (remove_element_chain):
23117         * gst/playback/gstplaybin.c: (add_sink):
23118         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
23119         (gst_stream_info_set_mute):
23120         * gst/playback/gststreamselector.c:
23121         (gst_stream_selector_get_linked_pad),
23122         (gst_stream_selector_getcaps), (gst_stream_selector_chain):
23123         More leak and compile fixes.
23124
23125 2005-07-18  Wim Taymans  <wim@fluendo.com>
23126
23127         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
23128         (query_rates), (query_positions_elems), (query_positions_pads),
23129         (do_seek), (seek_cb), (stop_seek):
23130         Updated seek example. 
23131
23132         * gst/playback/gstdecodebin.c: (remove_element_chain), (unlinked):
23133         * gst/playback/gstplaybasebin.c: (queue_threshold_reached),
23134         (queue_out_of_data), (gen_preroll_element), (new_decoded_pad):
23135         * gst/playback/gstplaybin.c: (add_sink):
23136         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
23137         (gst_stream_info_set_mute):
23138         Some refcount leak fixes.
23139
23140 2005-07-16  Wim Taymans  <wim@fluendo.com>
23141
23142         * gst-libs/gst/audio/gstbaseaudiosink.c:
23143         (gst_base_audio_sink_render):
23144         Align samples even if we have roundoff errors in the 
23145         timestamp conversion.
23146
23147 2005-07-16  Wim Taymans  <wim@fluendo.com>
23148
23149         * docs/libs/tmpl/gstringbuffer.sgml:
23150         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
23151         (query_rates), (query_positions_elems), (query_positions_pads),
23152         (update_scale), (do_seek):
23153         Updated seek example.
23154
23155         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
23156         (gst_ogg_pad_submit_page), (gst_ogg_demux_activate_chain),
23157         (gst_ogg_demux_find_chains), (gst_ogg_demux_send_event),
23158         (gst_ogg_demux_loop):
23159         Push out correct discont values.
23160
23161         * ext/theora/theoradec.c: (theora_dec_src_convert),
23162         (theora_dec_sink_convert), (theora_dec_src_getcaps),
23163         (theora_dec_sink_event), (theora_handle_type_packet),
23164         (theora_handle_header_packet), (theora_dec_push),
23165         (theora_handle_data_packet), (theora_dec_chain),
23166         (theora_dec_change_state):
23167         Better timestamping.
23168
23169         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
23170         (vorbis_dec_sink_event), (vorbis_dec_push),
23171         (vorbis_handle_data_packet), (vorbis_dec_chain):
23172         * ext/vorbis/vorbisdec.h:
23173         Better timestamping.
23174
23175         * gst-libs/gst/audio/gstbaseaudiosink.c:
23176         (gst_base_audio_sink_get_time), (gst_base_audio_sink_get_times),
23177         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
23178         Handle syncing on timestamps instead of sample offsets. Make
23179         use of DISCONT values as described in design docs.
23180
23181         * gst-libs/gst/audio/gstbaseaudiosrc.c:
23182         (gst_base_audio_src_get_time):
23183         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_acquire),
23184         (gst_ring_buffer_set_sample), (gst_ring_buffer_commit),
23185         (gst_ring_buffer_read):
23186         * gst-libs/gst/audio/gstringbuffer.h:
23187         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times),
23188         (gst_ximagesink_show_frame):
23189         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
23190         Correcly convert buffer timestamp to stream time.
23191
23192 2005-07-16  Wim Taymans  <wim@fluendo.com>
23193
23194         * gst/audioconvert/gstaudioconvert.c:
23195         (gst_audio_convert_get_buffer):
23196         Timestamp buffers correctly.
23197
23198         * gst/playback/gstplaybin.c: (gen_video_element):
23199         Make internal fakesink silent.
23200
23201 2005-07-15  Wim Taymans  <wim@fluendo.com>
23202
23203         * gst/ffmpegcolorspace/Makefile.am:
23204         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
23205         (gst_ffmpegcsp_caps_remove_format_info),
23206         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
23207         (gst_ffmpegcsp_get_type), (gst_ffmpegcsp_class_init),
23208         (gst_ffmpegcsp_init), (gst_ffmpegcsp_get_size),
23209         (gst_ffmpegcsp_transform_ip), (gst_ffmpegcsp_transform):
23210         Ported ffmpegcolorspace to basetransform.
23211
23212         * gst/videoscale/gstvideoscale.c: (gst_videoscale_transform):
23213         * gst/volume/gstvolume.c: (volume_transform):
23214         Ported to new API.
23215
23216 2005-07-14  Wim Taymans  <wim@fluendo.com>
23217
23218         * gst/videotestsrc/Makefile.am:
23219         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get_type),
23220         (gst_videotestsrc_class_init), (gst_videotestsrc_negotiate),
23221         (gst_videotestsrc_setcaps), (gst_videotestsrc_getcaps),
23222         (gst_videotestsrc_init), (gst_videotestsrc_event),
23223         (gst_videotestsrc_create), (gst_videotestsrc_start),
23224         (gst_videotestsrc_stop), (gst_videotestsrc_get_times),
23225         (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
23226         (gst_videotestsrc_get_property):
23227         * gst/videotestsrc/gstvideotestsrc.h:
23228         Make videotestsrc a pushsrc.
23229
23230 2005-07-14  Wim Taymans  <wim@fluendo.com>
23231
23232         * gst/tcp/gstfdset.c: (gst_fdset_free):
23233         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
23234         (gst_multifdsink_add), (gst_multifdsink_remove),
23235         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
23236         (gst_multifdsink_remove_client_link),
23237         (gst_multifdsink_client_queue_data),
23238         (gst_multifdsink_client_queue_caps),
23239         (gst_multifdsink_client_queue_buffer),
23240         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
23241         (gst_multifdsink_stop):
23242         * gst/tcp/gstmultifdsink.h:
23243         0.8 backporting.
23244
23245         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
23246         Also draw image when not from a pool.
23247
23248 2005-07-14  Wim Taymans  <wim@fluendo.com>
23249
23250         * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
23251         (mute_stream), (silence_stream):
23252         Small debug additions.
23253
23254 2005-07-14  Wim Taymans  <wim@fluendo.com>
23255
23256         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
23257         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
23258         (gst_ogg_demux_activate_chain), (gst_ogg_demux_loop):
23259         Better error recovery, ignore unconnected pads and
23260         non-fatal errors.
23261
23262 2005-07-14  Thomas Vander Stichele  <thomas at apestaart dot org>
23263
23264         * docs/libs/tmpl/gstaudio.sgml:
23265         * docs/libs/tmpl/gstcolorbalance.sgml:
23266         * docs/libs/tmpl/gstgconf.sgml:
23267         * docs/libs/tmpl/gstmixer.sgml:
23268         * docs/libs/tmpl/gstringbuffer.sgml:
23269         * docs/libs/tmpl/gsttuner.sgml:
23270         * gst-libs/gst/audio/gstbaseaudiosrc.c:
23271         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
23272         (gst_tcpclientsrc_class_init):
23273         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
23274         (gst_tcpserversrc_class_init):
23275         * sys/v4l/gstv4lelement.c:
23276           more autistic cleanliness in functions/names/defines
23277
23278 2005-07-13  Thomas Vander Stichele  <thomas at apestaart dot org>
23279
23280         * configure.ac:
23281           make GST_PLUGIN_LDFLAGS only be flags; GST_LIBS should be
23282           added manually to each Makefile.am so we are sure it goes
23283           *last* and doesn't add -L flags before linking in libs of our
23284           own, like, say, internal .la libs, that then accidentally pick
23285           up the installed copy.
23286         * docs/libs/Makefile.am:
23287         * ext/alsa/Makefile.am:
23288         * ext/cdparanoia/Makefile.am:
23289         * ext/gnomevfs/Makefile.am:
23290         * ext/libvisual/Makefile.am:
23291         * ext/ogg/Makefile.am:
23292         * ext/theora/Makefile.am:
23293         * ext/vorbis/Makefile.am:
23294         * gst-libs/gst/video/Makefile.am:
23295         * gst/adder/Makefile.am:
23296         * gst/audioconvert/Makefile.am:
23297         * gst/audiorate/Makefile.am:
23298         * gst/audioscale/Makefile.am:
23299         * gst/ffmpegcolorspace/Makefile.am:
23300         * gst/playback/Makefile.am:
23301         * gst/sine/Makefile.am:
23302         * gst/subparse/Makefile.am:
23303         * gst/tags/Makefile.am:
23304         * gst/tcp/Makefile.am:
23305         * gst/typefind/Makefile.am:
23306         * gst/videorate/Makefile.am:
23307         * gst/videoscale/Makefile.am:
23308         * gst/videotestsrc/Makefile.am:
23309         * gst/volume/Makefile.am:
23310         * sys/v4l/Makefile.am:
23311         * sys/ximage/Makefile.am:
23312         * sys/xvimage/Makefile.am:
23313           adapt properly to this change. This should make sure that
23314           plugins and libs properly link to the as-yet-uninstalled
23315           copies of stuff like libgstinterfaces and libgstvideo
23316
23317 2005-07-13  Andy Wingo  <wingo@pobox.com>
23318
23319         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_stop): Fix a spurious warning.
23320         (gst_v4lsrc_fixate): Fixate on format as well.
23321
23322         * sys/xvimage/xvimagesink.c (gst_xvimage_buffer_destroy) 
23323         (gst_xvimagesink_xvimage_new): Ref the xvimagesink while the
23324         buffer points to it.
23325         (gst_xvimagesink_check_xshm_calls): Don't use our xvimage buffer,
23326         rather just doing X calls ourselves. Also fixes a memleak.
23327
23328 2005-07-12  Andy Wingo  <wingo@pobox.com>
23329
23330         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_get_property) 
23331         (gst_v4lsrc_set_property, gst_v4lsrc_class_init, gst_v4lsrc_init) 
23332         (gst_v4lsrc_create): Re-add the copy-mode property, default to
23333         TRUE to avoid deadlocks if an element holds on to our buffers.
23334
23335 2005-07-11  Thomas Vander Stichele  <thomas at apestaart dot org>
23336
23337         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
23338         (gst_sinesrc_init), (gst_sinesrc_create),
23339         (gst_sinesrc_set_property), (gst_sinesrc_get_property),
23340         (gst_sinesrc_start):
23341         * gst/sine/gstsinesrc.h:
23342           removing num-buffers property before moving it
23343
23344 2005-07-10  Thomas Vander Stichele  <thomas at apestaart dot org>
23345
23346         * configure.ac:
23347           use overridable ERROR_CFLAGS
23348         * docs/libs/gst-plugins-base-libs.types:
23349         * docs/libs/tmpl/gstringbuffer.sgml:
23350         * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
23351         (gst_alsasink_class_init):
23352         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
23353         (gst_alsasrc_class_init):
23354         * gst-libs/gst/audio/audio.h:
23355         * gst-libs/gst/audio/gstaudioclock.h:
23356         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
23357         (gst_audio_filter_base_init), (gst_audio_filter_class_init),
23358         (gst_audio_filter_link), (gst_audio_filter_init),
23359         (gst_audio_filter_chain), (gst_audio_filter_set_property),
23360         (gst_audio_filter_get_property),
23361         (gst_audio_filter_class_add_pad_templates):
23362         * gst-libs/gst/audio/gstaudiofilter.h:
23363         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
23364         (gst_audio_filter_template_get_type),
23365         (gst_audio_filter_template_base_init),
23366         (gst_audio_filter_template_class_init),
23367         (gst_audio_filter_template_init),
23368         (gst_audio_filter_template_set_property),
23369         (gst_audio_filter_template_get_property), (plugin_init),
23370         (gst_audio_filter_template_setup),
23371         (gst_audio_filter_template_filter),
23372         (gst_audio_filter_template_filter_inplace):
23373         * gst-libs/gst/audio/gstaudiosink.c:
23374         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
23375         (audioringbuffer_thread_func), (gst_audioringbuffer_acquire),
23376         (gst_audioringbuffer_release), (gst_audioringbuffer_start),
23377         (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
23378         (gst_audio_sink_base_init), (gst_audio_sink_class_init),
23379         (gst_audio_sink_init), (gst_audio_sink_create_ringbuffer):
23380         * gst-libs/gst/audio/gstaudiosink.h:
23381         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
23382         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
23383         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
23384         (gst_audioringbuffer_start), (gst_audioringbuffer_stop),
23385         (gst_audioringbuffer_delay), (gst_audio_src_base_init),
23386         (gst_audio_src_class_init), (gst_audio_src_init),
23387         (gst_audio_src_create_ringbuffer):
23388         * gst-libs/gst/audio/gstaudiosrc.h:
23389         * gst-libs/gst/audio/gstbaseaudiosink.c:
23390         (gst_base_audio_sink_base_init), (gst_base_audio_sink_class_init),
23391         (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
23392         (gst_base_audio_sink_get_clock), (gst_base_audio_sink_get_time),
23393         (gst_base_audio_sink_set_property),
23394         (gst_base_audio_sink_get_property), (gst_base_audio_sink_setcaps),
23395         (gst_base_audio_sink_get_times), (gst_base_audio_sink_event),
23396         (gst_base_audio_sink_preroll), (gst_base_audio_sink_render),
23397         (gst_base_audio_sink_create_ringbuffer),
23398         (gst_base_audio_sink_callback), (gst_base_audio_sink_change_state):
23399         * gst-libs/gst/audio/gstbaseaudiosink.h:
23400         * gst-libs/gst/audio/gstbaseaudiosrc.c:
23401         (gst_base_audio_src_base_init), (gst_base_audio_src_class_init),
23402         (gst_base_audio_src_init), (gst_base_audio_src_get_clock),
23403         (gst_base_audio_src_get_time), (gst_base_audio_src_set_property),
23404         (gst_base_audio_src_get_property), (gst_base_audio_src_fixate),
23405         (gst_base_audio_src_setcaps), (gst_base_audio_src_get_times),
23406         (gst_base_audio_src_event), (gst_base_audio_src_create),
23407         (gst_base_audio_src_create_ringbuffer),
23408         (gst_base_audio_src_callback), (gst_base_audio_src_change_state):
23409         * gst-libs/gst/audio/gstbaseaudiosrc.h:
23410         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
23411         (gst_ring_buffer_class_init), (gst_ring_buffer_init),
23412         (gst_ring_buffer_dispose), (gst_ring_buffer_finalize),
23413         (gst_ring_buffer_debug_spec_caps),
23414         (gst_ring_buffer_debug_spec_buff), (gst_ring_buffer_parse_caps),
23415         (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
23416         (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
23417         (gst_ring_buffer_start), (gst_ring_buffer_pause),
23418         (gst_ring_buffer_stop), (gst_ring_buffer_delay),
23419         (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
23420         (wait_segment), (gst_ring_buffer_commit), (gst_ring_buffer_read),
23421         (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
23422         (gst_ring_buffer_clear):
23423         * gst-libs/gst/audio/gstringbuffer.h:
23424         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
23425         (gst_video_sink_class_init), (gst_video_sink_get_type):
23426         * gst-libs/gst/video/videosink.h:
23427         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
23428         (gst_multifdsink_class_init),
23429         (gst_multifdsink_handle_client_write),
23430         (gst_multifdsink_change_state):
23431         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
23432         (gst_tcpclientsink_setcaps):
23433         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
23434         (gst_ximagesink_getcaps), (gst_ximagesink_setcaps),
23435         (gst_ximagesink_change_state), (gst_ximagesink_show_frame),
23436         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
23437         (gst_ximagesink_send_pending_navigation),
23438         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size),
23439         (gst_ximagesink_class_init), (gst_ximagesink_get_type):
23440         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
23441         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
23442         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc),
23443         (gst_xvimagesink_send_pending_navigation),
23444         (gst_xvimagesink_navigation_send_event),
23445         (gst_xvimagesink_set_xwindow_id),
23446         (gst_xvimagesink_get_desired_size), (gst_xvimagesink_class_init),
23447         (gst_xvimagesink_get_type):
23448         more macro splitting
23449
23450 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
23451
23452         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
23453           plug a memleak, allows me to import 1479 albums in one go
23454           in jamboree
23455         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
23456         (vorbis_handle_type_packet), (vorbis_dec_chain),
23457         (vorbis_dec_change_state):
23458           fix some format strings
23459
23460 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
23461
23462         * docs/libs/tmpl/gstcolorbalance.sgml:
23463         * docs/libs/tmpl/gstmixer.sgml:
23464         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
23465         (gst_alsasink_set_property), (gst_alsasink_get_property):
23466         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
23467         (gst_alsasrc_set_property), (gst_alsasrc_get_property):
23468           add device property
23469
23470 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
23471
23472         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
23473         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
23474         (audiocast_register_listener), (audiocast_thread_run),
23475         (gst_gnomevfssrc_send_additional_headers_callback),
23476         (gst_gnomevfssrc_received_headers_callback),
23477         (gst_gnomevfssrc_push_callbacks), (gst_gnomevfssrc_pop_callbacks),
23478         (gst_gnomevfssrc_get_icy_metadata), (gst_gnomevfssrc_create),
23479         (gst_gnomevfssrc_get_size):
23480           add/clean up debugging
23481         * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
23482           cleanups
23483
23484 2005-07-07  Andy Wingo  <wingo@pobox.com>
23485
23486         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Also fixate the
23487         framerate. Need to get a handle on when exactly this function is
23488         called, tho.
23489
23490         * sys/v4l/v4lsrc_calls.h:
23491         * sys/v4l/v4lsrc_calls.c: Remove sync-related stuff.
23492         (gst_v4lsrc_get_fps_list): Moved here from gstv4lsrc.c.
23493         (gst_v4lsrc_buffer_new): Totally derive from GstBuffer.
23494
23495         * sys/v4l/v4l_calls.h: Cast to V4lElement.
23496         * sys/v4l/v4l_calls.c: Header loc fixen, don't load mjpeg, all
23497         v4lelements are sources.
23498
23499         * sys/v4l/gstv4lxoverlay.h:
23500         * sys/v4l/gstv4lxoverlay.c:
23501         * sys/v4l/gstv4ltuner.h:
23502         * sys/v4l/gstv4ltuner.c: Header loc fixen.
23503         
23504         * sys/v4l/gstv4lsrc.h:
23505         * sys/v4l/gstv4lsrc.c: Crucial GPL update. Clean up a bit, port to
23506         PushSrc/BaseSrc. Removed most sync-related properties, videorate
23507         or something should handle that. Made a live source.
23508
23509         * sys/v4l/gstv4lelement.h:
23510         * sys/v4l/gstv4lelement.c: Derive from GstPushSrc. No more
23511         signals. Some cleanups.
23512
23513         * sys/v4l/gstv4lcolorbalance.h: Interface header update.
23514
23515         * sys/v4l/gstv4l.c: Don't register v4lelement, or the jpeg/mjpeg
23516         stuff.
23517
23518         * sys/v4l/Makefile.am: Build everything except the jpeg/mjpeg
23519         stuff.
23520
23521         * sys/Makefile.am (SUBDIRS): Hit the V4L crack pipe.
23522
23523 2005-07-07  Wim Taymans  <wim@fluendo.com>
23524
23525         * ext/theora/theoradec.c: (theora_get_query_types),
23526         (theora_dec_src_getcaps), (theora_dec_push):
23527         * ext/vorbis/vorbisdec.c: (vorbis_get_query_types):
23528         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types):
23529         Remove deprecated/unused query types.
23530
23531 2005-07-06  Wim Taymans  <wim@fluendo.com>
23532
23533         * ext/alsa/Makefile.am:
23534         * ext/alsa/gstalsaplugin.c: (plugin_init):
23535         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
23536         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
23537         (gst_alsasrc_dispose), (gst_alsasrc_base_init),
23538         (gst_alsasrc_class_init), (gst_alsasrc_init),
23539         (gst_alsasrc_getcaps), (set_hwparams), (set_swparams),
23540         (alsasrc_parse_spec), (gst_alsasrc_open), (gst_alsasrc_close),
23541         (xrun_recovery), (gst_alsasrc_read), (gst_alsasrc_delay),
23542         (gst_alsasrc_reset):
23543         * ext/alsa/gstalsasrc.h:
23544         * gst-libs/gst/audio/Makefile.am:
23545         * gst-libs/gst/audio/gstaudiosink.c:
23546         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
23547         (gst_audioringbuffer_start):
23548         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
23549         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
23550         (gst_audioringbuffer_init), (gst_audioringbuffer_dispose),
23551         (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
23552         (gst_audioringbuffer_release), (gst_audioringbuffer_start),
23553         (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
23554         (gst_audiosrc_base_init), (gst_audiosrc_class_init),
23555         (gst_audiosrc_init), (gst_audiosrc_create_ringbuffer):
23556         * gst-libs/gst/audio/gstaudiosrc.h:
23557         * gst-libs/gst/audio/gstbaseaudiosink.c:
23558         (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
23559         (gst_baseaudiosink_get_time), (gst_baseaudiosink_setcaps),
23560         (gst_baseaudiosink_preroll), (gst_baseaudiosink_render):
23561         * gst-libs/gst/audio/gstbaseaudiosrc.c:
23562         (gst_baseaudiosrc_base_init), (gst_baseaudiosrc_class_init),
23563         (gst_baseaudiosrc_init), (gst_baseaudiosrc_get_clock),
23564         (gst_baseaudiosrc_get_time), (gst_baseaudiosrc_set_property),
23565         (gst_baseaudiosrc_get_property), (gst_baseaudiosrc_fixate),
23566         (gst_baseaudiosrc_setcaps), (gst_baseaudiosrc_get_times),
23567         (gst_baseaudiosrc_event), (gst_baseaudiosrc_create),
23568         (gst_baseaudiosrc_create_ringbuffer), (gst_baseaudiosrc_callback),
23569         (gst_baseaudiosrc_change_state):
23570         * gst-libs/gst/audio/gstbaseaudiosrc.h:
23571         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
23572         (gst_ringbuffer_debug_spec_caps), (gst_ringbuffer_debug_spec_buff),
23573         (gst_ringbuffer_parse_caps), (gst_ringbuffer_start),
23574         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
23575         (gst_ringbuffer_samples_done), (gst_ringbuffer_set_sample),
23576         (wait_segment), (gst_ringbuffer_commit), (gst_ringbuffer_read),
23577         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance):
23578         * gst-libs/gst/audio/gstringbuffer.h:
23579         Added audiosource base classes.
23580         Ported alsasrc, still very basic.
23581
23582 2005-07-06  Wim Taymans  <wim@fluendo.com>
23583
23584         * ext/theora/theoradec.c: (theora_dec_src_getcaps),
23585         (theora_dec_push), (theora_handle_data_packet):
23586         Prepare for better timestamp fix later.
23587
23588         * gst/audioconvert/gstaudioconvert.c:
23589         List most accurate caps first
23590
23591         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_loop):
23592         Use proper pad task function.
23593
23594         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
23595         (gst_xvimagesink_show_frame):
23596         Fix deadlock when alloc failed.
23597
23598 2005-07-05  Andy Wingo  <wingo@pobox.com>
23599
23600         * ext/gnomevfs/gstgnomevfssrc.c:
23601         * gst/sine/gstsinesrc.c:
23602         * gst/tcp/gsttcpserversrc.c:
23603         * gst/tcp/gsttcpclientsrc.c: s/BASESRC/BASE_SRC/.
23604
23605         * sys/v4l/: Port from 0.8.
23606
23607         * Many files: Null if we got it....
23608
23609 2005-07-05  Andy Wingo  <wingo@pobox.com>
23610
23611         * gst/tcp/gsttcpserversink.c (gst_tcpserversink_handle_server_read): 
23612         * gst/tcp/gstmultifdsink.c (gst_multifdsink_client_queue_data):
23613         Signedness fixes.
23614
23615 2005-07-05  Wim Taymans  <wim@fluendo.com>
23616
23617         * configure.ac:
23618         * gst/tcp/Makefile.am:
23619         * gst/tcp/README:
23620         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
23621         (gst_multifdsink_base_init), (gst_multifdsink_class_init),
23622         (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
23623         (is_sync_frame), (gst_multifdsink_handle_client_write),
23624         (gst_multifdsink_render), (gst_multifdsink_start),
23625         (gst_multifdsink_stop), (gst_multifdsink_change_state):
23626         * gst/tcp/gstmultifdsink.h:
23627         * gst/tcp/gsttcp.c: (gst_tcp_host_to_ip),
23628         (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps),
23629         (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
23630         * gst/tcp/gsttcp.h:
23631         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
23632         (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
23633         (gst_tcpclientsink_render), (gst_tcpclientsink_start),
23634         (gst_tcpclientsink_stop), (gst_tcpclientsink_change_state):
23635         * gst/tcp/gsttcpclientsink.h:
23636         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
23637         (gst_tcpclientsrc_base_init), (gst_tcpclientsrc_class_init),
23638         (gst_tcpclientsrc_init), (gst_tcpclientsrc_getcaps),
23639         (gst_tcpclientsrc_create), (gst_tcpclientsrc_start),
23640         (gst_tcpclientsrc_stop), (gst_tcpclientsrc_unlock):
23641         * gst/tcp/gsttcpclientsrc.h:
23642         * gst/tcp/gsttcpplugin.c: (plugin_init):
23643         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init):
23644         * gst/tcp/gsttcpserversink.h:
23645         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
23646         (gst_tcpserversrc_base_init), (gst_tcpserversrc_class_init),
23647         (gst_tcpserversrc_init), (gst_tcpserversrc_finalize),
23648         (gst_tcpserversrc_create), (gst_tcpserversrc_start),
23649         (gst_tcpserversrc_stop):
23650         * gst/tcp/gsttcpserversrc.h:
23651         * gst/tcp/gsttcpsink.c:
23652         * gst/tcp/gsttcpsink.h:
23653         * gst/tcp/gsttcpsrc.c:
23654         * gst/tcp/gsttcpsrc.h:
23655         Ported tcp plugins to 0.9. 
23656         
23657
23658 2005-07-05  Andy Wingo  <wingo@pobox.com>
23659
23660         * gst/playback/gstplaybasebin.c (fill_buffer):
23661         message_new_application fixen.
23662
23663         * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_caps):
23664         Style fix.
23665
23666 2005-07-04  Wim Taymans  <wim@fluendo.com>
23667
23668         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
23669         Set caps on output buffer.
23670
23671 2005-07-04  Andy Wingo  <wingo@pobox.com>
23672
23673         * ext/gnomevfs/gstgnomevfssrc.c
23674         (gst_gnomevfssrc_received_headers_callback) 
23675         (audiocast_thread_kill, audiocast_thread_run): FORTIFY fixen,
23676         hopefully.
23677
23678         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_fixate):
23679         No refcount leakage.
23680
23681         * configure.ac: Enable -Werror.
23682         
23683         * ext/theora/theoradec.c (theora_dec_src_getcaps):
23684         * gst/audioconvert/bufferframesconvert.c
23685         (buffer_frames_convert_fixate):
23686         * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int)
23687         (gst_audio_convert_fixate):
23688         * gst/sine/gstsinesrc.c (gst_sinesrc_src_fixate)
23689         (gst_sinesrc_create): Fixate func changes.
23690         
23691         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
23692         (gst_ximagesink_buffer_alloc): Unused var.
23693
23694 2005-07-01  Andy Wingo  <wingo@pobox.com>
23695
23696         * ext/theora/theoradec.c (theora_dec_src_getcaps): Implement a
23697         getcaps to do explicit caps. Needs to be done in all decoders,
23698         possibly via a base class.
23699
23700         * configure.ac (GST_PLUGIN_LDFLAGS): Add videoscale.
23701
23702         * ext/ogg/gstoggdemux.c (gst_ogg_pad_typefind): No need to set
23703         caps on the sink pad, just rely on the pad template. Also, setting
23704         ANY caps on a pad is not valid because the caps are not fixed.
23705
23706         * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc): Set the
23707         caps on the buffer, and get the width from the desired_caps if
23708         they're set.
23709         (gst_ximagesink_renegotiate_size): Implement via setting the
23710         desired_caps on the ximagesink.
23711         (gst_ximagesink_setcaps): Only reset the width of the player if it
23712         wasn't already set. Not sure if this is right.
23713         (gst_ximagesink_show_frame): Memcpy only for normal buffers.
23714
23715         * sys/ximage/ximagesink.h (desired_caps): New field, is the caps
23716         that the user wants. NULL unless the window has been resized.
23717
23718         * gst/volume/gstvolume.c (volume_transform): Adapt to
23719         basetransform refcount changes.
23720         
23721 2005-07-01  Andy Wingo  <wingo@pobox.com>
23722
23723         * gst/videoscale/gstvideoscale.c:
23724         * gst/videoscale/gstvideoscale.h: Clean up, port to 0.9. Derives
23725         from BaseTransform, implements a transform_caps. Removed dead code
23726         including some PAR stuff that was never reached -- should probably
23727         be added back somehow.
23728
23729 2005-07-01  Andy Wingo  <wingo@pobox.com>
23730
23731         * gst/videoscale: Merge David's work from 0.8 branch. Changes to
23732         come later.
23733
23734 2005-06-30  Thomas Vander Stichele  <thomas at apestaart dot org>
23735
23736         * configure.ac:
23737         * docs/libs/Makefile.am:
23738         * docs/libs/gst-plugins-libs.types:
23739         * ext/alsa/Makefile.am:
23740         * ext/alsa/gstalsamixer.h:
23741         * ext/alsa/gstalsamixeroptions.h:
23742         * ext/alsa/gstalsamixertrack.h:
23743         * gst-libs/gst/Makefile.am:
23744         * gst-libs/gst/colorbalance/.cvsignore:
23745         * gst-libs/gst/colorbalance/Makefile.am:
23746         * gst-libs/gst/colorbalance/colorbalance-marshal.list:
23747         * gst-libs/gst/colorbalance/colorbalance.c:
23748         * gst-libs/gst/colorbalance/colorbalance.h:
23749         * gst-libs/gst/colorbalance/colorbalance.vcproj:
23750         * gst-libs/gst/colorbalance/colorbalancechannel.c:
23751         * gst-libs/gst/colorbalance/colorbalancechannel.h:
23752         * gst-libs/gst/interfaces/Makefile.am:
23753         * gst-libs/gst/interfaces/colorbalance.c:
23754         (gst_color_balance_class_init):
23755         * gst-libs/gst/interfaces/colorbalance.h:
23756         * gst-libs/gst/interfaces/interfaces-marshal.list:
23757         * gst-libs/gst/interfaces/mixer.c: (gst_mixer_class_init):
23758         * gst-libs/gst/interfaces/mixer.h:
23759         * gst-libs/gst/interfaces/mixeroptions.h:
23760         * gst-libs/gst/interfaces/navigation.c:
23761         * gst-libs/gst/interfaces/tuner.c: (gst_tuner_class_init):
23762         * gst-libs/gst/interfaces/tuner.h:
23763         * gst/volume/Makefile.am:
23764         * gst/volume/gstvolume.c:
23765         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
23766         * sys/ximage/Makefile.am:
23767         * sys/ximage/ximagesink.c:
23768         * sys/xvimage/Makefile.am:
23769         * sys/xvimage/xvimagesink.c:
23770           fold in all interfaces into an interfaces dir, preserving CVS
23771           history
23772
23773 2005-06-30  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23774
23775         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
23776           Fix build after riff changes.
23777
23778 2005-06-30  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23779
23780         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
23781         (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
23782         (gst_riff_create_video_template_caps),
23783         (gst_riff_create_audio_template_caps),
23784         (gst_riff_create_iavs_template_caps):
23785         * gst-libs/gst/riff/riff-media.h:
23786         * gst-libs/gst/riff/riff-read.h:
23787         * gst-libs/gst/riff/riff.c: (gst_riff_init):
23788           Add gst_riff_init() to initialize the debug category, instead
23789           of plugin_init(). Port riff-media.[ch] from -THREADED to HEAD.
23790
23791 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23792
23793         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init):
23794           Oops, I shouldn't apply hacks.
23795
23796 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23797
23798         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init):
23799           Remove pad_loop function which doesn't work.
23800
23801 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23802
23803         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain):
23804           Send EOS when deactivating.
23805         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
23806         (check_queue), (queue_threshold_reached), (queue_out_of_data),
23807         (gen_preroll_element), (probe_triggered), (mute_stream),
23808         (silence_stream), (new_decoded_pad), (setup_substreams),
23809         (set_active_source):
23810         * gst/playback/gstplaybin.c: (gst_play_bin_get_property),
23811         (remove_sinks), (add_sink):
23812         * gst/playback/gststreaminfo.c: (cb_probe), (gst_stream_info_new):
23813           Change for new probe API.
23814
23815 2005-06-29  Wim Taymans  <wim@fluendo.com>
23816
23817         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_init):
23818         * gst-libs/gst/audio/gstbaseaudiosink.c:
23819         (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
23820         (gst_baseaudiosink_change_state):
23821         * gst-libs/gst/audio/gstbaseaudiosink.h:
23822         * gst-libs/gst/audio/gstringbuffer.c:
23823         (gst_ringbuffer_set_callback):
23824         Fix compilation error.
23825         Ringbuffer starts out as not running.
23826         Free our clock in dispose.
23827         When releasing the ringbuffer we need to renegotiate so
23828         clear the pad caps.
23829
23830 2005-06-29  Thomas Vander Stichele  <thomas at apestaart dot org>
23831
23832         * autogen.sh:
23833         * configure.ac:
23834         * docs/Makefile.am:
23835         * docs/libs/Makefile.am:
23836         * docs/libs/gst-plugins-libs-docs.sgml:
23837         * docs/libs/gst-plugins-libs-sections.txt:
23838         * docs/libs/gst-plugins-libs.types:
23839         * docs/libs/tmpl/gstaudio.sgml:
23840         * docs/libs/tmpl/gstcolorbalance.sgml:
23841         * docs/libs/tmpl/gstringbuffer.sgml:
23842         * gst-libs/gst/audio/gstringbuffer.c:
23843         (gst_ringbuffer_set_callback):
23844           reinstate gtk-doc docs for plugin libs
23845
23846 2005-06-28  Wim Taymans  <wim@fluendo.com>
23847
23848         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
23849         (gst_ogg_demux_init):
23850         Removed pad loop function.
23851
23852 2005-06-28  Wim Taymans  <wim@fluendo.com>
23853
23854         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
23855         If we're building a chain we are not in an error case
23856         when we queue a buffer.
23857
23858 2005-06-28  Andy Wingo  <wingo@pobox.com>
23859
23860         * *.c: Don't cast to GstObject before reffing/unreffing.
23861
23862 2005-06-27  Andy Wingo  <wingo@pobox.com>
23863
23864         * gst/videotestsrc/gstvideotestsrc.c
23865         (gst_videotestsrc_activate_push): Activation API changes.
23866
23867         * gst/playback/gstdecodebin.c (gst_decode_bin_change_state) 
23868         (gst_decode_bin_dispose): Free dynamics in READY->NULL, because
23869         they have refs on the decodebin.
23870
23871         * ext/ogg/gstoggdemux.c (gst_ogg_pad_class_init): Ref the right
23872         parent class.
23873         (gst_ogg_pad_typefind): Don't leak a pad ref.
23874         (gst_ogg_chain_new_stream): gst_object_unref, not g_object_unref.
23875         (gst_ogg_demux_sink_activate, gst_ogg_demux_sink_activate_push) 
23876         (gst_ogg_demux_sink_activate_pull): Changes for activation API.
23877
23878 2005-06-27  Edward Hervey  <edward@fluendo.com>
23879
23880         * ext/theora/theoradec.c: (theora_dec_change_state): 
23881         re-arranged call to parent's state change in order to avoid locks (or
23882         worse).
23883
23884 2005-06-26  Edward Hervey  <edward@fluendo.com>
23885
23886         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
23887         2nd argument of 'unknow-type' signal is a GstCaps and not a
23888         GstMiniObject
23889
23890 2005-06-25  Jan Schmidt  <thaytan@mad.scientist.com>
23891         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_acquire):
23892           Set the worker thread's running flag to TRUE before starting the
23893           thread.
23894         * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
23895           Catch a failure to add typefind to the bin.
23896
23897 2005-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
23898
23899         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
23900         (gst_sinesrc_init), (gst_sinesrc_create),
23901         (gst_sinesrc_set_property), (gst_sinesrc_get_property),
23902         (gst_sinesrc_start):
23903         * gst/sine/gstsinesrc.h:
23904           add num-buffers and timestamp-offset properties
23905         * gst/videotestsrc/gstvideotestsrc.c:
23906         (gst_videotestsrc_class_init), (gst_videotestsrc_set_property),
23907         (gst_videotestsrc_get_property):
23908           add timestamp-offset property
23909
23910 2005-06-23  Christian Schaller  <uraeus@gnome.org>
23911
23912         * configure.ac: add videorate
23913         * gst-plugins-base.spec.in: add videorate
23914
23915 2005-06-23  Wim Taymans  <wim@fluendo.com>
23916
23917         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
23918         (gst_videorate_getcaps), (gst_videorate_setcaps),
23919         (gst_videorate_event), (gst_videorate_chain):
23920         Fixed videorate, fixating an already fixated caps is not
23921         an error.
23922
23923 2005-06-23  Wim Taymans  <wim@fluendo.com>
23924
23925         * ext/ogg/README:
23926         * ext/ogg/gstoggmux.c: (gst_ogg_mux_set_header_on_caps):
23927         Buffer on caps is not boxed anymore.
23928
23929 2005-06-22  Wim Taymans  <wim@fluendo.com>
23930
23931         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
23932         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
23933         Set buffers on caps as miniobjects and not as boxed.
23934
23935 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
23936
23937         * configure.ac:
23938           back to HEAD
23939
23940 === release 0.9.1 ===
23941
23942 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
23943
23944         * .cvsignore:
23945         * NEWS:
23946         * README:
23947         * RELEASE:
23948         * configure.ac:
23949         * po/af.po:
23950         * po/az.po:
23951         * po/cs.po:
23952         * po/en_GB.po:
23953         * po/hu.po:
23954         * po/it.po:
23955         * po/nb.po:
23956         * po/nl.po:
23957         * po/or.po:
23958         * po/sq.po:
23959         * po/sr.po:
23960         * po/sv.po:
23961         * po/uk.po:
23962         * po/vi.po:
23963           updates for release
23964
23965 2005-06-09  Andy Wingo  <wingo@pobox.com>
23966
23967         * gst-libs/gst/net/Makefile.am (lib_LTLIBRARIES): Install gstnet.
23968         
23969 2005-06-09  Andy Wingo  <wingo@pobox.com>
23970
23971         * configure.ac:
23972         * gst-libs/gst/Makefile.am:
23973         * gst-libs/gst/net/Makefile.am:
23974         Add gstnet to build.
23975
23976 2005-06-09  Andy Wingo  <wingo@pobox.com>
23977
23978         * gst-libs/gst/gconf/gconf.c:
23979         * gst/playback/test.c:
23980         * gst/playback/gstplaybin.c (gen_video_element): Ghost pad API
23981         fixes.
23982
23983         * gst/audioconvert/gstaudioconvert.c: RPAD fixes.
23984
23985         * ext/theora/theoraenc.c (theora_enc_chain): 
23986         * ext/theora/theoradec.c (theora_handle_data_packet): GCC4 fixes.
23987
23988         * ext/ogg/gstoggdemux.c (GstOggPad): Derive from GstPad, not
23989         RealPad.
23990
23991 2005-06-02  Wim Taymans  <wim@fluendo.com>
23992
23993         * gst-libs/gst/net/Makefile.am:
23994         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
23995         * pkgconfig/gstreamer-libs.pc.in:
23996         Added net stuff, version net lib.
23997
23998 2005-06-02  Wim Taymans  <wim@fluendo.com>
23999
24000         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
24001         (query_rates), (query_positions_elems), (query_positions_pads),
24002         (do_seek):
24003         Updated seek example.
24004
24005 2005-06-02  Andy Wingo  <wingo@pobox.com>
24006
24007         * pkgconfig/gstreamer-libs-uninstalled.pc.in (prefix):
24008         * pkgconfig/gstreamer-libs.pc.in (prefix): Add gst/tag to the -L
24009         list.
24010
24011         * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Don't
24012         remove the typefind, the bin dispose will do it for us. When it's
24013         removed and unreffed, the signal handler will be disconnected,
24014         too.
24015         (unlinked): It's too difficult to disconnect from unlinked
24016         handlers, as they are on pads not elements. Just punt if the pads
24017         aren't grandkids of the bin.
24018
24019 2005-06-02  Wim Taymans  <wim@fluendo.com>
24020
24021         * ext/ogg/README:
24022         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
24023         (gst_ogg_demux_activate_chain), (gst_ogg_demux_clear_chains):
24024         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
24025         * ext/theora/theoradec.c: (theora_dec_src_query),
24026         (theora_handle_data_packet):
24027         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
24028         (theora_enc_chain):
24029         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
24030         (vorbis_handle_data_packet):
24031         * gst/audioconvert/bufferframesconvert.c:
24032         (buffer_frames_convert_chain):
24033         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
24034         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
24035         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
24036         (gst_ffmpegcsp_chain):
24037         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
24038         (gst_videorate_getcaps), (gst_videorate_setcaps),
24039         (gst_videorate_event), (gst_videorate_chain):
24040         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_activate),
24041         (gst_videotestsrc_src_query), (gst_videotestsrc_loop):
24042         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
24043         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
24044         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
24045         (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
24046         (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
24047         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
24048         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
24049         Cleanups and buffer alloc.
24050
24051 2005-05-31  Wim Taymans  <wim@fluendo.com>
24052
24053         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_delay):
24054         Don't try to call the delay method when the device is not
24055         opened.
24056
24057 2005-05-31  Wim Taymans  <wim@fluendo.com>
24058
24059         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_open):
24060         Get actual segment size and buffer size after opening
24061         the device.
24062
24063 2005-05-30  Wim Taymans  <wim@fluendo.com>
24064
24065         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
24066         (gst_ogg_demux_perform_seek), (gst_ogg_demux_clear_chains):
24067         Also FLUSH upstream, makes the loop function exit faster.
24068         
24069         * ext/theora/theoradec.c: (theora_dec_src_query):
24070         Some more debug info in the query.
24071         
24072         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
24073         (gst_ximagesink_setcaps):
24074         Release lock on par error, better error reporting.
24075
24076 2005-05-26  Wim Taymans  <wim@fluendo.com>
24077
24078         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
24079         (gst_ogg_demux_activate_chain), (gst_ogg_demux_chain),
24080         (gst_ogg_demux_clear_chains), (gst_ogg_demux_change_state):
24081         Clear chains in READY
24082         Queue packets until the chain is activated.
24083
24084 2005-05-25  Wim Taymans  <wim@fluendo.com>
24085
24086         * gst-libs/gst/audio/gstaudiosink.c:
24087         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
24088         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
24089         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
24090         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
24091         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
24092         (gst_audiosink_create_ringbuffer):
24093         * gst-libs/gst/audio/gstbaseaudiosink.c:
24094         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
24095         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
24096         (gst_baseaudiosink_set_property), (build_linear_format),
24097         (debug_spec_caps), (debug_spec_buffer),
24098         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
24099         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
24100         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
24101         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
24102         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
24103         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
24104         (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
24105         (gst_ringbuffer_play), (gst_ringbuffer_pause),
24106         (gst_ringbuffer_stop), (gst_ringbuffer_delay),
24107         (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
24108         (wait_segment), (gst_ringbuffer_commit),
24109         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
24110         (gst_ringbuffer_clear):
24111         Various small cleanups.
24112
24113         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
24114         (gst_audio_convert_change_state):
24115         * gst/subparse/gstsubparse.c: (gst_subparse_chain):
24116         No need to take the locks anymore.
24117
24118 2005-05-25  Wim Taymans  <wim@fluendo.com>
24119
24120         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
24121         (gst_decode_bin_dispose), (try_to_link_1), (get_our_ghost_pad),
24122         (remove_element_chain), (no_more_pads), (unlinked), (close_link),
24123         (type_found):
24124         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_dispose),
24125         (group_destroy), (group_commit), (queue_overrun),
24126         (gen_preroll_element), (no_more_pads), (preroll_unlinked),
24127         (mute_stream), (new_decoded_pad), (setup_substreams),
24128         (setup_source), (mute_group_type), (set_active_source),
24129         (gst_play_base_bin_change_state):
24130         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
24131         (gen_video_element), (gen_text_element), (gen_audio_element),
24132         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks):
24133         * gst/playback/gststreaminfo.c: (gst_stream_info_new),
24134         (gst_stream_info_dispose), (gst_stream_info_set_mute):
24135         * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
24136         Some playbin cleanups mostly refcounting sloppyness.
24137
24138 2005-05-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24139
24140         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
24141           Work with streaming input.
24142
24143 2005-05-25  Wim Taymans  <wim@fluendo.com>
24144
24145         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
24146         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
24147         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
24148         (gst_ffmpegcsp_chain), (gst_ffmpegcsp_change_state):
24149         No need to take the STREAM lock anymore.
24150
24151 2005-05-25  Wim Taymans  <wim@fluendo.com>
24152
24153         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
24154         (gst_ogg_pad_typefind), (gst_ogg_pad_submit_packet),
24155         (gst_ogg_chain_new_stream), (gst_ogg_demux_perform_seek),
24156         (gst_ogg_demux_chain), (gst_ogg_demux_loop),
24157         (gst_ogg_demux_sink_activate):
24158         * ext/theora/theoradec.c: (theora_dec_src_event),
24159         (theora_handle_comment_packet), (theora_dec_chain),
24160         (theora_dec_change_state):
24161         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
24162         (vorbis_handle_data_packet), (vorbis_dec_chain),
24163         (vorbis_dec_change_state):
24164         Remove STREAM locks as they are taken in core now.
24165         Never set bogus granulepos on vorbis/theora.
24166         Fix leaks in theoradec tag parsing.
24167
24168 2005-05-25  Wim Taymans  <wim@fluendo.com>
24169
24170         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
24171         Fix memleaks, GST_BUFFER_DATA() is not freed.
24172
24173 2005-05-25  Wim Taymans  <wim@fluendo.com>
24174
24175         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
24176         Open non-blocking, set to blocking mode afterwards to avoid
24177         lockups when audio device is busy.
24178
24179 2005-05-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24180
24181         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_clear):
24182           This can't be good.
24183
24184 2005-05-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24185
24186         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
24187         (gst_audio_convert_chain), (gst_audio_convert_link_src),
24188         (gst_audio_convert_setcaps):
24189           Implement instant setup switching.
24190
24191 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24192
24193         * gst/playback/gstplaybasebin.c: (probe_triggered):
24194           Fix missing unlock.
24195         * gst/playback/gstplaybin.c: (add_sink):
24196           First add, then link (otherwise pad link fails).
24197
24198 2005-05-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
24199
24200         * examples/Makefile.am:
24201         fix buildbot (make distcheck)
24202
24203 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24204
24205         * gst/playback/gstplaybin.c: (gen_vis_element):
24206           Remove some wrong code. Doesn't work yet.
24207
24208 2005-05-19  Wim Taymans  <wim@fluendo.com>
24209
24210         * gst-libs/gst/net/Makefile.am:
24211         * gst-libs/gst/net/README:
24212         * gst-libs/gst/net/gstnetbuffer.c: (gst_netbuffer_get_type),
24213         (gst_netbuffer_class_init), (gst_netbuffer_init),
24214         (gst_netbuffer_finalize), (gst_netbuffer_copy),
24215         (gst_netbuffer_new), (gst_netaddress_set_ip4_address),
24216         (gst_netaddress_set_ip6_address), (gst_netaddress_get_net_type),
24217         (gst_netaddress_get_ip4_address), (gst_netaddress_get_ip6_address):
24218         * gst-libs/gst/net/gstnetbuffer.h:
24219         Added buffer subclass to store extra to/from addresses for
24220         network sources/sinks.
24221
24222 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24223
24224         * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
24225           Don't lock an unassigned variable.
24226
24227 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24228
24229         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
24230           Increase buffer for video, decrease buffer for other media types.
24231         * gst/playback/gstplaybin.c: (gen_video_element),
24232         (gen_audio_element):
24233           Change names for debugging purposes.
24234
24235 2005-05-18  Wim Taymans  <wim@fluendo.com>
24236
24237         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
24238         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
24239         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
24240         (gst_ffmpegcsp_chain):
24241         Enable buffer alloc passthrough if the source and dest
24242         formats are the same.
24243
24244 2005-05-17  Wim Taymans  <wim@fluendo.com>
24245
24246         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
24247         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
24248         (gst_ogg_demux_chain_unlocked):
24249         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
24250         (gst_audio_convert_caps_remove_format_info),
24251         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
24252         (gst_audio_convert_fixate), (gst_audio_convert_change_state):
24253         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
24254         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
24255         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_init),
24256         (gst_ffmpegcsp_bufferalloc), (gst_ffmpegcsp_chain),
24257         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
24258         (gst_ffmpegcsp_get_property):
24259         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
24260         (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
24261         (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
24262         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
24263         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_imagepool_clear),
24264         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
24265         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_free),
24266         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id):
24267         Leak fixes in oggdemux.
24268         Some cleanups in audioconvert.
24269         Make passthrough work along with buffer_alloc etc.
24270         Make buffer_alloc and buffer recycling actually work in
24271         xvimagesink.
24272
24273 2005-05-17  Thomas Vander Stichele  <thomas at apestaart dot org>
24274
24275         * gst/subparse/gstsubparse.c: (parse_subrip), (parse_mpsub):
24276           make the compiler happy
24277
24278 2005-05-17  Wim Taymans  <wim@fluendo.com>
24279
24280         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
24281         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
24282         (gst_xvimage_buffer_init), (gst_xvimage_buffer_class_init),
24283         (gst_xvimage_buffer_get_type), (gst_xvimagesink_check_xshm_calls),
24284         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
24285         (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_setcaps),
24286         (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
24287         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
24288         (gst_xvimagesink_set_xwindow_id):
24289         * sys/xvimage/xvimagesink.h:
24290         Port xvimagesink to new MiniObject.
24291
24292 2005-05-17  Wim Taymans  <wim@fluendo.com>
24293
24294         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
24295         (gst_audiofilter_chain):
24296         * gst-libs/gst/audio/gstaudiosink.c:
24297         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
24298         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
24299         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
24300         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
24301         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
24302         (gst_audiosink_create_ringbuffer):
24303         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
24304         (gst_audio_convert_caps_remove_format_info),
24305         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
24306         (gst_audio_convert_fixate), (gst_audio_convert_channels):
24307         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
24308         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
24309         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
24310         Fix passthrough in ffmpegcolorspace.
24311         Fix memset in audiosink on wrong memory.
24312
24313 2005-05-16  David Schleef  <ds@schleef.org>
24314
24315         * gst/playback/gststreaminfo.c: (cb_probe): Port from GstData
24316         to GstMiniObject.
24317
24318 2005-05-16  David Schleef  <ds@schleef.org>
24319
24320         Port from GstData to GstMiniObject.
24321         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
24322         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
24323         (gst_ogg_mux_queue_pads), (gst_ogg_mux_set_header_on_caps),
24324         (gst_ogg_mux_collected):
24325         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
24326         * ext/theora/theoradec.c: (theora_handle_comment_packet),
24327         (theora_handle_data_packet):
24328         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
24329         (theora_set_header_on_caps), (theora_enc_chain):
24330         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
24331         (vorbis_handle_comment_packet):
24332         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
24333         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
24334         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_chain):
24335         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_chain):
24336         * gst/audioconvert/gstaudioconvert.c:
24337         (gst_audio_convert_get_buffer):
24338         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
24339         * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
24340         (mute_stream), (silence_stream):
24341         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
24342         * gst/volume/gstvolume.c: (volume_transform):
24343         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
24344         (gst_ximage_buffer_init), (gst_ximage_buffer_class_init),
24345         (gst_ximage_buffer_get_type), (gst_ximagesink_check_xshm_calls),
24346         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
24347         (gst_ximagesink_ximage_put), (gst_ximagesink_imagepool_clear),
24348         (gst_ximagesink_show_frame), (gst_ximagesink_buffer_free),
24349         (gst_ximagesink_buffer_alloc):
24350         * sys/ximage/ximagesink.h:
24351
24352 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24353
24354         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
24355         (fill_buffer), (check_queue), (queue_threshold_reached),
24356         (queue_out_of_data):
24357         * gst/playback/gstplaybasebin.h:
24358           Post buffer-fullness on the bus.
24359
24360 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24361
24362         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
24363         (try_to_link_1):
24364         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
24365         (group_commit), (probe_triggered), (setup_source),
24366         (gst_play_base_bin_change_state):
24367         * gst/playback/gstplaybasebin.h:
24368         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
24369         (gst_play_bin_init), (remove_sinks), (setup_sinks),
24370         (gst_play_bin_change_state):
24371           Move setup_output_pads into a virtual function, remove
24372           group-switch (no longer needed) and redirect (handled by bus
24373           now) signals.
24374
24375 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24376
24377         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
24378         (gst_play_base_bin_class_init), (gst_play_base_bin_finalize),
24379         (get_active_group), (get_building_group), (group_destroy),
24380         (group_commit), (check_queue), (queue_overrun),
24381         (queue_threshold_reached), (queue_out_of_data),
24382         (gen_preroll_element), (remove_groups), (unknown_type),
24383         (add_element_stream), (no_more_pads), (probe_triggered),
24384         (preroll_unlinked), (new_decoded_pad), (setup_subtitle),
24385         (setup_substreams), (setup_source), (finish_source),
24386         (prepare_output), (muted_group_change_state),
24387         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
24388         (gst_play_base_bin_change_state):
24389         * gst/playback/gstplaybasebin.h:
24390         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
24391         (gst_play_bin_init), (gst_play_bin_set_property),
24392         (gen_video_element), (gen_text_element), (gen_audio_element),
24393         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
24394         (gst_play_bin_change_state):
24395         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
24396         (cb_probe), (gst_stream_info_new), (gst_stream_info_dispose),
24397         (stream_info_change_state), (gst_stream_info_set_mute),
24398         (gst_stream_info_get_property):
24399         * gst/playback/gststreaminfo.h:
24400         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
24401         (gst_stream_selector_get_linked_pad),
24402         (gst_stream_selector_getcaps),
24403         (gst_stream_selector_get_linked_pads),
24404         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
24405         * gst/playback/gststreamselector.h:
24406           Rough port of playbin. Needs some more work, but is mostly done,
24407           and uses a few locks in important places, which should make stuff
24408           like chain-switches clean. Still uses GST_STATE() in a few places,
24409           which isn't all that good an idea, subtitles/elements disabled
24410           because no elements to test with and thus probably broken, query
24411           and event handling moved to GstBin, internal thread removed
24412           alltogether because the pipeline does that for us now. Can play
24413           Ogg/Vorbis files. Haven't tested anything else yet.
24414
24415 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24416
24417         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
24418           Do no-more-pads (needed for autoplugging).
24419
24420 2005-05-10  Andy Wingo  <wingo@pobox.com>
24421
24422         * ext/vorbis/vorbisdec.c (vorbis_handle_comment_packet): Post a
24423         message to the bus with the tags. Still not sent downstream tho.
24424
24425         * gst/playback/gstdecodebin.c (remove_element_chain): Unref after
24426         get_parent.
24427         (remove_element_chain): Use OBJECT_PARENT instead of get_parent to
24428         avoid refcounting hassles.
24429
24430 2005-05-09  Andy Wingo  <wingo@pobox.com>
24431
24432         * gst/volume/Makefile.am:
24433         * gst/volume/demo.c
24434         * gst/volume/gstvolume.h
24435         * gst/volume/gstvolume.c: Port to 0.9 API, derive from
24436         basetransform. Probably need an audio filter base class.
24437
24438 2005-05-09  Wim Taymans  <wim@fluendo.com>
24439
24440         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_setcaps),
24441         (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
24442         (gst_vorbisenc_set_header_on_caps), (gst_vorbisenc_sink_event),
24443         (gst_vorbisenc_chain):
24444         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
24445         (gst_audio_convert_caps_remove_format_info),
24446         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
24447         (gst_audio_convert_fixate), (gst_audio_convert_channels):
24448         Make caps writable before writing to it.
24449         Fix negotiation in audioconvert some more.
24450
24451 2005-05-09  Wim Taymans  <wim@fluendo.com>
24452
24453         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
24454         (gst_videorate_getcaps), (gst_videorate_setcaps),
24455         (gst_videorate_event), (gst_videorate_chain):
24456         Better negotiation.
24457
24458 2005-05-09  Wim Taymans  <wim@fluendo.com>
24459
24460         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
24461         (gst_videorate_getcaps), (gst_videorate_setcaps),
24462         (gst_videorate_blank_data), (gst_videorate_init),
24463         (gst_videorate_event), (gst_videorate_chain),
24464         (gst_videorate_change_state):
24465         Port videorate, do a better job at negotiation while we're at
24466         it.
24467
24468 2005-05-09  Jan Schmidt  <thaytan@mad.scientist.com>
24469
24470         * configure.ac:
24471           Disable libvisual
24472
24473         * examples/Makefile.am:
24474         * gst-libs/gst/audio/Makefile.am:
24475         * gst-libs/gst/riff/Makefile.am:
24476         * gst-libs/gst/tag/Makefile.am:
24477         * gst-libs/gst/video/Makefile.am:
24478           Fixups for missing variables.
24479
24480 2005-05-09  Wim Taymans  <wim@fluendo.com>
24481
24482         * examples/seeking/seek.c: (make_theora_pipeline),
24483         (make_vorbis_theora_pipeline), (make_avi_msmpeg4v3_mp3_pipeline),
24484         (query_rates), (query_positions_elems), (query_positions_pads),
24485         (update_scale), (play_cb), (pause_cb), (stop_cb), (main):
24486         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
24487         (gst_ogg_pad_query_types), (gst_ogg_pad_src_query),
24488         (gst_ogg_pad_typefind), (gst_ogg_demux_init),
24489         (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
24490         (gst_ogg_demux_read_end_chain), (gst_ogg_demux_sink_activate):
24491         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
24492         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
24493         (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
24494         (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
24495         (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
24496         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
24497         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
24498         (gst_ogm_parse_sink_query), (gst_ogm_parse_chain):
24499         * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
24500         (theora_dec_src_convert), (theora_dec_sink_convert),
24501         (theora_dec_src_query), (theora_dec_sink_query),
24502         (theora_dec_src_event), (theora_dec_sink_event),
24503         (theora_handle_comment_packet), (theora_handle_type_packet),
24504         (theora_handle_header_packet), (theora_handle_data_packet),
24505         (theora_dec_chain):
24506         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
24507         (vorbis_dec_convert), (vorbis_dec_src_query),
24508         (vorbis_dec_sink_query), (vorbis_dec_src_event),
24509         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
24510         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
24511         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
24512         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
24513         (gst_vorbisenc_sink_query), (gst_vorbisenc_init),
24514         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain):
24515         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
24516         (gst_play_bin_query):
24517         * gst/playback/test3.c: (update_scale):
24518         * gst/sine/gstsinesrc.c: (gst_sinesrc_setcaps),
24519         (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start):
24520         * gst/subparse/gstsubparse.c: (gst_subparse_init):
24521         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
24522         (gst_videotestsrc_src_query):
24523         * gst/videotestsrc/videotestsrc.c: (paint_hline_I420),
24524         (paint_hline_Y41B), (paint_hline_Y42B), (paint_hline_Y800),
24525         (paint_hline_YUV9):
24526         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
24527         Port to new query API.
24528         Updated seek.
24529         Cleanups in x[v]imagesink
24530
24531 2005-05-09  Andy Wingo  <wingo@pobox.com>
24532
24533         * ext/alsa/gstalsasink.h:
24534         * ext/gnomevfs/gstgnomevfssrc.c:
24535         (gst_gnomevfssrc_get_icy_metadata):
24536         * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek)
24537         (gst_ogg_demux_read_chain, gst_ogg_demux_read_end_chain)
24538         * ext/theora/theoradec.c (theora_dec_src_query)
24539         (theora_dec_src_event, theora_dec_sink_event)
24540         (theora_handle_comment_packet, theora_handle_data_packet):
24541         * ext/theora/theoraenc.c (theora_enc_chain):
24542         * ext/vorbis/vorbisdec.c (vorbis_dec_src_event)
24543         (vorbis_dec_sink_event, vorbis_handle_comment_packet):
24544         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
24545         * gst/typefind/gsttypefindfunctions.c (mp3_type_find)
24546         (qt_type_find):
24547         * gst/videotestsrc/videotestsrc.c (paint_setup_I420)
24548         (paint_setup_YV12, paint_setup_YUY2, paint_setup_UYVY)
24549         (paint_setup_YVYU, paint_setup_IYU2, paint_setup_Y41B)
24550         (paint_setup_Y42B, paint_setup_Y800, paint_setup_IMC1)
24551         (paint_setup_IMC2, paint_setup_IMC3, paint_setup_IMC4)
24552         (paint_setup_YVU9, paint_setup_YUV9, paint_setup_xRGB8888)
24553         (paint_setup_xBGR8888, paint_setup_RGBx8888)
24554         (paint_setup_BGRx8888, paint_setup_RGB888, paint_setup_BGR888)
24555         (paint_setup_RGB565, paint_setup_xRGB1555):
24556         * gst/videotestsrc/videotestsrc.h:
24557         * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc):
24558         * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support)
24559         (gst_xvimagesink_setcaps, gst_xvimagesink_buffer_alloc):
24560         GCC4 fixes.
24561         
24562         * ext/ogg/gstoggdemux.c (gst_ogg_demux_find_chains): Use the new
24563         gst_pad_query_position. Fixes oggdemux.
24564
24565 2005-05-08  David Schleef  <ds@schleef.org>
24566
24567         * configure.ac: Require liboil.
24568         * gst/videotestsrc/gstvideotestsrc.c: Fix up liboil calls, add
24569         a few more.
24570         * gst/videotestsrc/videotestsrc.c:
24571         * gst/videotestsrc/videotestsrc.h:
24572
24573 2005-05-06  Wim Taymans  <wim@fluendo.com>
24574
24575         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
24576         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
24577         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
24578         Well, unreffing a buffer right before pushing it is asking
24579         for trouble..
24580
24581 2005-05-06  Christian Schaller  <uraeus@gnome.org>
24582
24583         * pkgconfig/gstreamer-libs.pc.in: add missing library calls
24584
24585 2005-05-06  Wim Taymans  <wim@fluendo.com>
24586
24587         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
24588         (gst_audio_convert_caps_remove_format_info),
24589         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
24590         (gst_audio_convert_fixate), (gst_audio_convert_channels):
24591         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
24592         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
24593         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
24594         * gst/sine/Makefile.am:
24595         * gst/sine/gstsinesrc.c: (gst_sinesrc_get_type),
24596         (gst_sinesrc_class_init), (gst_sinesrc_init),
24597         (gst_sinesrc_src_fixate), (gst_sinesrc_setcaps),
24598         (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start),
24599         (gst_sinesrc_update_freq):
24600         * gst/sine/gstsinesrc.h:
24601         * gst/tcp/gstmultifdsink.c:
24602         * sys/xvimage/xvimagesink.c:
24603         Fixed negotiation wrt _peer_get_caps()
24604         Some cleanups.
24605
24606
24607 2005-05-06  Wim Taymans  <wim@fluendo.com>
24608
24609         * gst-libs/gst/audio/gstaudiosink.c:
24610         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
24611         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
24612         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
24613         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
24614         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
24615         (gst_audiosink_create_ringbuffer):
24616         * gst-libs/gst/audio/gstbaseaudiosink.c:
24617         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
24618         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
24619         (gst_baseaudiosink_set_property), (build_linear_format),
24620         (debug_spec_caps), (debug_spec_buffer),
24621         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
24622         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
24623         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
24624         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
24625         * gst-libs/gst/audio/gstbaseaudiosink.h:
24626         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
24627         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
24628         (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
24629         (gst_ringbuffer_play), (gst_ringbuffer_pause),
24630         (gst_ringbuffer_stop), (gst_ringbuffer_delay),
24631         (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
24632         (wait_segment), (gst_ringbuffer_commit),
24633         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
24634         (gst_ringbuffer_clear):
24635         * gst-libs/gst/audio/gstringbuffer.h:
24636         Make the base audiosink return an error when there is no
24637         audiobuffer negotiated.
24638
24639 2005-05-06  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
24640
24641         * ext/Makefile.am:
24642         Disable cdparanoia until someone ports it!
24643
24644 2005-05-06  Wim Taymans  <wim@fluendo.com>
24645
24646         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
24647         (gst_ogg_demux_sink_activate):
24648         And revert after wingo's revert.. sigh..
24649
24650 2005-05-05  Andy Wingo  <wingo@pobox.com>
24651
24652         * gst/audiorate/gstaudiorate.c (gst_audiorate_class_init): Pacify
24653         GObject.
24654         * configure.ac: Return audiorate and subparse from the ghetto.
24655         Re-enable -Wall -Werror.
24656         * gst/subparse/gstsubparse.c:
24657         * gst/subparse/gstsubparse.h: Port to 0.9. Can operate loop-based
24658         or chain-based. Cleaned up a bit. Not tested.
24659         
24660 2005-05-05  Christian Schaller <christian@fluendo.com> 
24661
24662         * Makefile.am: remove stuff that is not building
24663         * configure.ac: remove stuff that is not building
24664         * examples/Makefile.am: remove stuff that is not building
24665         * ext/alsa/gstalsasink.c: add alsa/ before the alsalib.h file
24666         * ext/alsa/gstalsasink.h: add alsa/ before the alsalib.h file
24667         * sys/Makefile.am: remove stuff that is not building
24668         * testsuite/Makefile.am: remove stuff that is not building
24669
24670 2005-05-05  Andy Wingo  <wingo@pobox.com>
24671
24672         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
24673         * gst-libs/gst/tag/gstvorbistag.c:
24674         (gst_tag_list_from_vorbiscomment_buffer), (gst_vorbis_tag_chain):
24675         * gst/adder/gstadder.h:
24676         * gst/audioconvert/gstchannelmix.c:
24677         (gst_audio_convert_fill_one_other):
24678         * gst/audiorate/gstaudiorate.c: (gst_audiorate_setcaps),
24679         (gst_audiorate_init), (gst_audiorate_chain):
24680         * gst/playback/gstplaybasebin.c: (setup_source):
24681         * gst/playback/test3.c: (update_scale):
24682         Some GCC4 fixes
24683         
24684         * po/af.po:
24685         * po/az.po:
24686         * po/cs.po:
24687         * po/en_GB.po:
24688         * po/hu.po:
24689         * po/it.po:
24690         * po/nb.po:
24691         * po/nl.po:
24692         * po/or.po:
24693         * po/sq.po:
24694         * po/sr.po:
24695         * po/sv.po:
24696         * po/uk.po:
24697         * po/vi.po: Foo
24698
24699 2005-05-05  Wim Taymans  <wim@fluendo.com>
24700
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_change_state), (gst_audio_convert_channels):
24705         * gst/videotestsrc/gstvideotestsrc.c:
24706         (gst_videotestsrc_src_negotiate), (gst_videotestsrc_src_link),
24707         (gst_videotestsrc_parse_caps), (gst_videotestsrc_src_accept_caps),
24708         (gst_videotestsrc_setcaps), (gst_videotestsrc_activate),
24709         (gst_videotestsrc_init), (gst_videotestsrc_loop):
24710         Don't ignore _push() return values.
24711         Make sure no processing is done when shutting down.
24712         Videotestsrc pad activation fix.
24713
24714 2005-05-05  Wim Taymans  <wim@fluendo.com>
24715
24716         * gst/adder/Makefile.am:
24717         * gst/adder/gstadder.c: (gst_adder_setcaps),
24718         (gst_adder_class_init), (gst_adder_init),
24719         (gst_adder_request_new_pad), (gst_adder_collected),
24720         (gst_adder_change_state):
24721         * gst/adder/gstadder.h:
24722         Ported adder as an example of a mixer element using
24723         collect pads. Needs more negotiation work.
24724
24725 2005-05-05  Wim Taymans  <wim@fluendo.com>
24726
24727         * ext/theora/theoradec.c: (_inc_granulepos),
24728         (theora_dec_src_event), (theora_dec_sink_event),
24729         (theora_handle_comment_packet), (theora_handle_type_packet),
24730         (theora_handle_header_packet), (theora_handle_data_packet),
24731         (theora_dec_chain):
24732         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
24733         (gst_theora_enc_init), (theora_enc_sink_setcaps),
24734         (theora_push_buffer), (theora_push_packet),
24735         (theora_enc_sink_event), (theora_enc_chain),
24736         (theora_enc_change_state), (theora_enc_set_property),
24737         (theora_enc_get_property):
24738         Added stream lock to decoder so that we can serialize
24739         the discont event.
24740         More theoraenc porting, recover from errors, do clean
24741         shutdown.
24742
24743 2005-05-05  Wim Taymans  <wim@fluendo.com>
24744
24745         * ext/ogg/Makefile.am:
24746         * ext/ogg/README:
24747         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
24748         (gst_ogg_pad_submit_packet), (gst_ogg_demux_sink_activate),
24749         (gst_ogg_print):
24750         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
24751         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
24752         (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
24753         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
24754         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected),
24755         (gst_ogg_mux_change_state):
24756         Ported ogg muxer.
24757
24758 2005-05-05  Wim Taymans  <wim@fluendo.com>
24759
24760         * docs/design-audiosinks.txt:
24761         * gst-libs/gst/audio/TODO:
24762         * gst-libs/gst/audio/gstaudiosink.c:
24763         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
24764         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
24765         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
24766         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
24767         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
24768         (gst_audiosink_create_ringbuffer):
24769         * gst-libs/gst/audio/gstbaseaudiosink.c:
24770         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
24771         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
24772         (gst_baseaudiosink_set_property), (build_linear_format),
24773         (debug_spec_caps), (debug_spec_buffer),
24774         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
24775         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
24776         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
24777         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
24778         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
24779         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
24780         (gst_ringbuffer_release), (gst_ringbuffer_play),
24781         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
24782         (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
24783         (gst_ringbuffer_set_sample), (wait_segment),
24784         (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
24785         (gst_ringbuffer_advance), (gst_ringbuffer_clear):
24786         More work on the audiosink, mostly debugging and a race in
24787         shutdown.
24788
24789 2005-04-28  Wim Taymans  <wim@fluendo.com>
24790
24791         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
24792         (gst_ogg_demux_perform_seek), (gst_ogg_demux_sink_activate):
24793         * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
24794         (vorbis_dec_src_query), (vorbis_dec_src_event),
24795         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
24796         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
24797         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
24798         Don't crap out when seeking back to position 0.
24799
24800 2005-04-28  Wim Taymans  <wim@fluendo.com>
24801
24802         * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
24803         (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
24804         (make_vorbis_pipeline), (make_vorbis_theora_pipeline),
24805         (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
24806         (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline):
24807         Make audio sink configurable, use alsasink as default.
24808
24809 2005-04-28  Wim Taymans  <wim@fluendo.com>
24810
24811         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
24812         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
24813         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
24814         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain),
24815         (vorbis_dec_change_state):
24816         * ext/vorbis/vorbisdec.h:
24817         Refactor, use STREAM_LOCK.
24818
24819 2005-04-28  Wim Taymans  <wim@fluendo.com>
24820
24821         * ext/theora/theoradec.c: (_inc_granulepos),
24822         (theora_dec_sink_event), (theora_handle_comment_packet),
24823         (theora_handle_type_packet), (theora_handle_header_packet),
24824         (theora_handle_data_packet), (theora_dec_chain),
24825         (theora_dec_change_state):
24826         Refactor a bit, use STREAM_LOCK.
24827
24828 2005-04-28  Wim Taymans  <wim@fluendo.com>
24829
24830         * ext/alsa/Makefile.am:
24831         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_get_caps),
24832         (gst_alsa_fixate_to_mimetype), (gst_alsa_fixate_field_nearest_int),
24833         (gst_alsa_link), (gst_alsa_close_audio):
24834         * ext/alsa/gstalsaplugin.c: (plugin_init):
24835         * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
24836         (gst_alsasink_dispose), (gst_alsasink_base_init),
24837         (gst_alsasink_class_init), (gst_alsasink_init),
24838         (gst_alsasink_getcaps), (set_hwparams), (set_swparams),
24839         (alsasink_parse_spec), (gst_alsasink_open), (gst_alsasink_close),
24840         (xrun_recovery), (gst_alsasink_write), (gst_alsasink_delay),
24841         (gst_alsasink_reset):
24842         * ext/alsa/gstalsasink.h:
24843         Implement alsasink with simple open/write/close API. 
24844         Make alsa dir build by disabling compilation of code.
24845
24846 2005-04-28  Wim Taymans  <wim@fluendo.com>
24847
24848         * gst-libs/gst/audio/Makefile.am:
24849         * gst-libs/gst/audio/audio.h:
24850         * gst-libs/gst/audio/audioclock.c:
24851         * gst-libs/gst/audio/audioclock.h:
24852         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_get_type),
24853         (gst_audio_clock_class_init), (gst_audio_clock_init),
24854         (gst_audio_clock_new), (gst_audio_clock_get_internal_time):
24855         * gst-libs/gst/audio/gstaudioclock.h:
24856         * gst-libs/gst/audio/gstaudiosink.c:
24857         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
24858         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
24859         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
24860         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
24861         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
24862         (gst_audiosink_create_ringbuffer):
24863         * gst-libs/gst/audio/gstbaseaudiosink.c:
24864         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
24865         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
24866         (gst_baseaudiosink_set_property), (gst_baseaudiosink_get_property),
24867         (build_linear_format), (debug_spec_caps), (debug_spec_buffer),
24868         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
24869         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
24870         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
24871         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
24872         * gst-libs/gst/audio/gstbaseaudiosink.h:
24873         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
24874         (gst_ringbuffer_init), (gst_ringbuffer_finalize),
24875         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
24876         (gst_ringbuffer_release), (gst_ringbuffer_play),
24877         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
24878         (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
24879         (gst_ringbuffer_set_sample), (wait_segment),
24880         (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
24881         (gst_ringbuffer_advance), (gst_ringbuffer_clear):
24882         * gst-libs/gst/audio/gstringbuffer.h:
24883         Make ringbuffer faster and more simple by removing the locks
24884         in the playback thread.
24885         Add sample accurate playback based on buffer sample offsets.
24886         Make the baseaudiosink provide a clock.
24887         Parse caps in the base class.
24888         Correctly handle seeking, flushing and state changes.
24889
24890 2005-04-25  Thomas Vander Stichele  <thomas at apestaart dot org>
24891
24892         * configure.ac:
24893         * gst/audioconvert/Makefile.am:
24894         * gst/audioscale/Makefile.am:
24895           Fix part of the build.  Come on guys, autogen didn't even work :)
24896
24897 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24898
24899         * configure.ac:
24900         * gst-libs/gst/Makefile.am:
24901         * gst-libs/gst/media-info/.cvsignore:
24902         * gst-libs/gst/media-info/Makefile.am:
24903         * gst-libs/gst/media-info/README:
24904         * gst-libs/gst/media-info/media-info-priv.c:
24905         * gst-libs/gst/media-info/media-info-priv.h:
24906         * gst-libs/gst/media-info/media-info-test.c:
24907         * gst-libs/gst/media-info/media-info.c:
24908         * gst-libs/gst/media-info/media-info.h:
24909         * gst-libs/gst/media-info/media-info.vcproj:
24910         * pkgconfig/Makefile.am:
24911         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
24912         * pkgconfig/gstreamer-media-info.pc.in:
24913           Remove media-info, which is also successed by playbin (see Totem
24914           implementation).
24915
24916 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24917
24918         * configure.ac:
24919         * examples/Makefile.am:
24920         * examples/gstplay/.cvsignore:
24921         * examples/gstplay/Makefile.am:
24922         * examples/gstplay/player.c:
24923         * gst-libs/gst/Makefile.am:
24924         * gst-libs/gst/play/.cvsignore:
24925         * gst-libs/gst/play/Makefile.am:
24926         * gst-libs/gst/play/play.c:
24927         * gst-libs/gst/play/play.h:
24928         * gst-libs/gst/play/play.vcproj:
24929         * pkgconfig/Makefile.am:
24930         * pkgconfig/gstreamer-play-uninstalled.pc.in:
24931         * pkgconfig/gstreamer-play.pc.in:
24932           Remove libgstplay, playbin is now the official successor.
24933
24934 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24935
24936         * configure.ac:
24937         * gst-libs/gst/Makefile.am:
24938         * gst-libs/gst/xwindowlistener/Makefile.am:
24939         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
24940         * gst-libs/gst/xwindowlistener/xwindowlistener.h:
24941           Remove deprecated xwindowlistener (I've moved xwindowlistening
24942           in the v4l/v4l2 plugins over to serverside).
24943
24944 2005-04-25  David Schleef  <ds@schleef.org>
24945
24946         * examples/dynparams/Makefile.am: Move demo-dparams from gst/sine
24947         to examples/dynparams.  Examples do not belong interspersed with
24948         source code.
24949         * examples/dynparams/demo-dparams.c:
24950         * gst/sine/Makefile.am:
24951         * gst/sine/demo-dparams.c:
24952
24953 2005-04-25  David Schleef  <ds@schleef.org>
24954
24955         Don't use GST_PLUGIN_LDFLAGS, because these aren't plugins.
24956         * gst-libs/gst/audio/Makefile.am:
24957         * gst-libs/gst/riff/Makefile.am:
24958         * gst-libs/gst/tag/Makefile.am:
24959         * gst-libs/gst/video/Makefile.am:
24960         * gst-libs/gst/xwindowlistener/Makefile.am:
24961
24962         Convert to 0.9 API, seems to work:
24963         * sys/ximage/Makefile.am:
24964         * sys/ximage/ximagesink.c:
24965
24966 2005-04-24  David Schleef  <ds@schleef.org>
24967
24968         Link plugins against libraries:
24969         * ext/alsa/Makefile.am:
24970         * gst/tcp/Makefile.am:
24971
24972         Remove asm code that should be in liboil
24973         * gst/videoscale/Makefile.am:
24974         * gst/videoscale/videoscale_x86_asm.s:
24975
24976         gettext wants these checked in:
24977         * po/af.po:
24978         * po/az.po:
24979         * po/cs.po:
24980         * po/en_GB.po:
24981         * po/hu.po:
24982         * po/it.po:
24983         * po/nb.po:
24984         * po/nl.po:
24985         * po/or.po:
24986         * po/sq.po:
24987         * po/sr.po:
24988         * po/sv.po:
24989         * po/uk.po:
24990         * po/vi.po:
24991
24992 2005-04-24  David Schleef  <ds@schleef.org>
24993
24994         Convert gst_main() to g_main_loop_run()
24995         * gst/playback/decodetest.c: (main):
24996         * gst/playback/test2.c: (main):
24997         * gst/playback/test3.c: (main):
24998         * gst/playback/test4.c: (main):
24999
25000         Link plugins against libraries:
25001         * ext/libvisual/Makefile.am:
25002         * sys/xvimage/Makefile.am:
25003
25004 2005-04-24  David Schleef  <ds@schleef.org>
25005
25006         * configure.ac: Remove idct and resample libs
25007         * gst-libs/gst/Makefile.am: same
25008
25009         Remove usage of gst_library_load():
25010         * ext/alsa/gstalsaplugin.c: (plugin_init):
25011         * ext/libvisual/visual.c: (plugin_init):
25012         * ext/ogg/gstogg.c: (plugin_init):
25013         * ext/theora/theora.c: (plugin_init):
25014         * ext/vorbis/vorbis.c: (plugin_init):
25015         * gst-libs/gst/audio/gstaudiofiltertemplate.c: (plugin_init):
25016         * gst/audioscale/gstaudioscale.c:
25017         * gst/adder/gstadder.c: (plugin_init):
25018         * gst/audioconvert/plugin.c: (plugin_init):
25019         * sys/ximage/ximagesink.c: (plugin_init):
25020         * sys/xvimage/xvimagesink.c: (plugin_init):
25021         * gst/tcp/gsttcpplugin.c: (plugin_init):
25022
25023         Link plugins against libraries:
25024         * ext/ogg/Makefile.am:
25025         * ext/theora/Makefile.am:
25026         * ext/vorbis/Makefile.am:
25027         * gst/audioconvert/Makefile.am:
25028
25029         Create proper libraries:
25030         * gst-libs/gst/riff/Makefile.am:
25031         * gst-libs/gst/audio/Makefile.am:
25032         * gst-libs/gst/video/Makefile.am:
25033
25034         Move resample library to audioscale plugin directory:
25035         * gst-libs/gst/resample/Makefile.am:
25036         * gst-libs/gst/resample/README:
25037         * gst-libs/gst/resample/dtof.c:
25038         * gst-libs/gst/resample/dtos.c:
25039         * gst-libs/gst/resample/functable.c:
25040         * gst-libs/gst/resample/private.h:
25041         * gst-libs/gst/resample/resample.c:
25042         * gst-libs/gst/resample/resample.h:
25043         * gst-libs/gst/resample/resample.vcproj:
25044         * gst-libs/gst/resample/test.c:
25045         * gst/audioscale/Makefile.am:
25046         * gst/audioscale/README:
25047         * gst/audioscale/dtof.c:
25048         * gst/audioscale/dtos.c:
25049         * gst/audioscale/functable.c:
25050         * gst/audioscale/private.h:
25051         * gst/audioscale/resample.c:
25052         * gst/audioscale/resample.h:
25053         * gst/audioscale/test.c:
25054
25055         Move tagedit library to gst-libs:
25056         * gst-libs/gst/tag/Makefile.am:
25057         * gst-libs/gst/tag/gstid3tag.c:
25058         * gst-libs/gst/tag/gsttagediting.c:
25059         * gst-libs/gst/tag/gsttageditingprivate.h:
25060         * gst-libs/gst/tag/gstvorbistag.c:
25061         * gst/tags/Makefile.am:
25062         * gst/tags/gstid3tag.c:
25063         * gst/tags/gstvorbistag.c:
25064
25065         Fix for core changes:
25066         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
25067         (gst_sinesrc_init), (gst_sinesrc_src_fixate), (gst_sinesrc_link),
25068         (gst_sinesrc_getrange):
25069
25070 2005-04-23  David Schleef  <ds@schleef.org>
25071
25072         * gst-libs/gst/Makefile.am: Remove idct.  It hasn't been used
25073         in gst-plugins in a long time, and properly belongs in liboil.
25074         * gst-libs/gst/idct/Makefile.am:
25075         * gst-libs/gst/idct/README:
25076         * gst-libs/gst/idct/dct.h:
25077         * gst-libs/gst/idct/doieee:
25078         * gst-libs/gst/idct/fastintidct.c:
25079         * gst-libs/gst/idct/floatidct.c:
25080         * gst-libs/gst/idct/idct.c:
25081         * gst-libs/gst/idct/idct.h:
25082         * gst-libs/gst/idct/idtc.vcproj:
25083         * gst-libs/gst/idct/ieeetest.c:
25084         * gst-libs/gst/idct/intidct.c:
25085
25086 2005-04-20  Wim Taymans  <wim@fluendo.com>
25087
25088         * docs/design-audiosinks.txt:
25089         * gst-libs/gst/audio/Makefile.am:
25090         * gst-libs/gst/audio/TODO:
25091         * gst-libs/gst/audio/gstaudiosink.c:
25092         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
25093         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
25094         (gst_audioringbuffer_dispose), (gst_audioringbuffer_finalize),
25095         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
25096         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
25097         (gst_audioringbuffer_delay), (gst_audiosink_base_init),
25098         (gst_audiosink_class_init), (gst_audiosink_init),
25099         (gst_audiosink_create_ringbuffer):
25100         * gst-libs/gst/audio/gstaudiosink.h:
25101         * gst-libs/gst/audio/gstbaseaudiosink.c:
25102         (gst_baseaudiosink_base_init), (gst_baseaudiosink_class_init),
25103         (gst_baseaudiosink_init), (gst_baseaudiosink_set_property),
25104         (gst_baseaudiosink_get_property), (gst_baseaudiosink_setcaps),
25105         (gst_baseaudiosink_get_times), (gst_baseaudiosink_event),
25106         (gst_baseaudiosink_preroll), (gst_baseaudiosink_render),
25107         (gst_baseaudiosink_create_ringbuffer),
25108         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
25109         * gst-libs/gst/audio/gstbaseaudiosink.h:
25110         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
25111         (gst_ringbuffer_class_init), (gst_ringbuffer_init),
25112         (gst_ringbuffer_dispose), (gst_ringbuffer_finalize),
25113         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
25114         (gst_ringbuffer_release), (gst_ringbuffer_play_unlocked),
25115         (gst_ringbuffer_play), (gst_ringbuffer_pause),
25116         (gst_ringbuffer_resume), (gst_ringbuffer_stop),
25117         (gst_ringbuffer_callback), (gst_ringbuffer_delay),
25118         (gst_ringbuffer_played_samples), (gst_ringbuffer_commit),
25119         (gst_ringbuffer_prepare_read), (gst_ringbuffer_clear):
25120         * gst-libs/gst/audio/gstringbuffer.h:
25121         An attempt at a set of audio base classes together with some
25122         design docs.
25123
25124 2005-04-20  Wim Taymans  <wim@fluendo.com>
25125
25126         * gst/audioconvert/Makefile.am:
25127         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
25128         (gst_audio_convert_caps_remove_format_info),
25129         (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
25130         (gst_audio_convert_channels):
25131         Link against audio libs.
25132         Fix audio convert plugin.
25133
25134 2005-04-20  Wim Taymans  <wim@fluendo.com>
25135
25136         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter),
25137         (gst_ogg_demux_sink_activate):
25138         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
25139         (theora_set_header_on_caps), (theora_enc_sink_event),
25140         (theora_enc_chain):
25141         Fix theora encoder.
25142
25143 2005-04-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25144
25145         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter):
25146         * gst/playback/gstdecodebin.c: (find_compatibles):
25147           Work with staticpadtemplates in elementfactories.
25148
25149 2005-04-12  Wim Taymans  <wim@fluendo.com>
25150
25151         * gst/playback/README:
25152         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
25153         (compare_ranks), (print_feature), (gst_decode_bin_init),
25154         (dynamic_create), (dynamic_free), (find_compatibles),
25155         (mimetype_is_raw), (close_pad_link), (got_redirect),
25156         (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
25157         (new_pad), (no_more_pads), (unlinked), (close_link), (type_found),
25158         (gst_decode_bin_change_state):
25159         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
25160         (gst_play_base_bin_init), (group_destroy), (group_commit),
25161         (check_queue), (queue_overrun), (queue_threshold_reached),
25162         (queue_out_of_data), (gen_preroll_element), (unknown_type),
25163         (new_decoded_pad), (setup_subtitle), (gen_source_element),
25164         (got_redirect), (setup_source), (play_base_eos),
25165         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
25166         (gst_play_base_bin_remove_element):
25167         * gst/playback/gstplaybasebin.h:
25168         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
25169         (gst_play_bin_init), (gst_play_bin_dispose),
25170         (gst_play_bin_set_property), (gen_video_element),
25171         (gen_text_element), (gen_audio_element), (remove_sinks),
25172         (gst_play_bin_send_event):
25173         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
25174         (stream_info_change_state), (gst_stream_info_set_mute):
25175         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
25176         (gst_stream_selector_get_caps), (gst_stream_selector_setcaps),
25177         (gst_stream_selector_request_new_pad), (gst_stream_selector_event),
25178         (gst_stream_selector_chain):
25179         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
25180         (main):
25181         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
25182         (gst_xvimagesink_setcaps), (gst_xvimagesink_get_times),
25183         (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
25184         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_class_init):
25185         Raw and crude port of decodebin. 
25186         Make playbin compile.
25187
25188 2005-04-06  Wim Taymans  <wim@fluendo.com>
25189
25190         * ext/gnomevfs/Makefile.am:
25191         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
25192         (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
25193         (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
25194         (gst_gnomevfssrc_create), (gst_gnomevfssrc_is_seekable),
25195         (gst_gnomevfssrc_get_size), (gst_gnomevfssrc_start),
25196         (gst_gnomevfssrc_stop):
25197         * ext/ogg/Makefile.am:
25198         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_get_data),
25199         (gst_ogg_demux_find_chains), (gst_ogg_demux_sink_activate):
25200         * ext/theora/Makefile.am:
25201         * ext/theora/theoradec.c: (_inc_granulepos),
25202         (theora_dec_sink_event), (theora_dec_chain):
25203         * ext/vorbis/Makefile.am:
25204         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
25205         (vorbis_dec_sink_event), (vorbis_dec_chain):
25206         * gst-libs/gst/audio/Makefile.am:
25207         * sys/xvimage/Makefile.am:
25208         Make gnomevfssrc extend the source base class.
25209         Fix linking against libs in various plugins.
25210
25211 2005-04-06  Andy Wingo  <wingo@pobox.com>
25212
25213         * gst-libs/gst/video/Makefile.am (libgstvideo_la_LDFLAGS): Use
25214         GST_BASE_LIBS.
25215
25216         * configure.ac: Add check and AC_SUBST for libgstbase.
25217
25218 2005-03-31  Wim Taymans  <wim@fluendo.com>
25219
25220         * examples/seeking/Makefile.am:
25221         * examples/seeking/cdparanoia.c: (main):
25222         * examples/seeking/cdplayer.c: (update_scale), (stop_seek),
25223         (play_cb), (pause_cb), (stop_cb), (main):
25224         * examples/seeking/playbin.c:
25225         * examples/seeking/seek.c: (dynamic_link), (make_mod_pipeline),
25226         (make_dv_pipeline), (make_wav_pipeline), (make_flac_pipeline),
25227         (make_sid_pipeline), (make_vorbis_pipeline),
25228         (make_theora_pipeline), (make_vorbis_theora_pipeline),
25229         (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
25230         (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline),
25231         (make_playerbin_pipeline), (update_scale), (end_scrub), (do_seek),
25232         (seek_cb), (start_seek), (stop_seek), (play_cb), (pause_cb),
25233         (stop_cb), (main):
25234         * examples/seeking/spider_seek.c:
25235         * examples/seeking/vorbisfile.c:
25236         * ext/gnomevfs/Makefile.am:
25237         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
25238         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_base_init),
25239         (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
25240         (gst_gnomevfssrc_get_property), (gst_gnomevfssrc_get),
25241         (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file),
25242         (gst_gnomevfssrc_getrange), (gst_gnomevfssrc_loop),
25243         (gst_gnomevfssrc_activate), (gst_gnomevfssrc_change_state),
25244         (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
25245         * ext/ogg/README:
25246         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_get_type),
25247         (gst_ogg_pad_class_init), (gst_ogg_pad_init),
25248         (gst_ogg_pad_dispose), (gst_ogg_pad_finalize),
25249         (gst_ogg_pad_formats), (gst_ogg_pad_event_masks),
25250         (gst_ogg_pad_query_types), (gst_ogg_pad_getcaps),
25251         (gst_ogg_pad_src_convert), (gst_ogg_pad_src_query),
25252         (gst_ogg_pad_event), (gst_ogg_pad_reset),
25253         (gst_ogg_demux_factory_filter), (compare_ranks),
25254         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
25255         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
25256         (gst_ogg_chain_new), (gst_ogg_chain_free),
25257         (gst_ogg_chain_new_stream), (gst_ogg_chain_get_stream),
25258         (gst_ogg_chain_has_stream), (gst_ogg_demux_base_init),
25259         (gst_ogg_demux_class_init), (gst_ogg_demux_init),
25260         (gst_ogg_demux_finalize), (gst_ogg_demux_handle_event),
25261         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_seek),
25262         (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
25263         (gst_ogg_demux_get_prev_page),
25264         (gst_ogg_demux_deactivate_current_chain),
25265         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
25266         (gst_ogg_demux_bisect_forward_serialno),
25267         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
25268         (gst_ogg_demux_find_pad), (gst_ogg_demux_find_chain),
25269         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain_unlocked),
25270         (gst_ogg_demux_chain), (gst_ogg_demux_send_eos),
25271         (gst_ogg_demux_loop), (gst_ogg_demux_sink_activate),
25272         (gst_ogg_demux_change_state), (gst_ogg_print):
25273         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
25274         (gst_ogg_mux_init), (gst_ogg_mux_sinkconnect),
25275         (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
25276         (gst_ogg_mux_push_page), (gst_ogg_mux_send_headers),
25277         (gst_ogg_mux_loop):
25278         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
25279         * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
25280         (theora_dec_src_convert), (theora_dec_sink_convert),
25281         (theora_dec_src_query), (theora_dec_src_event),
25282         (theora_dec_sink_event), (theora_dec_chain),
25283         (theora_dec_change_state):
25284         * ext/theora/theoraenc.c: (gst_theora_enc_init),
25285         (theora_enc_sink_setcaps), (theora_buffer_from_packet),
25286         (theora_push_buffer), (theora_enc_sink_event), (theora_enc_chain),
25287         (theora_enc_change_state):
25288         * ext/vorbis/Makefile.am:
25289         * ext/vorbis/oggvorbisenc.c:
25290         * ext/vorbis/oggvorbisenc.h:
25291         * ext/vorbis/vorbis.c: (plugin_init):
25292         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
25293         (vorbis_dec_src_query), (vorbis_dec_src_event),
25294         (vorbis_dec_sink_event), (vorbis_dec_chain),
25295         (vorbis_dec_change_state):
25296         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
25297         (gst_vorbisenc_sink_setcaps), (gst_vorbisenc_init),
25298         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
25299         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
25300         (gst_vorbisenc_change_state):
25301         * ext/vorbis/vorbisenc.h:
25302         * ext/vorbis/vorbisparse.c: (vorbis_parse_chain):
25303         * gst-libs/gst/audio/audioclock.c:
25304         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
25305         (gst_audiofilter_init), (gst_audiofilter_chain):
25306         * gst-libs/gst/audio/testchannels.c: (main):
25307         * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
25308         * gst-libs/gst/media-info/media-info-priv.c: (gmip_reset),
25309         (gmip_find_type), (gmip_find_stream), (gmip_find_track_metadata),
25310         (gmip_find_track_streaminfo), (gmip_find_track_format):
25311         * gst-libs/gst/media-info/media-info.c:
25312         (gst_media_info_read_idler):
25313         * gst-libs/gst/play/play.c: (gst_play_get_sink_element),
25314         (gst_play_get_all_by_interface):
25315         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
25316         (gst_riff_parse_chunk), (gst_riff_parse_file_header),
25317         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
25318         (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
25319         (gst_riff_parse_info):
25320         * gst-libs/gst/riff/riff-read.h:
25321         * gst-libs/gst/riff/riff.c: (plugin_init):
25322         * gst-libs/gst/video/Makefile.am:
25323         * gst-libs/gst/video/gstvideosink.c: (gst_videosink_init),
25324         (gst_videosink_class_init), (gst_videosink_get_type):
25325         * gst-libs/gst/video/videosink.h:
25326         * gst/audioconvert/bufferframesconvert.c:
25327         (buffer_frames_convert_init), (buffer_frames_convert_fixate),
25328         (buffer_frames_convert_setcaps), (buffer_frames_convert_chain):
25329         * gst/audioconvert/channelmixtest.c: (main):
25330         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
25331         (gst_audio_convert_chain),
25332         (gst_audio_convert_caps_remove_format_info),
25333         (gst_audio_convert_getcaps), (gst_audio_convert_parse_caps),
25334         (gst_audio_convert_setcaps), (_fixate_caps_to_int),
25335         (gst_audio_convert_fixate), (gst_audio_convert_get_buffer),
25336         (gst_audio_convert_buffer_to_default_format),
25337         (gst_audio_convert_buffer_from_default_format),
25338         (gst_audio_convert_channels):
25339         * gst/audioconvert/gstchannelmix.h:
25340         * gst/ffmpegcolorspace/avcodec.h:
25341         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
25342         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
25343         (gst_ffmpegcsp_configure_context), (gst_ffmpegcsp_setcaps),
25344         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain):
25345         * gst/tags/gstid3tag.c: (gst_tag_extract_id3v1_string):
25346         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
25347         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
25348         (mp3_type_find), (mpeg2_sys_type_find), (mpeg1_sys_type_find),
25349         (mpeg_video_type_find), (mpeg_video_stream_type_find),
25350         (dv_type_find):
25351         * gst/videotestsrc/gstvideotestsrc.c:
25352         (gst_videotestsrc_class_init), (gst_videotestsrc_src_negotiate),
25353         (gst_videotestsrc_src_link), (gst_videotestsrc_parse_caps),
25354         (gst_videotestsrc_src_accept_caps), (gst_videotestsrc_setcaps),
25355         (gst_videotestsrc_src_unlink), (gst_videotestsrc_activate),
25356         (gst_videotestsrc_change_state), (gst_videotestsrc_getcaps),
25357         (gst_videotestsrc_init), (gst_videotestsrc_src_query),
25358         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_loop):
25359         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
25360         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_fixate),
25361         (gst_xvimagesink_getcaps), (gst_xvimagesink_setcaps),
25362         (gst_xvimagesink_change_state), (gst_xvimagesink_get_times),
25363         (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
25364         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
25365         (gst_xvimagesink_navigation_send_event),
25366         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_expose),
25367         (gst_xvimagesink_set_property), (gst_xvimagesink_finalize),
25368         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
25369         * sys/xvimage/xvimagesink.h:
25370         Plugin port to 0.9, ogg/theora playback should work in the seek
25371         example now.
25372         Removed old examples.
25373         Removed old oggvorbisenc, renamed rawvorbisenc to vorbisenc as
25374         explained in 0.9 TODO doc.
25375
25376
25377 2005-02-23  Thomas Vander Stichele  <thomas at apestaart dot org>
25378
25379         * autogen.sh:
25380         * configure.ac:
25381         * ext/Makefile.am:
25382         * gst/Makefile.am:
25383         * po/POTFILES.in:
25384         * po/af.po:
25385         * po/az.po:
25386         * po/cs.po:
25387         * po/en_GB.po:
25388         * po/hu.po:
25389         * po/it.po:
25390         * po/nb.po:
25391         * po/nl.po:
25392         * po/or.po:
25393         * po/sq.po:
25394         * po/sr.po:
25395         * po/sv.po:
25396         * po/uk.po:
25397         * po/vi.po:
25398         * sys/Makefile.am:
25399         * testsuite/Makefile.am:
25400           remove a whole bunch of plugins.  This module now contains a set
25401           of free reference plugins/elements as agreed.
25402
25403 2005-02-22  Thomas Vander Stichele  <thomas at apestaart dot org>
25404
25405         * configure.ac:
25406           hunting season on 0.9 is now OPEN
25407
25408 2005-02-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25409
25410         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
25411           Kick the hell out of gcc for not warning me about a symbol conflict.
25412
25413 2005-02-22  Luca Ognibene  <luogni@tin.it>
25414
25415         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
25416
25417         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link):
25418           Don't leak caps string (fixes #168134)
25419
25420         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init),
25421         (gst_jpegenc_init), (gst_jpegenc_finalize),
25422         (gst_jpegenc_change_state):
25423           Don't leak line buffers and context struct (fixes #168133).
25424
25425 2005-02-21  Tim-Philipp Müller  <tim at centricular dot net>
25426
25427         * configure.ac:
25428         * ext/dirac/gstdiracdec.cc:
25429         (gst_diracdec_chain):
25430           Since dirac 0.5.0 the framerate in dirac is expressed as a
25431           rational number. Fix build and up requirement to 0.5.0, and
25432           also pass parameters to gst_diracdec_link in the right order
25433           (fixes #167959).
25434
25435 2005-02-21  Maciej Katafiasz  <mathrick@freedesktop.org>
25436
25437         * ext/faad/gstfaad.c: (gst_faad_sinkconnect), (gst_faad_chain):
25438         * ext/faad/gstfaad.h:
25439         TEH LONGEST DEBUGGING SESSION EVAR is over. Fix interaction with 
25440         certain invalid muxed streams, where some packets will contain 
25441         junk after decoder data. Partially fixes #149158.
25442
25443 2005-02-21  Jan Schmidt <thaytan@mad.scientist.com>
25444         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_chain):
25445           Make sure we only write to writable buffers
25446
25447 2005-02-20  Tim-Philipp Müller  <tim at centricular dot net>
25448
25449         * gst-libs/gst/riff/riff-media.c:
25450         (gst_riff_create_audio_caps_with_data):
25451           Do actually fix invalid RIFF fmt header values for alaw
25452           and mulaw audio instead of just saying so.
25453
25454         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
25455           Give gst_riff_create_audio_caps_with_data() a chance to
25456           fix up broken format header fields before extracting any
25457           parameters from the header. (fixes #167633)
25458
25459 2005-02-19  Martin Holters  <martin.holters@gmx.de>
25460
25461         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
25462
25463         * gst/audioconvert/bufferframesconvert.c:
25464         (buffer_frames_convert_link):
25465           Don't leak othercaps. (fixes #167878)
25466
25467 2005-02-19  Arwed v. Merkatz  <v.merkatz@gmx.net>
25468
25469         * configure.ac:
25470         * ext/libvisual/visual.c: (gst_visual_srclink),
25471         (gst_visual_change_state):
25472           Support libvisual 0.2.0.
25473
25474 2005-02-18  Tim-Philipp Müller  <tim at centricular dot net>
25475
25476         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_chain):
25477         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_resync), (gst_jpegenc_chain):
25478           Use same rowstrides for I420 as used everywhere else.
25479
25480 2005-02-17  Tim-Philipp Müller  <tim at centricular dot net>
25481
25482         * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
25483           Declare variables at beginning of block and make gcc-2.95 happy
25484           (fixes # 167482, patch by Gergely Nagy).
25485           
25486         * gst/tcp/gsttcpclientsrc.c:
25487         * gst/tcp/gsttcpclientsrc.h:
25488           Move some includes into the header, so that struct sockaddr_in is
25489           defined when it should be defined on FreeBSD as well (fixes
25490           #167483).
25491           
25492         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
25493           Don't pass uninitialised values to setsockopt() here either.
25494
25495 2005-02-17  Luca Ognibene  <luogni at tin dot it>
25496
25497         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
25498
25499         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send):
25500           Don't pass uninitialised values to setsockopt(). (fixes #167704)
25501
25502 2005-02-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25503
25504         * gst/playback/gstplaybin.c: (add_sink):
25505           Invert bin_add/link order to workaround deadlock in opt.
25506
25507 2005-02-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25508
25509         * gst/modplug/gstmodplug.cc:
25510           Add missing break causing position queries to fail.
25511
25512 2005-02-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25513
25514         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_populate):
25515           Granpos can apparently be -1, which screws up calculations...
25516
25517 2005-02-16  Jan Schmidt  <thaytan@mad.scientist.com>
25518
25519         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
25520         (gst_ximagesink_send_pending_navigation),
25521         (gst_ximagesink_navigation_send_event), (gst_ximagesink_finalize),
25522         (gst_ximagesink_init):
25523         * sys/ximage/ximagesink.h:
25524         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
25525         (gst_xvimagesink_send_pending_navigation),
25526         (gst_xvimagesink_navigation_send_event),
25527         (gst_xvimagesink_finalize), (gst_xvimagesink_init):
25528         * sys/xvimage/xvimagesink.h:
25529           Use a mutex protected list to marshal navigation
25530           events into the stream thread from whichever thread
25531           sends them.
25532
25533 2005-02-15  Tim-Philipp Müller  <tim at centricular dot net>
25534
25535         * gst/speed/demo-mp3.c: (time_tick_cb), (main):
25536           Display current position and track length; misc. clean-ups.
25537           
25538         * gst/speed/gstspeed.c: (speed_get_query_types), (speed_src_query),
25539         (speed_init), (speed_chain):
25540           Add query function, so that the stream length and current position
25541           get adjusted when queried (note that current position queries may
25542           still be wrong if the audio sink returns values based on buffer
25543           timestamps instead of passing on the query).
25544
25545 2005-02-13  Benjamin Otte  <otte@gnome.org>
25546
25547         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
25548         (gst_audio_convert_channels):
25549           create channel conversion matrix when linking
25550         * gst/audioconvert/.cvsignore:
25551         * gst/audioconvert/Makefile.am:
25552         * gst/audioconvert/channelmixtest.c: (main):
25553           add (ugly) test that ensures stereo <=> mono conversion works
25554           correctly
25555
25556 2005-02-13  Benjamin Otte  <otte@gnome.org>
25557
25558         * gst/audioconvert/gstchannelmix.h:
25559           include missing header file
25560         * gst/audioconvert/gstchannelmix.c:
25561         (gst_audio_convert_fill_compatible):
25562           use same sign for both channels when converting to/from compatible
25563           channel. Previously used different signs made the signals cancel
25564           each other out and appear like silence. (fixes #167269)
25565
25566 2005-02-12  Tim-Philipp Müller  <tim at centricular dot net>
25567
25568         * gst/ffmpegcolorspace/avcodec.h:
25569         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
25570         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
25571         (gst_ffmpegcsp_avpicture_fill):
25572         * gst/ffmpegcolorspace/imgconvert.c:
25573           Convert to and from YV12 (fixes #156379).
25574
25575 2005-02-12  Julien MOUTTE  <julien@moutte.net>
25576
25577         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
25578         (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
25579         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
25580         (gst_ximagesink_expose), (gst_ximagesink_set_property),
25581         (gst_ximagesink_finalize), (gst_ximagesink_init): Protect interface
25582         methods from chain and negotiation and vice versa (Fixes #166142).
25583         * sys/ximage/ximagesink.h: Add stream_lock.
25584         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
25585         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
25586         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
25587         (gst_xvimagesink_expose): Check for xcontext before trying to link.
25588
25589 2005-02-12  Tim-Philipp Müller  <tim at centricular dot net>
25590
25591         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_open):
25592           Don't send "Hey! You gave me a NULL pointer you naughty person" as
25593           error message when we can't open the DVD device (when dvdnav_open()
25594           fails, src->dvdnav is NULL, so dvdnav_err_to_string() will return
25595           the above). Send something more useful instead (fixes #167117).
25596
25597 2005-02-11  Julien MOUTTE  <julien@moutte.net>
25598
25599         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
25600         (gst_xvimagesink_sink_link), (gst_xvimagesink_change_state),
25601         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
25602         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
25603         (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
25604         (gst_xvimagesink_finalize), (gst_xvimagesink_init): Protect interface
25605         methods from chain and negotiation and vice versa (Fixes #166142).
25606         Fix a possible bug of images in the buffer pool being discarded because
25607         we are looking at the wrong geometry.
25608         * sys/xvimage/xvimagesink.h: Add stream_lock.
25609
25610 2005-02-11  David Schleef  <ds@schleef.org>
25611
25612         * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer): Change uint to
25613         unsigned int. (fixes #167128)
25614
25615 2005-02-11  David Schleef  <ds@schleef.org>
25616
25617         * gst/librfb/Makefile.am: Testing stuff before committing is
25618           for wimps... and people with fast machines.  Fix stupid
25619           mistake.
25620
25621 2005-02-11  David Schleef  <ds@schleef.org>
25622
25623         * configure.ac: Pull in librfb from my CVS tree, because it is
25624           too small and annoying to be separate.  Move rfbsrc plugin
25625           to gst/.
25626         * ext/Makefile.am:
25627         * ext/librfb/Makefile.am:
25628         * ext/librfb/gstrfbsrc.c:
25629         * gst/librfb/Makefile.am:
25630         * gst/librfb/gstrfbsrc.c:
25631         * gst/librfb/rfb.c:
25632         * gst/librfb/rfb.h:
25633         * gst/librfb/rfbbuffer.c:
25634         * gst/librfb/rfbbuffer.h:
25635         * gst/librfb/rfbbytestream.c:
25636         * gst/librfb/rfbbytestream.h:
25637         * gst/librfb/rfbcontext.h:
25638         * gst/librfb/rfbdecoder.c:
25639         * gst/librfb/rfbdecoder.h:
25640         * gst/librfb/rfbutil.h:
25641
25642 2005-02-10  Tim-Philipp Müller  <tim at centricular dot net>
25643
25644         * gst/speed/Makefile.am:
25645         * gst/speed/demo-mp3.c: (main):
25646         * gst/speed/filter.func:
25647         * gst/speed/gstspeed.c: (speed_link), (speed_parse_caps),
25648         (speed_class_init), (speed_init), (speed_chain_int16),
25649         (speed_chain_float32), (speed_chain), (speed_set_property),
25650         (speed_get_property), (speed_change_state):
25651         * gst/speed/gstspeed.h:
25652           Fix speed element and make it chain-based (fixes #156467),
25653           and make it handle more than one channel.
25654
25655 2005-02-10  Jan Schmidt  <thaytan@mad.scientist.com>
25656
25657         * ext/dts/gstdtsdec.c: (gst_dtsdec_init), (gst_dtsdec_channels),
25658         (gst_dtsdec_handle_event), (gst_dtsdec_handle_frame),
25659         (gst_dtsdec_chain), (gst_dtsdec_change_state):
25660         * ext/dts/gstdtsdec.h:
25661           Don't clobber the stack constructing the channels array.
25662           Make the element chain-based. DTS tracks can now be played.
25663           
25664 2005-02-09  Tim-Philipp Müller  <tim at centricular dot net>
25665
25666         * gst-libs/gst/audio/multichannel.h:
25667         * gst-libs/gst/gconf/gconf.h:
25668         * gst-libs/gst/idct/idct.h:
25669         * gst-libs/gst/media-info/media-info-priv.h:
25670         * gst-libs/gst/play/play.h:
25671         * gst-libs/gst/resample/private.h:
25672         * gst-libs/gst/resample/resample.h:
25673         * gst-libs/gst/riff/riff-ids.h:
25674         * gst-libs/gst/video/video.h:
25675         * gst-libs/gst/video/videosink.h:
25676           Add G_BEGIN_DECLS and G_END_DECLS around headers where
25677           missing, so that they work when included from C++ code.
25678
25679 2005-02-09  David Schleef  <ds@schleef.org>
25680
25681         * testsuite/gst-lint: Check for non-statically scoped
25682           parent_class variables.  This won't be a problem once
25683           plugins are loaded with RTLD_LOCAL.
25684
25685 2005-02-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25686
25687         * ext/mplex/gstmplexibitstream.cc:
25688           gcc madness.
25689
25690 2005-02-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25691
25692         * ext/ogg/gstogmparse.c:
25693         * gst/debug/gstnavigationtest.c:
25694           Die, thou faulty symbol pollutors (non-static parent_class).
25695
25696 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25697
25698         * ext/mplex/gstmplexibitstream.cc:
25699           Fix event handling (#165525).
25700
25701 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25702
25703         * ext/mikmod/gstmikmod.c:
25704         * gst/modplug/gstmodplug.cc:
25705           Add missing endianness to template (fixes #165509).
25706
25707 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25708
25709         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_data):
25710           Fix wrong order of reading of optional bytes (#165290).
25711
25712 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25713
25714         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
25715           Implement FILLER event awareness.
25716
25717 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25718
25719         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_convert):
25720           Fix track calculations (#166208).
25721
25722 2005-02-08  Gergely Nagy  <algernon@bonehunter.rulez.org>
25723
25724         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25725
25726         * ext/libpng/gstpngdec.c: (gst_pngdec_init), (gst_pngdec_chain):
25727         * ext/libpng/gstpngenc.c:
25728           Fix byte-order, use proper fixed caps. Fixes #164197.
25729
25730 2005-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
25731
25732         * configure.ac:
25733           Add dvdlpcmdec 
25734
25735         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_reset),
25736         (free_all_buffers), (gst_mpeg2dec_alloc_buffer):
25737           Don't push buffers if the src pad isn't negotiated yet.
25738           
25739         * gst/audioconvert/gstaudioconvert.c:
25740         (gst_audio_convert_buffer_to_default_format),
25741         (gst_audio_convert_buffer_from_default_format):
25742           Add support for 24-bit width.
25743
25744         * gst/dvdlpcmdec/.cvsignore:
25745         * gst/dvdlpcmdec/Makefile.am:
25746         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_get_type),
25747         (gst_dvdlpcmdec_base_init), (gst_dvdlpcmdec_class_init),
25748         (gst_dvdlpcm_reset), (gst_dvdlpcmdec_init), (gst_dvdlpcmdec_link),
25749         (gst_dvdlpcmdec_chain), (gst_dvdlpcmdec_change_state),
25750         (plugin_init):
25751         * gst/dvdlpcmdec/gstdvdlpcmdec.h:
25752           New decoder for rearranging DVD LPCM into our audio/x-raw-int
25753           format. Needs support for the channels maps if someone can find 
25754           a DVD LPCM track with > 2 channels.
25755
25756         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_handle_dvd_event),
25757         (gst_dvd_demux_send_discont), (gst_dvd_demux_handle_discont),
25758         (gst_dvd_demux_get_audio_stream), (gst_dvd_demux_process_private):
25759         * gst/mpegstream/gstdvddemux.h:
25760         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
25761         (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_init_stream),
25762         (gst_mpeg_demux_send_subbuffer), (gst_mpeg_demux_handle_src_query):
25763         * gst/mpegstream/gstmpegdemux.h:
25764         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_reset),
25765         (gst_mpeg_parse_parse_packhead), (gst_mpeg_parse_loop),
25766         (gst_mpeg_parse_get_rate), (gst_mpeg_parse_convert_src),
25767         (gst_mpeg_parse_handle_src_query),
25768         (gst_mpeg_parse_handle_src_event):
25769           Use audio/x-dvd-lpcm for LPCM output.
25770           Add DTS output.
25771
25772 2005-02-08  Gergely Nagy  <algernon@bonehunter.rulez.org>
25773
25774         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25775
25776         * gst/alpha/gstalphacolor.c: (gst_alpha_color_sink_link),
25777         (transform_rgb), (transform_bgr), (gst_alpha_color_chain):
25778           Add BGRA handling (#165736).
25779
25780 2005-02-08  Francis Labonte  <francis_labonte@hotmail.com>
25781
25782         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25783
25784         * gst/law/alaw-decode.c: (alawdec_link):
25785         * gst/law/alaw-encode.c: (alawenc_link):
25786         * gst/law/mulaw-decode.c: (mulawdec_link):
25787         * gst/law/mulaw-encode.c: (mulawenc_link):
25788           Fix caps memleaks (#166600).
25789
25790 2005-02-08  Tim-Philipp Müller  <tim at centricular dot net>
25791
25792         * ext/tarkin/mem.h:
25793         * ext/tarkin/wavelet.h:
25794         * ext/tarkin/yuv.h:
25795         * gst/ffmpegcolorspace/avcodec.h:
25796           Include "_stdint.h" instead of <stdint.h>. Fixes build on
25797           systems that don't have stdint.h, like Solaris9 (fixes #166631).
25798
25799 2005-02-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25800
25801         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state):
25802         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_clear),
25803         (gst_xvimagesink_change_state):
25804           Clear window on PAUSED->READY instead of READY->PAUSED. Stop
25805           Xv video (and thereby regenerate Xv colourkey) in clear() so
25806           that PLAY -> READY -> PLAY works (fixes #162504).
25807
25808 2005-02-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25809
25810         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_getcaps):
25811           Switch to list instead of range, since MJPEG-devices really just
25812           support decimations, not any size.
25813
25814 2005-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
25815         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_open_decoder),
25816         (gst_mpeg2dec_reset), (free_all_buffers),
25817         (gst_mpeg2dec_alloc_buffer), (handle_sequence):
25818         * ext/mpeg2dec/gstmpeg2dec.h:
25819           The libmpeg2 user-allocated buffer management is awkward, 
25820           to say the least. Hopefully this fixes things.
25821
25822 2005-02-04  Andy Wingo  <wingo@pobox.com>
25823
25824         * gst/audioconvert/bufferframesconvert.c
25825         (buffer_frames_convert_fixate): New function, fixates to 256
25826         frames per buffer by default. (Much better than 1.)
25827         (buffer_frames_convert_init): Set the fixate function for both src
25828         and sink pad.
25829         (buffer_frames_convert_link): After success setting nonfixed caps,
25830         get the negotiated caps so we can know how many buffer-frames it
25831         will be. No idea how this worked at all before.
25832
25833 2005-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
25834
25835         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
25836         (gst_mpeg2dec_close_decoder), (put_buffer), (check_buffer),
25837         (free_buffer), (free_all_buffers), (gst_mpeg2dec_alloc_buffer),
25838         (handle_sequence), (handle_picture):
25839         * ext/mpeg2dec/gstmpeg2dec.h:
25840           Rearrange buffer tracking and refcounting and refactor
25841           a little for readability. 
25842
25843 2005-02-04  Jan Schmidt  <thaytan@mad.scientist.com>
25844         * sys/v4l/gstv4l.c: (plugin_init):
25845         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_get_type),
25846         (gst_v4ljpegsrc_base_init), (gst_v4ljpegsrc_class_init),
25847         (gst_v4ljpegsrc_init), (gst_v4ljpegsrc_src_link),
25848         (gst_v4ljpegsrc_getcaps), (gst_v4ljpegsrc_get):
25849         * sys/v4l/gstv4ljpegsrc.h:
25850         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_open), (gst_v4lsrc_src_link):
25851         * sys/v4l/v4l_calls.h:
25852         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_palette_name),
25853         (gst_v4lsrc_get_fps):
25854         * sys/v4l/v4lsrc_calls.h:
25855           Add new v4ljpegsrc for handling the ov51x hacky "I'll give
25856           you jpeg inside rgb frames" driver.
25857           Don't error in the v4lsrc link function, just return 
25858           REFUSED.
25859
25860 2005-02-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25861
25862         * sys/qcam/gstqcamsrc.c: (gst_qcamsrc_change_state),
25863         (gst_qcamsrc_open):
25864           Use GST_ELEMENT_ERROR, not g_warning, if open failed.
25865
25866 2005-02-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25867
25868         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
25869           Change caps on MJPEG-B so it doesn't interfere with MJPEG/JPEG.
25870
25871 2005-02-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25872
25873         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_change_state):
25874           Reset negotiated state on PAUSED->READY.
25875
25876 2005-02-02  David Schleef  <ds@schleef.org>
25877
25878         * configure.ac: Put DEFAULT_AUDIOSINK in config.h and use
25879         whereever possible.  (Fixes #165997)
25880         * examples/capsfilter/capsfilter1.c: (main):
25881         * examples/dynparams/filter.c: (create_ui):
25882         * examples/seeking/cdparanoia.c: (get_track_info), (main):
25883         * examples/seeking/chained.c: (main):
25884         * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
25885         (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
25886         (make_vorbis_pipeline), (make_mp3_pipeline), (make_avi_pipeline),
25887         (make_mpeg_pipeline), (make_mpegnt_pipeline):
25888         * examples/seeking/spider_seek.c: (make_spider_pipeline):
25889         * examples/switch/switcher.c: (main):
25890         * ext/dv/demo-play.c: (main):
25891         * ext/faad/gstfaad.c: (gst_faad_change_state):
25892         * ext/mad/gstmad.c: (gst_mad_chain):
25893         * ext/smoothwave/demo-osssrc.c: (main):
25894         * gst-libs/gst/gconf/gconf.c: (gst_gconf_set_string),
25895         (gst_gconf_render_bin_from_description),
25896         (gst_gconf_get_default_audio_sink),
25897         (gst_gconf_get_default_video_sink),
25898         (gst_gconf_get_default_audio_src),
25899         (gst_gconf_get_default_video_src),
25900         (gst_gconf_get_default_visualization_element):
25901         * gst/level/demo.c: (main):
25902         * gst/level/plot.c: (main):
25903         * gst/playback/gstplaybin.c: (gen_video_element),
25904         (gen_audio_element):
25905         * gst/playback/test.c: (gen_video_element), (gen_audio_element):
25906         * gst/playondemand/demo-mp3.c: (setup_pipeline):
25907         * gst/sine/demo-dparams.c: (main):
25908         * gst/spectrum/demo-osssrc.c: (main):
25909         * gst/speed/demo-mp3.c: (main):
25910         * gst/volume/demo.c: (main):
25911         * testsuite/embed/embed.c: (main):
25912
25913 2005-02-02  Jan Schmidt  <thaytan@mad.scientist.com>
25914
25915         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
25916         (gst_tcpclientsink_finalize):
25917         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
25918         (gst_tcpclientsrc_finalize):
25919         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
25920         (gst_tcpserversink_init), (gst_tcpserversink_finalize):
25921         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
25922         (gst_tcpserversrc_init), (gst_tcpserversrc_finalize):
25923           Don't leak the hostname when shutting down.
25924           In tcpserversrc, take a copy of the default hostname.
25925
25926 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25927
25928         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_iso_receive):
25929           Set caps to systemstream=TRUE.
25930
25931 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25932
25933         * testsuite/Makefile.am:
25934           Fix more OSX buildbots.
25935
25936 2005-02-02  Jan Schmidt  <thaytan@mad.scientist.com>
25937
25938         * ext/mpeg2dec/gstmpeg2dec.c:
25939           Don't send things to NULL PAD_PEERs
25940
25941         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_chain):
25942           Copy-on-write the incoming buffer.
25943
25944         * gst/mpegstream/gstdvddemux.h:
25945         * gst/mpegstream/gstmpegclock.h:
25946         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
25947         (normal_seek), (gst_mpeg_demux_handle_src_event):
25948         * gst/mpegstream/gstmpegdemux.h:
25949         * gst/mpegstream/gstmpegpacketize.h:
25950         * gst/mpegstream/gstmpegparse.c:
25951         (gst_mpeg_parse_update_streaminfo), (gst_mpeg_parse_reset),
25952         (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead),
25953         (gst_mpeg_parse_loop), (gst_mpeg_parse_get_rate),
25954         (gst_mpeg_parse_convert_src), (gst_mpeg_parse_handle_src_query),
25955         (gst_mpeg_parse_handle_src_event), (gst_mpeg_parse_change_state):
25956         * gst/mpegstream/gstmpegparse.h:
25957         * gst/mpegstream/gstrfc2250enc.h:
25958           Various changes to the way time is computed that make seeking and
25959           total time estimation much better here.
25960           Use G_BEGIN/END_DECLS instead of __cplusplus
25961
25962         * gst/videocrop/gstvideocrop.c: (gst_video_crop_chain):
25963           Use gst_buffer_stamp instead of only copying the TIMESTAMP
25964
25965 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25966
25967         * gst/subparse/gstsubparse.c:
25968           Fix OSX buildbot.
25969
25970 2005-01-31  Tim-Philipp Müller  <tim at centricular dot net>
25971
25972         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
25973         (theora_enc_chain), (theora_enc_change_state):
25974         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
25975         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_chain),
25976         (gst_vorbisenc_change_state):
25977         * ext/vorbis/vorbisenc.h:
25978           Set granulepos and timestamp correctly for streams not
25979           starting at 0, taking into account the initial delay.
25980
25981 2005-01-31  Tim-Philipp Müller  <tim at centricular dot net>
25982
25983         * gst/mpegstream/gstdvddemux.c:
25984           Add audio/x-dts to audio pad template caps
25985
25986 2005-01-30  David Schleef  <ds@schleef.org>
25987
25988         * ext/polyp/polypsink.c: (gst_polypsink_base_init),
25989         (create_context), (gst_polypsink_link): Fix silly endianness
25990         bug.  Add some debugging.  Remove float from caps; it doesn't
25991         work.  Attempt to get remote audio working.
25992
25993 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25994
25995         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
25996           Add 3IV2 fourcc.
25997
25998 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25999
26000         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream), (swap_line),
26001         (gst_avi_demux_invert), (gst_avi_demux_process_next_entry),
26002         (gst_avi_demux_stream_data):
26003         * gst/avi/gstavidemux.h:
26004           Invert DIB images. Fixes #132341.
26005
26006 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26007
26008         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26009         (gst_ffmpegcsp_chain):
26010           D'oh, reference the palette data, not the palette structure.
26011           Fixes color distortion in #132341.
26012
26013 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26014
26015         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
26016           PAR can be non-fixed when not provided as argument (#162626).
26017
26018 2005-01-29  David Moore  <dcm@acm.org>
26019
26020         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26021
26022         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
26023         (gst_qtdemux_loop_header):
26024           Re-apply patch from #142272 that allows non-seekable sources,
26025           re-proposed by Daniel Drake <dsd@gentoo.org>.
26026
26027 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26028
26029         * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_init):
26030           Use the src template for creating the src pad (#162330).
26031
26032 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26033
26034         * configure.ac:
26035         * ext/musepack/Makefile.am:
26036         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_class_init),
26037         (gst_musepackdec_init), (gst_musepackdec_dispose),
26038         (gst_musepackdec_src_query), (gst_musepackdec_src_convert),
26039         (gst_musepack_stream_init), (gst_musepackdec_loop),
26040         (gst_musepackdec_change_state):
26041         * ext/musepack/gstmusepackdec.cpp:
26042         * ext/musepack/gstmusepackdec.h:
26043         * ext/musepack/gstmusepackreader.c: (gst_musepack_reader_peek),
26044         (gst_musepack_reader_read), (gst_musepack_reader_seek),
26045         (gst_musepack_reader_tell), (gst_musepack_reader_get_size),
26046         (gst_musepack_reader_canseek), (gst_musepack_init_reader):
26047         * ext/musepack/gstmusepackreader.cpp:
26048         * ext/musepack/gstmusepackreader.h:
26049           Update to 1.1 API (#165446).
26050
26051 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26052
26053         * ext/Makefile.am:
26054           Unbreak buildbot.
26055
26056 2005-01-28  Andy Wingo  <wingo@pobox.com>
26057
26058         * ext/dv/gstdvdec.c: Change the pixel aspect ratio of dvdec output
26059         to reflect a different dubious internet source. Add a reference
26060         and some commentary.
26061
26062 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26063
26064         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
26065         (gst_stream_selector_get_caps), (gst_stream_selector_chain):
26066         * gst/playback/gststreamselector.h:
26067           Be more selective when we're redoing caps negotiation from
26068           within the chain function on a stream change.
26069
26070 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26071
26072         * configure.ac:
26073         * ext/Makefile.am:
26074         * ext/amrnb/Makefile.am:
26075         * ext/amrnb/amrnb.c: (plugin_init):
26076         * ext/amrnb/amrnbdec.c: (gst_amrnbdec_get_type),
26077         (gst_amrnbdec_base_init), (gst_amrnbdec_class_init),
26078         (gst_amrnbdec_init), (gst_amrnbdec_link), (gst_amrnbdec_chain),
26079         (gst_amrnbdec_state_change):
26080         * ext/amrnb/amrnbdec.h:
26081         * ext/amrnb/amrnbparse.c: (gst_amrnbparse_get_type),
26082         (gst_amrnbparse_base_init), (gst_amrnbparse_class_init),
26083         (gst_amrnbparse_init), (gst_amrnbparse_formats),
26084         (gst_amrnbparse_querytypes), (gst_amrnbparse_query),
26085         (gst_amrnbparse_handle_event), (gst_amrnbparse_reserve),
26086         (gst_amrnbparse_loop), (gst_amrnbparse_state_change):
26087         * ext/amrnb/amrnbparse.h:
26088           Add support for AMR-NB (mobile phone audio format; #155163, #163286).
26089         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
26090           Add AMR-NB/-WB raw formats.
26091         * ext/alsa/gstalsa.c: (gst_alsa_link):
26092           Keep valid time when changing format.
26093         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
26094         (qtdemux_parse_trak):
26095           Add some more format-specific options (#140141, #143555, #155163).
26096
26097 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26098
26099         * gst/matroska/matroska-demux.c:
26100         (gst_matroska_demux_parse_blockgroup):
26101           Fix logic error in timing of subtitle stream synchronization.
26102         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
26103           Add skip-chunk, which is found in kodak-camera streams.
26104
26105 2005-01-27  Thomas Vander Stichele  <thomas at apestaart dot org>
26106
26107         * po/LINGUAS:
26108         * po/vi.po:
26109           Adding Vietnamese translation (submitted by Clytie Siddall)
26110
26111 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26112
26113         * gst/playback/gstdecodebin.c: (try_to_link_1):
26114           Use realpad for signal.
26115
26116 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26117
26118         * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_base_init):
26119           Fix category so decodebin picks it up.
26120
26121 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26122
26123         * ext/mad/Makefile.am:
26124         * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_get_type),
26125         (gst_id3demux_bin_base_init), (gst_id3demux_bin_class_init),
26126         (gst_id3demux_bin_init), (gst_id3demux_bin_remove_pad),
26127         (found_type), (gst_id3demux_bin_change_state):
26128         * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
26129         (gst_id3_tag_init), (gst_id3_tag_handle_event),
26130         (gst_id3_tag_src_link), (gst_id3_tag_chain),
26131         (gst_id3_tag_change_state), (plugin_init):
26132         * ext/mad/gstmad.h:
26133           Add id3demuxbin (which is a simple bin consisting of id3demux
26134           and typefind), take over rank from id3demux, remove typefind
26135           code from id3demux. Makes all broken mp3s that I know of work,
26136           and thereby fixes #152688.
26137
26138 2005-01-27  Edward Hervey  <bilboed@bilboed.com>
26139
26140         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26141
26142         * ext/mad/gstmad.c: (gst_mad_src_event):
26143         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
26144           Allow seeks on audio pad, make mad forward those (#164826).
26145         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
26146           Set duration (#165335).
26147
26148 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26149
26150         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
26151         (gst_asf_demux_commit_taglist), (gst_asf_demux_process_comment),
26152         (gst_asf_demux_process_ext_content_desc),
26153         (gst_asf_demux_change_state), (gst_asf_demux_add_audio_stream),
26154         (gst_asf_demux_add_video_stream), (gst_asf_demux_setup_pad):
26155         * gst/asfdemux/gstasfdemux.h:
26156           Improve metadata display, e.g. if the metadata comes before the
26157           streams are loaded (which is perfectly valid).
26158
26159 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26160
26161         * tools/gst-launch-ext-m.m:
26162           Fix AVI/ASF pipelines (#165340).
26163
26164 2005-01-26  Amaury Jacquot  <sxpert@esitcom.org>
26165         * ext/cairo/gsttextoverlay.c: include  string.h and strings.h to fix
26166         build failure on amd64
26167
26168 2005-01-26  Tim-Philipp Müller  <tim at centricular dot net>
26169
26170         * ext/mad/gstid3tag.c: (mad_id3_parse_latin1_string),
26171         (mad_id3_parse_comment_frame), (gst_mad_id3_to_tag_list):
26172           Check environment variables GST_ID3V2_TAG_ENCODING,
26173           GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
26174           list of character encodings to force interpretation of non-unicode
26175           strings stored in an ID3v2 tag to a particular encoding. If none
26176           is specified, try to use current locale's encoding, then fall back
26177           to ISO-8859-1 (which will always succeed). (Resolves #149274)
26178         * gst/tags/gstid3tag.c: (gst_tag_from_id3_tag),
26179         (gst_tag_extract_id3v1_string), (gst_tag_list_new_from_id3v1):
26180           Check environment variables GST_ID3V1_TAG_ENCODING,
26181           GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
26182           list of character encodings to use in case a string encountered
26183           in an ID3v1 tag is not valid UTF-8 already. If no encoding is
26184           specified, try to use the current locale's encoding, then fall
26185           back to ISO-8859-1 (which will always succeed).
26186
26187 2005-01-25  Benjamin Otte  <otte@gnome.org>
26188
26189         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
26190           - on half framerate, compute the rate in advance so the comparisons
26191             don't compare wrong values
26192           - don't use mad_synth/frame_mute anymore, this mirrors mad_decoder
26193             behaviour
26194           - don't use mad_header_decode anymore, mad_frame_decode does that
26195             automatically
26196           - when getting rid of consumed bytes, reset the stream's skiplen
26197           (fixes #163867)
26198
26199 2005-01-26  Jan Schmidt  <thaytan@mad.scientist.com>
26200
26201         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init)
26202           Use 1/2 a second for default max_discont, as PES streams from DVB
26203           seem to have larger spacings in the SCR. 
26204           Fix a typo.
26205
26206 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26207
26208         * gst/playback/gstplaybasebin.c: (group_commit):
26209           Notify delayed stream-info availability.
26210
26211 2005-01-26  Jan Schmidt  <thaytan@mad.scientist.com>
26212         * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
26213         (gst_a52dec_handle_event), (gst_a52dec_chain):
26214         Add some debug output. Check that a discont has a valid
26215         time associated.
26216         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
26217         (gst_alsa_sink_loop):
26218         Ignore TAG events. A little extra debug for broken timestamps.
26219         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init), (dvdnavsrc_loop),
26220         (dvdnavsrc_change_state):
26221         Ensure we send a discont to engage the link before we send any
26222         other events.
26223         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_init),
26224         (dvdreadsrc_finalize), (_close), (_open), (_seek_title),
26225         (_seek_chapter), (seek_sector), (dvdreadsrc_get),
26226         (dvdreadsrc_uri_get_uri), (dvdreadsrc_uri_set_uri):
26227         Handle URI of the form dvd://title[,chapter[,angle]]. Currently only
26228         dvd://title works in totem because typefinding sends a seek that ends
26229         up going back to chapter 1 regardless.
26230         * ext/mpeg2dec/gstmpeg2dec.c:
26231         * ext/mpeg2dec/gstmpeg2dec.h:
26232         Output correct timestamps and handle disconts.
26233         * ext/ogg/gstoggdemux.c: (get_relative):
26234         Small guard against a null dereference.
26235         * ext/pango/gsttextoverlay.c: (gst_textoverlay_finalize),
26236         (gst_textoverlay_set_property):
26237         Free memory when done. Don't call gst_event_filler_get_duration on
26238         EOS events. Use GST_LOG and GST_WARNING instead of g_message and
26239         g_warning.
26240         * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_init),
26241         (draw_line), (gst_smoothwave_dispose), (gst_sw_sinklink),
26242         (gst_sw_srclink), (gst_smoothwave_chain):
26243         Draw solid lines, prettier colours.
26244         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_init):
26245         Add a default palette that'll work for some movies.
26246         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_init),
26247         (gst_dvd_demux_handle_dvd_event), (gst_dvd_demux_send_discont),
26248         (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_reset):
26249         * gst/mpegstream/gstdvddemux.h:
26250         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
26251         (gst_mpeg_demux_parse_syshead), (gst_mpeg_demux_parse_pes):
26252         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
26253         (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead):
26254         * gst/mpegstream/gstmpegparse.h:
26255         Use PTM/NAV events when for timestamp adjustment when connected to 
26256         dvdnavsrc. Don't use many discont events where one suffices.
26257         * gst/playback/gstplaybasebin.c: (group_destroy),
26258         (gen_preroll_element), (gst_play_base_bin_add_element):
26259         * gst/playback/gstplaybasebin.h:
26260         Make sure we remove subtitles from the same bin we put them in.
26261         * gst/subparse/gstsubparse.c: (convert_encoding), (parse_subrip),
26262         (gst_subparse_buffer_format_autodetect),
26263         (gst_subparse_change_state):
26264         Fix some memleaks and invalid accesses.
26265         * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find),
26266         (oggskel_type_find), (cmml_type_find), (plugin_init):
26267         Some typefind functions for Annodex v3.0 files
26268         * gst/wavparse/gstwavparse.h:
26269         GstRiffReadClass is the correct parent class.
26270
26271 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26272
26273         * gst-libs/gst/riff/riff-media.c:
26274         (gst_riff_create_video_caps_with_data):
26275           Add extradata to huffyuv (fixes #165013).
26276         * gst-libs/gst/riff/riff-read.c:
26277         (gst_riff_read_strf_vids_with_data):
26278           Fix extradata extraction if it is in the chunk size.
26279
26280 2005-01-25  Edward Hervey  <bilboed@bilboed.com>
26281
26282         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26283
26284         * gst/effectv/gstquark.c: (gst_quarktv_class_init),
26285         (gst_quarktv_change_state), (gst_quarktv_dispose):
26286           Memory free'ing location fix (#164708).
26287
26288 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26289
26290         * gst/playback/gstplaybasebin.c: (group_commit),
26291         (gen_preroll_element), (probe_triggered), (gen_source_element),
26292         (setup_source), (gst_play_base_bin_change_state),
26293         (gst_play_base_bin_add_element):
26294           Don't block for streams.
26295         * gst/playback/gststreaminfo.c: (stream_info_change_state),
26296         (gst_stream_info_set_mute):
26297           Use gst_pad_set_active_recursive.
26298
26299 2005-01-25  Andy Wingo  <wingo@pobox.com>
26300
26301         * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Fix compile
26302         for #ifndef HAVE_XVIDEO.
26303
26304 2005-01-24  Jeffrey C. Ollie
26305
26306         reviewed by: Maciej Katafiasz  <mathrick@freedesktop.org>
26307
26308         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_chain):
26309         * ext/gsm/gstgsmdec.h:
26310         * ext/gsm/gstgsmenc.c: (gst_gsmenc_init), (gst_gsmenc_chain):
26311         * ext/gsm/gstgsmenc.h:
26312         Fix rate to 8kHz as per spec, removes obscure errors when no rate
26313         was given by property. Add proper buffer timestamps and offsets.
26314
26315 2005-01-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26316
26317         * gst-libs/gst/riff/riff-media.c:
26318         (gst_riff_create_audio_caps_with_data):
26319           Audio can be <8000Hz.
26320
26321 2005-01-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26322
26323         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
26324           Explicit state change to workaround refcount bugs.
26325
26326 2005-01-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26327
26328         * gst/avi/gstavimux.c: (gst_avimux_write_tag),
26329         (gst_avimux_riff_get_avi_header):
26330           Fix...
26331
26332 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26333
26334         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_element_data),
26335         (gst_riff_read_element_data):
26336         * gst-libs/gst/riff/riff-read.h:
26337           Add _peek version (req'ed in CDXA).
26338         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_init),
26339         (gst_cdxaparse_loop):
26340           Fix parsing in playbin.
26341         * gst/playback/gstdecodebin.c: (close_pad_link):
26342           Ignore current_ pads, they cause major annoyance.
26343
26344 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26345
26346         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
26347           Safety guard.
26348
26349 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26350
26351         * gst/avi/gstavimux.c: (gst_avimux_write_tag):
26352           Fix padding...
26353
26354 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26355
26356         * gst/matroska/ebml-read.c: (gst_ebml_read_buffer):
26357           Allow for 0-sized buffers. Fixes length query problems in
26358           starwars.mkv from the testsuite.
26359
26360 2005-01-19  Tim-Philipp Müller  <tim at centricular dot net>
26361
26362         * gst/videobox/gstvideobox.c: (gst_video_box_copy_plane_i420),
26363         (gst_video_box_i420), (gst_video_box_chain):
26364           Fix row strides for I420 (fixes #163159)
26365           
26366 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26367
26368         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
26369           MPEG2 has a useful rate property, so we can actually use that.
26370           For MPEG-1, continue using the bytes/time properties.
26371
26372 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26373
26374         * gst-libs/gst/riff/riff-media.c:
26375         (gst_riff_create_video_caps_with_data),
26376         (gst_riff_create_video_template_caps):
26377           Add intel-h263.
26378
26379 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26380
26381         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
26382           Fail if caps negotiation fails. Should fix #162184, and should
26383           definately be in there regardless of it fixing the actual bug.
26384         * gst/avi/gstavimux.c: (gst_avimux_get_type), (gst_avimux_init),
26385         (gst_avimux_write_tag), (gst_avimux_riff_get_avi_header),
26386         (gst_avimux_riff_get_avix_header),
26387         (gst_avimux_riff_get_video_header),
26388         (gst_avimux_riff_get_audio_header), (gst_avimux_write_index),
26389         (gst_avimux_start_file), (gst_avimux_handle_event),
26390         (gst_avimux_change_state):
26391         * gst/avi/gstavimux.h:
26392           Refactor structure writing to use GST_WRITE_UINT macros, add
26393           metadata writing support.
26394
26395 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26396
26397         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
26398           Elements may already be destroyed when this function is called.
26399
26400 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26401
26402         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
26403         (gst_qtdemux_loop_header), (gst_qtdemux_handle_esds):
26404           More memory leak fixes (#149162).
26405
26406 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26407
26408         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
26409         (gst_qtdemux_add_stream):
26410           Fix two memleaks.
26411
26412 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26413
26414         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
26415           Argh...
26416
26417 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26418
26419         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
26420           Fix off-by-one bug. Fixes warnings during playback of sincity.mp4
26421           when fixating to six channels in Totem.
26422
26423 2005-01-17  Tim-Philipp Müller  <tim at centricular dot net>
26424
26425         * ext/dvdread/dvdreadsrc.c: (get_next_cell_for):
26426           Fix compile warnings on Solaris 10 buildbot
26427
26428 2005-01-17  Tim-Philipp Müller  <tim at centricular dot net>
26429
26430         * ext/dvdread/dvdreadsrc.c: (_read):
26431           Don't read beyond the last cell in a chapter (fixes 
26432           invalid memory access)
26433
26434 2005-01-17  Tim-Philipp Müller  <tim at centricular dot net>
26435
26436         * ext/dvdread/stream_labels.c:
26437         (dvdreadsrc_get_audio_stream_labels):
26438           Use NULL for an empty GList instead of g_list_alloc(); fix 
26439           memory leaks; s/LCPM/LPCM/; use g_strdup_printf() instead 
26440           of GString (easier to bulk free later)
26441
26442 2005-01-17  Gergely Nagy  <algernon@bonehunter.rulez.org>
26443
26444         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26445
26446         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
26447         (gst_ffmpeg_pixfmt_to_caps):
26448           Fix BGRA32 caps (#164209).
26449
26450 2005-01-17  Gergely Nagy  <algernon@bonehunter.rulez.org>
26451
26452         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26453
26454         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
26455         (gst_ffmpeg_caps_to_pixfmt):
26456           alpha_mask can be RGBA/ABGR. Fixes #164265.
26457
26458 2005-01-17  Francis Labonte  <francis_labonte@hotmail.com>
26459
26460         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26461
26462         * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer),
26463         (gst_mpeg2dec_alloc_buffer):
26464         * ext/mpeg2dec/gstmpeg2dec.h:
26465           Crop if decoding size is not the actual image size (#163676).
26466
26467 2005-01-17  Steve Baker  <steve@stevebaker.org>
26468
26469         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26470
26471         * gst/typefind/gsttypefindfunctions.c: (aiff_type_find),
26472         (svx_type_find), (sds_type_find), (ircam_type_find), (plugin_init):
26473           Add libsndfile typefind functions (#163309).
26474
26475 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26476
26477         * tools/gst-launch-ext-m.m:
26478           Add .aac, fix .m1v/.m2v (#163891).
26479
26480 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26481
26482         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_wait):
26483           Sanity check, don't wait endlessly since the clock might not
26484           actually run at this point (which is a deadlock). Fixes #164069.
26485
26486 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26487
26488         * gst/playback/gstplaybasebin.c: (probe_triggered):
26489           Of course, only pause if group is done...
26490
26491 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26492
26493         * gst/playback/gstplaybasebin.c: (probe_triggered):
26494           Thread safety.
26495
26496 2005-01-16  Jan Schmidt  <thaytan@mad.scientist.com>
26497
26498         * ext/swfdec/gstswfdec.c: (gst_swfdec_change_state):
26499           Don't return state change success when the parent
26500           failed.
26501
26502 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26503
26504         * gst/avi/gstavimux.c: (gst_avimux_handle_event):
26505           Free events (fix memleak in #162905).
26506
26507 2005-01-15  Gergely Nagy  <algernon@bonehunter.rulez.org>
26508
26509         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26510
26511         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
26512         (gst_ffmpeg_caps_to_pixfmt):
26513           Fix for depth = 15. Fixes #161675.
26514
26515 2005-01-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26516
26517         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
26518           Set FPS correctly, even for webcams and the like.
26519         * sys/v4l/v4l_calls.c: (gst_v4l_set_chan_norm):
26520           Don error on setting while capturing.
26521
26522 2005-01-14  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
26523
26524         * ext/dv/gstdvdec.c:
26525         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
26526         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
26527           I'm a bad boy. using /1001. to force C to do float division
26528           and not integer division (as it did in my last commit)
26529           Thanks to David I. Lehn for pointing this mistake.
26530
26531 2005-01-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26532
26533         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
26534           Revert Johan's 1.35->1.36 since it breaks compat.
26535
26536 2005-01-14  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
26537
26538         * ext/dv/gstdvdec.c:
26539         * ext/libfame/gstlibfame.c:
26540         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
26541         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
26542           replace framerate aproximations by their real value
26543           (24000/1001, 30000/1001, 60000/1001)
26544           Finish fixing bug #164049
26545
26546 2005-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
26547
26548         * ext/ogg/gstoggmux.c:
26549           eos/bos debugging
26550         * gst/tcp/gstmultifdsink.c:
26551         * gst/tcp/gstmultifdsink.h:
26552         * gst/tcp/gsttcp.c:
26553         * gst/tcp/gsttcp.h:
26554         * gst/tcp/gsttcpclientsink.c:
26555         * gst/tcp/gsttcpclientsrc.c:
26556         * gst/tcp/gsttcpserversink.c:
26557         * gst/tcp/gsttcpserversrc.c:
26558           improve reusability of elements after state changes and errors
26559           make multifdsink throw away streamheaders when receiving new ones
26560
26561 2005-01-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26562
26563         * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
26564           Fix for if items are already in list...
26565
26566 2005-01-12  Benjamin Otte  <otte@gnome.org>
26567
26568         * gst/adder/gstadder.c: (gst_adder_loop):
26569           fix adder a bit so it doesn't screw up with events as much anymore
26570
26571 2005-01-12  Jan Schmidt  <thaytan@mad.scientist.com>
26572
26573         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link),
26574         (pixbufscale_scale), (gst_pixbufscale_chain):
26575         * ext/gdk_pixbuf/pixbufscale.h:
26576           Incorporate changes from Tim-Philipp Mueller <t.i.m@orange.net>
26577           to ensure rowstrides are calculated the same way as 
26578           ffmpegcolorspace
26579           Use gst_buffer_stamp instead of copying TIMESTAMP manually, so
26580           that we pick up duration and offset also.
26581
26582 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26583
26584         * gst/avi/gstavimux.c: (gst_avimux_class_init),
26585         (gst_avimux_pad_unlink), (gst_avimux_release_pad):
26586           Reusability fixes.
26587
26588 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26589
26590         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
26591         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
26592         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
26593         (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
26594           Update flags when requested.
26595
26596 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26597
26598         * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
26599           Fix dmix.
26600
26601 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26602
26603         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
26604         (gst_play_base_bin_init), (gst_play_base_bin_dispose),
26605         (probe_triggered), (new_decoded_pad), (gen_source_element),
26606         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
26607         * gst/playback/gstplaybasebin.h:
26608         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
26609         (gst_play_bin_init), (group_switch), (remove_sinks), (setup_sinks),
26610         (gst_play_bin_change_state):
26611           Implement group-switch signal for use in apps to clear metadata
26612           cache, clean up subtitle, add suburi property instead of # hack,
26613           some error-out fixes.
26614
26615 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26616
26617         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
26618           Debug.
26619         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame):
26620           If we got a state change in the _get handler, don't return success.
26621
26622 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
26623
26624         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_my_output_message),
26625         (gst_jpegdec_my_emit_message), (gst_jpegdec_init):
26626           Make jpegdec quiet on MJPEG decoding
26627         * gst/asfdemux/README:
26628           Fix mimetypes for MJPEG and H263
26629
26630 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26631
26632         * ext/theora/theoradec.c: (theora_dec_chain):
26633           Fix broken code generation by gcc by swapping arguments.
26634         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
26635           Fix \n in debug.
26636
26637 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
26638
26639         * TODO:
26640           delete this file, it is by far outdated
26641         * ext/alsa/gstalsa.1: remove
26642         * ext/alsa/gstalsa.c: (add_rates), (add_channels), (gst_alsa_caps),
26643         (gst_alsa_check_sample_rates), (gst_alsa_rates_probe),
26644         (gst_alsa_get_caps):
26645           Add HW probing for supported sample rates. Fixes #161704
26646
26647 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26648
26649         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
26650           Don't crash, biatch! :).
26651
26652 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26653
26654         * ext/musepack/gstmusepackreader.cpp:
26655         * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
26656           Some work on tags - still doesn't work in playbin...
26657         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
26658           Handle events...
26659
26660 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26661
26662         * gst/qtdemux/qtdemux.c: (qtdemux_parse_tree):
26663           Also shove tags on kid pads.
26664
26665 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26666
26667         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
26668           Don't bail on unknown events.
26669         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
26670           Don't crash on events before negotiation.
26671         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
26672           Send tags on pads, too.
26673         * gst/playback/gststreamselector.c:
26674         (gst_stream_selector_request_new_pad):
26675           Forward events on first pad if no input was selected yet.
26676
26677 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26678
26679         * gst/playback/gstplaybasebin.c: (setup_substreams):
26680           Don't disable streamtype if the stream doesn't exist, since
26681           then playing a video after audio will disable both and nothing
26682           will happen. Fixes the testsuite.
26683
26684 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26685
26686         * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_interface_init),
26687         (gst_v4l_xoverlay_set_xwindow_id):
26688         * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_interface_init),
26689         (gst_v4l2_xoverlay_set_xwindow_id):
26690           Add debug categories, fix overlay disabling.
26691
26692 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
26693
26694         * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_get_caps):
26695         * ext/alsa/gstalsa.h:
26696           Add HW probing for period_count/size and buffer_size MIX/MAX
26697           Adjust default/user defined value if out of bounds
26698           Should fix bug #162024
26699
26700 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26701
26702         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event):
26703           Fix warning (#161191).
26704
26705 2005-01-09  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
26706
26707         * ext/dvdread/stream_labels.c:
26708         (dvdreadsrc_get_audio_stream_labels):
26709           Fix warning (init the good variable in switch default)
26710
26711 2005-01-09  Koop Mast  <kwm@rainbow-runner.nl>
26712
26713         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26714
26715         * gst/tta/gstttaparse.c: (gst_tta_src_event):
26716           Fix gcc-2.95 compile (#163485).
26717
26718 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26719
26720         * configure.ac:
26721         * ext/flac/gstflacenc.c: (gst_flacenc_init),
26722         (gst_flacenc_seek_callback), (gst_flacenc_write_callback),
26723         (gst_flacenc_tell_callback), (gst_flacenc_chain),
26724         (gst_flacenc_change_state):
26725         * ext/flac/gstflacenc.h:
26726           Update for API change in flac-1.1.1. Update requirement in
26727           configure.ac. Fixes #162974.
26728
26729 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26730
26731         * gst/playback/gstplaybasebin.c: (group_destroy):
26732           Remove hack to get rid of assert and get rid of unlinked
26733           signals properly.
26734
26735 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26736
26737         * gst/playback/gstplaybasebin.c: (setup_source):
26738           Set source to NULL so that resources are free'ed. Fixes issues
26739           with playback of CDDA and similar device-accessing things.
26740
26741 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26742
26743         * testsuite/embed/Makefile.am:
26744           test->noinst, fix make test in buildbot.
26745
26746 2005-01-09  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
26747
26748         * ext/dvdread/stream_labels.c: new file
26749         * ext/dvdread/stream_labels.h: new file
26750         * ext/dvdread/Makefile.am:
26751         * ext/dvdread/dvdreadsrc.c: (_seek_title):
26752           Extract audio stream label from DVD IFO files.
26753           It only dump them on the console for now, still have to
26754           make playbin aware of them.
26755
26756 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26757
26758         * gst/playback/gstplaybasebin.c: (setup_source):
26759           Fix hanging subs.
26760
26761 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26762
26763         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
26764         (gen_preroll_element), (remove_groups), (setup_subtitle),
26765         (gen_source_element), (setup_source):
26766         * gst/playback/gstplaybasebin.h:
26767           Multiple .sub files is just a stupid idea... Fix some threading
26768           mistakes. Interestingly, external .sub files cause playbin to
26769           hang, I don't know why... Parsing fixes contributed by Fran??ois
26770           Kooman <fkooman@tuxed.net>.
26771
26772 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26773
26774         * testsuite/embed/Makefile.am:
26775           Fix buildbot.
26776
26777 2005-01-09  Gergely Nagy  <algernon@bonehunter.rulez.org>
26778
26779         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26780
26781         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
26782         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
26783         (gst_pngenc_set_property):
26784         * ext/libpng/gstpngenc.h:
26785           Add compression level property (#163323).
26786
26787 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26788
26789         * configure.ac:
26790         * examples/capsfilter/capsfilter1.c: (main):
26791         * examples/seeking/spider_seek.c: (make_spider_pipeline):
26792         * ext/dvdread/Makefile.am:
26793         * ext/dvdread/demo-play:
26794         * ext/dvdread/demo-play.c:
26795         * gconf/gstreamer.schemas.in:
26796         * gst-libs/gst/gconf/gconf.c:
26797         * sys/v4l/TODO:
26798         * testsuite/Makefile.am:
26799         * testsuite/embed/Makefile.am:
26800         * testsuite/embed/embed.c: (cb_expose), (main):
26801           Remove all references to xvideosink, fix examples (#140845).
26802         * gst/playback/gstplaybasebin.c: (group_destroy):
26803           Apparently, disposal does not unlink - so do explicitely.
26804         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
26805           Add debug.
26806
26807 2005-01-09  Maciej Katafiasz <mathrick@freedesktop.org>
26808
26809         * README: fix PKG_CONFIG_PATH instructions, what was there
26810         previously was breaking default search path, not nice. 
26811         Fixes #163358
26812
26813 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26814
26815         * gst/audioscale/gstaudioscale.c: (gst_audioscale_init),
26816         (gst_audioscale_chain):
26817           %#^@^#@^@#^#@^#@^@#^@#^@#^@#^#@^#@^#@^@#^#@ fix seeking
26818           when resampling - how the ^@$^!@^! is this possible?!?
26819
26820 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26821
26822         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
26823           Reset variables on READY.
26824         * gst/matroska/matroska-mux.c: (gst_matroska_mux_request_new_pad),
26825         (gst_matroska_mux_loop):
26826           Require data before writing header.
26827
26828 2005-01-09  Francis Labonte  <francis_labonte@hotmail.com>
26829
26830         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26831
26832         * ext/mad/gstmad.c: (gst_mad_chain):
26833           Don't call mad_stream_sync() directly after recovering sync.
26834           Fixes #151661.
26835
26836 2005-01-09  Martin Eikermann  <meiker@upb.de>
26837
26838         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26839
26840         * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init),
26841         (snapshot_handler), (gst_snapshot_sinkconnect),
26842         (gst_snapshot_chain):
26843           Allocate resources when required, fix recursive signal emission
26844           and fix caps. Fixes #161667.
26845
26846 2005-01-09  Gergely Nagy  <algernon@bonehunter.rulez.org>
26847
26848         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26849
26850         * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps),
26851         (gst_pngdec_chain):
26852           Handle only 8-bppc (bits-per-pixel-component) images, better
26853           error handling and correct strides. Fixes #163177.
26854         * ext/libpng/gstpngenc.c: (gst_pngenc_sinklink),
26855         (gst_pngenc_chain):
26856           Better error handling. Fixes #163348.
26857
26858 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26859
26860         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_get_type),
26861         (dvdnavsrc_uri_get_type), (dvdnavsrc_uri_get_protocols),
26862         (dvdnavsrc_uri_get_uri), (dvdnavsrc_uri_set_uri),
26863         (dvdnavsrc_uri_handler_init):
26864           Add DVD-nav URI (dvdnav://) for Totem testing purposes.
26865         * gst/playback/gstplaybasebin.c: (gen_source_element):
26866           Add MMS to streaming URIs.
26867
26868 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26869
26870         * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
26871         * sys/xvimage/xvimagesink.c:
26872         (gst_xvimagesink_navigation_send_event):
26873           Check for pad availability before sending event.
26874
26875 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26876
26877         * gst-plugins.spec.in:
26878           Add subparse.
26879
26880 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26881
26882         * configure.ac:
26883           Since we use functions from CVS, up requirement.
26884
26885 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26886
26887         * gst/playback/Makefile.am:
26888         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
26889         (group_destroy), (group_commit), (group_is_muted),
26890         (gen_preroll_element), (add_stream), (unknown_type),
26891         (probe_triggered), (preroll_unlinked), (mute_stream),
26892         (silence_stream), (new_decoded_pad), (setup_substreams),
26893         (setup_source), (get_active_source), (mute_group_type),
26894         (muted_group_change_state), (set_active_source),
26895         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
26896         (play_base_eos), (gst_play_base_bin_change_state):
26897         * gst/playback/gstplaybasebin.h:
26898         * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
26899         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
26900         (gst_stream_info_dispose), (stream_info_mute_pad),
26901         (stream_info_change_state), (gst_stream_info_set_mute):
26902         * gst/playback/gststreamselector.c: (gst_stream_selector_get_type),
26903         (gst_stream_selector_base_init), (gst_stream_selector_class_init),
26904         (gst_stream_selector_init), (gst_stream_selector_dispose),
26905         (gst_stream_selector_get_linked_pad),
26906         (gst_stream_selector_get_caps), (gst_stream_selector_link),
26907         (gst_stream_selector_get_linked_pads),
26908         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
26909         * gst/playback/gststreamselector.h:
26910           Adding stream selection support plus required properties for
26911           applications to use this. Fully fixes #100931.
26912
26913 2005-01-08  Benjamin Otte  <otte@gnome.org>
26914
26915         * gst/games/gstpuzzle.c: (nav_event_handler):
26916           - handle nav events differently: forward every event no matter if it
26917             was handled or not.
26918           - translate events
26919           You can now cheat by using navigationtest ! puzzle and moving the
26920           mouse close to the edge of a tile. ;)
26921
26922 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26923
26924         * configure.ac:
26925         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
26926         * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_get_type),
26927         (gst_ogm_text_parse_base_init), (gst_ogm_text_parse_init),
26928         (gst_ogm_parse_get_sink_querytypes), (gst_ogm_parse_sink_convert),
26929         (gst_ogm_parse_sink_query), (gst_ogm_parse_chain),
26930         (gst_ogm_parse_plugin_init):
26931         * ext/pango/gsttextoverlay.c: (gst_textoverlay_linkedpads),
26932         (gst_textoverlay_link), (gst_textoverlay_getcaps),
26933         (gst_textoverlay_event), (gst_textoverlay_video_chain),
26934         (gst_textoverlay_loop), (gst_textoverlay_init), (plugin_init):
26935         * ext/pango/gsttextoverlay.h:
26936         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
26937         (gst_matroska_demux_handle_seek_event),
26938         (gst_matroska_demux_sync_streams),
26939         (gst_matroska_demux_parse_blockgroup),
26940         (gst_matroska_demux_subtitle_caps),
26941         (gst_matroska_demux_plugin_init):
26942         * gst/matroska/matroska-ids.h:
26943         * gst/playback/gstdecodebin.c: (close_pad_link):
26944         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
26945         (gen_preroll_element), (remove_groups), (add_stream),
26946         (new_decoded_pad), (setup_subtitles), (gen_source_element),
26947         (setup_source):
26948         * gst/playback/gstplaybasebin.h:
26949         * gst/playback/gstplaybin.c: (gen_text_element), (setup_sinks):
26950         * gst/subparse/Makefile.am:
26951         * gst/subparse/gstsubparse.c: (gst_subparse_get_type),
26952         (gst_subparse_base_init), (gst_subparse_class_init),
26953         (gst_subparse_init), (gst_subparse_formats),
26954         (gst_subparse_eventmask), (gst_subparse_event),
26955         (gst_subparse_handle_event), (convert_encoding), (get_next_line),
26956         (parse_mdvdsub), (parse_mdvdsub_init), (parse_subrip),
26957         (parse_subrip_deinit), (parse_subrip_init), (parse_mpsub),
26958         (parse_mpsub_deinit), (parse_mpsub_init),
26959         (gst_subparse_buffer_format_autodetect),
26960         (gst_subparse_format_autodetect), (gst_subparse_loop),
26961         (gst_subparse_change_state), (gst_subparse_type_find),
26962         (plugin_init):
26963         * gst/subparse/gstsubparse.h:
26964         * gst/typefind/gsttypefindfunctions.c: (ogmtext_type_find),
26965         (plugin_init):
26966           Add subtitle support, .sub parser (supports SRT and MPsub),
26967           OGM text support, Matroska UTF-8 text support, deadlock fixes
26968           all over the place, subtitle awareness in decodebin/playbin
26969           and some fixes to textoverlay to handle subtitles in a stream
26970           correctly. Fixes #100931.
26971
26972 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26973
26974         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
26975           Check for pad availability before doing a query on it.
26976
26977 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
26978
26979         * ext/dv/gstdvdec.c:
26980           really fix bpp24/32 dvdec caps (classic rgba indeed)
26981         * gst/asfdemux/gstasfdemux.c:
26982         (gst_asf_demux_process_ext_content_desc):
26983           don't send text tags if they are empty (bis repetita)
26984
26985 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
26986
26987         * ext/dv/gstdvdec.c:
26988          remove unneeded comment from dvdec
26989           (related to DV 4CC codes in AVI files)
26990           moved them in gstreamer/docs/random/mimetypes
26991         * gst/asfdemux/gstasfdemux.c:
26992         (gst_asf_demux_process_ext_content_desc):
26993          don't send text tags if they are empty
26994          fix mem leak on error path
26995         * gst/ffmpegcolorspace/avcodec.h:
26996         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
26997         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
26998         (gst_ffmpegcsp_avpicture_fill):
26999         * gst/ffmpegcolorspace/imgconvert.c: (img_get_alpha_info):
27000         * gst/ffmpegcolorspace/imgconvert_template.h:
27001          adds BGR32 and BGRA32 to ffmpegcolorspace
27002           (still bad colors, fixing it on next commit)
27003           helps with dvdec outputing BGR32
27004
27005 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27006
27007         * ext/dv/gstdvdec.c:
27008          Fix audio caps i just broke (missing ',')
27009         * gst/matroska/matroska-mux.c: (gst_matroska_mux_get_type),
27010         (gst_matroska_mux_reset):
27011          Fix typo + add FIXME about old "x-gst-metadata" crap
27012
27013 2005-01-07  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27014
27015         * ext/dv/demo-play.c: (main):
27016          xvideosink -> xvimagesink
27017         * ext/dv/gstdvdec.c:
27018          change rgb 32/32 caps to 24/32 (no alpha)
27019          change nb of channels to be a list (2 or 4, not 2)
27020          change sample rate to be a list (32, 44.1, 48 kHz) not a range
27021         * gst/asfdemux/gstasfdemux.c:
27022         (gst_asf_demux_process_ext_content_desc):
27023          Add 'date/year' to extracted metadata list
27024
27025 2005-01-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27026
27027         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
27028           The return value of fixate_to does not imply that the requested
27029           value was set, so don't assume.
27030
27031 2005-01-07  Gergely Nagy  <algernon@bonehunter.rulez.org>
27032
27033         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27034
27035         * ext/libpng/gstpngdec.c:
27036         * ext/libpng/gstpngenc.c: (gst_pngenc_base_init),
27037         (gst_pngenc_sinklink), (gst_pngenc_init), (gst_pngenc_chain):
27038         * ext/libpng/gstpngenc.h:
27039           Alpha support (encoder; #163161), mime fixage.
27040
27041 2005-01-07  Sebastien Cote  <sc5@hermes.usherb.ca>
27042
27043         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27044
27045         * ext/faac/gstfaac.c: (gst_faac_outputformat_get_type),
27046         (gst_faac_class_init), (gst_faac_init), (gst_faac_srcconnect),
27047         (gst_faac_set_property), (gst_faac_get_property):
27048         * ext/faac/gstfaac.h:
27049           Allow for ADTS output (#153434).
27050
27051 2005-01-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27052
27053         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
27054           Fix against template (#150576).
27055
27056 2005-01-06  Benjamin Otte  <otte@gnome.org>
27057
27058         * gst/games/gstpuzzle.c: (draw_puzzle):
27059           don't draw a puzzle if either width or height of tiles would be 0.
27060
27061 2005-01-06  Benjamin Otte  <otte@gnome.org>
27062
27063         * gst/games/gstpuzzle.c: (gst_puzzle_get_type),
27064         (gst_puzzle_class_init), (gst_puzzle_finalize):
27065           no memleaks, please
27066         (gst_puzzle_create), (gst_puzzle_init),
27067         (gst_puzzle_set_property), (gst_puzzle_setup):
27068           change initialization code around so we don't reshuffle on resize
27069         (draw_puzzle):
27070           fix another stupid typo
27071
27072 2005-01-06  Benjamin Otte  <otte@gnome.org>
27073
27074         * gst/games/gstvideoimage.c: (copy_hline_YUY2):
27075           fix stupid typo that borked copying on YUY2
27076
27077 2005-01-06  Benjamin Otte  <otte@gnome.org>
27078
27079         * gst/games/gstpuzzle.c: (draw_puzzle):
27080           fix edges when image sizes aren't multiples of tile sizes
27081
27082 2005-01-06  Benjamin Otte  <otte@gnome.org>
27083
27084         * gst/games/gstpuzzle.c: (gst_puzzle_base_init):
27085           make RGB endianness work correctly
27086         (gst_puzzle_show), (gst_puzzle_swap), (gst_puzzle_move):
27087           refactor and fix race with initial shuffling
27088         (nav_event_handler):
27089           allow using the mouse to puzzle
27090         (draw_puzzle):
27091           insist on tiles having width and height as multiples of 4 to get
27092           clean YUV image handling
27093         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
27094         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_buffer_alloc):
27095           s/DEBUG/LOG/ for common messages
27096         (gst_xvimagesink_navigation_send_event):
27097           fix mouse event translation to not include screen PAR
27098         * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
27099           fix mouse event translation to actually work
27100
27101 2005-01-06  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27102
27103         * gst/asfdemux/gstasfdemux.c:
27104         (gst_asf_demux_process_ext_content_desc):
27105          Extract TrackNumber metadata + clean up code
27106         * gst/games/gstvideoimage.c: (gst_video_image_draw_rectangle):
27107          Hope this is the good fix (var used unitialised)
27108
27109 2005-01-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27110
27111         * ext/faad/gstfaad.c: (gst_faad_chain):
27112           Only increment timestamp if it's valid. Fixes raw AAC streams.
27113
27114 2005-01-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
27115
27116         * configure.ac:
27117         * gst/games/Makefile.am:
27118         * gst/games/gstpuzzle.c:
27119           add a puzzle game with...
27120         * gst/games/gstvideoimage.c:
27121         * gst/games/gstvideoimage.h:
27122           ... full colorspace support (that includes YUV9 and RGB16)) stolen
27123           from videotestsrc and made into something that would be a nice
27124           library for a lot of other plugins.
27125
27126 2005-01-06  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27127
27128         * configure.ac:
27129          don't compile faad plugin if a RC of 2.0 is found
27130          Fixes #155346 (and FC1 buildbot)
27131         * gst/asfdemux/gstasfdemux.c:
27132         (gst_asf_demux_process_ext_content_desc):
27133          try to make Solaris compiler happier
27134
27135 2005-01-06  Paul Jack  <pjack@sfaf.org>
27136
27137         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27138
27139         * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init):
27140           Fix segfault (#161667).
27141
27142 2005-01-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27143
27144         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
27145           Fix framerate reporting.
27146
27147 2005-01-05  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27148
27149         * gst-libs/gst/riff/riff-ids.h:
27150         * gst/wavenc/riff.h:
27151          Add AMR (VBR and CBR) ids to riff.h audio codec list
27152         * gst/asfdemux/gstasfdemux.c:
27153         (gst_asf_demux_process_ext_content_desc),
27154         (gst_asf_demux_process_object):
27155           Retrieve more tags from ASF files (Genre, AlbumTitle, Artist)
27156
27157 2005-01-05  Martin Eikermann  <meiker@upb.de>
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_handle_discont):
27163         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_class_init),
27164         (gst_mpeg_demux_handle_discont):
27165           Recreate pads on new-media (#160730).
27166         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_new_pad):
27167           Send discont even if manager changes timestamps (#161929).
27168
27169 2005-01-05  Sebastien Cote  <sc5@hermes.usherb.ca>
27170
27171         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27172
27173         * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16):
27174           Fix invalid memory access (#159211).
27175
27176 2005-01-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27177
27178         * examples/gstplay/player.c: (main):
27179           Don't iterate.
27180         * examples/seeking/seek.c: (fixate), (make_playerbin_pipeline):
27181           Add visualizations.
27182         * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
27183         (gst_a52dec_handle_frame):
27184           Set duration.
27185         * ext/dvdnav/gst-dvd:
27186           Add audioconvert. Fixes #161325.
27187         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get):
27188           Explicitely case to gint64. Possible valgrind error.
27189         * gst-libs/gst/play/play.c: (caps_set), (setup_size),
27190         (gst_play_tick_callback), (gst_play_change_state),
27191         (gst_play_dispose), (gst_play_init), (gst_play_class_init),
27192         (gst_play_set_location), (gst_play_get_location),
27193         (gst_play_seek_to_time), (gst_play_set_data_src),
27194         (gst_play_set_video_sink), (gst_play_set_audio_sink),
27195         (gst_play_set_visualization), (gst_play_connect_visualization),
27196         (gst_play_get_framerate), (gst_play_get_all_by_interface),
27197         (gst_play_new):
27198           Use playbin. Fixes #139749 and #147744.
27199         * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags):
27200           Add genre tag.
27201         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
27202         (audioscale_get_type), (gst_audioscale_base_init),
27203         (gst_audioscale_class_init), (gst_audioscale_expand_caps),
27204         (gst_audioscale_getcaps), (gst_audioscale_fixate),
27205         (gst_audioscale_link), (gst_audioscale_get_buffer),
27206         (gst_audioscale_decrease_rate), (gst_audioscale_increase_rate),
27207         (gst_audioscale_init), (gst_audioscale_dispose),
27208         (gst_audioscale_chain), (gst_audioscale_set_property),
27209         (gst_audioscale_get_property), (plugin_init):
27210           Indent properly.
27211         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
27212           Fix LPCM.
27213         * gst/qtdemux/qtdemux.c: (qtdemux_parse_udta),
27214         (qtdemux_tag_add_str), (qtdemux_tag_add_num),
27215         (qtdemux_tag_add_gnre), (qtdemux_video_caps):
27216           Add more metadata (fixes #162656).
27217
27218 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
27219
27220         * configure.ac:
27221           back to cvs
27222
27223 === release 0.8.7 ===
27224
27225 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
27226
27227         * NEWS:
27228         * RELEASE:
27229         * configure.ac:
27230           releasing 0.8.7, "Hyperspace"
27231
27232 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
27233
27234         patch by: Tim-Philipp Müller  <t.i.m@zen.co.uk>
27235
27236         * gst/playback/gstplaybasebin.c:
27237          Fix for #162924 - free caps after use, not before
27238
27239 2005-01-04  Thomas Vander Stichele  <thomas at apestaart dot org>
27240
27241         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
27242
27243         * gst/playback/gstplaybasebin.c:
27244         * gst/wavparse/gstwavparse.c:
27245           Fix for #154773 - fixes playback of small .wav files
27246
27247 2005-01-03  Thomas Vander Stichele  <thomas at apestaart dot org>
27248
27249         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
27250
27251         * gst/audioscale/gstaudioscale.c:
27252           Fix for #162819 - make audioscale reusable
27253           Fixes playback of more than one file with playbin/totem
27254
27255 2004-12-29  Thomas Vander Stichele  <thomas at apestaart dot org>
27256
27257         * gst/ffmpegcolorspace/avcodec.h:
27258         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
27259         * gst/ffmpegcolorspace/imgconvert.c:
27260           clean up the mess that made me cry and avoid needless duplication
27261
27262 2004-12-29  Thomas Vander Stichele  <thomas at apestaart dot org>
27263
27264         * gst/ffmpegcolorspace/imgconvert.c:
27265           give some indication of why we're segfaulting
27266
27267 2004-12-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27268
27269         * configure.ac:
27270           Fix indentation, fix v4l2 plugin detection.
27271         * ext/Makefile.am:
27272           Fix libmms location (Maciej, use diff -u!).
27273         * ext/alsa/gstalsa.c: (gst_alsa_init):
27274           Initialize caps cache to NULL.
27275         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
27276           Only change state on audiosink if it exists.
27277
27278 2004-12-28  Maciej Katafiasz  <mathrick@mathrick.org>
27279
27280         * gst/matroska/matroska-demux.c:
27281         * gst/matroska/matroska-ids.h:
27282         * gst/matroska/matroska-demux.h:
27283         Fix Vorbis streams failing to decode in some files, where cluster_time
27284         isn't 0, because then it doesn't send codec_priv before actual data.
27285         Remove time-based test and replace it with marker set on beginning of
27286         new stream
27287
27288 2004-12-28  David Schleef  <ds@schleef.org>
27289
27290         Merge patch from Ronald fixing problems with streaming
27291         text.
27292         * ext/cairo/gstcairo.c: (plugin_init):
27293         * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
27294         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
27295         (gst_textoverlay_video_chain), (gst_textoverlay_loop),
27296         (gst_textoverlay_font_init), (gst_textoverlay_init),
27297         (gst_textoverlay_set_property):
27298         * ext/cairo/gsttextoverlay.h:
27299
27300 2004-12-27  David Schleef  <ds@schleef.org>
27301
27302         * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
27303         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
27304         (gst_textoverlay_video_chain), (gst_textoverlay_loop),
27305         (gst_textoverlay_font_init), (gst_textoverlay_init),
27306         (gst_textoverlay_set_property): Improvements to actually
27307         render text as white on black outline on video, including
27308         font selection and horizontal/vertical alignment.  (Ronald's
27309         christmas present)
27310         * ext/cairo/gsttextoverlay.h:
27311
27312 2004-12-26  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
27313
27314         * ext/ogg/gstogg.c:
27315         * ext/ogg/gstogmparse.c:
27316           fix ogm[audio/video]parse plugin registration
27317           (riff won't load if bytestream is already loaded)
27318
27319 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
27320
27321         * gst/audioconvert/gstchannelmix.c:
27322           fix for GLIB < 2.4
27323
27324 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
27325
27326         * Makefile.am:
27327         * configure.ac:
27328           disable docs again until it actually passes make distcheck.
27329
27330 2004-12-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27331
27332         * gst/qtdemux/qtdemux.c: (qtdemux_type_get), (qtdemux_audio_caps):
27333         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
27334         (plugin_init):
27335           Add 3GP (variables name Q3GP because they can't start with a
27336           number). Add samr audio fourcc (used in .3gp files), decoder
27337           is work in progress. Also do a GST_WARNING instead of ERROR
27338           in case of unknown nodes, to decrease output.
27339
27340 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
27341
27342         * Makefile.am:
27343           really fix dist
27344
27345 2004-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
27346
27347         * configure.ac:
27348         * ext/speex/gstspeexdec.h:
27349         * ext/speex/gstspeexenc.h:
27350           Fixes #158382.  Make speex plugin compatible with both 1.0 and 1.1.
27351           Fix detection code in configure.ac
27352
27353 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27354
27355         * gst/matroska/matroska-demux.c:
27356         (gst_matroska_demux_parse_blockgroup):
27357           Save position, so that queries give proper return values. Don't
27358           know how this could ever have worked before...
27359
27360 2004-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
27361
27362         * configure.ac:
27363           Put additional LAME check inside the conditional.  Fixes #152339
27364
27365 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27366
27367         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
27368         (gst_avi_demux_stream_scan):
27369           Add some more debug. Fix logic error when setting movi offset
27370           while reading index.
27371
27372 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27373
27374         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
27375         (gst_avi_demux_stream_scan), (gst_avi_demux_handle_seek),
27376         (gst_avi_demux_process_next_entry):
27377           Add some debugging. Better detection of broken indexes and the
27378           accompanying index recovery. No infinite loops on state changes
27379           when we're still in our loopfunction.
27380
27381 2004-12-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27382
27383         * configure.ac:
27384           Fix up.
27385
27386 2004-12-22  Archana Shah  <archana.shah@wipro.com>
27387
27388         Reviewed by:  Ronald S. Bultje <rbultje@ronald.bitfreak.net>
27389
27390         * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_volume):
27391           Normalizing the value before setting
27392         (gst_sunaudiomixer_get_volume):
27393           Normalizing the value after getting. Fixes bug# 161980
27394
27395 2004-12-22  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
27396
27397         * Makefile.am: Make sure docs gets disted
27398         * docs/Makefile.am: Make sure all needed files get disted
27399         * gst-plugins.spec.in: latest updates
27400
27401 2004-12-22  Wim Taymans  <wim@fluendo.com>
27402
27403         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
27404         Revert patch 1.38 as clock distribution over schedulers does
27405         not work correcly in the core yet.
27406
27407 2004-12-21  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
27408
27409         * sys/oss/README: remove this file, which predates my birth
27410           (and which content is by far outdated)
27411
27412 2004-12-20  Stefan Kost  <ensonic@users.sf.net>
27413
27414         * Makefile.am:
27415         * configure.ac:
27416         * docs/Makefile.am:
27417         * docs/libs/Makefile.am:
27418         * docs/libs/gst-plugins-libs-docs.sgml:
27419         * docs/libs/gst-plugins-libs-sections.txt:
27420         * docs/libs/tmpl/gstgconf.sgml:
27421         * docs/upload.mak:
27422         * docs/version.entities.in:
27423           Added boilerplate gtk-doc files for plugin-libs documentation.
27424
27425 2004-12-19  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
27426
27427         * gst/auparse/gstauparse.c: fix int and float audio caps
27428
27429 2004-12-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27430
27431         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
27432         * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
27433           g_assert() can be a macro, don't use #ifdef inside it.
27434
27435 2004-12-19  Edward Hervey  <bilboed@bilboed.com>
27436
27437         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27438
27439         * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
27440         (gst_videorate_init), (gst_videorate_chain),
27441         (gst_videorate_change_state):
27442           Event handling (fixes #159986).
27443
27444 2004-12-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27445
27446         * gst-libs/gst/riff/riff-media.c:
27447         (gst_riff_create_video_caps_with_data):
27448           Add BLZ0 (Blizzard's version of DivX) fourcc.
27449
27450 2004-12-18  David Schleef  <ds@schleef.org>
27451
27452         * gst/tta/gstttadec.c: (gst_tta_dec_link): And yet another
27453         portability fix.
27454
27455 2004-12-18  David Schleef  <ds@schleef.org>
27456
27457         * gst/tta/ttadec.h: Disable some header code that isn't used
27458         and clearly isn't portable.
27459
27460 2004-12-18  David Schleef  <ds@schleef.org>
27461
27462         * gst/ffmpegcolorspace/imgconvert.c: (get_pix_fmt_info),
27463         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
27464         (avcodec_get_pix_fmt), (avpicture_layout),
27465         (avcodec_get_pix_fmt_loss), (avg_bits_per_pixel), (img_copy),
27466         (get_convert_table_entry), (img_convert), (img_get_alpha_info):
27467         Fix code to not use GCC extensions (and c99 extensions that
27468         Forte does not like.)
27469
27470 2004-12-19  Tim-Philipp Müller  <t.i.m@zen.co.uk>
27471
27472         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27473
27474         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
27475         (gst_deinterlace_chain):
27476           Rowstride fixes. Fixes #161039.
27477         * gst/videocrop/gstvideocrop.c: (gst_video_crop_init),
27478         (gst_video_crop_get_property), (gst_video_crop_add_to_struct_val),
27479         (gst_video_crop_getcaps), (gst_video_crop_link),
27480         (gst_video_crop_i420), (gst_video_crop_chain),
27481         (gst_video_crop_change_state):
27482           Rework of negotiation. Actually works now. Fixes #158650.
27483
27484 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27485
27486         * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_sint):
27487           That was very stupid.
27488
27489 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27490
27491         * gst/matroska/matroska-demux.c:
27492         (gst_matroska_demux_parse_blockgroup):
27493           Fix possible crasher.
27494
27495 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27496
27497         * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_uint),
27498         (gst_matroska_ebmlnum_sint), (gst_matroska_demux_parse_blockgroup):
27499           Lace sizes can be zero.
27500
27501 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27502
27503         * ext/musepack/gstmusepackdec.cpp:
27504           Fetch error return values. Fixes #161624.
27505         * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
27506           Really EOS.
27507
27508 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27509
27510         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index):
27511           Work for truncated (unfinished download etc.) files. Fixes #160514.
27512
27513 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27514
27515         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
27516           Fix for integer overflow. Makes #156001 not crash. Probably masks
27517           the real bug.
27518
27519 2004-12-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27520
27521         * gst/ac3parse/gstac3parse.c: (plugin_init):
27522           Parsers never have ranks. Fixes #159651.
27523
27524 2004-12-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
27525
27526         * gst/playback/gstdecodebin.c: (compare_ranks):
27527           make sure the facotries are ordered the same every time even if they
27528           have the same rank by using the name
27529         * gst/playback/gstdecodebin.c: (find_compatibles):
27530           make sure we don't add factories to the list twice
27531
27532 2004-12-16  David Schleef  <ds@schleef.org>
27533
27534         * configure.ac: look for musepack headers as musepack/*.h
27535         (fixes #159847)
27536         * ext/musepack/gstmusepackdec.h: use <musepack/*.h>
27537         * ext/musepack/gstmusepackreader.h: same
27538
27539 2004-12-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27540
27541         * gst-libs/gst/riff/riff-read.c:
27542         (gst_riff_read_strf_auds_with_data):
27543           Read extradata correctly (fixes #155879).
27544
27545 2004-12-16  David Schleef  <ds@schleef.org>
27546
27547         * gst/audioscale/gstaudioscale.c: allow passthru of >2 channel
27548         audio.  does _not_ attempt or allow conversion unless channels
27549         is 1 or 2.
27550
27551 2004-12-16  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
27552
27553         * tools/gst-launch-ext-m.m: fix mpeg and vob pipelines
27554
27555 2004-12-16  David Schleef  <ds@schleef.org>
27556
27557         * gst/audioscale/gstaudioscale.c: the resample library only
27558         handles 1 or 2 channels.  Change caps to compensate.
27559
27560 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27561
27562         * gst/matroska/matroska-demux.c: (aac_rate_idx), (aac_profile_idx),
27563         (gst_matroska_demux_audio_caps):
27564           Some MPEG-AAC hacks, because else it doesn't work...
27565
27566 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27567
27568         * gst-libs/gst/riff/riff-media.c:
27569         (gst_riff_create_video_caps_with_data),
27570         (gst_riff_create_video_template_caps):
27571           Add h264.
27572
27573 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27574
27575         * gst-libs/gst/audio/Makefile.am:
27576           Try to fix buildbot.
27577
27578 2004-12-16  Thomas Vander Stichele  <thomas at apestaart dot org>
27579
27580         * gst/tcp/gstmultifdsink.c:
27581           Clean up and uniformize debugging.
27582
27583 2004-12-16  Edward Hervey  <bilboed@bilboed.com>
27584
27585         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27586
27587         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
27588         (gst_dvd_demux_reset), (gst_dvd_demux_change_state):
27589         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_reset),
27590         (gst_mpeg_demux_change_state):
27591           Reset on ready. Fixes 160276.
27592
27593 2004-12-16  Sebastien Cote  <sc5@hermes.usherb.ca>
27594
27595         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27596
27597         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
27598         (gst_ffmpegcsp_pad_link):
27599           Fix memleak (#154815).
27600
27601 2004-12-16  James Bowes  <bowes@cs.dal.ca>
27602
27603         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27604
27605         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init),
27606         (gst_musicbrainz_init), (gst_musicbrainz_chain),
27607         (gst_musicbrainz_set_property), (gst_musicbrainz_get_property):
27608         * ext/musicbrainz/gsttrm.h:
27609           Add support for using a proxy server when getting a trm id from
27610           the MusicBrainz database (#149613).
27611
27612 2004-12-16  Christophe Fergeau  <teuf@gnome.org>
27613
27614         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27615
27616         * gst/playback/gstdecodebin.c: (new_pad), (close_link):
27617         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
27618           Fix memleaks (#157233).
27619
27620 2004-12-16  Sebastien Cote  <sc5@hermes.usherb.ca>
27621
27622         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27623
27624         * gst-libs/gst/resample/resample.c: (gst_resample_close):
27625         * gst-libs/gst/resample/resample.h:
27626         * gst/audioscale/gstaudioscale.c:
27627           Fix memleak (#159215).
27628
27629 2004-12-16  Toni Willberg  <toniw@iki.fi>
27630
27631         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27632
27633         * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
27634         * sys/oss/oss_probe.c: (main):
27635           Check for mono/stereo support (similar to samplerate probing),
27636           fixes #159433. Also add missing copyright header to oss_probe.c.
27637
27638 2004-12-15  David Schleef  <ds@schleef.org>
27639
27640         * configure.ac: add audioresample and cairo plugins.  Remove
27641         HAVE_MMX stuff, because it's not used.
27642         * ext/Makefile.am: same
27643         * ext/audioresample/Makefile.am: You are not ready for an
27644         audio resampling element based on audioresample.
27645         * ext/audioresample/gstaudioresample.c:
27646         * ext/audioresample/gstaudioresample.h:
27647         * ext/cairo/Makefile.am: You are not ready for overlay elements
27648         based on cairo.  Don't look too closely, these elements kinda
27649         suck right now.
27650         * ext/cairo/gstcairo.c: new
27651         * ext/cairo/gsttextoverlay.c: new
27652         * ext/cairo/gsttextoverlay.h: new
27653         * ext/cairo/gsttimeoverlay.c: new
27654         * ext/cairo/gsttimeoverlay.h: new
27655         * gst-libs/gst/media-info/media-info-priv.h: fix compile
27656         problem with compilers that don't support variadic macros.
27657
27658 2004-12-15  Balamurali Viswanathan  <balamurali.viswanathan@wipro.com>
27659
27660         Reviewed by:  David Schleef  <ds@schleef.org>
27661
27662         * sys/sunaudio/gstsunaudio.c: (plugin_init):  Apply patch from
27663         Bala, registering sunaudiosrc (oops!), and cleaning up code a
27664         bit.  Also ran indent-gst.
27665         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_init),
27666         (gst_sunaudiosrc_change_state), (gst_sunaudiosrc_get),
27667         (gst_sunaudiosrc_setparams):
27668
27669 2004-12-14  David Schleef  <ds@schleef.org>
27670
27671         * gst/festival/gstfestival.c: (gst_festival_chain): Set the
27672         output rate to 16000.  Should fix #160235.
27673
27674 2004-12-14  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
27675
27676         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
27677         Add typefinding for mpeg2 pes streams
27678
27679 2004-12-13  David Schleef  <ds@schleef.org>
27680
27681         * configure.ac:  Applied patch from bug #143659, making default
27682         sources and sinks OS-dependent (for Solaris), and added code
27683         for OS/X.
27684         * gconf/gstreamer.schemas.in: use OS-dependent sinks in gconf.
27685
27686 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
27687
27688         * gst-libs/gst/riff/riff-media.c:
27689           forgot to add h2.64 to avidemux template caps
27690
27691 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
27692
27693         * gst/wavenc/riff.h:
27694         * gst-libs/gst/riff/riff-media.c:
27695         * gst-libs/gst/riff/riff-ids.h:
27696         * gst/avi/gstavimux.c
27697         add 4CC code for VideoSoft h264 in AVI (VSSH)
27698           fixes bug #160655
27699         remove s323 from riff, it's quicktime specific :(
27700
27701 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
27702
27703         * gst/asfdemux/README
27704         * gst/wavenc/riff.h
27705         * gst-libs/gst/riff/riff-ids.h
27706         * gst-libs/gst/riff/riff-media.c
27707         * gst/qtdemux/qtdemux.c:
27708           add new 4CC codes for h263 related codecs
27709           fixes partially bug #155163
27710
27711 2004-12-12  Christian Fredrik Kalager Schaller  <christian at fluendo dot com>
27712
27713         * configure.ac: Update polyaudio requirement to 0.7
27714         * ext/polyp/polypsink.c: (create_stream): add patch from iain (158258)
27715
27716 2004-12-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
27717
27718         * gst/interleave/deinterleave.c:
27719         fix my name's spelling! :)
27720
27721 2004-12-11  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
27722
27723         * AUTHORS ChangeLog
27724         * gst/auparse/gstauparse.c
27725         * gst/interleave/deinterleave.c
27726         * gst/law/:
27727                 alaw-decode.c alaw-encode.c
27728                 mulaw-decode.c mulaw-encode.c
27729         * gst/oneton/gstoneton.c
27730         * sys/osxaudio/:
27731                 gstosxaudioelement.c gstosxaudiosink.c gstosxaudiosrc.c
27732         * sys/osxvideo/:
27733                 cocoawindow.h cocoawindow.m
27734                 osxvideosink.h osxvideosink.m
27735
27736         put the same mail address for Zaheer Abbas Merali everywhere
27737
27738 2004-12-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27739
27740         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_loop):
27741           Align by packetsize, and assert that we a packet available before
27742           playing. The first makes webstreams work (they often include
27743           trailing padding data in a packet), the second allows pausing a
27744           ASF stream in totem without getting demux errors afterwards.
27745
27746 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27747
27748         * ext/ogg/gstoggdemux.c: (get_relative):
27749           Check for non-NULL before accessing member (end-of-chain).
27750
27751 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27752
27753         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
27754         (cdparanoia_set_property), (cdparanoia_get_property):
27755         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
27756         (dvdnavsrc_set_property), (dvdnavsrc_get_property):
27757         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
27758         (dvdreadsrc_init), (dvdreadsrc_set_property),
27759         (dvdreadsrc_get_property):
27760         * sys/vcd/vcdsrc.c: (gst_vcdsrc_class_init),
27761         (gst_vcdsrc_set_property), (gst_vcdsrc_get_property):
27762           Synchronize property names where not yet the case. Devices are
27763           now device=X, other versions are deprecated (but still exist).
27764           Also use g_free() unconditionally.
27765         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
27766         (setup_source), (gst_play_base_bin_get_property):
27767           Expose source.
27768
27769 2004-12-09  Thomas Vander Stichele  <thomas at apestaart dot org>
27770
27771         * configure.ac: move GCONF macro outside conditional for the am
27772           conditional. Fixes #160439
27773
27774 2004-12-08  David Schleef  <ds@schleef.org>
27775
27776         * tools/gst-visualise-m.m: Switch to elements that currently
27777         exist.
27778
27779 2004-12-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27780
27781         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
27782           We love wrong commas.
27783
27784 2004-12-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27785
27786         * gst/matroska/matroska-demux.c:
27787         (gst_matroska_demux_handle_src_query):
27788           Don't set DEFAULT, unsupported - makes length display incorrectly
27789           in some cases.
27790
27791 2004-12-07  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
27792
27793         * gst/monoscope/README: remove blurb about files being GPL
27794         * gst/monoscope/gstmonoscope.c: Change license field to LGPL
27795         * gst/monoscope/monoscope.c: Change license to BSD with explanation
27796           monoscope is now effectively LGPL licensed
27797
27798 2004-12-07  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
27799
27800         * gst/monoscope/README: Update information to be more correct
27801         * gst/monoscope/convolve.c: Relicense to LGPL
27802         * gst/monoscope/convolve.h: Relicense to LGPL
27803
27804 2004-12-06  Arwed v. Merkatz <v.merkatz@gmx.net>
27805
27806         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
27807           set BUFFER_DURATION to correct values (mpeg1 audio frame length is fixed)
27808         * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link):
27809           set default_duration for mpeg1 audio
27810
27811 2004-12-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
27812
27813         * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_close_audio):
27814         * ext/alsa/gstalsa.h:
27815           refactor big chunks of the core caps negotiation code to make it
27816           a lot faster, because people claim it's really slow
27817           (actually, just cache the getcaps when the device is opened)
27818
27819 2004-12-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27820
27821         * ext/a52dec/gsta52dec.c: (gst_a52dec_init),
27822         (gst_a52dec_handle_event), (gst_a52dec_update_streaminfo),
27823         (gst_a52dec_handle_frame), (gst_a52dec_chain),
27824         (gst_a52dec_change_state), (plugin_init):
27825         * ext/a52dec/gsta52dec.h:
27826           Do something useful with timestamps. Make chain-based (since
27827           there's really no reason to be loopbased).
27828         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
27829           Update current_byte/frame correctly.
27830
27831 2004-12-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27832
27833         * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags),
27834         (gst_ape_demux_stream_init):
27835           Forward tags, too.
27836
27837 2004-12-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27838
27839         * gst/apetag/apedemux.c: (gst_ape_demux_stream_init):
27840           Let's make sure we're done typefinding when detecting tags.
27841
27842 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27843
27844         * gst/matroska/ebml-read.c: (gst_ebml_read_class_init),
27845         (gst_ebml_read_init), (gst_ebml_read_use_event),
27846         (gst_ebml_read_element_id), (gst_ebml_peek_id),
27847         (gst_ebml_read_seek), (gst_ebml_read_skip),
27848         (gst_ebml_read_reserve), (gst_ebml_read_buffer),
27849         (gst_ebml_read_master):
27850         * gst/matroska/ebml-read.h:
27851         * gst/matroska/matroska-demux.c:
27852         (gst_matroska_demux_parse_contents),
27853         (gst_matroska_demux_loop_stream), (gst_matroska_demux_audio_caps):
27854           Disgustingly evil hack for working around INTERRUPT events and
27855           their extremely annoying habit of being a pain in the ass. We
27856           simply peek a cluster before reading any of it.
27857
27858 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27859
27860         * ext/musepack/gstmusepackdec.cpp:
27861           There's also floating point libmusepacks.
27862
27863 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27864
27865         * ext/faad/gstfaad.c: (gst_faad_chanpos_from_gst),
27866         (gst_faad_chanpos_to_gst), (gst_faad_chain):
27867           Set DURATION even if source buffer didn't. Also use increasing
27868           timestamps.
27869         * gst-libs/gst/riff/riff-media.c:
27870         (gst_riff_create_audio_caps_with_data):
27871           Block_align can have larger values than 8192.
27872
27873 2004-12-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27874
27875         * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link):
27876         * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link):
27877         * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link):
27878         * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link):
27879           Fix caps.
27880
27881 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27882
27883         * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
27884           Fix logic bug.
27885
27886 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27887
27888         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
27889           Yay, another one.
27890
27891 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27892
27893         * ext/esd/esdsink.c: (gst_esdsink_chain):
27894           Make error actually say something useful (fixes #156798).
27895         * gst-libs/gst/riff/riff-media.c:
27896         (gst_riff_create_video_caps_with_data),
27897         (gst_riff_create_video_template_caps):
27898           Add Intel Video 5.0 fourcc (IV50).
27899
27900 2004-12-01  Christophe Fergeau  <teuf@gnome.org>
27901
27902         * ext/mad/gstmad.c: (mpg123_parse_xing_header): fix xing header
27903         detection on mono and stereo mp3 files.
27904
27905 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27906
27907         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
27908           Don't crash on EMPTY caps (e.g. when the demuxer didn't recognize
27909           the contained stream).
27910
27911 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27912
27913         * ext/faad/gstfaad.c: (gst_faad_srcconnect), (gst_faad_chain):
27914           Oops, remove debug.
27915
27916 2004-12-01  Sebastien Cote  <sc5@hermes.usherb.ca>
27917
27918         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27919
27920         * gst/law/alaw-decode.c: (alawdec_getcaps):
27921         * gst/law/mulaw-decode.c: (mulawdec_getcaps):
27922           Prevent warnings when negotiating caps (fixes #159338).
27923
27924 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27925
27926         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
27927         (gst_ffmpegcsp_chain):
27928           Remove old leftover that shouldn't be there...
27929
27930 2004-12-01  Sebastien Cote  <sc5@hermes.usherb.ca>
27931
27932         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27933
27934         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
27935           Don't forward DISCONT events (fixes #159684).
27936
27937 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27938
27939         * gst/playback/gstplaybin.c: (remove_sinks), (setup_sinks):
27940           Unlink manually since sometimes bin disposal (and therefore
27941           pad unlinking) is delayed, which will cause a new media file
27942           to not be able to start playing instantly.
27943
27944 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27945
27946         * gst/playback/gststreaminfo.c: (stream_info_mute_pad):
27947           On mute of an unlinked stream, check for pad availability so
27948           we don't crash on unlinked pad.
27949
27950 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27951
27952         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
27953         (gst_avi_demux_massage_index):
27954           Fix quite humiliating bug in omitting 0-sized index chunks but
27955           forgetting to count them for timestamps.
27956
27957 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27958
27959         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
27960           Actually leave the loop if we failed to sync. Don't crash.
27961
27962 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27963
27964         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream),
27965         (gst_dvd_demux_process_private):
27966         * gst/mpegstream/gstdvddemux.h:
27967           Fix crash (#159759). Doesn't work, though. :-(.
27968
27969 2004-11-28  Benjamin Otte  <otte@gnome.org>
27970
27971         * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
27972           more overwriting protection due to modifying channels one by one
27973           instead of all at once
27974
27975 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27976
27977         * gst/audioconvert/gstchannelmix.c:
27978         (gst_audio_convert_fill_normalize):
27979           Normalize using absolute values.
27980
27981 2004-11-28  Julien MOUTTE  <julien@moutte.net>
27982
27983         * configure.ac:
27984         * ext/Makefile.am:
27985         * ext/directfb/Makefile.am:
27986         * ext/directfb/directfbvideosink.c: (gst_directfbvideosink_create),
27987         (gst_directfbvideosink_get_pixel_format),
27988         (gst_directfbvideosink_get_format_from_fourcc),
27989         (gst_directfbvideosink_fixate), (gst_directfbvideosink_getcaps),
27990         (gst_directfbvideosink_sink_link),
27991         (gst_directfbvideosink_change_state),
27992         (gst_directfbvideosink_chain), (gst_directfbvideosink_buffer_free),
27993         (gst_directfbvideosink_buffer_alloc),
27994         (gst_directfbvideosink_interface_supported),
27995         (gst_directfbvideosink_interface_init),
27996         (gst_directfbvideosink_navigation_send_event),
27997         (gst_directfbvideosink_navigation_init),
27998         (gst_directfbvideosink_set_property),
27999         (gst_directfbvideosink_get_property),
28000         (gst_directfbvideosink_finalize), (gst_directfbvideosink_init),
28001         (gst_directfbvideosink_base_init),
28002         (gst_directfbvideosink_class_init),
28003         (gst_directfbvideosink_get_type), (plugin_init):
28004         * ext/directfb/directfbvideosink.h: Adding a first version of
28005         directfbvideosink.
28006         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): Initializing some
28007         more.
28008
28009 2004-11-28  Benjamin Otte  <otte@gnome.org>
28010
28011         * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
28012           walk the samples backwards if out_channels > in_channels so we don't
28013           overwrite data
28014
28015 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28016
28017         * gst/audioconvert/Makefile.am:
28018         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
28019         (gst_audio_convert_link), (gst_audio_convert_change_state),
28020         (gst_audio_convert_channels):
28021         * gst/audioconvert/gstchannelmix.c:
28022         (gst_audio_convert_unset_matrix),
28023         (gst_audio_convert_fill_identical),
28024         (gst_audio_convert_fill_compatible),
28025         (gst_audio_convert_detect_pos), (gst_audio_convert_fill_one_other),
28026         (gst_audio_convert_fill_others),
28027         (gst_audio_convert_fill_normalize),
28028         (gst_audio_convert_fill_matrix), (gst_audio_convert_setup_matrix),
28029         (gst_audio_convert_passthrough), (gst_audio_convert_mix):
28030         * gst/audioconvert/gstchannelmix.h:
28031           Implement a channel mixer.
28032
28033 2004-11-28  Martin Soto  <martinsoto@users.sourceforge.net>
28034
28035         * ext/alsa/gstalsasink.c (gst_alsa_sink_loop):
28036         * ext/alsa/gstalsa.h:
28037         * ext/alsa/gstalsa.c (gst_alsa_set_clock):
28038         Make alsasink actually honor gst_element_set_clock and use that
28039         clock instead of its internal one.
28040
28041 2004-11-27  Christophe Fergeau  <teuf@gnome.org>
28042
28043         * gst/playback/gstplaybasebin.c: (setup_source): fixed a caps leak
28044         (gst_play_base_bin_change_state): nullify source and decoder when
28045         going from READY to NULL so that we don't try to do weird stuff with
28046         them when going from NULL to READY
28047         * gst/playback/gstplaybin.c: (gst_play_bin_init): use gst_object_unref
28048         instead of g_object_unref
28049         (gen_video_element), (gen_audio_element): more refcounting fixes, now
28050         it should be correct
28051         (gst_play_bin_change_state): don't call remove_sinks if we are
28052         currently disposing the object
28053
28054 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28055
28056         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
28057           Don't forget bass if it's there. Else left channel is silent...
28058
28059 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28060
28061         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop),
28062         (gst_a52dec_change_state):
28063           Don't do sample adjusting anymore, we use float audio now.
28064         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
28065           Don't fixate to non-existing properties.
28066
28067 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28068
28069         * ext/a52dec/gsta52dec.c: (gst_a52dec_channels),
28070         (gst_a52dec_change_state):
28071           Advertise that we can do surround sound.
28072
28073 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28074
28075         * ext/a52dec/gsta52dec.c: (gst_a52dec_reneg):
28076           Add buffer-frames=0.
28077         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get_type),
28078         (dvdreadsrc_init), (dvdreadsrc_get_event_mask),
28079         (dvdreadsrc_get_query_types), (dvdreadsrc_get_formats),
28080         (dvdreadsrc_srcpad_event), (dvdreadsrc_srcpad_query),
28081         (_seek_title), (_seek_chapter), (get_next_cell_for), (_read),
28082         (seek_sector), (dvdreadsrc_get), (dvdreadsrc_open_file),
28083         (dvdreadsrc_change_state), (dvdreadsrc_uri_get_type),
28084         (dvdreadsrc_uri_get_protocols), (dvdreadsrc_uri_get_uri),
28085         (dvdreadsrc_uri_set_uri), (dvdreadsrc_uri_handler_init):
28086         * ext/dvdread/dvdreadsrc.h:
28087           Add seeking, querying for bytes, sectors, title, angle and
28088           chapter. Handle multiple chapters. Relicense to LGPL because
28089           Billy agreed on that (thanks Billy!).
28090
28091 2004-11-27  Christophe Fergeau  <teuf@gnome.org>
28092
28093         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose):
28094         call parent dispose method
28095
28096 2004-11-27  Martin Soto  <martinsoto@users.sourceforge.net>
28097
28098         * gst-libs/gst/audio/audioclock.c (gst_audio_clock_set_active)
28099         (gst_audio_clock_get_internal_time):
28100         Fix active <-> inactive transitions: ensure time value always
28101         grows and avoid abrupt value changes.
28102
28103 2004-11-27  Arwed v. Merkatz <v.merkatz@gmx.net>
28104
28105         * configure.ac:
28106         * gst/tta/Makefile.am:
28107         * gst/tta/crc32.h:
28108         * gst/tta/filters.h:
28109         * gst/tta/gsttta.c:
28110         * gst/tta/gstttadec.c:
28111         * gst/tta/gstttadec.h:
28112         * gst/tta/gstttaparse.c:
28113         * gst/tta/gstttaparse.h:
28114         * gst/tta/ttadec.h:
28115           added TTA parser and decoder
28116
28117 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28118
28119         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
28120         (probe_triggered), (check_queue), (buffer_underrun),
28121         (buffer_running), (buffer_overrun), (gen_source_element),
28122         (setup_source):
28123         * gst/playback/gstplaybasebin.h:
28124           Implement buffering. Needs some more work.
28125
28126 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28127
28128         * ext/theora/theoradec.c: (theora_dec_chain):
28129           Fix ilog mask range overflow.
28130
28131 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28132
28133         * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
28134           Don't omit the last (which in case of dmix is the only :) )
28135           channel count. Don't set channels if <= 2.
28136
28137 2004-11-26  Christophe Fergeau  <teuf@gnome.org>
28138
28139         * gst/playback/gstplaybin.c: (gen_video_element),
28140         (gen_audio_element): Removed 2 obsolete comments
28141
28142 2004-11-26  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
28143
28144         * ext/vorbis/oggvorbisenc.c
28145         * ext/vorbis/vorbisenc.c :
28146           change description fields of those plugins to differentiate them
28147           (pitivi show Encoders by description, they had the same one)
28148
28149 2004-11-25  Christophe Fergeau  <teuf@gnome.org>
28150
28151         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28152
28153         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
28154         (gst_play_bin_set_property), (gen_video_element),
28155         (gen_audio_element):
28156           Refcounting fixes for provided audio-/videosinks.
28157
28158 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28159
28160         * gst/playback/gstplaybin.c: (gen_video_element),
28161         (gen_audio_element), (setup_sinks), (gst_play_bin_change_state):
28162           Don't reference all sinks, but only the video- and audiosinks.
28163           The vis. element should be disposed when we're done with it.
28164           We don't have any reason to keep it around. This fixes warnings
28165           when reusing playbin for playing multiple audio files with
28166           vis. enabled. Also release audio device on pause - idea stolen
28167           from Rhythmbox.
28168
28169 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28170
28171         * ext/a52dec/gsta52dec.c: (gst_a52dec_channels), (gst_a52dec_push),
28172         (gst_a52dec_reneg), (gst_a52dec_loop), (plugin_init):
28173         * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
28174         * ext/alsa/gstalsaplugin.c: (plugin_init):
28175         * ext/dts/gstdtsdec.c: (gst_dtsdec_channels),
28176         (gst_dtsdec_renegotiate), (gst_dtsdec_loop), (plugin_init):
28177         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_chanpos_from_gst),
28178         (gst_faad_chanpos_to_gst), (gst_faad_sinkconnect),
28179         (gst_faad_srcgetcaps), (gst_faad_srcconnect), (gst_faad_chain),
28180         (gst_faad_change_state), (plugin_init):
28181         * ext/faad/gstfaad.h:
28182         * ext/vorbis/vorbis.c: (plugin_init):
28183         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
28184         * gst-libs/gst/audio/Makefile.am:
28185         * gst-libs/gst/audio/audio.c: (plugin_init):
28186         * gst-libs/gst/audio/multichannel.c:
28187         (gst_audio_check_channel_positions),
28188         (gst_audio_get_channel_positions),
28189         (gst_audio_set_channel_positions),
28190         (gst_audio_set_structure_channel_positions_list),
28191         (add_list_to_struct), (gst_audio_set_caps_channel_positions_list),
28192         (gst_audio_fixate_channel_positions):
28193         * gst-libs/gst/audio/multichannel.h:
28194         * gst-libs/gst/audio/testchannels.c: (main):
28195         * gst/audioconvert/gstaudioconvert.c:
28196         (gst_audio_convert_class_init), (gst_audio_convert_init),
28197         (gst_audio_convert_dispose), (gst_audio_convert_getcaps),
28198         (gst_audio_convert_parse_caps), (gst_audio_convert_link),
28199         (gst_audio_convert_fixate), (gst_audio_convert_channels):
28200         * gst/audioconvert/plugin.c: (plugin_init):
28201           Surround sound support.
28202
28203 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28204
28205         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
28206           Fix position for discont if we're close as well. Nitpicking, but
28207           saves a few milliseconds of extra waiting or skipping.
28208
28209 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28210
28211         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter):
28212           We sometimes need parsers for playback, so add those too.
28213
28214 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28215
28216         * configure.ac:
28217         * gst/apetag/Makefile.am:
28218         * gst/apetag/apedemux.c: (gst_ape_demux_get_type),
28219         (gst_ape_demux_base_init), (gst_ape_demux_class_init),
28220         (gst_ape_demux_init), (gst_ape_demux_get_src_formats),
28221         (gst_ape_demux_get_src_query_types),
28222         (gst_ape_demux_handle_src_query), (gst_ape_demux_get_event_mask),
28223         (gst_ape_demux_handle_src_event), (gst_ape_demux_handle_event),
28224         (gst_ape_demux_typefind_peek), (gst_ape_demux_typefind_get_length),
28225         (gst_ape_demux_typefind_suggest), (gst_ape_demux_typefind),
28226         (gst_ape_demux_parse_tags), (gst_ape_demux_stream_init),
28227         (gst_ape_demux_stream_data), (gst_ape_demux_loop),
28228         (gst_ape_demux_change_state):
28229         * gst/apetag/apedemux.h:
28230         * gst/apetag/apetag.c: (plugin_init):
28231         * gst/typefind/gsttypefindfunctions.c: (apetag_type_find),
28232         (plugin_init):
28233           APE v1/2 tag reader plus typefind function.
28234
28235 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28236
28237         * configure.ac:
28238         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
28239         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
28240           Remove hacks for older core. Require newer core version
28241           accordingly.
28242
28243 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28244
28245         * gst/cdxaparse/Makefile.am:
28246         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_get_type),
28247         (gst_cdxaparse_class_init), (gst_cdxaparse_init),
28248         (gst_cdxaparse_loop), (gst_cdxaparse_change_state), (plugin_init):
28249         * gst/cdxaparse/gstcdxaparse.h:
28250         * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_get_type),
28251         (gst_cdxastrip_base_init), (gst_cdxastrip_class_init),
28252         (gst_cdxastrip_init), (gst_cdxastrip_get_src_formats),
28253         (gst_cdxastrip_get_src_query_types),
28254         (gst_cdxastrip_handle_src_query), (gst_cdxastrip_get_event_mask),
28255         (gst_cdxastrip_handle_src_event), (gst_cdxastrip_strip),
28256         (gst_cdxastrip_sync), (gst_cdxastrip_handle_event),
28257         (gst_cdxastrip_chain), (gst_cdxastrip_change_state):
28258         * gst/cdxaparse/gstcdxastrip.h:
28259           SVCD/VCD header stripping separated from CDXA image parsing.
28260         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
28261         (plugin_init):
28262           Add VCD/SVCD header typefinding for VCD/SVCD.
28263         * sys/vcd/vcdsrc.c: (gst_vcdsrc_get_type), (gst_vcdsrc_base_init),
28264         (gst_vcdsrc_class_init), (gst_vcdsrc_init),
28265         (gst_vcdsrc_set_property), (gst_vcdsrc_get_property),
28266         (gst_vcdsrc_get_event_mask), (gst_vcdsrc_get_query_types),
28267         (gst_vcdsrc_get_formats), (gst_vcdsrc_srcpad_event),
28268         (gst_vcdsrc_srcpad_query), (gst_vcdsrc_get),
28269         (gst_vcdsrc_open_file), (gst_vcdsrc_close_file),
28270         (gst_vcdsrc_change_state), (gst_vcdsrc_msf),
28271         (gst_vcdsrc_recalculate), (gst_vcdsrc_uri_get_type),
28272         (gst_vcdsrc_uri_get_protocols), (gst_vcdsrc_uri_get_uri),
28273         (gst_vcdsrc_uri_set_uri), (gst_vcdsrc_uri_handler_init):
28274         * sys/vcd/vcdsrc.h:
28275           Fix up, add seeking, querying, URI interface. Works in totem now.
28276
28277 2004-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
28278
28279         * configure.ac:
28280           back to CVS
28281
28282 === release 0.8.6 ===
28283
28284 2004-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
28285
28286         * NEWS:
28287         * RELEASE:
28288         * configure.ac:
28289         * po/af.po:
28290         * po/az.po:
28291         * po/cs.po:
28292         * po/en_GB.po:
28293         * po/hu.po:
28294         * po/it.po:
28295         * po/nb.po:
28296         * po/nl.po:
28297         * po/or.po:
28298         * po/sq.po:
28299         * po/sr.po:
28300         * po/sv.po:
28301         * po/uk.po:
28302           releasing 0.8.6, "IOU Love"
28303
28304 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
28305
28306         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
28307
28308         * gst/playback/gstplaybasebin.c:
28309           Fix unplayable files error handling.  Fixes #158365
28310
28311 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
28312
28313         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
28314
28315         * gst/typefind/gsttypefindfunctions.c:
28316           Fix broken mp3 typefinding.  Fixes #158375
28317
28318 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
28319
28320         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
28321
28322         * ext/ogg/gstoggdemux.c:
28323           Fix sync on broken files.  Fixes #158976
28324
28325 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
28326
28327         patch by: Edward Hervey <bilboed@bilboed.com>
28328
28329         * ext/libpng/gstpngenc.c:
28330           Copy over buffer properties.  Fixes #158832
28331
28332 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
28333
28334         patch by: Tim-Philipp Müller <t.i.m@zen.co.uk>
28335
28336         * ext/dvdread/dvdreadsrc.c:
28337           Fixes invalid reads (#158462)
28338
28339 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
28340
28341         * sys/v4l/gstv4lsrc.c:
28342         * sys/v4l/gstv4lsrc.h:
28343         * sys/v4l/v4lsrc_calls.c:
28344           Probe less and cache it.  Fixes #159187.
28345
28346 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
28347
28348         * gst/videorate/gstvideorate.c:
28349           Handle all video formats. Fixes #159186.
28350
28351 2004-11-16  Jan Schmidt  <thaytan@mad.scientist.com>
28352         * gst/synaesthesia/gstsynaesthesia.c:
28353         (gst_synaesthesia_class_init), (gst_synaesthesia_init),
28354         (gst_synaesthesia_dispose), (gst_synaesthesia_finalize),
28355         (gst_synaesthesia_sink_link), (gst_synaesthesia_src_getcaps),
28356         (gst_synaesthesia_src_link), (gst_synaesthesia_chain),
28357         (gst_synaesthesia_change_state), (plugin_init):
28358         Fix up synaesthesia to work under different samplerates/ buffer sizes.
28359         Force 320x200 output, as that's the only thing the underlying
28360         synaesthesia implementation supports. Still needs to be made
28361         re-entrant.
28362
28363 2004-11-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28364
28365         * configure.ac:
28366           Fix mpeg2enc configure check (similar to mplex check below).
28367
28368 2004-11-14  Koop Mast  <kwm@rainbow-runner.nl>
28369
28370         reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28371
28372         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
28373           Fix for gcc-2.95 (fixes #158221).
28374
28375 2004-11-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28376
28377         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
28378           Re-add clock distribution hack (until new core is released).
28379           Fixes #158125.
28380
28381 2004-11-13  Arwed v. Merkatz  <v.merkatz@gmx.net>
28382         * configure.ac:
28383           fix mplex configure check segfaulting on some systems (bug #140994)
28384
28385 2004-11-13  Benjamin Otte  <otte@gnome.org>
28386
28387         * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait):
28388           add debugging
28389         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
28390           do a wait when we enter the loop func with no data available to
28391           write instead of getting into an 100% CPU loop by just returning and
28392           being called again by the scheduler
28393
28394 2004-11-13  Jan Schmidt  <thaytan@mad.scientist.com>
28395
28396         * configure.ac:
28397         * ext/libvisual/visual.c: (gst_visual_get_type),
28398         (libvisual_log_handler), (gst_visual_getcaps),
28399         (gst_visual_srclink), (gst_visual_change_state), (make_valid_name),
28400         (plugin_init):
28401           Update libvisual to 0.1.7. Link in the debug handling to gstreamer
28402         * ext/smoothwave/Makefile.am:
28403         * ext/smoothwave/demo-osssrc.c: (main):
28404         * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_class_init),
28405         (gst_smoothwave_init), (gst_smoothwave_dispose), (gst_sw_sinklink),
28406         (gst_sw_srclink), (gst_smoothwave_chain), (gst_sw_change_state),
28407         (plugin_init):
28408         * ext/smoothwave/gstsmoothwave.h:
28409           Make gstsmoothwave a working element in the 20th century.
28410
28411         * gst/chart/gstchart.c: (gst_chart_init), (gst_chart_srcconnect):
28412           Fix incorrect link function
28413
28414 2004-11-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28415
28416         * gst/volume/gstvolume.c:
28417           Allow buffer-frames=0.
28418
28419 2004-11-12 Iain <iaingnome@gmail.com>
28420
28421         * configure.ac: Check for polypaudio
28422
28423         * ext/Makefile.am: Build the polyp dir
28424
28425         * ext/polyp: The polypsink sources.
28426
28427 2004-10-30 Iain <iaingnome@gmail.com>
28428
28429         * gst/interleave/interleave.c (interleave_unlink): Change the src pads
28430         caps to reflect the new number of channels.
28431
28432 2004-11-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28433
28434         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
28435           Fix for negotiation order problem. This would show when the
28436           ALSA loopfuction was called before any other function. ALSA
28437           wouldn't do anything because we're not negotiated yet, leading
28438           to an infinite loop. Showed in e.g. Rhythmbox. Fixes #158006.
28439
28440 2004-11-11  Tim-Philipp Müller  <t.i.m@zen.co.uk>
28441
28442         reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28443
28444         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
28445           No warnings (#157986).
28446
28447 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28448
28449         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
28450           Prefer apev1/2 and id3v1 (at end of file) over musepack.
28451
28452 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28453
28454         * gst/matroska/matroska-demux.c: (gst_matroska_demux_loop_stream):
28455           Signal no-more-pads (so it works in playbin).
28456
28457 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28458
28459         * ext/musepack/gstmusepackreader.cpp:
28460           Workaround for older core.
28461
28462 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28463
28464         * gst/ffmpegcolorspace/imgconvert.c: (yuv420p_to_yuv422):
28465           Actually test for odd width/height rather than testing whether
28466           a temporary variable that was 0 before we subtracted 1 is now
28467           not equal to zero (which it always is).
28468
28469 2004-11-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
28470
28471         * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
28472         Fix compilation if HAVE_XVIDEO is not defined
28473
28474 2004-11-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
28475
28476         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
28477         Fix compilation if HAVE_XVIDEO is not defined
28478
28479 2004-11-11  Jan Schmidt  <thaytan@mad.scientist.com>
28480
28481         * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
28482         (gst_goom_dispose), (gst_goom_sinkconnect), (gst_goom_chain),
28483         (gst_goom_change_state), (plugin_init):
28484         Use the bytestream adapter so goom doesn't depend on the input
28485         buffer size.
28486         Add a debug category
28487
28488 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28489
28490         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
28491           Only set hardware parameters *after* negotiation. Before
28492           negotiation, it will set ANY and that seems to cause crashes
28493           (see e.g. #151288, #153227).
28494
28495 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28496
28497         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
28498           This seems to be antique leftover. It needs to pass error
28499           checking.
28500         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
28501         (gst_sdlvideosink_deinitsdl), (gst_sdlvideosink_initsdl),
28502         (gst_sdlvideosink_destroy), (gst_sdlvideosink_create),
28503         (gst_sdlvideosink_sinkconnect), (gst_sdlvideosink_chain):
28504           Fix GstXOverlay implementation (#151059).
28505
28506 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28507
28508         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
28509           Don't assert (#157853).
28510
28511 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28512
28513         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
28514           Fix bytes/samples confustion.
28515         (gst_alsa_sink_mmap), (gst_alsa_sink_loop):
28516           Fix for underrun (#144389).
28517
28518 2004-11-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28519
28520         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
28521           Disable halfway-seek for pending release (since it needs a new
28522           core release).
28523
28524 2004-11-09  Thomas Vander Stichele  <thomas at apestaart dot org>
28525
28526         * sys/v4l/gstv4lsrc.c:
28527         * sys/v4l/gstv4lsrc.h:
28528         * sys/v4l/v4lsrc_calls.c:
28529           add autoprobe-fps property so we can separate autoprobing parts
28530
28531 2004-11-09  Thomas Vander Stichele  <thomas at apestaart dot org>
28532
28533         * sys/v4l/gstv4lsrc.c:
28534         * sys/v4l/v4lsrc_calls.c:
28535         initialise fourcc to catch unset fourcc's, and debug
28536
28537 2004-11-09  Wim Taymans  <wim@fluendo.com>
28538
28539         * gst/playback/README:
28540         * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
28541         * gst/playback/gstplaybin.c: (gst_play_bin_init),
28542         (gst_play_bin_dispose), (gst_play_bin_set_property),
28543         (remove_sinks), (setup_sinks), (gst_play_bin_change_state),
28544         (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
28545         (gst_play_bin_get_formats), (gst_play_bin_convert),
28546         (gst_play_bin_get_query_types), (gst_play_bin_query):
28547         Cleanups and some more documentation.
28548
28549 2004-11-09  Jan Schmidt  <thaytan@mad.scientist.com>
28550
28551         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
28552         (gst_cacasink_init), (gst_cacasink_chain):
28553         * ext/libcaca/gstcacasink.h:
28554         Cacasink inherits from VideoSink, so let that store the clock.
28555
28556 2004-11-09  Wim Taymans  <wim@fluendo.com>
28557
28558         * gst/playback/README:
28559         * gst/playback/gstplaybasebin.c: (group_destroy), (group_is_muted),
28560         (add_stream), (unknown_type), (add_element_stream), (no_more_pads),
28561         (probe_triggered), (preroll_unlinked), (new_decoded_pad),
28562         (gst_play_base_bin_change_state), (gst_play_base_bin_found_tag):
28563         * gst/playback/gstplaybin.c: (gen_vis_element), (remove_sinks),
28564         (setup_sinks):
28565         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute),
28566         (gst_stream_info_is_mute), (gst_stream_info_set_property):
28567         * gst/playback/gststreaminfo.h:
28568         Updated README.
28569         Only switch groups if all streams have muted (EOSed).
28570         Send Tags in sync with the stream playback instead of in
28571         the playback/preroll phase.
28572         Some cleanups, free the fakesrc elements.
28573
28574 2004-11-09  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28575
28576         * ext/alsa/gstalsa.c: (gst_alsa_get_caps_internal):
28577           buffer-frames property was missing
28578         * ext/arts/gst_arts.c:
28579           rate missing from sinkcaps
28580         * ext/audiofile/gstafparse.c:
28581         * ext/audiofile/gstafsink.c:
28582         * ext/audiofile/gstafsrc.c:
28583         * ext/swfdec/gstswfdec.c:
28584           int audio doesn't know buffer-frames
28585         * ext/cdparanoia/gstcdparanoia.c:
28586           int audio doesn't know chunksize either
28587         * ext/nas/nassink.c:
28588           it's endianness, not endianess
28589         * gst-libs/gst/audio/audio.h:
28590           make float standard pad template caps really describe float
28591         * gst/law/mulaw.c: (linear_factory):
28592           signed only, please
28593         * gst/mpegstream/gstdvddemux.c:
28594           widths of 20 are not valid
28595
28596 2004-11-08  Thomas Vander Stichele  <thomas at apestaart dot org>
28597
28598         Submitted by: Luca Ferretti <elle.uca@infinito.it>
28599
28600         * po/LINGUAS:
28601         * po/it.po:
28602           Add Italian
28603
28604 2004-11-08  Wim Taymans  <wim@fluendo.com>
28605
28606         * gst/playback/README:
28607         * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
28608         * gst/playback/gstplaybasebin.c: (probe_triggered),
28609         (gst_play_base_bin_change_state):
28610         Updated README, added more comments for fixmes etc..
28611
28612 2004-11-08  Wim Taymans  <wim@fluendo.com>
28613
28614         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
28615         We can remove this hack now.
28616
28617 2004-11-08  Wim Taymans  <wim@fluendo.com>
28618
28619         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_ayuv),
28620         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
28621         (gst_videomixer_blend_buffers), (gst_videomixer_loop):
28622         Only mix AYUV for maximum quality.
28623
28624 2004-11-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28625
28626         * ext/ogg/gstoggdemux.c: (get_relative), (gst_ogg_demux_src_query),
28627         (gst_ogg_demux_push), (gst_ogg_pad_push):
28628           Let's act as if we're synchronized now! :).
28629         * ext/theora/theoradec.c: (theora_dec_chain):
28630           Add some debug.
28631
28632 2004-11-08  Wim Taymans  <wim@fluendo.com>
28633
28634         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
28635         (gst_alpha_set_property), (gst_alpha_sink_link),
28636         (gst_alpha_set_ayuv), (gst_alpha_set_i420),
28637         (gst_alpha_chroma_key_ayuv), (gst_alpha_chroma_key_i420),
28638         (gst_alpha_init_params), (gst_alpha_chain):
28639         Implement alpha functions for AYUV too, this increases
28640         accuracy quite a bit.
28641
28642 2004-11-08  Wim Taymans  <wim@fluendo.com>
28643
28644         * gst/ffmpegcolorspace/avcodec.h:
28645         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
28646         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
28647         (gst_ffmpegcsp_avpicture_fill):
28648         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
28649         (gst_ffmpegcsp_caps_remove_format_info):
28650         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
28651         (shrink12), (img_get_alpha_info), (deinterlace_line),
28652         (deinterlace_line_inplace):
28653         * gst/ffmpegcolorspace/imgconvert_template.h:
28654         Added AYUV colorspace and handle RGBA a bit more respectful.
28655
28656 2004-11-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28657
28658         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
28659           Actually always send a discont (cornercase when resending the
28660           same serial-tagged chain twice).
28661
28662 2004-11-08  Julien MOUTTE  <julien@moutte.net>
28663
28664         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_clear),
28665         (gst_ximagesink_finalize):
28666         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
28667         (gst_xvimagesink_finalize): Some more cleanups, leaks fixed and checks.
28668
28669 2004-11-08  Wim Taymans  <wim@fluendo.com>
28670
28671         * gst/typefind/gsttypefindfunctions.c: (aac_type_find):
28672         Don't segfault on NULL data.
28673
28674 2004-11-08  Wim Taymans  <wim@fluendo.com>
28675
28676         * gst/playback/gstdecodebin.c: (unlinked):
28677         * gst/playback/gstplay-marshal.list:
28678         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
28679         (gst_play_base_bin_init), (group_create), (get_active_group),
28680         (get_building_group), (group_destroy), (group_commit),
28681         (queue_overrun), (remove_groups), (add_stream), (unknown_type),
28682         (add_element_stream), (no_more_pads), (probe_triggered),
28683         (preroll_unlinked), (new_decoded_pad), (removed_decoded_pad),
28684         (state_change), (setup_source), (gst_play_base_bin_get_property),
28685         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
28686         (gst_play_base_bin_link_stream),
28687         (gst_play_base_bin_get_streaminfo):
28688         * gst/playback/gstplaybasebin.h:
28689         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
28690         (remove_sinks), (setup_sinks), (gst_play_bin_change_state):
28691         Add support for chained ogg files. Prepare for playlist
28692         support. This patch introduces the concept of pad groups, which
28693         together compose one playable media file.
28694
28695 2004-11-07  David Schleef  <ds@schleef.org>
28696
28697         * testsuite/gst-lint: Check for pad templates that aren't statically
28698         scoped.
28699
28700 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28701
28702         * configure.ac:
28703         * ext/Makefile.am:
28704         * ext/musepack/Makefile.am:
28705         * ext/musepack/gstmusepackdec.cpp:
28706         * ext/musepack/gstmusepackdec.h:
28707         * ext/musepack/gstmusepackreader.cpp:
28708         * ext/musepack/gstmusepackreader.h:
28709           Add musepack decoder.
28710         * ext/faad/gstfaad.c: (gst_faad_base_init):
28711           Make pad templates static.
28712         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
28713         (plugin_init):
28714           Add musepack typefinder, make mp3 typefinding work halfway stream,
28715           which doesn't actually work yet because id3demux doesn't implement
28716           _get_length().
28717
28718 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28719
28720         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
28721         (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop):
28722           Fix interrupt event handling (#144436).
28723
28724 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28725
28726         * ext/mad/gstid3tag.c: (gst_id3_tag_do_typefind):
28727           Hide unused glory.
28728
28729 2004-11-06  Tim-Philipp Müller  <t.i.m@zen.co.uk>
28730
28731         reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28732
28733         * ext/vorbis/vorbisenc.c: (raw_caps_factory):
28734           Fix weird caps (#157548).
28735
28736 2004-11-06  Tim-Philipp Müller  <t.i.m@zen.co.uk>
28737
28738         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28739
28740         * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsm_caps_nego):
28741           Add missing NULL terminator (#157543).
28742
28743 2004-11-05  Thomas Vander Stichele  <thomas at apestaart dot org>
28744
28745         * gst/tcp/gsttcp.h:
28746         * gst/tcp/gsttcpclientsink.c:
28747         * gst/tcp/gsttcpclientsrc.c:
28748         * gst/tcp/gsttcpserversink.c:
28749         * gst/tcp/gsttcpserversrc.c:
28750           ports can go up to 65535.  Move common defines to gsttcp.h
28751
28752 2004-11-05  Wim Taymans  <wim@fluendo.com>
28753
28754         * gst/videotestsrc/videotestsrc.c: (paint_setup_Y41B),
28755         (paint_hline_Y41B), (paint_setup_Y42B), (paint_hline_Y42B):
28756         Added two more colorspaces.
28757
28758 2004-11-05  Wim Taymans  <wim@fluendo.com>
28759
28760         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
28761         (gst_ffmpegcsp_avpicture_fill):
28762         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
28763         (yuv422p_to_yuv422), (yuv420p_to_yuv422), (shrink12),
28764         (img_convert), (deinterlace_line), (deinterlace_line_inplace):
28765         More stride fixes.
28766
28767 2004-11-05  Wim Taymans  <wim@fluendo.com>
28768
28769         * gst/alpha/gstalpha.c: (gst_alpha_set_property), (gst_alpha_add),
28770         (gst_alpha_chroma_key), (gst_alpha_init_params), (gst_alpha_chain):
28771         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
28772         (gst_videomixer_fill_checker), (gst_videomixer_blend_buffers),
28773         (gst_videomixer_loop):
28774         More stride fixes.
28775
28776 2004-11-05  Benjamin Otte  <otte@gnome.org>
28777
28778         * ext/mad/gstmad.c: (gst_mad_chain):
28779           don't overflow data buffer. Flush not needed sync data when syncing
28780           failed.
28781
28782 2004-11-04  Wim Taymans  <wim@fluendo.com>
28783
28784         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
28785         (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
28786         (gst_alpha_get_property), (gst_alpha_add), (gst_alpha_chroma_key),
28787         (gst_alpha_init_params), (gst_alpha_chain),
28788         (gst_alpha_change_state):
28789         Updated the chroma keying algorithm with something more
28790         sophisticated.
28791
28792 2004-11-03  Wim Taymans  <wim@fluendo.com>
28793
28794         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
28795         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
28796         (gst_videomixer_blend_buffers), (gst_videomixer_loop):
28797         Fix stride issues. Does not completely work for odd
28798         heights.
28799
28800 2004-11-03  Wim Taymans  <wim@fluendo.com>
28801
28802         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
28803         (gst_alpha_chroma_key), (gst_alpha_chain):
28804         Fix stride issues. Does not completely work for odd
28805         heights.
28806
28807 2004-11-03  Christophe Fergeau  <teuf@gnome.org>
28808
28809         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
28810         * gst/videoscale/videoscale.c: (videoscale_find_by_structure):
28811         leak fixes
28812
28813 2004-11-03  Wim Taymans  <wim@fluendo.com>
28814
28815         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
28816         (gst_ffmpegcsp_avpicture_fill):
28817         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
28818         (avpicture_alloc):
28819         * gst/ffmpegcolorspace/imgconvert_template.h:
28820         Use correct _fill function to get correct strides.
28821
28822 2004-11-02  David Schleef  <ds@schleef.org>
28823
28824         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
28825         (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_parse_tree),
28826         (qtdemux_parse_udta), (qtdemux_tag_add), (gst_qtdemux_handle_esds):
28827         Change all g_print()s to debugging.  Add a bunch of consistency
28828         checks.
28829
28830 2004-11-02  Wim Taymans  <wim@fluendo.com>
28831
28832         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
28833         (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
28834         (unlinked), (no_more_pads), (close_link):
28835         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
28836         (unknown_type), (add_element_stream), (new_decoded_pad),
28837         (removed_decoded_pad), (setup_source):
28838         * gst/playback/gststreaminfo.c: (gst_stream_info_get_type),
28839         (gst_stream_info_class_init), (gst_stream_info_init),
28840         (gst_stream_info_new), (gst_stream_info_dispose),
28841         (stream_info_mute_pad), (gst_stream_info_set_property),
28842         (gst_stream_info_get_property):
28843         * gst/playback/gststreaminfo.h:
28844         Fix playback of multiple files.
28845         a slightly different approach to handling dynamic pad removals.
28846         This one only looks at pads that we have linked.
28847
28848 2004-11-01  Christophe Fergeau  <teuf@gnome.org>
28849
28850         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_finalize): fix an "invalid
28851         free" warning from libc.
28852
28853 2004-11-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28854
28855         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
28856         (get_unconnected_element), (remove_starting_from), (pad_removed),
28857         (close_link):
28858           Implement support for dynamic pad changing. We listen to "live"
28859           pad removals (i.e. while playing) and re-setup autoplugging
28860           after that. Playbasebin/playbin need some more work for this
28861           to finally work, but decodebin supports (and replugs) chained
28862           ogg now.
28863
28864 2004-11-02  Jan Schmidt  <thaytan@mad.scientist.com>
28865
28866         * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_dispose),
28867         (gst_alsa_finalize):
28868         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init),
28869         (gst_cdaudio_finalize):
28870         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
28871         (cdparanoia_finalize):
28872         * ext/divx/gstdivxdec.c: (gst_divxdec_dispose):
28873         * ext/divx/gstdivxenc.c: (gst_divxenc_dispose):
28874         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
28875         (dvdreadsrc_finalize):
28876         * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
28877         (gst_flacdec_finalize):
28878         * ext/flac/gstflacenc.c: (gst_flacenc_class_init),
28879         (gst_flacenc_finalize):
28880         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_class_init),
28881         (gst_gnomevfssink_finalize):
28882         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_class_init),
28883         (gst_gnomevfssrc_finalize):
28884         * ext/libfame/gstlibfame.c: (gst_fameenc_class_init),
28885         (gst_fameenc_finalize):
28886         * ext/nas/nassink.c: (gst_nassink_class_init),
28887         (gst_nassink_finalize):
28888         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_finalize),
28889         (gst_sdlvideosink_class_init):
28890         * ext/sndfile/gstsf.c: (gst_sf_dispose):
28891         * gst-libs/gst/mixer/mixertrack.c: (gst_mixer_track_dispose):
28892         * gst-libs/gst/tuner/tunerchannel.c: (gst_tuner_channel_dispose):
28893         * gst-libs/gst/tuner/tunernorm.c: (gst_tuner_norm_dispose):
28894         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
28895         (gst_x_window_listener_dispose):
28896         * gst/audioscale/gstaudioscale.c:
28897         * gst/playondemand/gstplayondemand.c: (play_on_demand_class_init),
28898         (play_on_demand_finalize):
28899         * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose):
28900         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
28901         * sys/cdrom/gstcdplayer.c: (cdplayer_class_init),
28902         (cdplayer_finalize):
28903         * sys/glsink/glimagesink.c: (gst_glimagesink_finalize),
28904         (gst_glimagesink_class_init):
28905         * sys/oss/gstosselement.c: (gst_osselement_class_init),
28906         (gst_osselement_finalize):
28907         * sys/oss/gstosssink.c: (gst_osssink_dispose):
28908         * sys/oss/gstosssrc.c: (gst_osssrc_dispose):
28909         * sys/v4l/gstv4lelement.c: (gst_v4lelement_dispose):
28910           Fixes a bunch of problems with finalize and dispose functions,
28911           either assumptions that dispose is only called once, or not calling
28912           the parent class dispose/finalize function
28913
28914 2004-11-01  Stefan Kost  <ensonic@users.sf.net>
28915
28916         * ext/esd/esdsink.c: (gst_esdsink_init), (gst_esdsink_link):
28917           added two api precondition guards
28918           use g_strdup with getenv to fix crash when using ENVVAR
28919
28920 2004-11-01  Jan Schmidt  <thaytan@mad.scientist.com>
28921         * ext/esd/esdsink.c: (gst_esdsink_class_init),
28922         (gst_esdsink_finalize):
28923         Use a finalize function, not dispose, and more importantly,
28924         call the parent class finalize function too
28925
28926 2004-11-01  Johan Dahlin  <johan@gnome.org>
28927
28928         * ext/ogg/gstoggdemux.c:
28929         * gst/tags/gstvorbistag.c:
28930         Plug leaks.
28931
28932 2004-10-31  Benjamin Otte  <otte@gnome.org>
28933
28934         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
28935           lotsa memleaks today. But they're all small...
28936
28937 2004-10-31  Benjamin Otte  <otte@gnome.org>
28938
28939         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
28940           another memleak crushed
28941
28942 2004-10-31  Benjamin Otte  <otte@gnome.org>
28943
28944         * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
28945           fix memleak
28946
28947 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28948
28949         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
28950           Hack to prevent crash when going to READY inside signal handler
28951           while this function is active.
28952
28953 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28954
28955         * gst/ffmpegcolorspace/Makefile.am:
28956         * gst/ffmpegcolorspace/avcodec.h:
28957         * gst/ffmpegcolorspace/common.h:
28958         * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
28959         * gst/ffmpegcolorspace/dsputil.h:
28960         * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
28961         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
28962         (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
28963         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps),
28964         (gst_ffmpegcsp_codectype_to_caps), (gst_ffmpeg_caps_to_smpfmt),
28965         (gst_ffmpeg_caps_to_pixfmt), (gst_ffmpegcsp_caps_with_codectype),
28966         (gst_ffmpegcsp_avpicture_fill):
28967         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
28968         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
28969         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
28970         (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_get_type),
28971         (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
28972         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
28973         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
28974         (gst_ffmpegcsp_get_property), (gst_ffmpegcolorspace_register):
28975         * gst/ffmpegcolorspace/imgconvert.c:
28976         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
28977         (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
28978         (avpicture_get_size), (avcodec_get_pix_fmt_loss),
28979         (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
28980         (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
28981         (yuv422_to_yuv420p), (uyvy422_to_yuv420p), (uyvy422_to_yuv422p),
28982         (yuv422_to_yuv422p), (yuv422p_to_yuv422), (yuv422p_to_uyvy422),
28983         (uyvy411_to_yuv411p), (yuv420p_to_yuv422), (C_JPEG_TO_CCIR),
28984         (img_convert_init), (img_apply_table), (shrink41), (shrink21),
28985         (shrink12), (shrink22), (shrink44), (grow21_line), (grow41_line),
28986         (grow21), (grow22), (grow41), (grow44), (conv411),
28987         (gif_clut_index), (build_rgb_palette), (bitcopy_n), (mono_to_gray),
28988         (monowhite_to_gray), (monoblack_to_gray), (gray_to_mono),
28989         (gray_to_monowhite), (gray_to_monoblack), (avpicture_alloc),
28990         (avpicture_free), (is_yuv_planar), (img_convert),
28991         (get_alpha_info_pal8), (img_get_alpha_info), (deinterlace_line),
28992         (deinterlace_line_inplace), (deinterlace_bottom_field),
28993         (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
28994         * gst/ffmpegcolorspace/imgconvert_template.h:
28995         * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
28996         * gst/ffmpegcolorspace/mmx.h:
28997         * gst/ffmpegcolorspace/utils.c: (av_mallocz), (av_strdup),
28998         (av_fast_realloc), (av_mallocz_static), (av_free_static),
28999         (av_freep), (avcodec_get_context_defaults),
29000         (avcodec_alloc_context), (avcodec_init):
29001           Sync back from gst-ffmpeg. Deprecates ffcolorspace. Adds palette
29002           handling plus update from ffmpeg CVS. Large clean-up.
29003
29004 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29005
29006         * gst/playback/Makefile.am:
29007           We need the marshallers for decodebin, too.
29008
29009 2004-10-30  David Schleef  <ds@schleef.org>
29010
29011         * gst/typefind/gsttypefindfunctions.c: (qt_type_find): Make
29012           quicktime typefinding work with 64-bit offsets.
29013
29014 2004-10-30  Jan Schmidt  <thaytan@mad.scientist.com>
29015
29016         * ext/dv/gstdvdec.c: (gst_dvdec_handle_sink_event):
29017           Set EOS on the element when processing an EOS event.
29018         * ext/speex/gstspeexdec.h:
29019         * ext/speex/gstspeexenc.h:
29020           Only keep a const ptr to the mode
29021         * gst-libs/gst/riff/riff-media.c:
29022         (gst_riff_create_audio_caps_with_data),
29023         (gst_riff_create_audio_template_caps):
29024           Allow WMAV3, with up to 6 channels.
29025         * gst/asfdemux/gstasfmux.c: (gst_asfmux_request_new_pad):
29026           Don't call gst_pad_set_event_function on a sink pad.
29027         * gst/mpegstream/gstdvddemux.c:
29028         (gst_dvd_demux_get_subpicture_stream),
29029         (gst_dvd_demux_set_cur_audio), (gst_dvd_demux_set_cur_subpicture):
29030           Copy the explicit caps that were set across to the cur_* pads,
29031           instead of trying to use a possibly non-existent negotiated caps.
29032           Reset the type of subpicture pads to UNKNOWN after calling
29033           init_stream, so that the caps get set.
29034
29035 2004-10-29  Martin Pitt  <martin.pitt@canonical.com>
29036
29037         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29038
29039         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
29040           Don't touch buffer if it is of size 0 (fixes #151064).
29041
29042 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29043
29044         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push), (gst_ogg_pad_push):
29045           Synchronized discont handling.
29046
29047 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29048
29049         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
29050         (gst_ogg_demux_push):
29051           Make seeking sort-of exact again (fixes #156387).
29052
29053 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29054
29055         * gst/playback/gstplaybasebin.c: (unknown_type),
29056         (add_element_stream), (new_decoded_pad),
29057         (gst_play_base_bin_change_state):
29058         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
29059         (gst_stream_info_init), (gst_stream_info_new),
29060         (gst_stream_info_dispose), (gst_stream_info_get_property):
29061         * gst/playback/gststreaminfo.h:
29062           Make caps explicitely available. Makes testing for unsupported
29063           types possible. Improves error reporting.
29064
29065 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29066
29067         * gst/audioconvert/gstaudioconvert.c:
29068         (gst_audio_convert_buffer_to_default_format):
29069           Really don't touch read-only buffers (#156563).
29070
29071 2004-10-29  Sebastien Cote  <sc5@hermes.usherb.ca>
29072
29073         Reviewd by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29074
29075         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
29076           Fix memleak (#155223).
29077
29078 2004-10-29  Wim Taymans  <wim@fluendo.com>
29079
29080         * gst/tcp/.cvsignore:
29081         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
29082         (gst_multifdsink_class_init), (gst_multifdsink_init),
29083         (gst_multifdsink_add), (gst_multifdsink_remove),
29084         (gst_multifdsink_remove_client_link), (is_sync_frame),
29085         (gst_multifdsink_new_client),
29086         (gst_multifdsink_handle_client_write),
29087         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
29088         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
29089         (gst_multifdsink_get_property):
29090         * gst/tcp/gstmultifdsink.h:
29091         Added burst on connect sync_method, deprecated sync_clients,
29092         streamlined the sync code some more.
29093
29094 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29095
29096         * gst/playback/gstplaybasebin.c: (thread_error), (setup_source),
29097         (gst_play_base_bin_change_state):
29098           Improve error reporting.
29099
29100 2004-10-28  Wim Taymans  <wim@fluendo.com>
29101
29102         * gst/tcp/Makefile.am:
29103         * gst/tcp/fdsetstress.c: (mess_some_more), (run_test), (main):
29104         * gst/tcp/gstfdset.c: (nearest_pow), (resize), (ensure_size),
29105         (gst_fdset_new), (gst_fdset_free), (gst_fdset_set_mode),
29106         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
29107         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
29108         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
29109         (gst_fdset_wait):
29110         Added more locks around fdset structures. Fixed/reworked
29111         the poll array resizing code.
29112         Added stress test for fdset.
29113
29114 2004-10-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
29115
29116         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
29117         fix build
29118
29119 2004-10-28  Benjamin Otte  <otte@gnome.org>
29120
29121         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
29122           fix link function to always query channels and query width for
29123           floats
29124         * configure.ac:
29125           add equalizer dir
29126         * gst/equalizer/Makefile.am:
29127         * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_get_type),
29128         (gst_iir_equalizer_base_init), (gst_iir_equalizer_class_init),
29129         (gst_iir_equalizer_init), (gst_iir_equalizer_finalize),
29130         (arg_to_scale), (setup_filter),
29131         (gst_iir_equalizer_compute_frequencies),
29132         (gst_iir_equalizer_set_property), (gst_iir_equalizer_get_property),
29133         (gst_iir_equalizer_filter_inplace), (gst_iir_equalizer_setup),
29134         (plugin_init):
29135           add an equalizer
29136
29137 2004-10-27  Thomas Vander Stichele  <thomas at apestaart dot org>
29138
29139         Submitted by: Kjartan Maraas <kmaraas@broadpark.no>
29140
29141         * po/LINGUAS:
29142         * po/nb.po:
29143           Added Norwegian Bokmaal translation
29144
29145 2004-10-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29146
29147         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
29148           Don't break on options (fixes #156488).
29149
29150 2004-10-27  Thomas Vander Stichele  <thomas at apestaart dot org>
29151
29152         * configure.ac:
29153         * ext/cdaudio/Makefile.am:
29154         * sys/Makefile.am:
29155           fix build on older automake
29156
29157 2004-10-26  Wim Taymans  <wim@fluendo.com>
29158
29159         * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
29160         (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
29161         Allow a little margin when negotiating the framerate.
29162
29163 2004-10-26  Stefan Kost  <ensonic@users.sf.net>
29164
29165         * gst/level/gstlevel.c:
29166           synchonised naming of pads and pad-templates
29167
29168 2004-10-26  Wim Taymans  <wim@fluendo.com>
29169
29170         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
29171         (gst_ogg_demux_handle_event), (_find_chain_get_unknown_part),
29172         (_find_streams_check), (gst_ogg_demux_push):
29173         Fix EOS again. Needs to be done in a better way. We should not
29174         remove the pad if there is no new chained stream.
29175
29176 2004-10-26 Iain <iaingnome@gmail.com>
29177
29178         * ext/ogg/gstoggdemux.c (gst_ogg_pad_new): Free the tag list.
29179         * gst/audioscale/gstaudioscale.c (gst_audioscale_link): Free the copy
29180         of the caps.
29181         * gst/interleave/interleave.c (interleave_class_init): Hook up release
29182         pad.
29183         (interleave_release_pad): Remove the pad.
29184         * gst/level/gstlevel.c: Allow the level to take 1 or 2 channels.
29185         * sys/sunaudio/gstsunaudio.c (gst_sunaudio_setparams): Pay attention to
29186         the set device.
29187         * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support): Free the
29188         attrs
29189         (gst_xvimagesink_xcontext_clear): Free the xcontext.
29190         (gst_xvimagesink_finalize): Free the par.
29191
29192 2004-10-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29193
29194         * gst/avi/gstavimux.c: (gst_avimux_audsinkconnect),
29195         (gst_avimux_stop_file):
29196           First calculate the rate, and only then use it. Hdr.rate is a
29197           multiple and not a derivative of hdr.scale. Scale is not the
29198           same as blockalign but is solely related to rate.
29199
29200 2004-10-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29201
29202         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
29203         (gst_gnomevfssink_handle_event), (gst_gnomevfssink_chain):
29204           Implement seeking.
29205
29206 2004-10-25  James Henstridge  <james@jamesh.id.au>
29207
29208         Reviewed by:  David Schleef  <ds@schleef.org>
29209
29210         * examples/gstplay/player.c: (got_stream_length), (main):
29211         * examples/seeking/cdplayer.c: (update_scale):
29212         * examples/seeking/seek.c: (format_value), (update_scale):
29213         * examples/seeking/spider_seek.c: (format_value), (update_scale),
29214         (stop_seek):
29215         Build fixes on AMD64.
29216
29217 2004-10-25  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
29218
29219         reviewed by: Ronald Bultje <rbultje at gnome dot org>
29220
29221         * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
29222         Fix for some v4l cards which hang in v4lsrc
29223
29224 2004-10-25  Wim Taymans  <wim@fluendo.com>
29225
29226         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_remove),
29227         (gst_ogg_demux_push), (gst_ogg_chains_clear):
29228         Make sure to remove the pad when a new chain is
29229         encountered. Set some vars to NULL so we don't try
29230         to reference freed memory.
29231
29232 2004-10-25  Wim Taymans  <wim@fluendo.com>
29233
29234         * examples/seeking/Makefile.am:
29235         * examples/seeking/cdplayer.c: (update_scale):
29236         * examples/seeking/chained.c: (unlinked), (new_pad), (main):
29237         * examples/seeking/playbin.c: (make_playerbin_pipeline),
29238         (format_value), (update_scale), (iterate), (start_seek),
29239         (stop_seek), (print_media_info), (play_cb), (pause_cb), (stop_cb),
29240         (print_usage), (main):
29241         Added some more examples, update others.
29242
29243 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29244
29245         * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
29246         * ext/speex/gstspeexdec.c: (speex_dec_chain):
29247         * ext/theora/theoradec.c: (theora_dec_chain):
29248         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
29249           Add codec-name metadata.
29250
29251 2004-10-25  Takao Fujiwara  <Takao.Fujiwara@Sun.COM>
29252
29253         Reviewd by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29254
29255         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
29256         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
29257         * ext/alsa/gstalsamixertrack.h:
29258         * po/POTFILES.in:
29259           ALSA mixer track label internationalization (#154054).
29260
29261 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29262
29263         * ext/theora/theoradec.c: (theora_dec_chain):
29264           Export bitrate as metadata.
29265
29266 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29267
29268         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
29269         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
29270         * ext/alsa/gstalsamixertrack.h:
29271           Fix names, fix loop.
29272
29273 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29274
29275         * ext/speex/gstspeexdec.c: (gst_speex_dec_init),
29276         (speex_dec_convert):
29277           sinkconvert function so oggdemux can get the file length (totem).
29278
29279 2004-10-25  James Morrison  <ja2morri@csclub.uwaterloo.ca>
29280
29281         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29282
29283         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
29284           Don't push incomplete packets.
29285         * gst/typefind/gsttypefindfunctions.c: (m4a_type_find):
29286           Fix MPEG-4 audio typefinding.
29287
29288 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29289
29290         * sys/v4l/Makefile.am:
29291         * sys/v4l/gstv4l.c: (plugin_init):
29292         * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_type),
29293         (gst_v4lelement_init), (gst_v4lelement_dispose),
29294         (gst_v4lelement_change_state):
29295         * sys/v4l/gstv4lelement.h:
29296         * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_open),
29297         (gst_v4l_xoverlay_close), (idle_refresh),
29298         (gst_v4l_xoverlay_set_xwindow_id):
29299         * sys/v4l/gstv4lxoverlay.h:
29300         * sys/v4l/v4l-overlay_calls.c:
29301         * sys/v4l/v4l_calls.h:
29302         * sys/v4l2/Makefile.am:
29303         * sys/v4l2/gstv4l2.c: (plugin_init):
29304         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_type),
29305         (gst_v4l2element_init), (gst_v4l2element_dispose),
29306         (gst_v4l2element_change_state):
29307         * sys/v4l2/gstv4l2element.h:
29308         * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_open),
29309         (gst_v4l2_xoverlay_close), (idle_refresh),
29310         (gst_v4l2_xoverlay_set_xwindow_id):
29311         * sys/v4l2/gstv4l2xoverlay.h:
29312         * sys/v4l2/v4l2-overlay_calls.c:
29313         * sys/v4l2/v4l2_calls.h:
29314           Remove client-side overlay handling, use the X-server v4l plugin
29315           for that. Nicer overlay, less code. Also make the plugin
29316           compileable without X (but then without overlay, obviously).
29317           Makes xwindowlistener obsolete, should we remove that?
29318
29319 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29320
29321         * sys/oss/gstosssrc.c: (gst_osssrc_get_time), (gst_osssrc_get),
29322         (gst_osssrc_src_query):
29323         * sys/oss/gstosssrc.h:
29324           OK, so people want offset in DEFAULT. This time, actually fix all
29325           cases.
29326         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
29327           Add FPS properly.
29328
29329 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29330
29331         * gst/asfdemux/gstasfmux.c:
29332         * gst/avi/gstavimux.c:
29333           Framerate.
29334
29335 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29336
29337         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_set_property):
29338           Fix properties (channel, norm, frequency).
29339
29340 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29341
29342         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_property):
29343           Flag typo.
29344         * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults):
29345           No warnings.
29346
29347 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29348
29349         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_clear_format_list):
29350           Fix hang.
29351
29352 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29353
29354         * sys/v4l2/gstv4l2element.h:
29355           Yet Another Hack (tm) for kernel header borkedness.
29356         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
29357         (gst_v4l2src_v4l2fourcc_to_caps), (gst_v4l2_fourcc_from_structure),
29358         (gst_v4l2src_link), (gst_v4l2src_getcaps),
29359         (gst_v4l2src_change_state):
29360         * sys/v4l2/gstv4l2src.h:
29361         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_capture_init),
29362         (gst_v4l2src_capture_start), (gst_v4l2src_capture_stop):
29363           Fix caps, keep track of state, work.
29364
29365 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29366
29367         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
29368           Quiet.
29369
29370 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29371
29372         * sys/oss/gstosssrc.c: (gst_osssrc_get):
29373           Don't mix bytes and samples.
29374
29375 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29376
29377         * ext/ogg/gstoggmux.c:
29378           Basic pad template which accepts OGM tracks, speex, flac, vorbis
29379           and theora. Any is incorrect.
29380         * gst/asfdemux/gstasfmux.c: (gst_asfmux_vidsink_link):
29381           Fix caps.
29382         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
29383         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
29384         (gst_v4lmjpegsrc_init), (gst_v4lmjpegsrc_srcconnect),
29385         (gst_v4lmjpegsrc_getcaps), (gst_v4lmjpegsrc_change_state):
29386         * sys/v4l/gstv4lmjpegsrc.h:
29387         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
29388         (gst_v4lsrc_change_state):
29389         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_start),
29390         (gst_v4lmjpegsrc_capture_stop):
29391           Fix caps. Keep track of internal state. Work.
29392
29393 2004-10-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29394
29395         * ext/Makefile.am:
29396           Fix the build fixes.
29397
29398 2004-10-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29399
29400         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
29401         (gst_ogg_demux_src_event), (_find_chain_seek),
29402         (gst_ogg_pad_push):
29403           Check for pad availability before using it.
29404         * ext/ogg/gstoggdemux.c: (_find_chain_process):
29405           Fix parsing of chained ogg. Needs more work on the decoder side.
29406
29407 2004-10-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29408
29409         * gst/spectrum/Makefile.am:
29410         * gst/spectrum/demo-osssrc.c: (spectrum_chain), (main),
29411         (idle_func):
29412           Fix demo and reenable it. Yes, I'm currently playing with audio
29413           analysis tools
29414
29415 2004-10-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29416
29417         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
29418           We love it if files that start at zero work too...
29419
29420 2004-10-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29421
29422         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
29423           Handle files with missing EOS headers.
29424
29425 2004-10-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
29426
29427         * gst/tcp/gsttcpserversink.c:
29428         (gst_tcpserversink_handle_server_read),
29429         (gst_tcpserversink_init_send):
29430         Zero some variables first (need for accept not to return EINVAL)
29431
29432 2004-10-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29433
29434         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
29435         (gst_ogg_demux_src_event), (gst_ogg_pad_push):
29436         * ext/theora/theoradec.c: (theora_dec_sink_convert),
29437         (theora_dec_chain):
29438         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
29439         (gst_vorbis_dec_init), (vorbis_dec_convert), (vorbis_dec_chain):
29440           Seeking and querying finetune.
29441
29442 2004-10-20  Thomas Vander Stichele  <thomas at apestaart dot org>
29443
29444         * configure.ac:
29445         * ext/Makefile.am:
29446         * ext/raw1394/Makefile.am:
29447           fix the build
29448
29449 2004-10-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29450
29451         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
29452           Wrong return.
29453         * gst/playback/Makefile.am:
29454         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
29455         * gst/playback/gstplay-marshal.list:
29456         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
29457           Fix marshallers.
29458
29459 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29460
29461         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event):
29462           Silence.
29463
29464 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29465
29466         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
29467         (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
29468         (gst_ogg_pad_push):
29469           Yay for non-lineair granulepos in theora.
29470
29471 2004-10-18  Wim Taymans  <wim@fluendo.com>
29472
29473         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
29474         (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
29475         * ext/dv/gstdvdec.h:
29476         Make sure we renegotiate aspect ratio when the camera switches.
29477
29478 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29479
29480         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
29481         (gst_ogg_demux_src_event), (gst_ogg_pad_push):
29482           Start at zero.
29483         * ext/theora/theoradec.c: (theora_dec_chain):
29484           Skip headers. Bad idea for chained ogg, but fixes seeking.
29485
29486 2004-10-18  Wim Taymans  <wim@fluendo.com>
29487
29488         * configure.ac:
29489         I swear, this is the last time I touch this.
29490
29491 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29492
29493         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
29494         (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
29495         (_read_bos_process), (gst_ogg_demux_iterate), (gst_ogg_pad_new):
29496           Faster seeking.
29497         * ext/theora/theoradec.c: (theora_dec_sink_convert):
29498           Time-to-default conversion.
29499         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
29500           Don't error on unknown packets, just skip. We should probably
29501           read them if we want to support chained ogg.
29502
29503 2004-10-18  Wim Taymans  <wim@fluendo.com>
29504
29505         * configure.ac:
29506         Added cdaudio to wrong list.
29507
29508 2004-10-18  Wim Taymans  <wim@fluendo.com>
29509
29510         * configure.ac:
29511         Revive cdaudio.
29512
29513 2004-10-18  Wim Taymans  <wim@fluendo.com>
29514
29515         * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
29516         (gst_dvdec_video_link), (gst_dvdec_push):
29517         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
29518         (gst_smokeenc_resync), (gst_smokeenc_chain):
29519         Fix mimetype on smoke encoder.
29520         Add aspect ratio to dvdec. Not sure if these
29521         values are correct though....
29522
29523 2004-10-18  Wim Taymans  <wim@fluendo.com>
29524
29525         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
29526         Fix vorbis property descriptions and ranges.
29527
29528 2004-10-18  Wim Taymans  <wim@fluendo.com>
29529
29530         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
29531         Really do nothing when no data is available.
29532         Go to the playing state when the stream is not seekable
29533         instead of failing.
29534
29535 2004-10-18  Wim Taymans  <wim@fluendo.com>
29536
29537         * ext/cdaudio/gstcdaudio.c: (_do_init), (gst_cdaudio_base_init),
29538         (gst_cdaudio_get_event_masks), (gst_cdaudio_send_event),
29539         (gst_cdaudio_query), (plugin_init), (cdaudio_uri_get_type),
29540         (cdaudio_uri_get_protocols), (cdaudio_uri_get_uri),
29541         (cdaudio_uri_set_uri), (cdaudio_uri_handler_init):
29542         Added uri handler for cd://
29543         Port to new API.
29544
29545 2004-10-18  Wim Taymans  <wim@fluendo.com>
29546
29547         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
29548         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
29549         (try_to_link_1), (no_more_pads), (close_link), (type_found):
29550         * gst/playback/gstplaybasebin.c: (gen_preroll_element),
29551         (remove_prerolls), (unknown_type), (add_element_stream),
29552         (new_decoded_pad), (setup_source), (gst_play_base_bin_add_element),
29553         (gst_play_base_bin_remove_element),
29554         (gst_play_base_bin_link_stream):
29555         * gst/playback/gstplaybin.c: (gen_video_element),
29556         (gen_vis_element), (remove_sinks), (setup_sinks):
29557         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
29558         (gst_stream_info_get_type), (gst_stream_info_class_init),
29559         (gst_stream_info_init), (gst_stream_info_new),
29560         (gst_stream_info_dispose), (stream_info_mute_pad),
29561         (gst_stream_info_set_property), (gst_stream_info_get_property):
29562         * gst/playback/gststreaminfo.h:
29563         Add sink padtemplate to decodebin.
29564         Added some more comments.
29565         Make queue size configurable in playbasebin.
29566         Added possibility to use elements as sinks (ex cdaudio).
29567
29568 2004-10-15  Wim Taymans  <wim@fluendo.com>
29569
29570         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init),
29571         (gst_speexenc_chain):
29572         Fix speex timestamps so that it gets muxed properly.
29573
29574 2004-10-15  Wim Taymans  <wim@fluendo.com>
29575
29576         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_get_type),
29577         (gst_dv1394src_base_init), (gst_dv1394src_class_init),
29578         (gst_dv1394src_init), (gst_dv1394src_dispose),
29579         (gst_dv1394src_iso_receive), (gst_dv1394src_discover_avc_node),
29580         (gst_dv1394src_change_state), (gst_dv1394src_get_event_mask),
29581         (gst_dv1394src_event), (gst_dv1394src_get_formats),
29582         (gst_dv1394src_convert), (gst_dv1394src_get_query_types),
29583         (gst_dv1394src_query), (gst_dv1394src_uri_get_type),
29584         (gst_dv1394src_uri_get_protocols), (gst_dv1394src_uri_get_uri),
29585         (gst_dv1394src_uri_set_uri), (gst_dv1394src_uri_handler_init):
29586         * ext/raw1394/gstdv1394src.h:
29587         Added conversion/query functions.
29588         Update buffer timestamps,
29589         Added signals.
29590         Added uri dv:// so it might play from the firewire in playbin.
29591         Fix a possible leak.
29592         Added debugging.
29593
29594 2004-10-15  Wim Taymans  <wim@fluendo.com>
29595
29596         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_class_init),
29597         (gst_dv1394src_init), (gst_dv1394src_set_property),
29598         (gst_dv1394src_get_property), (gst_dv1394src_iso_receive),
29599         (gst_dv1394src_discover_avc_node), (gst_dv1394src_change_state):
29600         * ext/raw1394/gstdv1394src.h:
29601         Added AV/C VTR control support needed for some cameras.
29602         Added automatic port detection.
29603         Added properties for selecting the channel.
29604         The configure.ac script is not yet updated to reflect the
29605         new libavc1394 and librom1394 dependencies.
29606
29607 2004-10-15  Wim Taymans  <wim@fluendo.com>
29608
29609         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
29610         (qtdemux_parse), (gst_qtdemux_handle_esds):
29611         An esds box is not a container.
29612         Fix parsing of mp4v boxes.
29613         Do not try to renegotiate fps for each frame. Need to
29614         find a better method. This should fix mp4 playback.
29615
29616 2004-10-14  David Schleef  <ds@schleef.org>
29617
29618         * configure.ac: update for swfdec-0.3 and liboil-0.2
29619         * ext/swfdec/gstswfdec.c: update for swfdec-0.3
29620         * ext/swfdec/gstswfdec.h: same
29621         * gst/videofilter/gstvideobalance.c: update for liboil-0.2
29622         * gst/videotestsrc/videotestsrc.c: same
29623
29624 2004-10-14  Wim Taymans  <wim@fluendo.com>
29625
29626         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
29627         (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
29628         (is_sync_frame), (gst_multifdsink_new_client),
29629         (gst_multifdsink_handle_client_write),
29630         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
29631         (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
29632         Turn warnings into info.
29633         Don't allow a state change in the streaming thread.
29634
29635 2004-10-14  Thomas Vander Stichele  <thomas at apestaart dot org>
29636
29637         * ext/vorbis/oggvorbisenc.c:
29638         * ext/vorbis/vorbisdec.c:
29639           fix template sample rate
29640
29641 2004-10-13  Wim Taymans  <wim@fluendo.com>
29642
29643         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
29644         Decoding the header first fixes some problems in resyncing
29645         in more mp3s.
29646
29647 2004-10-12  Wim Taymans  <wim@fluendo.com>
29648
29649         * gst/playback/gstplaybin.c: (gen_video_element),
29650         (gen_vis_element), (remove_sinks), (setup_sinks):
29651         Added vis plugin support, need to configure the vis
29652         element to activate it.
29653
29654 2004-10-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29655
29656         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get),
29657         (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
29658           Some debug.
29659         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
29660         (gst_avi_demux_handle_src_event), (gst_avi_demux_read_superindex),
29661         (gst_avi_demux_read_subindexes), (gst_avi_demux_add_stream),
29662         (gst_avi_demux_stream_index), (gst_avi_demux_skip),
29663         (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
29664         (gst_avi_demux_massage_index), (gst_avi_demux_stream_header):
29665         * gst/avi/gstavidemux.h:
29666           Support for openDML-2.0 indx/ix## chunks. Support for broken index
29667           recovery (where, if part of the index is broken, we will still read
29668           the rest of the index and recover the broken part by stream
29669           scanning). More broken media support. EOS workarounds. General AVI
29670           braindamage headache recovery. Aspirin included.
29671
29672 2004-10-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29673
29674         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_open),
29675         (cdparanoia_event), (cdparanoia_query):
29676           Get rid of hideous lead-in.
29677
29678 2004-10-11  Wim Taymans  <wim@fluendo.com>
29679
29680         * gst/playback/gstplaybasebin.c: (setup_source):
29681         Wrong var used to get g_list_next.
29682
29683 2004-10-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29684
29685         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
29686         (cdparanoia_get), (cdparanoia_open):
29687           Report discid as metadata, add duration.
29688
29689 2004-10-11  Wim Taymans  <wim@fluendo.com>
29690
29691         * gst/playback/gstplaybasebin.c: (setup_source):
29692         Cleanup the previous pipeline a little earlier for the
29693         case that a source element provides raw data.
29694
29695 2004-10-11  Benjamin Otte  <otte@gnome.org>
29696
29697         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
29698           reset v1 tag offset when there is no v1 tag. Fixes id3demux always
29699           consuming the last 128 bytes, even though it was valid mp3 data.
29700
29701 2004-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
29702
29703         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
29704         (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
29705         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
29706         Change g_warnings to GST_WARNING_OBJECT and fix colourspace issue
29707
29708 2004-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
29709
29710         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps):
29711         Fix for webcams that support only specific width or height
29712
29713 2004-10-09  Tim-Philipp Müller  <t.i.m@zen.co.uk>
29714
29715         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29716
29717         * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file):
29718           Fix wrong discont event setup (fixes #154967).
29719
29720 2004-10-09  Sebastien Cote  <sc5@hermes.usherb.ca>
29721
29722         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29723
29724         * gst/auparse/gstauparse.c: (gst_auparse_chain):
29725           Error out on invalid data (fixes #154807).
29726
29727 2004-10-09  Tim-Philipp Müller  <t.i.m@zen.co.uk>
29728
29729         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29730
29731         * ext/dvdread/dvdreadsrc.c: (_read):
29732           Make titles > 0 work again (fixes #154834).
29733
29734 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29735
29736         * gst-libs/gst/riff/riff-media.c:
29737         (gst_riff_create_video_template_caps):
29738           WMV3 missing in template caps.
29739
29740 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29741
29742         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
29743           OK, so the original code was too strict. It makes random AVI files
29744           hang for seconds upon opening, which is unacceptable and is far
29745           beyond the original goal of getting multiple chunks for one-chunk
29746           sounc stream files. So now do just that.
29747
29748 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29749
29750         * gst/playback/gstplaybasebin.c: (setup_source),
29751         (gst_play_base_bin_change_state):
29752           Actually clean up streaminfo if output fails. This would trigger
29753           if, for example, there was no CD in the drive. No preroll, so
29754           a streaminfo structure is created, but the subsequent state change
29755           of the thread fails.
29756         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
29757           Don't change state if parent failed.
29758
29759 2004-10-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29760
29761         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
29762         (gst_play_bin_init), (gst_play_bin_get_property), (handoff),
29763         (gen_video_element), (remove_sinks):
29764           Add small bits of code for screenshot handling.
29765
29766 2004-10-08  Wim Taymans  <wim@fluendo.com>
29767
29768         * gst/playback/gstplaybin.c: (gst_play_bin_set_property),
29769         (gen_video_element), (gen_audio_element), (setup_sinks):
29770         Don't assume the user provided sinks are named "sink"...
29771
29772 2004-10-08  Wim Taymans  <wim@fluendo.com>
29773
29774         * gst/playback/gstplaybasebin.c: (gen_preroll_element),
29775         (unknown_type), (setup_source), (gst_play_base_bin_remove_element),
29776         (gst_play_base_bin_link_stream):
29777         Do not try to autoplug sources that generate raw streams like
29778         cdparanoia.
29779         disconnect the preroll overrun signal when we don't need it anymore.
29780
29781 2004-10-08  Milosz Derezynski  <internalerror.rez@fhtw-berlin.de>
29782
29783         * ext/cdparanoia/gstcdparanoia.c: (_do_init),
29784         Added reworked patch from #154903 from milosz derezynski (deadchip).
29785
29786 2004-10-08  Wim Taymans  <wim@fluendo.com>
29787
29788         * ext/cdparanoia/gstcdparanoia.c: (_do_init),
29789         (cdparanoia_base_init), (cdparanoia_class_init), (cdparanoia_init),
29790         (cdparanoia_dispose), (cdparanoia_get), (cdparanoia_change_state),
29791         (cdparanoia_convert), (cdparanoia_uri_get_type),
29792         (cdparanoia_uri_get_protocols), (cdparanoia_uri_get_uri),
29793         (cdparanoia_uri_set_uri), (cdparanoia_uri_handler_init):
29794         * ext/cdparanoia/gstcdparanoia.h:
29795         This adds the cdda://<tracknum> uri.
29796
29797 2004-10-08  Wim Taymans  <wim@fluendo.com>
29798
29799         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
29800         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
29801         (try_to_link_1), (no_more_pads), (close_link), (type_found):
29802         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
29803         (unknown_type), (gst_play_base_bin_remove_element),
29804         (gst_play_base_bin_link_stream):
29805         * gst/playback/gstplaybasebin.h:
29806         * gst/playback/gstplaybin.c: (gst_play_bin_init),
29807         (gst_play_bin_set_property), (gen_video_element),
29808         (gen_audio_element), (setup_sinks):
29809         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
29810         (gst_stream_info_get_type), (gst_stream_info_class_init),
29811         (gst_stream_info_init), (gst_stream_info_new),
29812         (gst_stream_info_dispose), (stream_info_mute_pad),
29813         (gst_stream_info_set_property), (gst_stream_info_get_property):
29814         * gst/playback/gststreaminfo.h:
29815         Reuse the audio and video bins.
29816         Some internal cleanups in the stream selection code.
29817
29818 2004-10-08  Julien MOUTTE  <julien@moutte.net>
29819
29820         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
29821         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
29822         * sys/ximage/ximagesink.h:
29823         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
29824         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
29825         * sys/xvimage/xvimagesink.h: Reverting Ronald's changes as the issue is
29826         not coming from those elements. Moreover these elements should not keep
29827         the xid they have been given when in NULL state.
29828
29829 2004-10-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29830
29831         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
29832         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
29833         * sys/ximage/ximagesink.h:
29834         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
29835         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
29836         * sys/xvimage/xvimagesink.h:
29837           Actually only create a new toplevel window if we're not gonna
29838           embed it right after.
29839
29840 2004-10-07  Wim Taymans  <wim@fluendo.com>
29841
29842         * gst/playback/gstplaybasebin.c: (play_base_bin_mute_pad),
29843         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream):
29844         * gst/playback/gstplaybin.c: (setup_sinks):
29845         Implement muting/unmuting of streams, mute streams that are not
29846         used.
29847
29848 2004-10-07  Wim Taymans  <wim@fluendo.com>
29849
29850         * gst/typefind/gsttypefindfunctions.c: (ac3_type_find),
29851         (plugin_init):
29852         Added lame audio/x-ac3 typefind function.
29853
29854 2004-10-06  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
29855
29856         * configure.ac:
29857           bump nano to cvs
29858
29859 === release 0.8.5 ===
29860
29861 2004-10-06  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
29862
29863         * NEWS:
29864         * RELEASE:
29865         * configure.ac:
29866           releasing 0.8.5, "Take You On"
29867
29868 2004-10-06  Wim Taymans  <wim@fluendo.com>
29869
29870         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
29871         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
29872         (no_more_pads), (close_link), (type_found):
29873         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
29874         * gst/playback/gstplaybin.c: (gen_video_element):
29875         Do not signal the no_more_pads after the first pad when
29876         we are plugging a non dynamic element with multiple
29877         output pads (like swfdec, dvdec, ...).
29878
29879 2004-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
29880
29881         * configure.ac:
29882           bump for prerelease
29883
29884 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
29885
29886         * gst/wavparse/gstwavparse.c:
29887           add ATRAC3 to STATIC CAPS to fix a warning
29888
29889         * gst/matroska/ebml-read.c:
29890         * gst-libs/gst/riff/riff-read.c:
29891           fix typos
29892
29893 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
29894
29895         * gst-libs/gst/riff/riff-media.c:
29896           generate caps for ATRAC3 audio streams
29897
29898         * gst/realmedia/rmdemux.c:
29899           generate caps for ATRAC3 audio streams
29900
29901 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
29902
29903         * gst/wavparse/Makefile.am
29904         * gst/wavparse/riff.h
29905         * gst/wavparse/wavparse.vcproj
29906           riff.h removal (unused and duplication with riff-ids.h)
29907
29908 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
29909
29910         * gst/wavparse/gstwavparse.h
29911           remove duplicated defines for audio codec codes
29912
29913         * gst-libs/gst/riff/riff-ids.h
29914         * gst/wavenc/riff.h:
29915           add "4CC" code for ATRAC3 audio streams
29916           add "4CC" code for ITU_G721_ADPCM (unused for now)
29917
29918 2004-10-06  Wim Taymans  <wim@fluendo.com>
29919
29920         * gst/flx/gstflxdec.c: (gst_flxdec_init), (gst_flxdec_loop):
29921         Actually _do_ negotiation. Pass gdouble as arg instead
29922         of guint64 for the framerate.
29923
29924 2004-10-06  Wim Taymans  <wim@fluendo.com>
29925
29926         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
29927         (find_compatibles), (close_pad_link), (try_to_link_1),
29928         (no_more_pads), (close_link), (type_found):
29929         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
29930         * gst/playback/gstplaybin.c: (gen_video_element),
29931         (gen_audio_element):
29932         Set state on newly added element to READY so that negotiation
29933         can happen ASAP.
29934         Addes some more debug info.
29935         Do not try to plug pads with multiple caps structures or ANY
29936         because it is too dangerous since we do not do dynamic
29937         replugging.
29938
29939 2004-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
29940
29941         written by: Gora Mohanty <gora_mohanty@yahoo.co.in>
29942
29943         * po/LINGUAS:
29944         * po/or.po:
29945           add Oriya translation
29946
29947 2004-10-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29948
29949         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
29950           Prevent overwrite of size member. Makes audio sound crappy.
29951
29952 2004-10-05  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
29953
29954         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
29955         Add rmvb to the list of known RealMedia extensions
29956
29957 2004-10-05  Wim Taymans  <wim@fluendo.com>
29958
29959         * ext/libmng/gstmngdec.c: (gst_mngdec_loop), (mngdec_error),
29960         (mngdec_openstream), (mngdec_closestream),
29961         (mngdec_handle_sink_event), (mngdec_readdata),
29962         (mngdec_gettickcount), (mngdec_settimer), (mngdec_processheader),
29963         (mngdec_getcanvasline), (mngdec_refresh),
29964         (gst_mngdec_change_state):
29965         Set the framerate correctly.
29966
29967 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29968
29969         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
29970           There was something wrong with the index massaging.
29971
29972 2004-10-04  Wim Taymans  <wim@fluendo.com>
29973
29974         * ext/jpeg/gstjpeg.c: (smoke_type_find), (plugin_init):
29975         * ext/jpeg/gstsmokedec.c: (gst_smokedec_init),
29976         (gst_smokedec_chain):
29977         * ext/jpeg/gstsmokedec.h:
29978         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
29979         (gst_smokeenc_init), (gst_smokeenc_resync), (gst_smokeenc_chain):
29980         * ext/jpeg/gstsmokeenc.h:
29981         * ext/jpeg/smokecodec.c: (smokecodec_encode_new),
29982         (smokecodec_decode_new), (smokecodec_info_free),
29983         (smokecodec_set_quality), (smokecodec_get_quality),
29984         (smokecodec_set_threshold), (smokecodec_get_threshold),
29985         (smokecodec_set_bitrate), (smokecodec_get_bitrate),
29986         (find_best_size), (abs_diff), (put), (smokecodec_encode_id),
29987         (smokecodec_encode), (smokecodec_parse_id),
29988         (smokecodec_parse_header), (smokecodec_decode):
29989         * ext/jpeg/smokecodec.h:
29990         * ext/jpeg/smokeformat.h:
29991         Updated smoke, new bitstream, allows embedding in ogg.
29992
29993 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29994
29995         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
29996           Fix seeking in some files. All this code is no longer needed (and
29997           actually breaks stuff) because we now synchronize the full index
29998           right when reading the header.
29999
30000 2004-10-04  Wim Taymans  <wim@fluendo.com>
30001
30002         * configure.ac:
30003         configure update for libmng.
30004
30005 2004-10-04  Wim Taymans  <wim@fluendo.com>
30006
30007         * ext/libmng/Makefile.am:
30008         * ext/libmng/gstmng.c: (plugin_init):
30009         * ext/libmng/gstmng.h:
30010         * ext/libmng/gstmngdec.c: (gst_mngdec_get_type),
30011         (gst_mngdec_base_init), (gst_mngdec_class_init),
30012         (gst_mngdec_sinklink), (gst_mngdec_init), (gst_mngdec_src_getcaps),
30013         (gst_mngdec_loop), (gst_mngdec_get_property),
30014         (gst_mngdec_set_property), (mngdec_error), (mngdec_openstream),
30015         (mngdec_closestream), (mngdec_handle_sink_event),
30016         (mngdec_readdata), (mngdec_gettickcount), (mngdec_settimer),
30017         (mngdec_processheader), (mngdec_getcanvasline), (mngdec_refresh),
30018         (gst_mngdec_change_state):
30019         * ext/libmng/gstmngdec.h:
30020         * ext/libmng/gstmngenc.c: (gst_mngenc_get_type),
30021         (mng_caps_factory), (raw_caps_factory), (gst_mngenc_base_init),
30022         (gst_mngenc_class_init), (gst_mngenc_sinklink), (gst_mngenc_init),
30023         (gst_mngenc_chain), (gst_mngenc_get_property),
30024         (gst_mngenc_set_property):
30025         * ext/libmng/gstmngenc.h:
30026         Added basic MNG decoder. Needs more work. The encoder does
30027         not work yet.
30028
30029 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30030
30031         * gst/realmedia/rmdemux.c: (gst_rmdemux_handle_sink_event),
30032         (gst_rmdemux_loop), (gst_rmdemux_add_stream),
30033         (gst_rmdemux_parse_mdpr), (gst_rmdemux_dump_mdpr):
30034           Don't hang on length=0 chunks. Some negotiation fixes. Signal
30035           no-more-pads.
30036
30037 2004-10-04  Thomas Vander Stichele  <thomas at apestaart dot org>
30038
30039         * configure.ac:
30040           you need at least 1.0.4 of speex
30041
30042 2004-10-04 Iain <iaingnome@gmail.com>
30043
30044         * ext/speex/gstspeexdec.h: Revert the includes changes.
30045
30046         * ext/speex/gstspeexenc.[ch]: Revert the includes changes.
30047
30048 2004-09-30 Iain <iaingnome@gmail.com>
30049
30050         * sys/sunaudio/gstsunaudio.c (gst_sunaudiosink_open): Use the device
30051         found during init or set as a property instead of hardcoding /dev/audio
30052
30053 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30054
30055         * gst/realmedia/rmdemux.c: (gst_rmdemux_class_init),
30056         (gst_rmdemux_init), (gst_rmdemux_handle_sink_event),
30057         (gst_rmdemux_loop), (gst_rmdemux_add_stream), (re_hexdump_bytes),
30058         (re_dump_pascal_string), (gst_rmdemux_dump__rmf),
30059         (gst_rmdemux_dump_prop), (gst_rmdemux_parse_mdpr),
30060         (gst_rmdemux_dump_mdpr), (gst_rmdemux_dump_indx),
30061         (gst_rmdemux_dump_data):
30062           Use debug category, fix EOS handling. filesrc ! rmdemux now
30063           works.
30064
30065 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30066
30067         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
30068         (gst_avi_demux_stream_scan), (sort), (gst_avi_demux_massage_index),
30069         (gst_avi_demux_stream_header), (gst_avi_demux_stream_data):
30070           Improve allocation, cutting and sorting of the index. How takes a
30071           few seconds instead of minutes.
30072
30073 2004-10-03  Christophe Fergeau  <teuf@gnome.org>
30074
30075         * gst/realmedia/rmdemux.c: (gst_rmdemux_parse_mdpr):
30076           fixed compilation
30077
30078 2004-10-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30079
30080         * gst-libs/gst/riff/riff-media.c:
30081         (gst_riff_create_video_caps_with_data),
30082         (gst_riff_create_video_template_caps):
30083           Add wing commander format mimetype/fourccs.
30084         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
30085           Don't crash if some value is 0.
30086
30087 2004-10-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30088
30089         * gst-libs/gst/riff/riff-media.c:
30090         (gst_riff_create_video_caps_with_data),
30091         (gst_riff_create_video_template_caps):
30092           Add DIB fourcc (raw, palettized 8-bit RGB).
30093         * gst-libs/gst/riff/riff-read.c:
30094         (gst_riff_read_strf_vids_with_data):
30095           Oops, fix strf_data reading bug.
30096         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
30097           Use a non-NULL tag.
30098         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
30099           Time for hacks. Sorry Dave. At least one quicktime movie (a
30100           trailer) that I've encountered contains multiple video tracks.
30101           One of those is the actual video track, the other are one-frame
30102           tracks (images). Unfortunately, the number of frames according
30103           to the trak header is 1 for each, so that doesn't help. So
30104           instead, I look at the duration and discard tracks with a
30105           duration shorter than 20% of the length of the stream. Better
30106           than nothing.
30107
30108 2004-10-01  Christian Schaller <christian@fluendo.com>
30109
30110         * ext/ivorbis/vorbis.c:
30111           Patch from Phil Blundell (Bug 152341)
30112
30113 2004-10-01  Wim Taymans  <wim@fluendo.com>
30114
30115         * ext/speex/gstspeexdec.c: (gst_speex_dec_class_init),
30116         (speex_dec_get_formats), (speex_dec_convert),
30117         (speex_dec_src_query), (speex_dec_src_event), (speex_dec_event),
30118         (speex_dec_chain), (gst_speexdec_get_property),
30119         (gst_speexdec_set_property):
30120         Small cleanups.
30121
30122 2004-10-01  Wim Taymans  <wim@fluendo.com>
30123
30124         * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
30125         (gst_wavparse_stream_init), (gst_wavparse_fmt),
30126         (gst_wavparse_other), (gst_wavparse_loop),
30127         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
30128         (gst_wavparse_srcpad_event):
30129         * gst/wavparse/gstwavparse.h:
30130         Added some more debugging info.
30131         Fix the case where the length of the file is 0.
30132         Make sure we seek to sample borders.
30133
30134 2004-10-01  Wim Taymans  <wim@fluendo.com>
30135
30136         * gst/playback/README:
30137         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
30138         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
30139         (try_to_link_1), (no_more_pads), (close_link), (type_found):
30140         Add some debug info to decodebin, update README
30141
30142 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30143
30144         * ext/dvdnav/dvdnavsrc.c: (dvdnav_handle_navigation_event):
30145           Don't use g_print(); use GST_DEBUG().
30146
30147 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30148
30149         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
30150         (gst_ogg_mux_queue_pads):
30151           Handle EOS properly.
30152
30153 2004-10-01  Sebastien Cote  <sc5@hermes.usherb.ca>
30154
30155         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30156
30157         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_sinkconnect),
30158         (gst_faad_chain), (gst_faad_change_state):
30159         * ext/faad/gstfaad.h:
30160           Allow playback of raw (unframed) MPEG AAC files (#148993).
30161
30162 2004-10-01  Sebastien Cote  <sc5@hermes.usherb.ca>
30163
30164         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30165
30166         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
30167           Throw error if we didn't recognize the stream. Fixes #152289.
30168
30169 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30170
30171         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
30172           Fix negotiation.
30173
30174 2004-10-01  Francis Labonte  <francis_labonte@hotmail.com>
30175
30176         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30177
30178         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
30179           Fix memleak.
30180
30181 2004-10-01  Balamurali Viswanathan  <balamurali.viswanathan@wipro.com>
30182
30183         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30184
30185         * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_setparams):
30186           Solve #152805.
30187         * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_mute):
30188           Solve 152806.
30189
30190 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30191
30192         * gst-libs/gst/riff/riff-media.c:
30193         (gst_riff_create_video_caps_with_data),
30194         (gst_riff_create_audio_caps_with_data):
30195           Add codec_data handling (like asfdemux used to do).
30196         * gst/asfdemux/gstasf.c: (plugin_init):
30197         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
30198         (gst_asf_demux_add_audio_stream), (gst_asf_demux_add_video_stream):
30199           Use riff-media for caps creation instead of our own (mostly
30200           broken) copy of its functions.
30201
30202 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30203
30204         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_capture):
30205           Don't actually error out if we get another return value than
30206           -EINVAL. Opposite to what I first thought, drivers have random
30207           return values for this, although -EINVAL is the expected return
30208           value. Since this is not fatal, we shouldn't use
30209           GST_ELEMENT_ERROR() but just GST_ERROR_OBJECT().
30210
30211 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30212
30213         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
30214         (dvdreadsrc_init), (dvdreadsrc_dispose), (dvdreadsrc_set_property),
30215         (dvdreadsrc_get_property), (_open), (_seek), (_read),
30216         (dvdreadsrc_get), (dvdreadsrc_open_file),
30217         (dvdreadsrc_change_state):
30218           Fix. Don't do one big huge loop around the whole DVD, that will
30219           cache all data and thus eat sizeof(dvd) (several GB) before we
30220           see something.
30221         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
30222           Actually NULL'ify event after using it.
30223         * gst/matroska/ebml-read.c: (gst_ebml_read_use_event),
30224         (gst_ebml_read_handle_event), (gst_ebml_read_element_id),
30225         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
30226         (gst_ebml_read_seek), (gst_ebml_read_skip):
30227           Handle events.
30228         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_base_init),
30229         (gst_dvd_demux_init), (gst_dvd_demux_get_audio_stream),
30230         (gst_dvd_demux_get_subpicture_stream), (gst_dvd_demux_plugin_init):
30231           Fix timing (this will probably break if I seek using menus, but
30232           I didn't get there yet). VOBs and normal DVDs should now work.
30233           Add a mpeg2-only pad with high rank so this get autoplugged for
30234           MPEG-2 movies.
30235         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_base_init),
30236         (gst_mpeg_demux_class_init), (gst_mpeg_demux_init),
30237         (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_get_video_stream),
30238         (gst_mpeg_demux_get_audio_stream),
30239         (gst_mpeg_demux_get_private_stream), (gst_mpeg_demux_parse_packet),
30240         (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_plugin_init):
30241           Use this as second rank for MPEG-1 and MPEG-2. Still use this for
30242           MPEG-1 but use dvddemux for MPEG-2.
30243         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
30244         (gst_mpeg_parse_init), (gst_mpeg_parse_new_pad),
30245         (gst_mpeg_parse_parse_packhead):
30246           Timing. Only add pad template if it exists. Add sink template from
30247           class and not from ourselves. This means we will always use the
30248           correct sink template even if it is not the one defined in this
30249           file.
30250
30251 2004-09-29  Wim Taymans  <wim@fluendo.com>
30252
30253         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_packet),
30254         (gst_mpeg_demux_parse_pes):
30255         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
30256         Fix playback of mpeg again, timestamps where screwed up by
30257         patch 1.61.
30258
30259 2004-09-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30260
30261         * ext/flac/gstflacdec.c: (gst_flacdec_src_query):
30262           Only return true if we actually filled something in. Prevents
30263           player applications from showing a random length for flac files.
30264         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
30265         (gst_riff_read_use_event), (gst_riff_read_handle_event),
30266         (gst_riff_read_seek), (gst_riff_read_skip), (gst_riff_read_strh),
30267         (gst_riff_read_strf_vids_with_data),
30268         (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_iavs):
30269           OK, ok, so I implemented event handling. Apparently it's normal
30270           that we receive random events at random points without asking
30271           for it.
30272         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
30273         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
30274         (gst_avi_demux_handle_src_event), (gst_avi_demux_stream_index),
30275         (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
30276         (gst_avi_demux_massage_index), (gst_avi_demux_stream_header),
30277         (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
30278         (gst_avi_demux_stream_data), (gst_avi_demux_loop):
30279         * gst/avi/gstavidemux.h:
30280           Implement non-lineair chunk handling and subchunk processing.
30281           The first solves playback of AVI files where the audio and video
30282           data of individual buffers that we read are not synchronized.
30283           This should not happen according to the wonderful AVI specs, but
30284           of course it does happen in reality. It is also a prerequisite for
30285           the second. Subchunk processing allows us to cut chunks in small
30286           pieces and process each of these pieces separately. This is
30287           required because I've seen several AVI files with incredibly large
30288           audio chunks, even some files with only one audio chunk for the
30289           whole file. This allows for proper playback including seeking.
30290           This patch is supposed to fix all AVI A/V sync issues.
30291         * gst/flx/gstflxdec.c: (gst_flxdec_class_init),
30292         (flx_decode_chunks), (flx_decode_color), (gst_flxdec_loop):
30293           Work.
30294         * gst/modplug/gstmodplug.cc:
30295           Proper return value setting for the query() function.
30296         * gst/playback/gstplaybasebin.c: (setup_source):
30297           Being in non-playing state (after, e.g., EOS) is not necessarily
30298           a bad thing. Allow for that. This fixes playback of short files.
30299           They don't actually playback fully now, because the clock already
30300           runs. This means that small files (<500kB) with a small length
30301           (<2sec) will still not or barely play. Other files, such as mod
30302           or flx, will work correctly, however.
30303
30304 2004-09-28  Wim Taymans  <wim@fluendo.com>
30305
30306         * ext/speex/gstspeex.c: (plugin_init):
30307         * ext/speex/gstspeexdec.c: (gst_speex_dec_base_init),
30308         (gst_speex_dec_class_init), (speex_dec_get_formats),
30309         (speex_get_event_masks), (speex_get_query_types),
30310         (gst_speex_dec_init), (speex_dec_convert), (speex_dec_src_query),
30311         (speex_dec_src_event), (speex_dec_event), (speex_dec_chain),
30312         (gst_speexdec_get_property), (gst_speexdec_set_property),
30313         (speex_dec_change_state):
30314         * ext/speex/gstspeexdec.h:
30315         * ext/speex/gstspeexenc.c: (gst_speexenc_get_formats),
30316         (gst_speexenc_get_type), (speex_caps_factory), (raw_caps_factory),
30317         (gst_speexenc_base_init), (gst_speexenc_class_init),
30318         (gst_speexenc_sinkconnect), (gst_speexenc_convert_src),
30319         (gst_speexenc_convert_sink), (gst_speexenc_get_query_types),
30320         (gst_speexenc_src_query), (gst_speexenc_init),
30321         (gst_speexenc_get_tag_value), (comment_init), (comment_add),
30322         (gst_speexenc_metadata_set1), (gst_speexenc_set_metadata),
30323         (gst_speexenc_setup), (gst_speexenc_buffer_from_data),
30324         (gst_speexenc_push_buffer), (gst_speexenc_set_header_on_caps),
30325         (gst_speexenc_chain), (gst_speexenc_get_property),
30326         (gst_speexenc_set_property), (gst_speexenc_change_state):
30327         * ext/speex/gstspeexenc.h:
30328         Rewrote speex encoder, make sure it can be embedded in ogg.
30329         Implemented speex decoder.
30330
30331 2004-09-28  Christian Schaller <christian@fluendo.com>
30332
30333         * configure.ac:
30334         Remove kioslave plugin. Markey is brewing a new working one
30335         * ext/Makefile.am: Remove kioslave plugin
30336         * ext/kio: remove
30337         * gst-plugins.spec.in: remove kio plugin from spec
30338
30339 2004-09-27  Wim Taymans  <wim@fluendo.com>
30340
30341         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
30342         (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
30343         (is_sync_frame), (gst_multifdsink_client_queue_buffer),
30344         (gst_multifdsink_new_client),
30345         (gst_multifdsink_handle_client_write),
30346         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
30347         (gst_multifdsink_handle_clients):
30348         * gst/tcp/gstmultifdsink.h:
30349         Make syncing to keyframes actually work for new clients and lagging
30350         clients.
30351
30352 2004-09-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30353
30354         * gst/debug/gstnavigationtest.c: (gst_navigationtest_class_init),
30355         (gst_navigationtest_handle_src_event), (draw_box_planar411),
30356         (gst_navigationtest_planar411), (gst_navigationtest_change_state):
30357         * gst/debug/gstnavigationtest.h:
30358           make navigationtest display button-press and button-release events
30359
30360 2004-09-26 Iain <iaingnome@gmail.com>
30361
30362         * gst/interleave/interleave.c (all_channels_new_media): Checks if all
30363         the channels have received a new media event.
30364         (interleave_buffered_loop): Compresses a new media event on all
30365         channels into one.
30366
30367 2004-09-26 Iain <iaingnome@gmail.com>
30368
30369         * gst/wavenc/gstwavenc.c (gst_wavenc_chain): Company says we need to
30370         call the sinkpad's default event handler and not the srcpads. He also
30371         says this is confusing :)
30372         (gst_wavenc_stop_file): Company says that seek events only go upstream
30373         we should send a discontinuous downstream instead.
30374
30375 2004-09-25  Christian Schaller <christian@fluendo.com>
30376
30377         * Update SPEC file to be usable in conjunction with Fedora Core,
30378           Fedora.us and freshrpms packages
30379         * Fix typo in multifilesrc test Makefile
30380
30381 2004-09-24  Wim Taymans  <wim@fluendo.com>
30382
30383         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
30384         Only signal the no_more_pads signal when we have
30385         added the stream to our list.
30386
30387 2004-09-24  Wim Taymans  <wim@fluendo.com>
30388
30389         * gst/playback/gstplaybasebin.c: (remove_prerolls),
30390         (new_decoded_pad):
30391         * gst/playback/gstplaybasebin.h:
30392         * gst/playback/gstplaybin.c: (setup_sinks):
30393         Don't try to preroll or decode more than one audio/video
30394         track.
30395
30396 2004-09-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30397
30398         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
30399           Throw error if we failed to find a suitable output. This should
30400           throw an error if we successfully set up a pipeline (e.g. because
30401           we recognized a media file) but found no decodable streams in it
30402           (e.g. because it contains only media stream types for which we
30403           have no decoders, or because it's not a media type).
30404
30405 2004-09-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30406
30407         * ext/dirac/Makefile.am:
30408         * ext/dirac/gstdirac.cc:
30409         * ext/dirac/gstdiracdec.cc:
30410         * ext/dirac/gstdiracdec.h:
30411           Do something. Don't actually know if this works because I don't
30412           have a demuxer yet.
30413         * ext/gsm/gstgsmdec.c: (gst_gsmdec_getcaps):
30414           Add channels=1 to caps returned from _getcaps().
30415         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_get_type),
30416         (gst_ogm_video_parse_get_type), (gst_ogm_audio_parse_base_init),
30417         (gst_ogm_video_parse_base_init), (gst_ogm_parse_init),
30418         (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
30419         (gst_ogm_parse_sink_convert), (gst_ogm_parse_chain),
30420         (gst_ogm_parse_change_state):
30421           Separate between audio/video so ogmaudioparse actually uses the
30422           audio pad templates. Both audio and video work now, including
30423           autoplugging. Also use sometimes-srcpad hack.
30424         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
30425           Handle events better. Don't hang on infinite loops.
30426         * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
30427         (gst_avi_demux_init), (gst_avi_demux_reset),
30428         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
30429         (gst_avi_demux_stream_header), (gst_avi_demux_stream_data),
30430         (gst_avi_demux_change_state):
30431         * gst/avi/gstavidemux.h:
30432           Improve A/V sync. Still not perfect.
30433         * gst/matroska/ebml-read.c: (gst_ebml_read_seek),
30434         (gst_ebml_read_skip):
30435           Handle events better.
30436         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
30437         (gst_qtdemux_loop_header), (qtdemux_parse_trak),
30438         (qtdemux_audio_caps):
30439           Add IMA4. Improve event handling. Save offset after a seek when
30440           the headers are at the end of the file so that we don't end up in
30441           an infinite loop.
30442         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
30443           Add low-priority typefind support for files with no length.
30444
30445 2004-09-23  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
30446
30447         * testsuite/multifilesink/Makefile.am:
30448         fix typo
30449
30450 2004-09-22  Julien MOUTTE  <julien@moutte.net>
30451
30452         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
30453         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls): Fix
30454         mistakes from thaytan's patches.
30455
30456 2004-09-23  Jan Schmidt  <thaytan@mad.scientist.com>
30457
30458         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
30459           For completeness, XSync in the destroy function as xvimage does.
30460
30461 2004-09-23  Jan Schmidt  <thaytan@mad.scientist.com>
30462
30463         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
30464            Correct caps negotiation
30465         * gst/volume/gstvolume.c: (volume_chain_float),
30466         (volume_chain_int16):
30467            Modify debug output to be little more informative
30468         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
30469         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
30470         (gst_xvimagesink_xvimage_destroy):
30471           Add XSync calls after detaching from the shared memory segment to
30472           avoid a crash.
30473
30474 2004-09-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
30475
30476         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
30477         (gst_ogg_mux_next_buffer), (gst_ogg_mux_loop):
30478         * ext/vorbis/vorbis.c: (plugin_init):
30479         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
30480         (gst_vorbisenc_chain):
30481         * ext/vorbis/vorbisenc.h:
30482         remove explicit newmedia support from oggmux and vorbisenc
30483         add debug category to vorbisenc
30484         * gst/multifilesink/gstmultifilesink.c:
30485         (gst_multifilesink_class_init), (gst_multifilesink_init),
30486         (gst_multifilesink_dispose), (gst_multifilesink_set_location),
30487         (gst_multifilesink_set_property), (gst_multifilesink_next_file),
30488         (gst_multifilesink_handle_event), (gst_multifilesink_chain),
30489         (plugin_init):
30490         * gst/multifilesink/gstmultifilesink.h:
30491         add support for streamheader in multifilesink
30492
30493 2004-09-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30494
30495         * gst/asfdemux/gstasfdemux.c: (_read_var_length), (_read_guid),
30496         (gst_asf_demux_process_segment), (gst_asf_demux_handle_data),
30497         (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event):
30498           Prevent infinite loops. More correct error reporting.
30499         * gst/auparse/gstauparse.c: (gst_auparse_chain):
30500           Error out if negotiation fails.
30501         * gst/playback/gstplaybasebin.c: (setup_source),
30502         (gst_play_base_bin_change_state), (gst_play_base_bin_error),
30503         (gst_play_base_bin_found_tag):
30504           Error/tag forwarding. Pre-roll fixes for source errors on state
30505           changes (e.g. "file does not exist") to prevent hangs.
30506
30507 2004-09-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
30508
30509         * testsuite/multifilesink/Makefile.am:
30510         * testsuite/multifilesink/lame_test.c: (gst_newmedia_base_init),
30511         (gst_newmedia_class_init), (gst_newmedia_init),
30512         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
30513         (newfile_signal), (test_signal), (main):
30514         * testsuite/multifilesink/multifilesrc_test.c: (main):
30515         * testsuite/multifilesink/oggtheora_test.c:
30516         (gst_newmedia_base_init), (gst_newmedia_class_init),
30517         (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
30518         (test_format), (newfile_signal), (test_signal), (main):
30519         * testsuite/multifilesink/oggvorbis_test.c:
30520         (gst_newmedia_base_init), (gst_newmedia_class_init),
30521         (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
30522         (test_format), (newfile_signal), (test_signal), (main):
30523         * testsuite/multifilesink/wavenc_test.c: (gst_newmedia_base_init),
30524         (gst_newmedia_class_init), (gst_newmedia_init),
30525         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
30526         (newfile_signal), (test_signal), (main):
30527         New media tests
30528
30529 2004-09-20  Christian Schaller <christian@fluendo.com>
30530
30531         * Fix mikmod license to LGPL as they have relicensed
30532         * Move Dirac and Effectv into LGPL section of README_license
30533
30534 2004-09-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30535
30536         * ext/mad/gstmad.c: (gst_mad_check_caps_reset),
30537         (gst_mad_change_state):
30538           Allow for mp3 rate/channels changes. However, only very
30539           conservatively. Reason that we *have* to enable this is smiply
30540           because the mad find_sync() function is not good enough, it will
30541           regularly sync on random data as valid frames and therefore make
30542           us provide random caps as *final* caps of the stream. The best fix
30543           I could think of is to simply require several of the same stream
30544           changes in a row before we change caps.
30545           The actual testcase that works now is #
30546         * ext/ogg/Makefile.am:
30547         * ext/ogg/gstogg.c: (plugin_init):
30548         * ext/ogg/gstogmparse.c:
30549           OGM support (video only for now; I need an audio sample file).
30550         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
30551         (gst_asf_demux_process_stream), (gst_asf_demux_video_caps),
30552         (gst_asf_demux_add_video_stream):
30553           WMV extradata.
30554         * gst/playback/gstplaybasebin.c: (unknown_type):
30555           Don't error out on single unknown-types after all. It's wrong.
30556           If we found type of video and audio but not of a subtitle stream,
30557           it will still error out (which is unwanted). Will find a better fix
30558           later on.
30559         * gst/typefind/gsttypefindfunctions.c: (ogmvideo_type_find),
30560         (ogmaudio_type_find), (plugin_init):
30561           OGM support.
30562
30563 2004-09-20  Johan Dahlin  <johan@gnome.org>
30564
30565         * ext/jpeg/gstjpegdec.c (gst_jpegdec_chain): Allocate the buffer
30566         after setting caps.
30567
30568 2004-09-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
30569
30570         * gst/wavenc/gstwavenc.c: (gst_wavenc_init), (gst_wavenc_chain):
30571         * gst/wavenc/gstwavenc.h:
30572         Added newmedia support to wavenc
30573
30574 2004-09-17  Wim Taymans  <wim@fluendo.com>
30575
30576         * gst/tcp/gstfdset.c: (gst_fdset_fd_has_closed),
30577         (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
30578         (gst_fdset_fd_can_write), (gst_fdset_wait):
30579         * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type),
30580         (gst_multifdsink_init), (gst_multifdsink_add),
30581         (gst_multifdsink_remove), (gst_multifdsink_get_stats),
30582         (gst_multifdsink_remove_client_link),
30583         (gst_multifdsink_client_queue_buffer),
30584         (gst_multifdsink_handle_client_write),
30585         (gst_multifdsink_recover_client), (gst_multifdsink_handle_clients),
30586         (gst_multifdsink_close), (gst_multifdsink_change_state):
30587         * gst/tcp/gstmultifdsink.h:
30588         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
30589         (gst_tcpserversink_removed):
30590         Small cleanups in fdset.c
30591         Use a hastable to map fd to the client structure for faster
30592         lookup in _remove and get_stats.
30593         Added virtual function to close the fds.
30594         Handle clients even when the select/poll call was unblocked because
30595         of a command.
30596         Implement syncing to keyframe in the recovery procedure.
30597
30598 2004-09-16 Iain <iaingnome@gmail.com>
30599
30600         * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int): Free the
30601         try caps.
30602
30603 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30604
30605         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream):
30606           Caps are only set if the type of the stream is unknown, but this
30607           is initialized in ->init_stream(), so set to UNKNOWN after calling
30608           ->init_stream() so that capsnego starts.
30609
30610 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30611
30612         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
30613         (gst_avi_demux_stream_data):
30614           Just hardcode for raw audio then. AVI audio sucks.
30615
30616 2004-09-15  Arwed v. Merkatz  <v.merkatz@gmx.net>
30617
30618         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
30619         * gst/matroska/matroska-mux.c: (audiosink_templ),
30620         (gst_matroska_mux_audio_pad_link):
30621         * gst/typefind/gsttypefindfunctions.c: (tta_caps), (plugin_init):
30622         Use audio/x-ttafile for tta files and audio/x-tta for raw tta frames.
30623
30624 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30625
30626         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
30627         (gst_avi_demux_stream_data):
30628           Try to fix a/v sync issues.
30629
30630 2004-09-15  David Schleef  <ds@schleef.org>
30631
30632         * configure.ac: remove NASM check, since we don't use it.  Update
30633         dirac check to 0.4
30634         * ext/dirac/gstdiracdec.cc: update to current 0.4 API
30635         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
30636         Initialized variables.
30637         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
30638         (gst_qtdemux_loop_header), (qtdemux_parse), (qtdemux_parse_trak),
30639         (gst_qtdemux_handle_esds), (qtdemux_audio_caps): Fix seeking, add
30640         SVQ3 format
30641
30642 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30643
30644         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
30645         (gst_avi_demux_add_stream), (gst_avi_demux_stream_data):
30646         * gst/avi/gstavidemux.h:
30647           Fix for compressed audio (mp3) timestamp generation. How did this
30648           ever work?
30649
30650 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30651
30652         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
30653           Volume is a double not a float.
30654
30655 2004-09-15  Wim Taymans  <wim@fluendo.com>
30656
30657         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_remove_client_link),
30658         (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
30659         Don't close the fd in multifdsink as we didn't open it in the
30660         first place. Some cleanups.
30661
30662 2004-09-15  Wim Taymans  <wim@fluendo.com>
30663
30664         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
30665         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
30666         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
30667         Fix the case where the muxer would mark pages as delta
30668         frames when they are not (vorbis only ogg).
30669
30670 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30671
30672         * gst/playback/gstplaybasebin.c: (state_change), (setup_source),
30673         (gst_play_base_bin_change_state):
30674           Handle the case where we failed to setup a clear pipeline. This
30675           will throw an error (or EOS, another nice case) and if you don't
30676           catch that, the app will wait for the signal forever (and thus
30677           hang).
30678
30679 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30680
30681         * ext/gnomevfs/gstgnomevfssink.c:
30682         (gst_gnomevfssink_uri_get_protocols):
30683         * ext/gnomevfs/gstgnomevfssrc.c:
30684         (gst_gnomevfssrc_uri_get_protocols):
30685         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
30686         * ext/gnomevfs/gstgnomevfsuri.h:
30687           Use _uri_new() instead of _open(), so it doesn't take as long and
30688           Christophe's computer won't hang.
30689         * gst/playback/gstplaybasebin.c: (unknown_type):
30690           Throw error on unknown media type, so apps actually display it.
30691
30692 2004-09-14  Brian Cameron  <brian.cameron@sun.com
30693
30694         * tools/gst-launch-ext-m.m:  Changed ~ to $ENV{HOME} to allow
30695           this script to work on Solaris since bash shell handles echo
30696           differenly than bash.
30697
30698 2004-09-17  Wim Taymans  <wim@fluendo.com>
30699
30700         * gst/playback/gstplaybasebin.c: (queue_overrun), (no_more_pads),
30701         (setup_source), (gst_play_base_bin_set_property),
30702         (gst_play_base_bin_add_element):
30703         * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
30704         Some more work on making sure seeking pauses the pipeline and
30705         that changing the uri actually does something.
30706
30707 2004-09-17  Wim Taymans  <wim@fluendo.com>
30708
30709         * gst/tcp/gstfdset.c: (gst_fdset_wait):
30710         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_close):
30711         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send),
30712         (gst_tcpserversink_close):
30713         Be a bit more paranoid when freeing memory.
30714
30715 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30716
30717         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
30718         (qtdemux_parse_trak):
30719           Don't crash by dividing by zero (see sample movie in #126922).
30720
30721 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30722
30723         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
30724           Don't touch non-existing data (fixes crash on file in #140147).
30725
30726 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30727
30728         * gst/playback/gstplaybasebin.c:
30729         (gst_play_base_bin_dispose), (gst_play_base_bin_set_property):
30730           Handle double disposals, and proper change of URIs.
30731
30732 2004-09-13  Martin Eikermann <meiker@upb.de>
30733
30734         * gst/mpegstream/gstmpegparse.c:
30735           fix synchronistation for streams recorded from digital PCR
30736           fixes bug #119376
30737
30738 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30739
30740         * ext/gnomevfs/Makefile.am:
30741         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
30742         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_get_type),
30743         (gst_gnomevfssink_dispose), (gst_gnomevfssink_init),
30744         (gst_gnomevfssink_uri_get_type),
30745         (gst_gnomevfssink_uri_get_protocols),
30746         (gst_gnomevfssink_uri_get_uri), (gst_gnomevfssink_uri_set_uri),
30747         (gst_gnomevfssink_uri_handler_init),
30748         (gst_gnomevfssink_set_property), (gst_gnomevfssink_get_property),
30749         (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file):
30750         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
30751         (gst_gnomevfssrc_init), (gst_gnomevfssrc_dispose),
30752         (gst_gnomevfssrc_uri_get_type),
30753         (gst_gnomevfssrc_uri_get_protocols), (gst_gnomevfssrc_uri_get_uri),
30754         (gst_gnomevfssrc_uri_set_uri), (gst_gnomevfssrc_uri_handler_init),
30755         (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
30756         (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file):
30757         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
30758         * ext/gnomevfs/gstgnomevfsuri.h:
30759           Add URI support to Gnome-VFS plugins. Tries to load a fixed list
30760           of fake URIs to see which this version of Gnome-VFS likes, and
30761           uses that for the Gst-URI interface. Makes playbin support http://
30762           streams. Also fix up some stupid behaviour in gnomevfssrc.
30763
30764 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30765
30766         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
30767         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
30768         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
30769         (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
30770           Update mixer (to sync with other sessions) if we try to obtain
30771           a new value. This makes alsamixer work accross applications.
30772         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
30773           Only call sync functions if we're running, else alsalib asserts.
30774         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
30775           Sometimes fails to compile. Possibly a gcc bug.
30776         * gst/playback/gstplaybin.c: (gen_video_element),
30777         (gen_audio_element):
30778           Add a reference to an application-provided object, because we lose
30779           this same reference if we add it to the bin. If we don't do this,
30780           we can only use this object once and thus crash if we go from
30781           ready to playing, back to ready and back to playing again.
30782           Also add an audioscale element because several cheap soundcards -
30783           like mine - don't support all samplerates.
30784         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
30785         (gst_ximagesink_xcontext_clear), (gst_ximagesink_change_state):
30786           Fix wrong order or PAR calls. Makes automatically obtained PAR
30787           from the X server atually being used.
30788
30789 2004-09-12  David Schleef  <ds@schleef.org>
30790
30791         Fixes: #151879, #151881, #151882, #151883, #151884, #151886,
30792         #151887, #152102, #152247.
30793         * examples/indexing/indexmpeg.c: 64-bit warning fixes.
30794         * examples/seeking/cdparanoia.c: same
30795         * examples/seeking/cdplayer.c: same
30796         * examples/seeking/seek.c: same
30797         * examples/seeking/spider_seek.c: same
30798         * examples/seeking/vorbisfile.c: same
30799         * examples/stats/mp2ogg.c: same
30800         * ext/esd/esdsink.c: (gst_esdsink_class_init),
30801         (gst_esdsink_dispose): Dispose of element properly.
30802         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_seek): 64-bit warning
30803         fixes.
30804         * ext/nas/nassink.c: (gst_nassink_class_init),
30805         (gst_nassink_dispose): Dispose of element correctly.
30806         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Fix leak.
30807         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
30808         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
30809         Fix 64-bit warning.
30810         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
30811         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
30812         Fix 64-bit warning.
30813
30814 2004-09-12  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
30815
30816         * configure.ac : change speex detection as 1.1.6 now uses
30817           .pc/pkg-config and they changed their headers location.
30818
30819 2004-09-09  Arwed v. Merkatz  <v.merkatz@gmx.net>
30820
30821         * gst/matroska/matroska-mux.h:
30822         * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
30823         (gst_matroska_mux_start), (gst_matroska_mux_finish),
30824         (gst_matroska_mux_write_data):
30825           Write multiple blocks/frames per cluster.
30826                 Write meta-seek information (seek heads).
30827
30828 2004-09-09  Scott Wheeler <wheeler@kde.org>
30829
30830         * gst/gstplaybin.c: (gst_play_bin_class_init), (gst_play_bin_init),
30831         (gst_play_bin_set_property), (gst_play_bin_get_property),
30832         (gen_audio_element), (gen_audio_element):
30833           Add a volume element / property to the pipeline.
30834
30835 2004-09-07  Wim Taymans  <wim@fluendo.com>
30836
30837         * gst/videomixer/videomixer.c: (gst_videomixer_blend_buffers):
30838         Copy timestamps from the master pad to the output buffers.
30839
30840 2004-09-03  Thomas Vander Stichele  <thomas at apestaart dot org>
30841
30842         * ext/raw1394/gstdv1394src.c:
30843           throw errors when applicable
30844
30845 2004-09-01  Arwed v. Merkatz  <v.merkatz@gmx.net>
30846
30847         * gst/matroska/ebml-ids.h:
30848         * gst/matroska/ebml-read.c: (gst_ebml_read_date):
30849         * gst/matroska/ebml-write.c: (gst_ebml_write_date):
30850         * gst/matroska/matroska-mux.c: (gst_matroska_mux_finish):
30851           automatically convert unix time <-> ebml time when reading/writing
30852           a date, use gst_ebml_write_uint to write CUETIME,
30853           not gst_ebml_write_date.
30854         * gst/matroska/matroska-ids.h:
30855         * gst/matroska/matroska-mux.c: (gst_matroska_mux_create_uid),
30856         (gst_matroska_mux_reset), (gst_matroska_mux_audio_pad_link),
30857         (gst_matroska_mux_track_header), (gst_matroska_mux_start),
30858         (gst_matroska_mux_write_data):
30859           Write track and segment UIDs, write muxing date, write
30860           TRACKDEFAULTDURATION for TTA audio, write BLOCKDURATION if known.
30861           Create cues for audio only files.
30862
30863 2004-08-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30864
30865         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
30866         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
30867           Re-commit ALSA switches.
30868         * gst/adder/gstadder.c: (gst_adder_loop):
30869           64-bit fix (#151416).
30870         * gst/debug/progressreport.c: (gst_progressreport_report):
30871           64-bit fix (#151419).
30872         * gst/matroska/matroska-demux.c:
30873         (gst_matroska_demux_parse_contents):
30874           64-bit fix (#151420).
30875         * gst/playback/test3.c: (update_scale):
30876           64-bit fix (#151421).
30877
30878 2004-08-31  Thomas Vander Stichele  <thomas at apestaart dot org>
30879
30880         * configure.ac:
30881           bump nano to cvs
30882
30883 === release 0.8.4 ===
30884
30885 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
30886
30887         * configure.ac: releasing 0.8.4, "Alias"
30888
30889 2004-08-31  Thomas Vander Stichele  <thomas at apestaart dot org>
30890
30891         * ext/theora/Makefile.am:
30892           fix makefile.  Fixes #151462.
30893
30894 2004-08-30  Wim Taymans  <wim@fluendo.com>
30895
30896         * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_wait):
30897         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
30898         (gst_multifdsink_remove_client_link),
30899         (gst_multifdsink_client_queue_buffer),
30900         (gst_multifdsink_handle_client_write):
30901         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
30902         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
30903         Fix some memory leaks.
30904
30905 2004-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
30906
30907         Patch by: David Schleef
30908
30909         * configure.ac:
30910         * sys/Makefile.am:
30911           rename our detection macro for V4L2.  Fixes #151236.
30912
30913 2004-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
30914
30915         Patch by: David Schleef
30916
30917         * configure.ac:
30918           check to define LAMEPRESET.  Fixes #151232.
30919
30920 2004-08-27  David Schleef  <ds@schleef.org>
30921
30922         * sys/glsink/glimagesink.c: (gst_glimagesink_ximage_put),
30923         (gst_glimagesink_xwindow_new), (gst_glimagesink_xcontext_get),
30924         (gst_glimagesink_fixate):  Move local variable declarations to
30925         make gcc-2.95 happy.
30926
30927 2004-08-27  Thomas Vander Stichele  <thomas at apestaart dot org>
30928
30929         * configure.ac:
30930           bump nano for prerelease
30931
30932 2004-08-27  David Schleef  <ds@schleef.org>
30933
30934         * sys/sunaudio/Makefile.am: Add sunaudiosrc patch from Bala
30935         * sys/sunaudio/gstsunaudiosrc.c:
30936         * sys/sunaudio/gstsunaudiosrc.h:
30937
30938 2004-08-27 Arwed v. Merkatz <v.merkatz@gmx.net>
30939
30940         * gst/matroska/ebml-read.c: (gst_ebml_peed_id), (gst_ebml_read_element_id),
30941         handle EOS correctly
30942         * gst/matroska/matroska-mux.c: (gst_matroska_mux_video_pad_link):
30943         * gst/matroska/matroska-mux.h:
30944         added BITMAPINFOHEADER structure, mux video/x-divx and video/x-xvid in
30945         VFW compatibility mode
30946
30947 2004-08-27  Thomas Vander Stichele  <thomas at apestaart dot org>
30948
30949         patch by: Zaheer Abbas Merali
30950
30951         * ext/ogg/gstoggmux.c:
30952         * ext/vorbis/vorbisenc.c:
30953         * ext/vorbis/vorbisenc.h:
30954           handle NEWMEDIA
30955
30956 2004-08-26 Arwed v. Merkatz <v.merkatz@gmx.net>
30957
30958         * gst/matroska/ebml-write.c: (gst_ebml_write_float),
30959         fix byte order reversion on little endian machines.
30960         * gst/matroska/matroska-mux.c: (audiosink_templ),
30961         (gst_matroska_mux_audio_pad_link):
30962         add TTA codec to the list of supported codecs.
30963         * gst/matroska/matroska-mux.c: (gst_matroska_mux_init),
30964         (gst_matroska_mux_start), (gst_matroska_mux_finish),
30965         (gst_matroska_mux_write_data):
30966         * gst/matroska/matroska-mux.h:
30967         write segment duration correctly, write muxing app string, fixes bugs
30968         #140897 and #140898.
30969         * gst/matroska/matroska-mux.c: (gst_matroska_mux_loop),
30970         wait for all pads to be negotiated before starting to mux.
30971
30972 2004-08-26  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
30973
30974         * ext/lame/gstlame.c: (gst_lame_init), (gst_lame_chain):
30975         * ext/lame/gstlame.h:
30976         Added new media support to lame
30977
30978 2004-08-25 Arwed v. Merkatz <v.merkatz@gmx.net>
30979
30980         * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_blockgroup),
30981         send vorbis headers at the beginning of a stream, fixes bug #141554.
30982         Interpret BLOCKDURATION and set buffer duration accordingly, fixes
30983         bug #148950.
30984         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps),
30985         (gst_matroska_demux_plugin_init):
30986         * gst/matroska/matroska-ids.h:
30987         enable demuxing of TTA audio streams, fixes bug #148951.
30988         * gst/typefind/gsttypefindfunctions.c: (tta_type_find), (plugin_init),
30989         enable typefinding for TTA audio files, fixes bug #148711.
30990         * ext/xvid/gstxviddec.c: (gst_xviddec_chain),
30991         set XVID_LOWDELAY flag for decoding so xvid always returns an image,
30992         fixes playback of packed bitstream and xvid with bframes, bug #135407.
30993
30994 2004-08-24  Sebastien Cote  <sc5@hermes.usherb.ca>
30995
30996         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
30997         (gst_riff_read_element_data), (gst_riff_read_seek),
30998         (gst_riff_read_skip): fix infinite loop in wavparse, fixes bug
30999         #144616, patch reviewed by Ronald and committed by Christophe Fergeau
31000         <teuf@gnome.org>
31001
31002 2004-08-23 Iain <iaingnome@gmail.com>
31003
31004         * ext/mad/gstid3tag.c (gst_mad_id3_to_tag_list): Special case COMM
31005         tags. They appear to be handled differently to normal.
31006         (tag_list_to_id3_tag_foreach): Ditto.
31007
31008 2004-08-22  Wim Taymans  <wim@fluendo.com>
31009
31010         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
31011         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
31012         Make sure we never send -1 granulepos.
31013
31014 2004-08-20  Wim Taymans  <wim@fluendo.com>
31015
31016         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
31017         (gst_ogg_mux_loop):
31018         I will accept bitchslappings with non sharp objects.
31019
31020 2004-08-20  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31021
31022         * configure.ac:
31023         Clean up the test for lame presets
31024
31025 2004-08-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31026
31027         * configure.ac:
31028         * ext/lame/Makefile.am:
31029         * ext/lame/gstlame.c: (gst_lame_class_init),
31030         (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
31031         Only enable lame presets if version of lame has presets in API
31032
31033 2004-08-19  Jan Schmidt  <thaytan@mad.scientist.com>
31034         * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_get):
31035         * gst/udp/gstudpsrc.h:
31036           Don't call gst_pad_push in a get function. Fixes #150449
31037
31038 2004-08-18  Wim Taymans  <wim@fluendo.com>
31039
31040         * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_set_mode),
31041         (gst_fdset_get_mode), (gst_fdset_add_fd), (gst_fdset_remove_fd),
31042         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
31043         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
31044         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
31045         (gst_fdset_wait):
31046         * gst/tcp/gstfdset.h:
31047         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
31048         (gst_multifdsink_client_queue_buffer),
31049         (gst_multifdsink_handle_client_write):
31050         * gst/tcp/gstmultifdsink.h:
31051         Some extra checks in gstfdset.
31052         Only use send() when the fd is a socket. Don't try to
31053         read from write only fds.
31054
31055 2004-08-18  Wim Taymans  <wim@fluendo.com>
31056
31057         * gst/tcp/gstfdset.c: (gst_fdset_add_fd), (gst_fdset_remove_fd),
31058         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
31059         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
31060         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
31061         (gst_fdset_wait):
31062         Add more locking and bounds checking.
31063
31064 2004-08-18  Wim Taymans  <wim@fluendo.com>
31065
31066         * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_wait):
31067         Realloc test fdset in the lock and right before starting
31068         the poll call. Bump the limit to 4096.
31069
31070 2004-08-17  David Schleef  <ds@schleef.org>
31071
31072         * sys/sunaudio/Makefile.am:
31073         * sys/sunaudio/gstsunaudio.c: Fix caps to handle full range
31074         of rates and channels.  Make debugging less obnoxious.
31075
31076         Patch from Balamurali Viswanathan implementing a mixer for
31077         Sun audio.  (bug #144091):
31078         * sys/sunaudio/gstsunelement.c:
31079         * sys/sunaudio/gstsunelement.h:
31080         * sys/sunaudio/gstsunmixer.c:
31081         * sys/sunaudio/gstsunmixer.h:
31082
31083 2004-08-17  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31084
31085         * gst/audioscale/gstaudioscale.c:
31086         * gst/audioscale/gstaudioscale.h:
31087         made audioscale resample from any sample rate to any sample rate
31088
31089 2004-08-17  Thomas Vander Stichele  <thomas at apestaart dot org>
31090
31091         * ext/libpng/gstpngdec.c:
31092           error out on unsupported types
31093
31094 2004-08-17  Iain <iaingnome@gmail.com>
31095
31096         * ext/flac/gstflacenc.c (gst_flacenc_update_quality): Only set the
31097         mid_side and loose_mid_side properties if its a stereo stream.
31098
31099 2004-08-17  Wim Taymans  <wim@fluendo.com>
31100
31101         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
31102         (theora_get_formats), (theora_dec_src_convert),
31103         (theora_dec_sink_convert), (theora_dec_src_query),
31104         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
31105         Add a debug line.
31106
31107 2004-08-17  Wim Taymans  <wim@fluendo.com>
31108
31109         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate),
31110         (gst_ogg_pad_push):
31111         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
31112         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
31113         (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_page),
31114         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
31115         Mark delta units in the muxer.
31116         Try to decode the packet after an out-of-sync error from
31117         libogg.
31118
31119 2004-08-17  Wim Taymans  <wim@fluendo.com>
31120
31121         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
31122         (gst_multifdsink_init), (gst_multifdsink_add),
31123         (gst_multifdsink_client_queue_buffer),
31124         (gst_multifdsink_set_property), (gst_multifdsink_get_property):
31125         * gst/tcp/gstmultifdsink.h:
31126         Added option to send a keyframe to clients as the first buffer.
31127         Make timeout property writable.
31128
31129 2004-08-17  Thomas Vander Stichele  <thomas at apestaart dot org>
31130
31131         patch by: Wim Taymans
31132
31133         * gst/tcp/gstfdset.c:
31134         * gst/tcp/gstmultifdsink.c:
31135           fix index comparison, should include 0
31136
31137 2004-08-16  Wim Taymans  <wim@fluendo.com>
31138
31139         * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_new),
31140         (gst_fdset_add_fd), (gst_fdset_remove_fd),
31141         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
31142         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
31143         (gst_fdset_wait):
31144           copy when reallocing for poll so the select arguments don't get
31145           changed during the call
31146
31147 2004-08-16  Wim Taymans  <wim@fluendo.com>
31148
31149         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
31150         (gst_theora_enc_class_init), (theora_enc_sink_link),
31151         (theora_buffer_from_packet), (theora_enc_chain):
31152         Fix bug where buffers were not marked as keyframes
31153         correctly.
31154
31155 2004-08-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31156
31157         * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
31158         (gst_lame_preset_get_type), (gst_lame_class_init):
31159         describe the enum values for vbr mode and presets more verbosely
31160
31161 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31162
31163         * ext/lame/gstlame.c: (gst_lame_mode_get_type),
31164         (gst_lame_quality_get_type), (gst_lame_padding_get_type),
31165         (gst_lame_preset_get_type), (gst_lame_class_init), (gst_lame_init),
31166         (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
31167         * ext/lame/gstlame.h:
31168         add preset property to lame so it can use lame presets
31169
31170 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31171
31172         * ext/lame/gstlame.c: (gst_lame_get_property):
31173         whoops forgot break, thanks teuf
31174
31175 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31176
31177         * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
31178         (gst_lame_class_init), (gst_lame_src_getcaps),
31179         (gst_lame_sink_link), (gst_lame_init), (gst_lame_set_property),
31180         (gst_lame_get_property), (gst_lame_setup):
31181         * ext/lame/gstlame.h:
31182         fix lame's broken vbr stuff, allow it to resample if need be, and also
31183         make xing header optional
31184
31185 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31186
31187         * ext/lame/gstlame.c: (gst_lame_src_getcaps), (gst_lame_init):
31188         added getcaps function so samplerate doesnt get fixated to silly values
31189
31190 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31191
31192         * ext/lame/gstlame.c: (gst_lame_src_link):
31193         revert previous fix
31194
31195 2004-08-12  Johan Dahlin  <johan@gnome.org>
31196
31197         * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Remove bogus
31198         checks. Doesn't matter what state we are in. Interfaces are a
31199         compile time thing, not runtime. It also broke the python bindings.
31200
31201 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31202
31203         * ext/lame/gstlame.c: (gst_lame_src_link):
31204         made source pad link function check if sinkpad is ok..fixes the problem
31205         where core fixates the output rate of lame stupidly
31206
31207 2004-08-12  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
31208
31209         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_fixate):
31210         * sys/v4l/v4l_calls.c:
31211         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_set_capture):
31212           fix fixate function to handle nonsimple caps.
31213           remove bogus check in _link
31214           cleanups
31215
31216 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31217
31218         * ext/lame/gstlame.c: (gst_lame_class_init), (gst_lame_init):
31219         set default compression ratio parameter to 0.0 so bitrate parameter
31220         works :)
31221
31222 2004-08-11  David Schleef  <ds@schleef.org>
31223
31224         * gst/tcp/gstfdset.c: Fix compile problem on OS/X.
31225
31226 2004-08-11  David Schleef  <ds@schleef.org>
31227
31228         * gst/mpeg1sys/gstmpeg1systemencode.c: Oops, this was correct
31229         before.
31230
31231 2004-08-11  David Schleef  <ds@schleef.org>
31232
31233         * gst-libs/gst/video/videosink.h: Change copyright block to LGPL.
31234
31235 2004-08-11  David Schleef  <ds@schleef.org>
31236
31237         * ext/pango/gsttextoverlay.c: Add copyright block and fix plugin
31238           license field
31239         * gst-libs/gst/idct/Makefile.am: Remove mmx/sse code
31240         * gst-libs/gst/video/gstvideosink.c: Change copyright block to
31241           LGPL.
31242         * gst/auparse/gstauparse.c: Fix plugin license field.
31243         * gst/monoscope/gstmonoscope.c: Fix plugin license field.
31244         * gst/mpeg1sys/gstmpeg1systemencode.c: Fix plugin license field.
31245         * gst/rtp/gstrtp.c: Fix plugin license field.
31246
31247 2004-08-11  Wim Taymans  <wim@fluendo.com>
31248
31249         * gst/tcp/Makefile.am:
31250         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type), (nearest_pow),
31251         (ensure_size), (gst_fdset_new), (gst_fdset_free),
31252         (gst_fdset_set_mode), (gst_fdset_get_mode), (gst_fdset_add_fd),
31253         (gst_fdset_remove_fd), (gst_fdset_fd_ctl_write),
31254         (gst_fdset_fd_ctl_read), (gst_fdset_fd_has_closed),
31255         (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
31256         (gst_fdset_fd_can_write), (gst_fdset_wait):
31257         * gst/tcp/gstfdset.h:
31258         * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
31259         (gst_multifdsink_class_init), (gst_multifdsink_init),
31260         (gst_multifdsink_add), (gst_multifdsink_remove),
31261         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
31262         (gst_multifdsink_remove_client_link),
31263         (gst_multifdsink_handle_client_read),
31264         (gst_multifdsink_client_queue_data),
31265         (gst_multifdsink_client_queue_caps),
31266         (gst_multifdsink_client_queue_buffer),
31267         (gst_multifdsink_handle_client_write),
31268         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
31269         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
31270         (gst_multifdsink_get_property), (gst_multifdsink_init_send),
31271         (gst_multifdsink_close):
31272         * gst/tcp/gstmultifdsink.h:
31273         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
31274         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
31275         (gst_tcpserversink_handle_wait), (gst_tcpserversink_init_send),
31276         (gst_tcpserversink_close):
31277         * gst/tcp/gsttcpserversink.h:
31278         Abstracted away the select call, implemented poll (yes we ran into
31279         the 1024 limit in production).
31280
31281 2004-08-11  Thomas Vander Stichele  <thomas at apestaart dot org>
31282
31283         * gst/tcp/gsttcp.c:
31284         * gst/tcp/gsttcpplugin.c:
31285           improve debuggging, remove assert
31286
31287 2004-08-10  Wim Taymans  <wim@fluendo.com>
31288
31289         * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
31290         (gst_client_status_get_type), (gst_multifdsink_class_init),
31291         (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
31292         (gst_multifdsink_handle_client_read),
31293         (gst_multifdsink_handle_client_write),
31294         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
31295         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
31296         (gst_multifdsink_get_property):
31297         * gst/tcp/gstmultifdsink.h:
31298         * gst/tcp/gsttcp-marshal.list:
31299         Starting to prepare for specifying buffer time in other units
31300         than buffers. Expose remove reason in signal.
31301
31302 2004-08-10  Wim Taymans  <wim@fluendo.com>
31303
31304         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
31305         (gst_multifdsink_remove), (gst_multifdsink_clear),
31306         (gst_multifdsink_remove_client_link),
31307         (gst_multifdsink_handle_client_read),
31308         (gst_multifdsink_client_queue_data),
31309         (gst_multifdsink_client_queue_buffer),
31310         (gst_multifdsink_handle_client_write),
31311         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
31312         (gst_multifdsink_chain), (gst_multifdsink_close):
31313         * gst/tcp/gstmultifdsink.h:
31314         Added more debugging info. Changed the way clients are
31315         removed from the lists. Fixed a bug where a bad file descriptor
31316         could cause many clients to be removed.
31317
31318 2004-08-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31319
31320         * gst/videotestsrc/gstvideotestsrc.c: (generate_capslist):
31321           allow all pixel-aspect-ratios, not just 1:1
31322
31323 2004-08-09  David Schleef  <ds@schleef.org>
31324
31325         * sys/glsink/ARB_multitexture.h:  Remove old files.
31326         * sys/glsink/EXT_paletted_texture.h:
31327         * sys/glsink/NV_register_combiners.h:
31328         * sys/glsink/gstgl_nvimage.c:
31329         * sys/glsink/gstgl_pdrimage.c:
31330         * sys/glsink/gstgl_rgbimage.c:
31331         * sys/glsink/gstglsink.c:
31332         * sys/glsink/gstglsink.h:
31333         * sys/glsink/gstglxwindow.c:
31334         * sys/glsink/regcomb_yuvrgb.c:
31335
31336 2004-08-09  David Schleef  <ds@schleef.org>
31337
31338         Patch from Gernot Ziegler <gz@lysator.liu.se> rewriting the
31339         GL sink plugin.  (Bug #147302)
31340
31341         * configure.ac: Test for OpenGL
31342         * sys/Makefile.am: Use test for OpenGL
31343         * sys/glsink/Makefile.am:
31344         * sys/glsink/glimagesink.c: rewrite
31345         * sys/glsink/glimagesink.h: rewrite
31346
31347 2004-08-09  David Schleef  <ds@schleef.org>
31348
31349         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_base_init):  Only allow
31350         sane framerates.
31351         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get): same
31352         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): same
31353         * testsuite/gst-lint: Test for G_GUINT64_FORMAT usage near gettext.
31354
31355 2004-08-09  Wim Taymans  <wim@fluendo.com>
31356
31357         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
31358         (gst_multifdsink_add), (gst_multifdsink_get_stats),
31359         (gst_multifdsink_client_remove),
31360         (gst_multifdsink_handle_client_read),
31361         (gst_multifdsink_handle_client_write),
31362         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
31363         Do a bit more logging, make the client_read code more robust.
31364
31365 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
31366
31367         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init_source),
31368         (gst_jpegdec_fill_input_buffer), (gst_jpegdec_skip_input_data),
31369         (gst_jpegdec_resync_to_restart), (gst_jpegdec_term_source),
31370         (gst_jpegdec_init), (gst_jpegdec_chain):
31371         * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
31372         (gst_multipart_demux_chain), (gst_multipart_demux_change_state):
31373           cleanups, debugging fixes and memleak plugging
31374
31375 2004-08-09  Wim Taymans  <wim@fluendo.com>
31376
31377         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
31378         (theora_get_formats), (theora_dec_src_convert),
31379         (theora_dec_sink_convert), (theora_dec_src_query),
31380         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain),
31381         (theora_dec_change_state):
31382         Don't crash on missing header packets.
31383
31384 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
31385
31386         * po/LINGUAS:
31387         * po/sq.po:
31388           Added Albanian translation (Laurent Dhima)
31389         * po/cs.po:
31390           updated
31391
31392 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
31393
31394         * ext/lame/gstlame.c:
31395           fix/add debugging
31396
31397 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
31398
31399         * sys/ximage/ximagesink.c:
31400         * sys/xvimage/xvimagesink.c:
31401           assign all TOO_LAZY's to a real category.  Thanks to Warthy Warthog.
31402
31403 2004-08-06  Wim Taymans  <wim@fluendo.com>
31404
31405         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
31406         (gst_multifdsink_add), (gst_multifdsink_get_stats),
31407         (gst_multifdsink_client_remove),
31408         (gst_multifdsink_handle_client_read),
31409         (gst_multifdsink_handle_client_write),
31410         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
31411         Make sure we don't try to read more from a client that what
31412         ioctl says us or we deadlock.
31413
31414 2004-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
31415
31416         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_src_link),
31417         (gst_videotestsrc_change_state), (gst_videotestsrc_src_query),
31418         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
31419           decouple running_time and n_frames so it can handle changing
31420           framerate while running
31421
31422 2004-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
31423
31424         * po/nl.po:
31425         * po/sv.po:
31426           updated translations
31427
31428 2004-08-04  Benjamin Otte  <otte@gnome.org>
31429
31430         * gst/videotestsrc/gstvideotestsrc.c:
31431         (gst_videotestsrc_get_capslist), (generate_capslist),
31432         (plugin_init):
31433           generate the list of supported caps at startup and reuse it instead
31434           of always generating it
31435
31436 2004-07-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31437
31438         * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link):
31439           whoops, last checkin broke normal build
31440
31441 2004-08-03  Benjamin Otte  <otte@gnome.org>
31442
31443         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume),
31444         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
31445         (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
31446         (gst_alsa_mixer_get_option):
31447         * ext/dvdnav/dvdnavsrc.c: (dvdnav_get_event_name),
31448         (dvdnavsrc_print_event):
31449         * ext/ogg/gstoggdemux.c: (_find_chain_process), (gst_ogg_print):
31450         * ext/ogg/gstoggmux.c: (gst_ogg_mux_pad_link),
31451         (gst_ogg_mux_pad_unlink):
31452         * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link),
31453         (gst_multipart_mux_pad_unlink):
31454         * gst/videofilter/gstvideobalance.c:
31455         (gst_videobalance_colorbalance_set_value):
31456         * gst/videomixer/videomixer.c: (gst_videomixer_pad_link),
31457         (gst_videomixer_pad_unlink):
31458         * po/uk.po:
31459         * sys/oss/gstossmixer.c:
31460         * sys/v4l/gstv4lcolorbalance.c:
31461         * sys/v4l/gstv4ltuner.c:
31462         * sys/v4l/v4lsrc_calls.c:
31463         * sys/v4l2/gstv4l2colorbalance.c:
31464         * sys/v4l2/gstv4l2tuner.c:
31465           compile fixes for --disable-gst-debug, G_DISABLE_ASSERT and friends
31466
31467 2004-08-03  Benjamin Otte  <otte@gnome.org>
31468
31469         * examples/dynparams/filter.c: (ui_control_create):
31470         * examples/gstplay/player.c: (print_tag):
31471         * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad):
31472         * ext/gdk_pixbuf/gstgdkanimation.c:
31473         (gst_gdk_animation_iter_may_advance):
31474         * ext/jack/gstjack.c: (gst_jack_request_new_pad):
31475         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list),
31476         (tag_list_to_id3_tag_foreach), (gst_id3_tag_handle_event):
31477         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_tag_value):
31478         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value):
31479         * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
31480         * gst-libs/gst/media-info/media-info-test.c: (print_tag):
31481         * gst/sine/demo-dparams.c: (main):
31482         * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
31483         * testsuite/alsa/formats.c: (create_pipeline):
31484         * testsuite/alsa/sinesrc.c: (sinesrc_force_caps), (sinesrc_get):
31485           fixes for G_DISABLE_ASSERT and friends
31486         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
31487         (mp3_type_frame_length_from_header), (mp3_type_find),
31488         (plugin_init):
31489           require mp3 typefinding to have at least MIN_HEADERS valid headers
31490           add typefinding for AAC adts files
31491
31492 2004-08-04  Jan Schmidt  <thaytan@mad.scientist.com>
31493
31494         * sys/ximage/ximagesink.c:
31495         (gst_ximagesink_calculate_pixel_aspect_ratio):
31496         * sys/xvimage/xvimagesink.c:
31497         (gst_xvimagesink_calculate_pixel_aspect_ratio):
31498         Make sure we calculate pixel-aspect-ratio using floating point maths
31499
31500 2004-08-03  Thomas Vander Stichele  <thomas at apestaart dot org>
31501
31502         * po/uk.po:
31503           updated translation
31504
31505 2004-08-03  Thomas Vander Stichele  <thomas at apestaart dot org>
31506
31507         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
31508         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get):
31509           add debugging for display PAR calculation
31510
31511 2004-08-02  David Schleef  <ds@schleef.org>
31512
31513         * configure.ac: Fix mikmod CFLAGS.
31514
31515 2004-07-27  Benjamin Otte  <otte@gnome.org>
31516
31517         * gst/audioscale/gstaudioscale.c:
31518         - fix templates to only support S16, it's the only format that works
31519         - make caps nego code use try_set_caps_nonfixed and fixation instead
31520         of try_set_caps twice, which is not nice for autopluggers
31521         - change rank to secondary, so autopluggers can pick it up after
31522         audioconvert
31523
31524 2004-08-02  Iain <iain@prettypeople.org>
31525
31526         * gst/interleave/interleave.c (interleave_init),
31527         (interleave_request_new_pad),
31528         (interleave_pad_removed),
31529         (interleave_buffered_loop): Use the real pad count, not the artificial
31530         one.
31531
31532 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
31533
31534         * configure.ac: bump nano back to development
31535
31536 === release 0.8.3 ===
31537
31538 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
31539
31540         * configure.ac: releasing 0.8.3, "Water"
31541
31542 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
31543
31544         * sys/xvimage/xvimagesink.c:
31545         (gst_xvimagesink_calculate_pixel_aspect_ratio),
31546         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_sink_link),
31547         (gst_xvimagesink_change_state), (gst_xvimagesink_buffer_alloc),
31548         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
31549         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
31550         * sys/xvimage/xvimagesink.h:
31551           apply similar PAR fixes as to ximagesink
31552
31553 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
31554
31555         patch from: Benjamin Otte
31556
31557         * ext/lame/gstlame.c: (gst_lame_src_link), (gst_lame_init):
31558           add link function to lame.  Fixes #148986.
31559
31560 2004-08-02  Johan Dahlin  <johan@gnome.org>
31561
31562         * gst/multipart/multipartmux.c (gst_multipart_mux_next_buffer):
31563         fix debugging log
31564
31565 2004-07-30  David Schleef  <ds@schleef.org>
31566
31567         * gst/videomixer/Makefile.am: Fix things that should have been
31568         fixed in the last checkin.
31569
31570 2004-07-30  David Schleef  <ds@schleef.org>
31571
31572         * gst/multipart/Makefile.am: Fix things that should have been
31573         fixed in the last checkin.
31574
31575 2004-07-30  David Schleef  <ds@schleef.org>
31576
31577         * testsuite/multifilesink/Makefile.am: Fix unused variable.
31578
31579 2004-07-30  Thomas Vander Stichele  <thomas at apestaart dot org>
31580
31581         * configure.ac:
31582           bump nano for prerelease
31583         * po/af.po:
31584         * po/az.po:
31585         * po/cs.po:
31586         * po/en_GB.po:
31587         * po/hu.po:
31588         * po/nl.po:
31589         * po/sr.po:
31590         * po/sv.po:
31591         * po/uk.po:
31592           updates
31593
31594 2004-07-30  Wim Taymans  <wim@fluendo.com>
31595
31596         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
31597         (gst_multifdsink_add), (gst_multifdsink_remove),
31598         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
31599         (gst_multifdsink_client_remove),
31600         (gst_multifdsink_handle_client_write),
31601         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
31602         * gst/tcp/gstmultifdsink.h:
31603         Recover from a select with a bad file descriptor by removing
31604         the client.
31605
31606 2004-07-30  Thomas Vander Stichele  <thomas at apestaart dot org>
31607
31608         * configure.ac:
31609           fix requirement of core
31610         * gst-libs/gst/play/play.c: (gst_play_error_plugin),
31611         (gst_play_pipeline_setup):
31612           don't use colorspace element.  do use hermescolorspace element.
31613           make macro to get a colorspace element.
31614           mark strings for translation.
31615         * po/POTFILES.in:
31616           add play.c
31617         * po/af.po:
31618         * po/az.po:
31619         * po/cs.po:
31620         * po/en_GB.po:
31621         * po/hu.po:
31622         * po/nl.po:
31623         * po/sr.po:
31624         * po/sv.po:
31625         * po/uk.po:
31626           update translations
31627
31628 2004-07-30  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31629
31630         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init):
31631         fix default for newmedia flag
31632
31633 2004-07-30  Wim Taymans  <wim@fluendo.com>
31634
31635         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
31636         (gst_theora_dec_init), (theora_get_formats),
31637         (theora_dec_src_convert), (theora_dec_sink_convert),
31638         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
31639         (theora_dec_chain), (theora_dec_set_property),
31640         (theora_dec_get_property):
31641         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
31642         (gst_theora_enc_class_init), (gst_theora_enc_init),
31643         (theora_enc_sink_link), (theora_enc_chain),
31644         (theora_enc_set_property), (theora_enc_get_property):
31645         Added cropping option to theora decoder.
31646         Added border option to theora encoder.
31647
31648 2004-07-30  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31649
31650         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
31651         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
31652         (gst_pngenc_set_property):
31653         * ext/libpng/gstpngenc.h:
31654         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
31655
31656 2004-07-30  Wim Taymans  <wim@fluendo.com>
31657
31658         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
31659         (theora_enc_sink_link), (theora_enc_chain),
31660         (theora_enc_set_property), (theora_enc_get_property):
31661         Fix encoding of non-multiple-of-16 video.
31662
31663 2004-07-29  David Schleef  <ds@schleef.org>
31664
31665         * configure.ac: make test for audiofile more strict
31666
31667 2004-07-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31668
31669         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
31670           give different names to typefind functions
31671
31672 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
31673
31674         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
31675         (gst_ximagesink_calculate_pixel_aspect_ratio),
31676         (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
31677         (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
31678         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_set_property),
31679         (gst_ximagesink_get_property), (gst_ximagesink_init):
31680         * sys/ximage/ximagesink.h:
31681           allocate PAR's dynamically.
31682           use autodetected PAR if no object-set PAR is given.
31683           add workaround for directfb's X not setting physical size.
31684           fix to xvimagesink will follow tomorrow.
31685
31686 2004-07-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31687
31688         * ext/lame/gstlame.c: (gst_lame_chain): send tag events downstream
31689         * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
31690         (gst_shout2send_get_type), (gst_shout2send_set_clock),
31691         (gst_shout2send_class_init), (gst_shout2send_init),
31692         (set_shout_metadata), (gst_shout2send_set_metadata),
31693         (gst_shout2send_chain), (gst_shout2send_set_property),
31694         (gst_shout2send_get_property), (gst_shout2send_connect),
31695         (gst_shout2send_change_state):
31696         * ext/shout2/gstshout2.h:
31697         - fix for sending mp3 audio to icecast2 server, if pad link function not
31698         called before PAUSED state
31699         - added option to use GStreamer clock sync (as opposed to libshout's own sync)
31700         - added tagging support for mp3 audio broadcasted
31701         * gst/monoscope/gstmonoscope.c: (gst_monoscope_class_init):
31702         debug info
31703
31704 2004-07-28  Wim Taymans  <wim@fluendo.com>
31705
31706         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
31707         (gst_ogg_demux_push):
31708         Return query failure when we don't know the length of
31709         an ogg stream insteda of returning TRUE with a bogus value.
31710
31711 2004-07-28  Wim Taymans  <wim@fluendo.com>
31712
31713         * ext/theora/theoradec.c: (theora_get_formats),
31714         (theora_dec_src_convert), (theora_dec_sink_convert),
31715         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
31716         (theora_dec_chain):
31717         Don't screw up the 1 Chroma for 1 luma sample situation when we
31718         have an odd offset/width by adding a black border in those cases.
31719
31720 2004-07-28  Wim Taymans  <wim@fluendo.com>
31721
31722         * ext/theora/theoradec.c: (theora_get_formats),
31723         (theora_dec_src_convert), (theora_dec_sink_convert),
31724         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
31725         (theora_dec_chain):
31726         * ext/theora/theoraenc.c: (theora_enc_sink_link):
31727         Added first attempt at cropping of the image as required by the
31728         theora spec. We need more properties in the caps (offset_x,
31729         offset_y,stride) to implement this correctly.
31730
31731 2004-07-28  Jan Schmidt  <thaytan@mad.scientist.com>
31732
31733         * ext/dvdnav/README:
31734           Update the README to use dvddemux
31735         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
31736           Ensure getcaps returns a subset of the template caps
31737         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_base_init),
31738         (gst_mpeg2subt_init):
31739           Ensure getcaps returns a subset of the template caps
31740         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
31741         (gst_dvd_demux_init), (gst_dvd_demux_get_video_stream),
31742         (gst_dvd_demux_get_subpicture_stream),
31743         (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_set_cur_subpicture):
31744         * gst/mpegstream/gstdvddemux.h:
31745           Set the explicit caps on the current_video pad before pushing
31746           anything
31747         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
31748         (gst_mpeg_demux_get_audio_stream):
31749           Free caps used to gst_pad_set_explicit_caps, which takes a const
31750           GstCaps *
31751
31752 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
31753
31754         * configure.ac: update GStreamer requirement to 0.8.4 because of
31755           GstFraction.
31756
31757 2004-07-28  Wim Taymans  <wim@fluendo.com>
31758
31759         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt),
31760         (gst_wavparse_handle_seek), (gst_wavparse_srcpad_event):
31761         Add the pad to the element after setting up the caps. This
31762         makes it a lot easier to autoplug.
31763
31764 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
31765
31766         * gst/median/gstmedian.c:
31767         * gst/mpeg2subt/gstmpeg2subt.c:
31768         * gst/mpegaudioparse/gstmpegaudioparse.c:
31769         * gst/mpegstream/gstdvddemux.c:
31770         * gst/mpegstream/gstmpegdemux.c:
31771         * gst/mpegstream/gstmpegpacketize.c:
31772         * gst/rtjpeg/gstrtjpeg.c:
31773         * gst/rtjpeg/gstrtjpegdec.c:
31774         * gst/rtjpeg/gstrtjpegenc.c:
31775         * gst/sine/gstsinesrc.c:
31776         * gst/smooth/gstsmooth.c:
31777         * gst/smpte/gstsmpte.c:
31778         * gst/smpte/gstsmpte.h:
31779         * gst/stereo/gststereo.c:
31780         * gst/videofilter/gstgamma.c:
31781         * gst/videofilter/gstvideobalance.c:
31782         * gst/videofilter/gstvideofilter.c:
31783         * gst/videofilter/gstvideoflip.c:
31784         * gst/videoscale/gstvideoscale.c:
31785         * gst/videoscale/videoscale.c:
31786         * gst/videotestsrc/gstvideotestsrc.c:
31787         * gst/videotestsrc/videotestsrc.c:
31788         * gst/wavenc/gstwavenc.c:
31789         * gst/wavparse/gstwavparse.c:
31790           fix local includes and 64 bits constants
31791
31792 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
31793
31794         * win32/gst.sln:
31795         * gst-libs/gst/*/*.vcproj:
31796         * gst/*/*.vcproj:
31797           more working plugins
31798
31799 2004-07-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31800
31801         * testsuite/alsa/Makefile.am:
31802         * testsuite/alsa/srcstate.c:
31803         add test for alsasrc changing state
31804
31805 2004-07-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31806
31807         * gst/silence/gstsilence.c: (gst_silence_init), (gst_silence_link),
31808         (gst_silence_get):
31809         * gst/silence/gstsilence.h:
31810         fix silence generation for 16bit raw audio
31811
31812 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
31813
31814         * gst/matroska/matroska-demux.c:
31815         (gst_matroska_demux_parse_metadata),
31816         (gst_matroska_demux_video_caps), (gst_matroska_demux_plugin_init):
31817         * gst/mpegaudio/common.c:
31818         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
31819         (gst_videoscale_getcaps), (gst_videoscale_link),
31820         (gst_videoscale_src_fixate), (gst_videoscale_init),
31821         (gst_videoscale_finalize):
31822         * gst/videoscale/gstvideoscale.h:
31823         * gst/videotestsrc/gstvideotestsrc.c:
31824         (gst_videotestsrc_get_capslist):
31825         * gst/wavenc/gstwavenc.c:
31826         * sys/oss/gstossmixer.c: (fill_labels):
31827         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
31828         (gst_ximagesink_handle_xevents),
31829         (gst_ximagesink_calculate_pixel_aspect_ratio),
31830         (gst_ximagesink_xcontext_get), (gst_ximagesink_fixate),
31831         (gst_ximagesink_getcaps), (gst_ximagesink_sink_link),
31832         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
31833         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
31834         (gst_ximagesink_init), (gst_ximagesink_class_init):
31835         * sys/ximage/ximagesink.h:
31836         * sys/xvimage/xvimagesink.c:
31837         (gst_xvimagesink_calculate_pixel_aspect_ratio),
31838         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_sink_link),
31839         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
31840         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
31841         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
31842         * sys/xvimage/xvimagesink.h:
31843           first batch of pixel aspect ratio commits.
31844
31845 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
31846
31847         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
31848         (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_chain):
31849         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_fill):
31850           handle stride, needs work if we want to move stride handling
31851           upstream, but works correctly for our purposes.
31852
31853 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
31854
31855         * gst/videoscale/README:
31856           add testing examples
31857         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link),
31858         (gst_videoscale_chain):
31859         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
31860         (gst_videoscale_get_size):
31861           add get_size function that handles stride like videotestsrc.
31862           fixes conversion for YUV formats for as much as I can test them.
31863
31864 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
31865
31866         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
31867         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
31868         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
31869         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
31870         (gst_xvimagesink_xvimage_put):
31871           further cleanups, logging, error handling and synchronizing
31872
31873 2004-07-27  Wim Taymans  <wim@fluendo.com>
31874
31875         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
31876         (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
31877         (gst_videomixer_pad_set_property),
31878         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
31879         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
31880         (gst_videomixer_class_init), (gst_videomixer_init),
31881         (gst_videomixer_getcaps), (gst_videomixer_request_new_pad),
31882         (gst_videomixer_blend_ayuv_i420), (pad_zorder_compare),
31883         (gst_videomixer_sort_pads), (gst_videomixer_fill_checker),
31884         (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
31885         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
31886         (gst_videomixer_loop), (plugin_init):
31887         Be a nicer negotiation citizen and provide a getcaps function on
31888         the srcpad. This also fixes a crash when resizing.
31889
31890 2004-07-27  Julien MOUTTE  <julien@moutte.net>
31891
31892         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
31893         (gst_xvimagesink_xvimage_new): Some fixes to image size calculation.
31894
31895 2004-07-27  Wim Taymans  <wim@fluendo.com>
31896
31897         * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps):
31898         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
31899         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
31900         (gst_pngenc_set_property):
31901         * ext/libpng/gstpngenc.h:
31902         Added snapshot property to pngenc.
31903         removed g_print from pngdec
31904
31905 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
31906
31907         * gst/ac3parse/ac3parse.vcproj
31908         * gst/adder/adder.vcproj
31909         * gst/alpha/alpha.vcproj
31910         * gst/alpha/alphacolor.vcproj
31911         * gst/asfdemux/asf.vcproj
31912         * gst/audioconvert/audioconvert.vcproj
31913         * gst/audiorate/audiorate.vcproj
31914         * gst/audioscale/audioscale.vcproj
31915         * gst/auparse/auparse.vcproj
31916         * gst/avi/avi.vcproj
31917         * gst/cdxaparse/cdxaparse.vcproj
31918         * gst/chart/chart.vcproj
31919         * gst/colorspace/colorspace.vcproj
31920         * gst/cutter/cutter.vcproj
31921         * gst/debug/debug.vcproj
31922         * gst/debug/efence.vcproj
31923         * gst/debug/navigationtest.vcproj
31924         * gst/deinterlace/deinterlace.vcproj
31925         * gst/effectv/effectv.vcproj
31926         * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
31927         * gst/filter/filter.vcproj
31928         * gst/flx/flxdec.vcproj
31929         * gst/goom/goom.vcproj
31930         * gst/interleave/interleave.vcproj
31931         * gst/law/alaw.vcproj
31932         * gst/law/mulaw.vcproj
31933         * gst/matroska/matroska.vcproj
31934         * gst/median/median.vcproj
31935         * gst/mixmatrix/mixmatrix.vcproj
31936         * gst/mpeg1sys/mpeg1systemencode.vcproj
31937         * gst/mpeg1videoparse/mp1videoparse.vcproj
31938         * gst/mpeg2sub/mpeg2subt.vcproj
31939         * gst/mpegaudio/mpegaudio.vcproj
31940         * gst/mpegaudioparse/mpegaudioparse.vcproj
31941         * gst/mpegstream/mpegstream.vcproj
31942         * gst/multifilesink/multifilesink.vcproj
31943         * gst/multipart/multipart.vcproj
31944         * gst/oneton/oneton.vcproj
31945         * gst/overlay/overlay.vcproj
31946         * gst/passthrough/passthrough.vcproj
31947         * gst/qtdemux/qtdemux.vcproj
31948         * gst/realmedia/rmdemux.vcproj
31949         * gst/rtjpeg/rtjpeg.vcproj
31950         * gst/rtp/rtp.vcproj
31951         * gst/silence/silence.vcproj
31952         * gst/sine/sinesrc.vcproj
31953         * gst/smooth/smooth.vcproj
31954         * gst/smpte/smpte.vcproj
31955         * gst/spectrum/spectrum.vcproj
31956         * gst/speed/speed.vcproj
31957         * gst/stereo/stereo.vcproj
31958         * gst/switch/switch.vcproj
31959         * gst/tags/tagedit.vcproj
31960         * gst/tcp/tcp.vcproj
31961         * gst/typefind/typefindfunctions.vcproj
31962         * gst/udp/udp.vcproj
31963         * gst/videobox/videobox.vcproj
31964         * gst/videocrop/videocrop.vcproj
31965         * gst/videodrop/videodrop.vcproj
31966         * gst/videofilter/gamma.vcproj
31967         * gst/videofilter/videobalance.vcproj
31968         * gst/videofilter/videofilter.vcproj
31969         * gst/videofilter/videoflip.vcproj
31970         * gst/videoflip/videoflip.vcproj
31971         * gst/videomixer/videomixer.vcproj
31972         * gst/videorate/videorate.vcproj
31973         * gst/videoscale/videoscale.vcproj
31974         * gst/videotestsrc/videotestsrc.vcproj
31975         * gst/virtualdub/virtualdub.vcproj
31976         * gst/volenv/volenv.vcproj
31977         * gst/volume/volume.vcproj
31978         * gst/wavenc/wavenc.vcproj
31979         * gst/wavparse/wavparse.vcproj
31980         * gst/y4m/y4menc.vcproj
31981         * gst-libs/gst/audio/audio.vcproj
31982         * gst-libs/gst/audio/audiofilter.vcproj
31983         * gst-libs/gst/colorbalance/colorbalance.vcproj
31984         * gst-libs/gst/idct/idtc.vcproj
31985         * gst-libs/gst/media-info/media-info.vcproj
31986         * gst-libs/gst/mixer/mixer.vcproj
31987         * gst-libs/gst/navigation/navigation.vcproj
31988         * gst-libs/gst/play/play.vcproj
31989         * gst-libs/gst/propertyprobe/propertyprobe.vcproj
31990         * gst-libs/gst/resample/resample.vcproj
31991         * gst-libs/gst/riff/riff.vcproj
31992         * gst-libs/gst/tuner/tuner.vcproj
31993         * gst-libs/gst/video/video.vcproj
31994         * gst-libs/gst/xoverlay/xoverlay.vcproj
31995           avoid problems with math.h, fix release dependancy
31996           rename GStreamer-0.8.lib to libgstreamer.lib
31997
31998 2004-07-27  Julien MOUTTE  <julien@moutte.net>
31999
32000         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
32001         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate): When
32002         the atom is not available we have to unlock the mutex. Fixes #148023
32003
32004 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
32005
32006         * gst-libs/gst/media-info/media-info.h:
32007           issue for a vararg macro with MSVC
32008
32009 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
32010
32011         * gst/effectv/effectv.vcproj
32012         * gst-libs/gst/idct/idct.vcproj:
32013         * gst-libs/gst/media-info/media-info.vcproj:
32014         * gst-libs/gst/navigation/navigation.vcproj:
32015         * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
32016         * gst-libs/gst/video/video.vcproj:
32017         * gst-libs/gst/xoverlay/xoverlay.vcproj:
32018           fixes for build problems
32019
32020 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
32021
32022         * gst-libs/gst/audio/audio.def:
32023         * gst-libs/gst/audio/riff.def:
32024           add some definitions needed by plugins
32025
32026 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
32027
32028         * gst/asfdemux/gstasfmux.c
32029           Fix some 64 bits constants to be glib friendly
32030
32031 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
32032
32033         * gst/ac3parse/gstac3parse.c
32034         * gst/audioscale/gstaudioscale.c
32035         * gst/auparse/gstauparse.c
32036         * gst/colorspace/gstcolorspace.c
32037         * gst/colorspace/yuv2rgb.h
32038           local include fixes
32039
32040 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
32041
32042         * win32/gst.sln
32043           add more plugins to the build
32044
32045 2004-07-26  Julien MOUTTE  <julien@moutte.net>
32046
32047         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
32048         (gst_ximagesink_ximage_new): Some more fixes to image size calculation.
32049
32050 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
32051
32052         * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
32053         (gst_level_set_property), (gst_level_get_property),
32054         (gst_level_base_init), (gst_level_class_init):
32055           add debugging categories.  cleanups.
32056
32057 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
32058
32059         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
32060         (gst_videoscale_planar411), (gst_videoscale_planar400),
32061         (gst_videoscale_packed422), (gst_videoscale_packed422rev),
32062         (gst_videoscale_scale_nearest_str1),
32063         (gst_videoscale_scale_nearest_str2),
32064         (gst_videoscale_scale_nearest_str4),
32065         (gst_videoscale_scale_nearest_16bit),
32066         (gst_videoscale_scale_nearest_24bit):
32067           fixed stride issues
32068           tested with 320x240 -> 321, 322, 324 x240
32069           tested with YV12, I420, YUY2, UYVY
32070           fixed packed422rev (don't think it could have worked before)
32071           by testing with UYVY
32072
32073 2004-07-26  Benjamin Otte  <otte@gnome.org>
32074
32075         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_init),
32076         (gst_lame_chain), (gst_lame_setup), (gst_lame_change_state),
32077         (plugin_init):
32078           add debugging category, add error checks like checking return values
32079           of setup calls, make sure it still works after
32080           PLAYING=>NULL=>PLAYING, fix encoding of mono streams
32081
32082 2004-07-26  Wim Taymans  <wim@fluendo.com>
32083
32084         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
32085         (gst_mpeg_demux_get_audio_stream),
32086         (gst_mpeg_demux_process_private):
32087         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_send_data):
32088         Check for error codes from the negotiation functions. Make sure
32089         we really set the pad caps when a new pad is created.
32090
32091 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
32092
32093         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
32094         (gst_ffmpeg_caps_to_pix_fmt):
32095         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
32096         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
32097         (gst_ffmpegcolorspace_pad_link):
32098           don't make function do two things at the same time without reason.
32099
32100 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
32101
32102         * gst/ac3parse/ac3parse.vcproj
32103         * gst/adder/adder.vcproj
32104         * gst/alpha/alpha.vcproj
32105         * gst/alpha/alphacolor.vcproj
32106         * gst/asfdemux/asf.vcproj
32107         * gst/audioconvert/audioconvert.vcproj
32108         * gst/audiorate/audiorate.vcproj
32109         * gst/audioscale/audioscale.vcproj
32110         * gst/auparse/auparse.vcproj
32111         * gst/avi/avi.vcproj
32112         * gst/cdxaparse/cdxaparse.vcproj
32113         * gst/chart/chart.vcproj
32114         * gst/colorspace/colorspace.vcproj
32115         * gst/cutter/cutter.vcproj
32116         * gst/debug/debug.vcproj
32117         * gst/debug/efence.vcproj
32118         * gst/debug/navigationtest.vcproj
32119         * gst/deinterlace/deinterlace.vcproj
32120         * gst/effectv/effectv.vcproj
32121         * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
32122         * gst/filter/filter.vcproj
32123         * gst/flx/flxdec.vcproj
32124         * gst/goom/goom.vcproj
32125         * gst/interleave/interleave.vcproj
32126         * gst/law/alaw.vcproj
32127         * gst/law/mulaw.vcproj
32128         * gst/matroska/matroska.vcproj
32129         * gst/median/median.vcproj
32130         * gst/mixmatrix/mixmatrix.vcproj
32131         * gst/mpeg1sys/mpeg1systemencode.vcproj
32132         * gst/mpeg1videoparse/mp1videoparse.vcproj
32133         * gst/mpeg2sub/mpeg2subt.vcproj
32134         * gst/mpegaudio/mpegaudio.vcproj
32135         * gst/mpegaudioparse/mpegaudioparse.vcproj
32136         * gst/mpegstream/mpegstream.vcproj
32137         * gst/multifilesink/multifilesink.vcproj
32138         * gst/multipart/multipart.vcproj
32139         * gst/oneton/oneton.vcproj
32140         * gst/overlay/overlay.vcproj
32141         * gst/passthrough/passthrough.vcproj
32142         * gst/qtdemux/qtdemux.vcproj
32143         * gst/realmedia/rmdemux.vcproj
32144         * gst/rtjpeg/rtjpeg.vcproj
32145         * gst/rtp/rtp.vcproj
32146         * gst/silence/silence.vcproj
32147         * gst/sine/sinesrc.vcproj
32148         * gst/smooth/smooth.vcproj
32149         * gst/smpte/smpte.vcproj
32150         * gst/spectrum/spectrum.vcproj
32151         * gst/speed/speed.vcproj
32152         * gst/stereo/stereo.vcproj
32153         * gst/switch/switch.vcproj
32154         * gst/tags/tagedit.vcproj
32155         * gst/tcp/tcp.vcproj
32156         * gst/typefind/typefindfunctions.vcproj
32157         * gst/udp/udp.vcproj
32158         * gst/videobox/videobox.vcproj
32159         * gst/videocrop/videocrop.vcproj
32160         * gst/videodrop/videodrop.vcproj
32161         * gst/videofilter/gamma.vcproj
32162         * gst/videofilter/videobalance.vcproj
32163         * gst/videofilter/videofilter.vcproj
32164         * gst/videofilter/videoflip.vcproj
32165         * gst/videoflip/videoflip.vcproj
32166         * gst/videomixer/videomixer.vcproj
32167         * gst/videorate/videorate.vcproj
32168         * gst/videoscale/videoscale.vcproj
32169         * gst/videotestsrc/videotestsrc.vcproj
32170         * gst/virtualdub/virtualdub.vcproj
32171         * gst/volenv/volenv.vcproj
32172         * gst/volume/volume.vcproj
32173         * gst/wavenc/wavenc.vcproj
32174         * gst/wavparse/wavparse.vcproj
32175         * gst/y4m/y4menc.vcproj
32176           more plugins supported under windows
32177
32178 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
32179
32180         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
32181         (gst_ximagesink_ximage_put), (gst_ximagesink_renegotiate_size),
32182         (gst_ximagesink_chain), (gst_ximagesink_buffer_alloc):
32183         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
32184         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc):
32185           Add debugging statements.  Use the sizes as returned by the
32186           *CreateImage calls.
32187
32188 2004-07-26  Johan Dahlin  <johan@gnome.org>
32189
32190         * gst/tcp/gsttcpclientsrc.c (gst_tcpclientsrc_get): Make sure that
32191         the pad is negotiated.
32192
32193         * gst/ffmpegcolorspace/gstffmpegcolorspace.c (gst_ffmpegcolorspace_chain): Ditto
32194
32195 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
32196
32197         * gst-libs/gst/colorbalance/colorbalance.vcproj:
32198         * gst-libs/gst/idct/idct.vcproj:
32199         * gst-libs/gst/media-info/media-info.vcproj:
32200         * gst-libs/gst/mixer/mixer.vcproj:
32201         * gst-libs/gst/navigation/navigation.vcproj:
32202         * gst-libs/gst/play/play.vcproj:
32203         * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
32204         * gst-libs/gst/resample/resample.vcproj:
32205         * gst-libs/gst/tuner/tuner.vcproj:
32206         * gst-libs/gst/video/video.vcproj:
32207         * gst-libs/gst/xoverlay/xoverlay.vcproj:
32208           more plugins supported under windows
32209
32210 2004-07-25 Iain <iain@prettypeople.org>
32211
32212         * gst/wavparse/gstwavparse.c (gst_wavparse_fmt): Set the caps on the
32213         pad now rather than when the pad is created because state changes wipe
32214         explicit caps (fixes #148043).
32215
32216 2004-07-25  Sebastien Cote  <sc5@hermes.usherb.ca>
32217
32218         reviewed by Benjamin Otte  <otte@gnome.org>
32219
32220         * ext/mad/gstmad.c:
32221           fix mad plugin crashing on Sun (fixes #148289)
32222
32223 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
32224
32225         * gst/avi/avi.def:
32226         * gst/avi/avi.vcproj:
32227         * gst/matroska/matroska.def:
32228         * gst/matroska/matroska.vcproj:
32229           remove unused .def files
32230
32231 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
32232
32233         * gst-libs/gst/audio/gstaudiofilter.c:
32234           Clean the local include
32235
32236 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
32237
32238         * win32/gst.sln:
32239         * gst-libs/gst/audio/audio.def:
32240         * gst-libs/gst/audio/audio.vcproj:
32241         * gst-libs/gst/audio/audiofilter.vcproj:
32242         * gst-libs/gst/audio/riff.def:
32243         * gst-libs/gst/audio/riff.vcproj:
32244         * gst-libs/gst/gst-libs.def:
32245         * gst-libs/gst/gst-libs.vcproj:
32246         * gst/avi/avi.vcproj:
32247         * gst/avi/avi.vcproj:
32248           Copy the files where needed after building, cleaner projects
32249
32250 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
32251
32252         * gst/matroska/ebml-write.c:
32253           Fix some 64 bits constants to be glib friendly
32254
32255 2004-07-24  Steve Lhomme  <steve.lhomme@free.fr>
32256
32257         * win32/gst.sln:
32258         * gst-libs/gst/gst-libs.def:
32259         * gst-libs/gst/gst-libs.vcproj:
32260         * gst/matroska/matroska.def:
32261         * gst/matroska/matroska.vcproj:
32262           Add the preliminary canvas to build plugins on Win32
32263
32264 2004-07-23  Benjamin Otte  <otte@gnome.org>
32265
32266         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
32267           don't enfore negotiation from source side, it breaks
32268           sinesrc ! audioconvert ! osssink
32269
32270 2004-07-22  David Schleef  <ds@schleef.org>
32271
32272         * gst/typefind/gsttypefindfunctions.c: (plugin_init): Add typefind
32273         for ELF files, since they can easily be recognized as audio/mpeg.
32274         (bug #147441)
32275
32276 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
32277
32278         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
32279         (gst_videoscale_planar411), (gst_videoscale_scale_nearest_32bit),
32280         (gst_videoscale_scale_nearest_24bit),
32281         (gst_videoscale_scale_nearest_16bit):
32282           fix 16bit and 24bit for stride (24bit might need testing)
32283           don't pretend we do more than one algorithm
32284
32285 2004-07-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
32286
32287         * configure.ac:
32288         * gst/Makefile.am:
32289         * gst/multifilesink/Makefile.am:
32290         * gst/multifilesink/gstmultifilesink.c:
32291         (gst_multifilesink_get_formats),
32292         (gst_multifilesink_get_query_types), (_do_init),
32293         (gst_multifilesink_base_init), (gst_multifilesink_class_init),
32294         (gst_multifilesink_init), (gst_multifilesink_dispose),
32295         (gst_multifilesink_set_location), (gst_multifilesink_set_property),
32296         (gst_multifilesink_get_property), (gst_multifilesink_open_file),
32297         (gst_multifilesink_close_file), (gst_multifilesink_next_file),
32298         (gst_multifilesink_pad_query), (gst_multifilesink_handle_event),
32299         (gst_multifilesink_chain), (gst_multifilesink_change_state),
32300         (gst_multifilesink_uri_get_type),
32301         (gst_multifilesink_uri_get_protocols),
32302         (gst_multifilesink_uri_get_uri), (gst_multifilesink_uri_set_uri),
32303         (gst_multifilesink_uri_handler_init), (plugin_init):
32304         * gst/multifilesink/gstmultifilesink.h:
32305         * testsuite/Makefile.am:
32306         * testsuite/multifilesink/Makefile.am:
32307         * testsuite/multifilesink/fakesrc_test.c: (gst_newmedia_base_init),
32308         (gst_newmedia_class_init), (gst_newmedia_init),
32309         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
32310         (newfile_signal), (test_signal), (main):
32311         multifilesink plugin for creating new files every time a new media
32312         discontinuity event occurs
32313
32314 2004-07-22  Wim Taymans  <wim@fluendo.com>
32315
32316         * gst/alpha/Makefile.am:
32317         * gst/alpha/gstalphacolor.c: (gst_alpha_color_get_type),
32318         (gst_alpha_color_base_init), (gst_alpha_color_class_init),
32319         (gst_alpha_color_init), (gst_alpha_color_set_property),
32320         (gst_alpha_color_get_property), (gst_alpha_color_sink_link),
32321         (transform), (gst_alpha_color_chain),
32322         (gst_alpha_color_change_state), (plugin_init):
32323         Stupid plugin to to RGBA to AYUV conversion because none of
32324         the colorspace plugins can handle that yet.
32325
32326 2004-07-22  Wim Taymans  <wim@fluendo.com>
32327
32328         * examples/seeking/seek.c: (update_scale), (main):
32329         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
32330         (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
32331         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
32332         (gst_decode_bin_init), (gst_decode_bin_dispose),
32333         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
32334         (no_more_pads), (close_link), (type_found),
32335         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
32336         (plugin_init):
32337         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
32338         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
32339         (gst_play_base_bin_dispose), (queue_overrun),
32340         (gen_preroll_element), (remove_prerolls), (unknown_type),
32341         (no_more_pads), (new_stream), (setup_source),
32342         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
32343         (play_base_eos), (gst_play_base_bin_change_state),
32344         (gst_play_base_bin_add_element),
32345         (gst_play_base_bin_remove_element),
32346         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
32347         (gst_play_base_bin_unlink_stream),
32348         (gst_play_base_bin_get_streaminfo):
32349         * gst/playback/gstplaybin.c: (gen_video_element),
32350         (gen_audio_element):
32351         * gst/playback/gststreaminfo.h:
32352         More playback updates, attempt to fix things after the state change
32353         breakage.
32354
32355 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
32356
32357         * gst/videoscale/videoscale.c: (gst_videoscale_planar411),
32358         (gst_videoscale_scale_nearest_16bit):
32359           comment algorithm
32360
32361 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
32362
32363         * gst/videotestsrc/gstvideotestsrc.c:
32364         (gst_videotestsrc_class_init), (gst_videotestsrc_src_link),
32365         (gst_videotestsrc_init), (gst_videotestsrc_get),
32366         (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
32367         (gst_videotestsrc_get_property):
32368         * gst/videotestsrc/gstvideotestsrc.h:
32369         * gst/videotestsrc/videotestsrc.c:
32370         * gst/videotestsrc/videotestsrc.h:
32371           cleanup and commenting
32372
32373 2004-07-21  Wim Taymans  <wim@fluendo.com>
32374
32375         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
32376         (gst_ogg_demux_get_formats), (gst_ogg_demux_src_query),
32377         (gst_ogg_demux_src_event), (gst_ogg_demux_src_convert),
32378         (gst_ogg_demux_handle_event), (gst_ogg_demux_seek_before),
32379         (_find_chain_get_unknown_part), (_find_streams_check),
32380         (gst_ogg_demux_push), (gst_ogg_pad_push):
32381         * ext/theora/theoradec.c: (theora_get_formats),
32382         (theora_dec_src_convert), (theora_dec_sink_convert),
32383         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
32384         (theora_dec_chain):
32385         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
32386         (vorbis_dec_convert), (vorbis_dec_src_query),
32387         (vorbis_dec_src_event), (vorbis_dec_event):
32388         More seeking fixes, oggdemux now supports seeking to time and
32389         uses the downstream element to convert granulepos to time.
32390         Seeking in theora-only ogg files now works.
32391
32392 2004-07-21  Wim Taymans  <wim@fluendo.com>
32393
32394         * ext/theora/theoradec.c: (gst_theora_dec_init),
32395         (theora_get_formats), (theora_get_event_masks),
32396         (theora_get_query_types), (theora_dec_src_convert),
32397         (theora_dec_sink_convert), (theora_dec_src_query),
32398         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
32399         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
32400         (vorbis_get_event_masks), (vorbis_get_query_types),
32401         (gst_vorbis_dec_init), (vorbis_dec_convert),
32402         (vorbis_dec_src_query), (vorbis_dec_src_event), (vorbis_dec_event):
32403         Added query/convert/formats functions to vorbis and theora decoders
32404         so that the outside world can use them too. Fixed seeking on an
32405         ogg/theora/vorbis file by disabling the seeking seeking on the
32406         theora srcpad.
32407
32408 2004-07-21  Julien MOUTTE  <julien@moutte.net>
32409
32410         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
32411         (gst_ximagesink_renegotiate_size), (gst_ximagesink_sink_link),
32412         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id): Optimize
32413         images creation for both elements. We don't create the image on caps
32414         nego or renego, we just destroy the internal one if present if it does
32415         not match the needs. The chain function takes care of creating a new
32416         image when needed.
32417         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
32418         (gst_xvimagesink_xwindow_decorate), (gst_xvimagesink_sink_link),
32419         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
32420         (gst_xvimagesink_set_xwindow_id): Additionally xvimage now contains
32421         the image format information. The buffer pool checks for the context
32422         image format and discard images with different formats.
32423         * sys/xvimage/xvimagesink.h: Adding im_format in the xvimage structure.
32424
32425 2004-07-21  Thomas Vander Stichele  <thomas at apestaart dot org>
32426
32427         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
32428         (gst_ffmpegcolorspace_chain):
32429           no point in doing any chaining if the pad we want to push from
32430           isn't usable.
32431
32432 2004-07-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
32433
32434         * gst-libs/gst/riff/riff-media.c:
32435         (gst_riff_create_audio_caps_with_data):
32436           Fix double end-to-native symbol conversion (#148021).
32437
32438 2004-07-20  David Schleef  <ds@schleef.org>
32439
32440         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
32441         Don't use an Atom that doesn't exist.
32442
32443 2004-07-20  Wim Taymans  <wim@fluendo.com>
32444
32445         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
32446         (gst_multifdsink_add), (gst_multifdsink_get_stats),
32447         (gst_multifdsink_client_remove),
32448         (gst_multifdsink_handle_client_write),
32449         (gst_multifdsink_queue_buffer):
32450         * gst/tcp/gstmultifdsink.h:
32451         More multifdsink stats. Avoid deadlock by releasing locks
32452         before sending out a signal.
32453
32454 2004-07-20  Thomas Vander Stichele  <thomas at apestaart dot org>
32455
32456         * po/LINGUAS:
32457         * po/hu.po:
32458           added Hungarian translation (Laszlo Dvornik)
32459
32460 2004-07-20  Wim Taymans  <wim@fluendo.com>
32461
32462         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
32463         (gst_multifdsink_add), (gst_multifdsink_client_remove),
32464         (gst_multifdsink_handle_client_write),
32465         (gst_multifdsink_queue_buffer):
32466         * gst/tcp/gsttcp-marshal.list:
32467         Fixed the stupid marshal definition.
32468
32469 2004-07-20  Wim Taymans  <wim@fluendo.com>
32470
32471         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
32472         (gst_multifdsink_init), (gst_multifdsink_add),
32473         (gst_multifdsink_client_remove),
32474         (gst_multifdsink_handle_client_write),
32475         (gst_multifdsink_queue_buffer), (gst_multifdsink_chain),
32476         (gst_multifdsink_set_property), (gst_multifdsink_get_property),
32477         (gst_multifdsink_init_send):
32478         * gst/tcp/gstmultifdsink.h:
32479         Added more stats, added timeout for a client, fixed some typos
32480         and added some comments.
32481
32482 2004-07-20  Wim Taymans  <wim@fluendo.com>
32483
32484         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
32485         (gst_multifdsink_add), (gst_multifdsink_get_stats),
32486         (gst_multifdsink_client_remove),
32487         (gst_multifdsink_handle_client_write):
32488         * gst/tcp/gstmultifdsink.h:
32489         * gst/tcp/gsttcp-marshal.list:
32490         Added get_stats method that returns a GValueArray of
32491         stats values.
32492
32493 2004-07-19  Benjamin Otte  <otte@gnome.org>
32494
32495         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
32496           make sure longname, description and author are valid UTF-8
32497
32498 2004-07-19  Thomas Vander Stichele  <thomas at apestaart dot org>
32499
32500         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state),
32501         (gst_ximagesink_set_property):
32502         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state),
32503         (gst_xvimagesink_set_property):
32504           make sure SYNCHRONOUS is respected after getting the X context
32505
32506 2004-07-18  Thomas Vander Stichele  <thomas at apestaart dot org>
32507
32508         * gst/matroska/matroska-demux.c:
32509         (gst_matroska_demux_handle_src_event),
32510         (gst_matroska_demux_parse_blockgroup):
32511         * gst/matroska/matroska-ids.h:
32512           add BlockReference tag and ignore it to clear out log.
32513           ignore NAVIGATION events to clear out log.
32514
32515 2004-07-18  Thomas Vander Stichele  <thomas at apestaart dot org>
32516
32517         * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
32518         (gst_matroska_demux_add_stream):
32519         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init):
32520           add debug categories
32521
32522 2004-07-16  Wim Taymans  <wim@fluendo.com>
32523
32524         * ext/libpng/Makefile.am:
32525         * ext/libpng/gstpng.c: (plugin_init):
32526         * ext/libpng/gstpngdec.c: (user_error_fn), (user_warning_fn),
32527         (gst_pngdec_get_type), (gst_pngdec_base_init),
32528         (gst_pngdec_class_init), (gst_pngdec_sinklink), (gst_pngdec_init),
32529         (gst_pngdec_src_getcaps), (user_read_data), (gst_pngdec_chain):
32530         * ext/libpng/gstpngdec.h:
32531         Added png decoder.
32532
32533 2004-07-16  Julien MOUTTE  <julien@moutte.net>
32534
32535         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
32536         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
32537         (gst_ximagesink_ximage_destroy), (gst_ximagesink_sink_link),
32538         (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
32539         (gst_ximagesink_buffer_alloc):
32540         * sys/ximage/ximagesink.h:
32541         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
32542         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
32543         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
32544         (gst_xvimagesink_buffer_alloc):
32545         * sys/xvimage/xvimagesink.h: Getting the 2 video sinks synchronized
32546         again. Using internal data pointer of the x(v)image to store image's
32547         data to be coherent with the buffer alloc mechanism. Investigated the
32548         image destruction code to be sure that everything gets freed correctly.
32549
32550 2004-07-16  Wim Taymans  <wim@fluendo.com>
32551
32552         * gst-libs/gst/riff/riff-read.c:
32553         (gst_riff_read_strf_vids_with_data),
32554         (gst_riff_read_strf_auds_with_data):
32555         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
32556         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
32557         Make sure we don't create 0 sized subbuffers in riff-read.
32558         Signal the no more pads signal after reading the avi header.
32559
32560 2004-07-16  Wim Taymans  <wim@fluendo.com>
32561
32562         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
32563         (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
32564         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
32565         (gst_decode_bin_init), (gst_decode_bin_dispose),
32566         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
32567         (no_more_pads), (close_link), (type_found),
32568         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
32569         (gst_decode_bin_change_state), (plugin_init):
32570         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
32571         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
32572         (gst_play_base_bin_dispose), (queue_overrun),
32573         (gen_preroll_element), (remove_prerolls), (unknown_type),
32574         (no_more_pads), (new_stream), (setup_source),
32575         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
32576         (play_base_eos), (gst_play_base_bin_change_state),
32577         (gst_play_base_bin_add_element),
32578         (gst_play_base_bin_remove_element),
32579         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
32580         (gst_play_base_bin_unlink_stream),
32581         (gst_play_base_bin_get_streaminfo):
32582         * gst/playback/gstplaybasebin.h:
32583         Better error recovery. Added configurable preroll queue size. Faster
32584         detection of no-more-pads.
32585
32586 2004-07-16  Wim Taymans  <wim@fluendo.com>
32587
32588         * gst-libs/gst/video/video.h:
32589         Added 32 bits RGBA. Not sure if we should use another mime-type
32590         for alpha rgb. Currently the presence of the alpha_mask property
32591         signals an alpha channel.
32592
32593 2004-07-16  Wim Taymans  <wim@fluendo.com>
32594
32595         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
32596         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
32597         FPS seems to be 0.0 to MAX everywhere else.
32598
32599 2004-07-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
32600
32601         * gst-libs/gst/riff/riff-media.c:
32602         (gst_riff_create_video_caps_with_data):
32603           mp42/mp43 (no caps) exist too.
32604         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
32605           Set pixel_width/height; we've got them in-caps.
32606         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
32607         * gst/wavparse/gstwavparse.c: (plugin_init):
32608           Both are valid primary.
32609         * sys/oss/gstossmixer.c:
32610           Remove i18n hack and enable translations.
32611
32612 2004-07-15  Benjamin Otte  <otte@gnome.org>
32613
32614         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
32615         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
32616           fix for non-shm xv. Original patch by Tim Ringenbach (fixes #147248)
32617
32618 2004-07-15  Benjamin Otte  <otte@gnome.org>
32619
32620         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
32621         (gst_alsa_sw_params_dump), (gst_alsa_hw_params_dump),
32622         (gst_alsa_close_audio):
32623           disable some of the debugging code for now. Writing debugging to a
32624           buffer is broken in current alsalib releases.
32625
32626 2004-07-12  Benjamin Otte  <otte@gnome.org>
32627
32628         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer):
32629           use bufferpools
32630
32631 2004-07-14  Thomas Vander Stichele  <thomas at apestaart dot org>
32632
32633         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
32634         (theora_dec_src_query), (theora_dec_event):
32635         * ext/theora/theoraenc.c: (gst_theora_enc_class_init):
32636           add debugging categories.  Remove \n's.
32637
32638 2004-07-13  Johan Dahlin  <johan@gnome.org>
32639
32640         * gst/playback/gstplaybin.c (gst_play_bin_set_property)
32641         (gst_play_bin_get_property): Impl.
32642
32643 2004-07-13  Wim Taymans  <wim@fluendo.com>
32644
32645         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_seek_before):
32646         When trying to find the stream length, seek back N pages
32647         instead of just one, where N is the number of streams in
32648         the current chain.
32649
32650 2004-07-13  Wim Taymans  <wim@fluendo.com>
32651
32652         * gst-libs/gst/riff/riff-media.c:
32653         (gst_riff_create_audio_caps_with_data),
32654         (gst_riff_create_audio_caps),
32655         (gst_riff_create_audio_template_caps):
32656         * gst-libs/gst/riff/riff-media.h:
32657         * gst-libs/gst/riff/riff-read.c:
32658         (gst_riff_read_strf_vids_with_data),
32659         (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_auds):
32660         * gst-libs/gst/riff/riff-read.h:
32661         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
32662         (gst_avi_demux_add_stream):
32663         Set codec_data on caps for avidemuxer.
32664
32665 2004-07-12  David Schleef  <ds@schleef.org>
32666
32667         * configure.ac: Fix test for Objective C
32668
32669 2004-07-12  Jan Schmidt  <thaytan@mad.scientist.com>
32670         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_get_capslist),
32671         (gst_gdk_pixbuf_chain):
32672           Add svg and pcx to template caps, and ensure that getcaps returns a
32673           subset of the template caps.
32674           Copy each row manually for output, as gdkpixbuf may pad the
32675           rowstride to a 32-bit word boundary.
32676
32677 2004-07-12  Wim Taymans  <wim@fluendo.com>
32678
32679         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
32680         (gst_riff_create_video_template_caps):
32681         Fix the template caps to include some more media types.
32682
32683 2004-07-12  Wim Taymans  <wim@fluendo.com>
32684
32685         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
32686         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
32687         (compare_ranks), (print_feature), (gst_decode_bin_init),
32688         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
32689         (try_to_link_1), (new_pad), (close_link), (type_found),
32690         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
32691         (gst_decode_bin_change_state), (plugin_init):
32692         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
32693         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
32694         (gst_play_base_bin_dispose), (queue_overrun),
32695         (gen_preroll_element), (remove_prerolls), (no_more_pads),
32696         (new_stream), (setup_source), (gst_play_base_bin_set_property),
32697         (gst_play_base_bin_get_property), (play_base_eos),
32698         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
32699         (gst_play_base_bin_remove_element),
32700         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
32701         (gst_play_base_bin_unlink_stream),
32702         (gst_play_base_bin_get_streaminfo):
32703         * gst/playback/gstplaybasebin.h:
32704         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
32705         (gst_play_bin_class_init), (gst_play_bin_init),
32706         (gst_play_bin_dispose), (gst_play_bin_set_property),
32707         (gst_play_bin_get_property), (gen_video_element),
32708         (gen_audio_element), (remove_sinks), (setup_sinks),
32709         (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
32710         (gst_play_bin_send_event), (gst_play_bin_get_formats),
32711         (gst_play_bin_convert), (gst_play_bin_get_query_types),
32712         (gst_play_bin_query), (plugin_init):
32713         * gst/playback/test4.c: (main):
32714         More fixes on reusing of the element.
32715
32716 2004-07-11  Benjamin Otte  <otte@gnome.org>
32717
32718         * ext/mad/gstmad.c: (normal_seek):
32719           allow seeking for other methods than just SET
32720
32721 2004-07-11  Andy Wingo  <wingo@pobox.com>
32722
32723         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_link): For
32724         float, "any" caps -> buffer_frames=[0,MAX].
32725
32726         * gst/interleave/interleave.c (interleave_getcaps): Seems the core
32727         doesn't intersect our caps with the template any more. Do it
32728         ourselves.
32729         (interleave_buffered_loop): Use g_newa instead of malloc/free.
32730
32731 2004-07-09  Wim Taymans  <wim@fluendo.com>
32732
32733         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
32734         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
32735         (compare_ranks), (print_feature), (gst_decode_bin_init),
32736         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
32737         (try_to_link_1), (new_pad), (close_link), (type_found),
32738         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
32739         (gst_decode_bin_change_state), (plugin_init):
32740         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
32741         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
32742         (gst_play_base_bin_dispose), (queue_overrun),
32743         (gen_preroll_element), (remove_prerolls), (no_more_pads),
32744         (new_stream), (setup_source), (gst_play_base_bin_set_property),
32745         (gst_play_base_bin_get_property), (play_base_eos),
32746         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
32747         (gst_play_base_bin_remove_element),
32748         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
32749         (gst_play_base_bin_unlink_stream),
32750         (gst_play_base_bin_get_streaminfo):
32751         * gst/playback/gstplaybasebin.h:
32752         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
32753         (gst_play_bin_class_init), (gst_play_bin_init),
32754         (gst_play_bin_dispose), (gst_play_bin_set_property),
32755         (gst_play_bin_get_property), (gen_video_element),
32756         (gen_audio_element), (remove_sinks), (setup_sinks),
32757         (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
32758         (gst_play_bin_send_event), (gst_play_bin_get_formats),
32759         (gst_play_bin_convert), (gst_play_bin_get_query_types),
32760         (gst_play_bin_query), (plugin_init):
32761         * gst/playback/test4.c: (main):
32762         Work on object reuse and seeking.
32763
32764 2004-07-09  Wim Taymans  <wim@fluendo.com>
32765
32766         * examples/seeking/seek.c: (iterate):
32767         Don't consume all CPU in the idle loop.
32768
32769 2004-07-09  Wim Taymans  <wim@fluendo.com>
32770
32771         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_new_output_pad),
32772         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_process_private):
32773         Add pad to element *after* setting the pad functions so that
32774         the scheduler can use the correct ones.
32775
32776 2004-07-09  Wim Taymans  <wim@fluendo.com>
32777
32778         * ext/theora/theoradec.c: (theora_dec_from_granulepos),
32779         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_chain):
32780         Sync to keyframe after seek
32781
32782 2004-07-09  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
32783
32784         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
32785         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
32786         (gst_alsa_sink_loop), (gst_alsa_sink_change_state):
32787         * ext/alsa/gstalsasrc.c: (gst_alsa_src_change_state):
32788         * ext/libvisual/visual.c: (gst_visual_change_state):
32789         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_change_state):
32790         * ext/theora/theoradec.c: (theora_dec_change_state):
32791         * ext/theora/theoraenc.c: (theora_enc_change_state):
32792         * ext/vorbis/vorbisdec.c: (vorbis_dec_change_state):
32793         * gst-libs/gst/navigation/navigation.c:
32794         * gst/adder/gstadder.c: (gst_adder_change_state):
32795         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
32796         (gst_audio_convert_get_buffer):
32797         * gst/multipart/multipartdemux.c:
32798         (gst_multipart_demux_change_state):
32799         * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
32800         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
32801         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
32802         * gst/videoscale/gstvideoscale.c:
32803         (gst_videoscale_handle_src_event):
32804         * gst/volume/gstvolume.c: (volume_chain_int16):
32805           don't assert in state change, this should be done by the base
32806           GstElement class.
32807           various debugging fixes.
32808
32809 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
32810
32811         * configure.ac:
32812         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
32813         (gst_play_dispose), (gst_play_set_location),
32814         (gst_play_set_data_src), (gst_play_set_video_sink),
32815         (gst_play_set_audio_sink), (gst_play_set_visualization),
32816         (gst_play_connect_visualization), (gst_play_get_sink_element),
32817         (gst_play_get_all_by_interface):
32818         * gst-libs/gst/play/play.h:
32819           add new method to get elements implementing an interface.
32820           add various error logging
32821
32822 2004-07-08  Wim Taymans  <wim@fluendo.com>
32823
32824         * examples/seeking/seek.c: (make_dv_pipeline), (make_avi_pipeline),
32825         (make_mpeg_pipeline), (make_mpegnt_pipeline),
32826         (make_playerbin_pipeline), (query_durations_elems),
32827         (query_durations_pads), (query_positions_elems),
32828         (query_positions_pads), (update_scale), (iterate), (stop_seek),
32829         (main):
32830         Added playbin seeking example.
32831
32832 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
32833
32834         * gst-libs/gst/play/play.c: (gst_play_set_location),
32835         (gst_play_set_data_src), (gst_play_set_video_sink),
32836         (gst_play_set_audio_sink), (gst_play_set_visualization),
32837         (gst_play_connect_visualization), (gst_play_get_framerate):
32838           use a macro to look up elements from hash table
32839
32840 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
32841
32842         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
32843         (gst_play_get_length_callback), (gst_play_set_location),
32844         (gst_play_seek_to_time), (gst_play_set_data_src),
32845         (gst_play_set_video_sink), (gst_play_set_audio_sink),
32846         (gst_play_set_visualization), (gst_play_connect_visualization),
32847         (gst_play_get_sink_element):
32848         - add debugging info
32849         - fix looking up sink elements by iterating over complete caps
32850         - put everything except for source and autoplugger in a complete bin
32851
32852 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
32853
32854         * ext/alsa/gstalsa.c: (gst_alsa_drain_audio):
32855         * ext/alsa/gstalsasink.c: (gst_alsa_sink_flush_one_pad),
32856         (gst_alsa_sink_check_event), (gst_alsa_sink_mmap),
32857         (gst_alsa_sink_write), (gst_alsa_sink_loop):
32858         * ext/alsa/gstalsasink.h:
32859         - add debugging info
32860         - clean up schizophrenia of data/buffer/event
32861         - fix double event unref error
32862
32863 2004-07-08  Wim Taymans  <wim@fluendo.com>
32864
32865         * gst/playback/Makefile.am:
32866         Add headers to noinst
32867
32868 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
32869
32870         * tools/gst-launch-ext-m.m:
32871         * tools/gst-launch-ext.1.in:
32872           convert to the third millenium
32873
32874 2004-07-07  David Schleef  <ds@schleef.org>
32875
32876         * sys/dxr3/Makefile.am: noinst_SOURCES should be nodist_SOURCES
32877
32878 2004-07-07  Wim Taymans  <wim@fluendo.com>
32879
32880         * gst/playback/Makefile.am:
32881         * gst/playback/README:
32882         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
32883         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
32884         (compare_ranks), (print_feature), (gst_decode_bin_init),
32885         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
32886         (try_to_link_1), (new_pad), (close_link), (type_found),
32887         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
32888         (plugin_init):
32889         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
32890         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
32891         (gst_play_base_bin_dispose), (rebuild_pipeline), (queue_overrun),
32892         (gen_preroll_element), (no_more_pads), (new_stream),
32893         (setup_source), (gst_play_base_bin_set_property),
32894         (gst_play_base_bin_get_property), (gst_play_base_bin_change_state),
32895         (gst_play_base_bin_add_element),
32896         (gst_play_base_bin_remove_element),
32897         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
32898         (gst_play_base_bin_unlink_stream),
32899         (gst_play_base_bin_get_streaminfo):
32900         * gst/playback/gstplaybasebin.h:
32901         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
32902         (gst_play_bin_class_init), (gst_play_bin_init),
32903         (gst_play_bin_dispose), (gst_play_bin_set_property),
32904         (gst_play_bin_get_property), (gen_video_element),
32905         (gen_audio_element), (setup_sinks), (gst_play_bin_change_state),
32906         (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
32907         (gst_play_bin_get_formats), (gst_play_bin_convert),
32908         (gst_play_bin_get_query_types), (gst_play_bin_query),
32909         (plugin_init):
32910         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
32911         (gst_stream_info_get_type), (gst_stream_info_class_init),
32912         (gst_stream_info_init), (gst_stream_info_new),
32913         (gst_stream_info_dispose), (gst_stream_info_set_property),
32914         (gst_stream_info_get_property):
32915         * gst/playback/gststreaminfo.h:
32916         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
32917         (main):
32918         * gst/playback/test2.c: (main):
32919         * gst/playback/test3.c: (update_scale), (main):
32920         More playbin fixes. Added README. Do better element filtering.
32921         Added base class to preroll media. Added test apps.
32922
32923 2004-07-07  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
32924
32925         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_flush_decoder):
32926         * ext/mpeg2dec/gstmpeg2dec.h:
32927           various debugging improvements.  Reset stream to next picture
32928           instead of sequence header, otherwise seeks cannot work.
32929
32930 2004-07-07  Wim Taymans  <wim@fluendo.com>
32931
32932         * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
32933         (gst_video_box_class_init), (gst_video_box_set_property),
32934         (gst_video_box_i420), (gst_video_box_ayuv), (gst_video_box_chain):
32935         Use pad_alloc where possible.
32936
32937 2004-07-07  Wim Taymans  <wim@fluendo.com>
32938
32939         * sys/oss/gstosselement.c: (gst_osselement_reset),
32940         (gst_osselement_parse_caps):
32941         * sys/oss/gstosselement.h:
32942         * sys/oss/gstosssrc.c: (gst_osssrc_get):
32943         Fix offset on osssrc.
32944
32945 2004-07-07  Wim Taymans  <wim@fluendo.com>
32946
32947         * ext/theora/theora.c: (plugin_init):
32948         * ext/theora/theoradec.c: (theora_dec_from_granulepos),
32949         (theora_dec_src_query), (theora_dec_chain):
32950         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
32951         (theora_enc_sink_link), (theora_buffer_from_packet),
32952         (theora_push_packet), (theora_enc_chain):
32953         Fix theora granulepos calculation.
32954         Fix overflow in duration/position calculation.
32955         Bump rank to PRIMARY for theoradec.
32956         Use granulepos of last packet to calculate position.
32957         Set keyframe flag on buffers when needed.
32958
32959 2004-07-06  David Schleef  <ds@schleef.org>
32960
32961         * gst/playback/Makefile.am: 'test' in bin_PROGRAMS?  Are you
32962         serious?  (Fixed, obviously.)
32963
32964 2004-07-06  Thomas Vander Stichele  <thomas at apestaart dot org>
32965
32966         * po/LINGUAS:
32967         * po/cs.po:
32968           added Czech translation (Miloslav Trmac)
32969
32970 2004-07-05  Wim Taymans  <wim@fluendo.com>
32971
32972         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
32973         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
32974         (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
32975         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
32976         (close_link), (type_found), (gst_decode_bin_set_property),
32977         (gst_decode_bin_get_property), (gst_decode_bin_get_event_masks),
32978         (gst_decode_bin_send_event), (gst_decode_bin_get_formats),
32979         (gst_decode_bin_convert), (gst_decode_bin_get_query_types),
32980         (gst_decode_bin_query), (plugin_init):
32981         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
32982         (gst_play_bin_class_init), (gst_play_bin_init),
32983         (gst_play_bin_dispose), (rebuild_pipeline), (get_audio_element),
32984         (get_video_element), (new_pad), (setup_source),
32985         (gst_play_bin_set_property), (gst_play_bin_get_property),
32986         (gst_play_bin_change_state), (gst_play_bin_add_element),
32987         (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
32988         (gst_play_bin_send_event), (gst_play_bin_get_formats),
32989         (gst_play_bin_convert), (gst_play_bin_get_query_types),
32990         (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
32991         * gst/playback/test.c: (main):
32992         More fixes, cleaned up playbin, make it use decodebin. Added
32993         threaded property to playbin.
32994
32995 2004-07-05  Wim Taymans  <wim@fluendo.com>
32996
32997         * configure.ac:
32998         * gst/playback/Makefile.am:
32999         * gst/playback/decodetest.c: (main):
33000         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
33001         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
33002         (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
33003         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
33004         (close_link), (type_found), (gst_decode_bin_set_property),
33005         (gst_decode_bin_get_property), (gst_decode_bin_change_state),
33006         (gst_decode_bin_get_event_masks), (gst_decode_bin_send_event),
33007         (gst_decode_bin_get_formats), (gst_decode_bin_convert),
33008         (gst_decode_bin_get_query_types), (gst_decode_bin_query),
33009         (plugin_init):
33010         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
33011         (gst_play_bin_class_init), (gst_play_bin_init),
33012         (gst_play_bin_dispose), (gen_default_output), (rebuild_pipeline),
33013         (collect_sink_pads), (find_compatibles), (close_pad_link),
33014         (try_to_link_1), (new_pad), (close_link), (type_found),
33015         (setup_source), (gst_play_bin_set_property),
33016         (gst_play_bin_get_property), (gst_play_bin_factory_filter),
33017         (compare_ranks), (gst_play_bin_collect_factories),
33018         (gst_play_bin_change_state), (gst_play_bin_add_element),
33019         (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
33020         (gst_play_bin_send_event), (gst_play_bin_get_formats),
33021         (gst_play_bin_convert), (gst_play_bin_get_query_types),
33022         (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
33023         * gst/playback/test.c: (main):
33024         Added some playback helper elements and some test apps, very alpha
33025         still.
33026
33027 2004-07-04  Benjamin Otte  <otte@gnome.org>
33028
33029         * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
33030           only restart audio when we indeed have an xrun to fix repeated
33031           xruns. Fix suggested by Giuliano Pochini.
33032
33033 2004-07-03  David Schleef  <ds@schleef.org>
33034
33035         * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper): Disable
33036         call to gst_debug_log() if debugging is disabled (bug #145118)
33037
33038 2004-07-03  Benjamin Otte  <otte@gnome.org>
33039
33040         * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
33041           use our own functions for restarting the alsa device.
33042         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
33043           I should apply patches myself - use MIN for the third argument, not
33044           the second, this fixes seeking
33045
33046 2004-07-02  David Schleef  <ds@schleef.org>
33047
33048         * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
33049         (gst_flacdec_write):  Actually, GST_PAD_CAPS() has nothing to
33050         do with the logic.
33051
33052 2004-07-02  David Schleef  <ds@schleef.org>
33053
33054         * ext/flac/gstflacdec.c: (gst_flacdec_write):  Set duration on
33055         output buffers.  Fix logic mistake.  (bug #144866)
33056
33057 2004-07-02  David Schleef  <ds@schleef.org>
33058
33059         * gst-libs/gst/xoverlay/Makefile.am: xoverlay no longer depends
33060         on X.  (bug #144753)
33061
33062 2004-07-02  David Schleef  <ds@schleef.org>
33063
33064         * gst/wavenc/gstwavenc.c: (gst_wavenc_setup),
33065         (gst_wavenc_stop_file): Switch to GST_WRITE_UINT32_LE macros
33066         (bug #144624)
33067         * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
33068         (gst_osselement_rate_probe_check): Add another workaround for
33069         buggy drivers (bug #145336)
33070
33071 2004-07-02  David Schleef  <ds@schleef.org>
33072
33073         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_handle_client_write):
33074         Most systems don't have MSG_NOSIGNAL.
33075
33076 2004-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
33077
33078         * Makefile.am:
33079         * gst-libs/gst/colorbalance/Makefile.am:
33080         * gst-libs/gst/mixer/Makefile.am:
33081         * gst-libs/gst/play/Makefile.am:
33082         * gst-libs/gst/tuner/Makefile.am:
33083           (hopefully) fix both install and dist and make error message useful.
33084           needs testing across automakes.
33085
33086 2004-07-02  Benjamin Otte  <otte@gnome.org>
33087
33088         * ext/ogg/gstogg.c: (plugin_init):
33089           we require bytestream now
33090         * ext/ogg/gstoggdemux.c:
33091           huge diff to implement chain setup in a fast and generic way. This
33092           improves tag reading and startup of huge files (read: Theora videos)
33093           quite a bit. It probably contains bugs, too, so please test.
33094           Seeking is not improved to the fast method.
33095
33096 2004-06-29  Wim Taymans  <wim@fluendo.com>
33097
33098         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
33099         * ext/ogg/gstoggmux.c:
33100         Fix memleak in oggdemux when running unconnected pads.
33101         doc update in mux, start working on keyframe mode.
33102
33103 2004-06-29  Benjamin Otte  <otte@gnome.org>
33104
33105         * sys/oss/gstosssink.c:
33106         * sys/oss/gstosssrc.c:
33107           advertise correct template caps - we indeed do non-native endianness
33108           and 8bit audio has no endianness
33109         * sys/ximage/ximagesink.c: (gst_ximagesink_getcaps):
33110         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps):
33111           avoid (wrong) duplications in getcaps function and return
33112           template caps
33113
33114 2004-06-29  Wim Taymans  <wim@fluendo.com>
33115
33116         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
33117         (gst_multifdsink_class_init), (gst_multifdsink_add),
33118         (gst_multifdsink_remove), (gst_multifdsink_clear),
33119         (gst_multifdsink_client_remove),
33120         (gst_multifdsink_handle_client_read),
33121         (gst_multifdsink_client_queue_data),
33122         (gst_multifdsink_client_queue_caps),
33123         (gst_multifdsink_client_queue_buffer),
33124         (gst_multifdsink_handle_client_write),
33125         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
33126         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
33127         (gst_multifdsink_init_send), (gst_multifdsink_close):
33128         Fix wrong GList iteration that could crash the server when
33129         more then 2 clients disconnect at the same time. Read all the
33130         pending commands in one batch to recover from command storms under
33131         very heavy load.
33132
33133 2004-06-28  Wim Taymans  <wim@fluendo.com>
33134
33135         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
33136         (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
33137         (gst_videomixer_pad_set_property),
33138         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
33139         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
33140         (gst_videomixer_class_init), (gst_videomixer_init),
33141         (gst_videomixer_request_new_pad), (gst_videomixer_blend_ayuv_i420),
33142         (pad_zorder_compare), (gst_videomixer_sort_pads),
33143         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
33144         (gst_videomixer_fill_queues), (gst_videomixer_blend_buffers),
33145         (gst_videomixer_update_queues), (gst_videomixer_loop),
33146         (plugin_init):
33147         Avoid divide by zero, choose masterpad as the pad with the highest
33148         framerate.
33149
33150 2004-06-27  Julien Moutte  <julien@moutte.net>
33151
33152         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
33153         (gst_ximagesink_xwindow_new):
33154         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
33155         (gst_xvimagesink_xwindow_new): I prefer locking the mutex in the
33156         function directly. We might want to call it from somewhere else one day.
33157
33158 2004-06-27  Julien Moutte  <julien@moutte.net>
33159
33160         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
33161         (gst_ximagesink_xwindow_new):
33162         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
33163         (gst_xvimagesink_xwindow_new): Trying to fix the random behaviour of
33164         window decorations.
33165
33166 2004-06-27  Wim Taymans  <wim@fluendo.com>
33167
33168         * ext/dv/gstdvdec.c: (gst_dvdec_class_init), (gst_dvdec_init),
33169         (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
33170         (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state),
33171         (gst_dvdec_set_property), (gst_dvdec_get_property):
33172         * ext/dv/gstdvdec.h:
33173         Implement drop_factor property to lower the framerate with
33174         a factor.
33175
33176 2004-06-27  Thomas Vander Stichele  <thomas at apestaart dot org>
33177
33178         * gst-libs/gst/colorbalance/Makefile.am:
33179         * gst-libs/gst/mixer/Makefile.am:
33180         * gst-libs/gst/play/Makefile.am:
33181         * gst-libs/gst/tuner/Makefile.am:
33182           unbreak Company's fix that didn't install the -enum.h files
33183
33184 2004-06-27  Wim Taymans  <wim@fluendo.com>
33185
33186         * ext/dv/gstdvdec.c: (gst_dvdec_push), (gst_dvdec_loop),
33187         (gst_dvdec_change_state):
33188         * ext/dv/gstdvdec.h:
33189         Fix timestamp, duration and offset of the buffers.
33190
33191 2004-06-27  Wim Taymans  <wim@fluendo.com>
33192
33193         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
33194         (gst_multifdsink_class_init), (gst_multifdsink_add),
33195         (gst_multifdsink_remove), (gst_multifdsink_clear),
33196         (gst_multifdsink_client_remove),
33197         (gst_multifdsink_handle_client_read),
33198         (gst_multifdsink_client_queue_data),
33199         (gst_multifdsink_client_queue_caps),
33200         (gst_multifdsink_client_queue_buffer),
33201         (gst_multifdsink_handle_client_write),
33202         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
33203         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
33204         (gst_multifdsink_init_send), (gst_multifdsink_close):
33205         * gst/tcp/gstmultifdsink.h:
33206         * gst/tcp/gsttcpserversink.c:
33207         (gst_tcpserversink_handle_server_read),
33208         (gst_tcpserversink_handle_select), (gst_tcpserversink_close):
33209         More multifdsink fixes, more recovery policy fixes.
33210         Removed stupid g_print
33211
33212 2004-06-26  Wim Taymans  <wim@fluendo.com>
33213
33214         * gst/tcp/Makefile.am:
33215         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
33216         (gst_multifdsink_get_type), (gst_multifdsink_base_init),
33217         (gst_multifdsink_class_init), (gst_multifdsink_init),
33218         (gst_multifdsink_debug_fdset), (gst_multifdsink_client_remove),
33219         (gst_multifdsink_handle_client_read),
33220         (gst_multifdsink_client_queue_data),
33221         (gst_multifdsink_client_queue_caps),
33222         (gst_multifdsink_client_queue_buffer),
33223         (gst_multifdsink_handle_client_write),
33224         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
33225         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
33226         (gst_multifdsink_chain), (gst_multifdsink_set_property),
33227         (gst_multifdsink_get_property), (gst_multifdsink_init_send),
33228         (gst_multifdsink_close), (gst_multifdsink_change_state):
33229         * gst/tcp/gstmultifdsink.h:
33230         * gst/tcp/gsttcpplugin.c: (plugin_init):
33231         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_get_type),
33232         (gst_tcpserversink_class_init), (gst_tcpserversink_init),
33233         (gst_tcpserversink_handle_server_read),
33234         (gst_tcpserversink_handle_select),
33235         (gst_tcpserversink_set_property), (gst_tcpserversink_get_property),
33236         (gst_tcpserversink_init_send), (gst_tcpserversink_close):
33237         * gst/tcp/gsttcpserversink.h:
33238         Added multifdsink, made tcpserversink a subclass of fdsink, removed
33239         one of the locks, added recovery policy to multifdsink.
33240
33241 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
33242
33243         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
33244           fix decision for when getting frames with same timestamp
33245         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
33246         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
33247         (gst_v4lsrc_get_property):
33248         * sys/v4l/gstv4lsrc.h:
33249           add latency offset property
33250
33251 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
33252
33253         * gst/videorate/gstvideorate.c: (gst_videorate_chain),
33254         (plugin_init):
33255           fix debugging. add category.
33256
33257 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
33258
33259         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
33260           fix wrong offsets
33261
33262 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
33263
33264         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
33265         (gst_alsa_src_get_time), (gst_alsa_src_loop),
33266         (gst_alsa_src_change_state):
33267           return a time that is in sync with the element's processing
33268
33269 2004-06-25  Wim Taymans  <wim@fluendo.com>
33270
33271         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
33272         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
33273         (gst_tcpserversink_client_remove),
33274         (gst_tcpserversink_handle_client_read),
33275         (gst_tcpserversink_client_queue_data),
33276         (gst_tcpserversink_client_queue_caps),
33277         (gst_tcpserversink_client_queue_buffer),
33278         (gst_tcpserversink_handle_client_write),
33279         (gst_tcpserversink_queue_buffer),
33280         (gst_tcpserversink_handle_clients), (gst_tcpserversink_thread),
33281         (gst_tcpserversink_chain), (gst_tcpserversink_set_property),
33282         (gst_tcpserversink_get_property), (gst_tcpserversink_init_send),
33283         (gst_tcpserversink_close):
33284         * gst/tcp/gsttcpserversink.h:
33285         Serversink rewrite. Really do non blocking writes to clients and
33286         maintain an internal queue to handle slower clients while not
33287         disturbing fast clients.
33288
33289 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
33290
33291         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
33292           better debug, don't override OFFSET and OFFSET_END
33293
33294 2004-06-25  Iain <iain@prettypeople.org>
33295
33296         * gst-libs/gst/media-info/media-info-priv.c (gmi_set_mime): Add
33297         name=source for the wavparse pipeline.
33298
33299 2004-06-24  Johan Dahlin  <johan@gnome.org>
33300
33301         * ext/theora/theoraenc.c (theora_enc_chain): Call
33302         gst_pad_try_set_caps instead of gst_pad_set_explicit_caps so the
33303         streamheader caps are set correctly.
33304
33305 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
33306
33307         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
33308         (gst_vorbisenc_setup), (gst_vorbisenc_set_property):
33309           respect minimum bitrate; same could be done for max bitrate
33310
33311 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
33312
33313         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
33314         (gst_vorbisenc_setup):
33315           fix sample rate range
33316
33317 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
33318
33319         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_class_init),
33320         (gst_oggvorbisenc_setup):
33321         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
33322         (gst_vorbisenc_setup):
33323           resolve ambiguities in code and description
33324
33325 2004-06-24  Wim Taymans  <wim@fluendo.com>
33326
33327         * ext/alsa/gstalsa.c: (gst_alsa_start), (gst_alsa_xrun_recovery):
33328         * ext/alsa/gstalsa.h:
33329         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
33330         (gst_alsa_src_update_avail), (gst_alsa_src_loop):
33331         Use alsa trigger_tstamp to get the timestamp of the first
33332         sample in the buffer for more precise sync. Some cleanups.
33333
33334 2004-06-24  Wim Taymans  <wim@fluendo.com>
33335
33336         * gst/audiorate/gstaudiorate.c: (gst_audiorate_link),
33337         (gst_audiorate_init), (gst_audiorate_chain),
33338         (gst_audiorate_set_property), (gst_audiorate_get_property):
33339         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
33340         (gst_videorate_chain):
33341         Added some logging, fixed an overflow bug in videorate.
33342
33343 2004-06-24  Benjamin Otte  <otte@gnome.org>
33344
33345         * ext/kio/Makefile.am:
33346           fix for builddir != srcdir and distcheck
33347
33348 2004-06-24  Benjamin Otte  <otte@gnome.org>
33349
33350         * gst-libs/gst/colorbalance/Makefile.am:
33351         * gst-libs/gst/mixer/Makefile.am:
33352         * gst-libs/gst/play/Makefile.am:
33353         * gst-libs/gst/tuner/Makefile.am:
33354         * gst/tcp/Makefile.am:
33355         * sys/dxr3/Makefile.am:
33356           don't include -enumtypes.[ch] or -marshal.[ch] files in the disted
33357           tarball.
33358           Also add all *.list files that were missing.
33359         * Makefile.am:
33360           add a distcheck hook to ensure the above doesn't happen again.
33361
33362 2004-06-23  David I. Lehn  <dlehn@users.sourceforge.net>
33363
33364         * ext/Makefile.am: s/DTS_DIR=dvdread/DTS_DIR=dts/
33365
33366 2004-06-23  Colin Walters  <walters@redhat.com>
33367
33368         * m4/Makefile.am: Distribute gst-fionread.m4.
33369
33370 2004-06-23  Thomas Vander Stichele  <thomas at apestaart dot org>
33371
33372         * configure.ac: back to dev
33373
33374 2004-06-23  Wim Taymans  <wim@fluendo.com>
33375
33376         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
33377         (gst_alsa_xrun_recovery):
33378         * ext/alsa/gstalsa.h:
33379         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
33380         (gst_alsa_sink_loop), (gst_alsa_sink_get_time):
33381         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
33382         (gst_alsa_src_get_time), (gst_alsa_src_update_avail),
33383         (gst_alsa_src_loop):
33384         Add clock to alsasrc. Take new capture timestamp when
33385         restarting after an overrun. Split up some functions between
33386         alsasrc and alsasink.
33387
33388 === release 0.8.2 ===
33389
33390 2004-06-23  Thomas Vander Stichele  <thomas at apestaart dot org>
33391
33392         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
33393         (gst_alsa_change_state), (gst_alsa_update_avail),
33394         (gst_alsa_xrun_recovery):
33395         * ext/alsa/gstalsa.h:
33396         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
33397           merge back changes from release
33398
33399 2004-06-23  Wim Taymans  <wim@fluendo.com>
33400
33401         * gst/audiorate/gstaudiorate.c: (gst_audiorate_class_init),
33402         (gst_audiorate_init), (gst_audiorate_chain),
33403         (gst_audiorate_set_property), (gst_audiorate_get_property):
33404         Implement sample dropping and notify
33405
33406 2004-06-22  Wim Taymans  <wim@fluendo.com>
33407
33408         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
33409         (theora_enc_sink_link), (theora_buffer_from_packet),
33410         (theora_push_packet), (theora_enc_chain):
33411         Some cleanups, make sure the timestamps are correct.
33412
33413 2004-06-22  Wim Taymans  <wim@fluendo.com>
33414
33415         * ext/alsa/gstalsa.c: (gst_alsa_get_time), (gst_alsa_clock_update),
33416         (gst_alsa_change_state), (gst_alsa_update_avail),
33417         (gst_alsa_xrun_recovery):
33418         * ext/alsa/gstalsa.h:
33419         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
33420         Cleanups, take queued samples into account when reporting
33421         the time.
33422
33423 2004-06-22  Wim Taymans  <wim@fluendo.com>
33424
33425         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
33426         (gst_videorate_init):
33427         Initialize the property as well.
33428
33429 2004-06-22  Wim Taymans  <wim@fluendo.com>
33430
33431         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
33432         (gst_videorate_init), (gst_videorate_chain),
33433         (gst_videorate_set_property), (gst_videorate_get_property):
33434         Add property to make videorate silent.
33435         Add property to prefer new frames over old ones.
33436
33437 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
33438
33439         * sys/osxvideo/Makefile.am:
33440         Workaround so that the osxvideo .so file gets linked with the
33441         Cocoa, OpenGL and QuickTime frameworks
33442
33443 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
33444
33445         * sys/osxaudio/Makefile.am:
33446         Workaround so that the osxaudio .so file gets linked with the
33447         CoreAudio framework
33448
33449 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
33450
33451         * configure.ac:
33452         Whoops, my fault...fixed build issues
33453
33454 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
33455
33456         * configure.ac:
33457         Add objective-c support if running in Darwin/Mac OS X
33458         * sys/Makefile.am:
33459         * sys/osxvideo:
33460         * sys/osxvideo/Makefile.am:
33461         * sys/osxvideo/osxvideosink.h:
33462         * sys/osxvideo/osxvideosink.m:
33463         * sys/osxvideo/cocoawindow.h:
33464         * sys/osxvideo/cocoawindow.m:
33465         Add osxvideosink, a cocoa-based osx video sink
33466
33467
33468 2004-06-19  Jan Schmidt  <thaytan@mad.scientist.com>
33469         * ext/dvdnav/gst-dvd:
33470         Grab the gconf key from the right spot
33471         * gst/debug/gstnavseek.c: (gst_navseek_init),
33472         (gst_navseek_segseek), (gst_navseek_handle_src_event),
33473         (gst_navseek_chain):
33474         * gst/debug/gstnavseek.h:
33475           Add 's', 'e' and 'l' keypresses to navseek to define the start,end
33476           and loop parameters of a segment seek.
33477         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
33478         (gst_videotestsrc_get_event_masks),
33479         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
33480         * gst/videotestsrc/gstvideotestsrc.h:
33481           Add seeking support to videotestsrc
33482           Initialise the timestamp_offset variable.
33483
33484 2004-06-18  Wim Taymans  <wim@fluendo.com>
33485
33486         * ext/sidplay/gstsiddec.cc:
33487         Fix negotiation and set correct end offset.
33488
33489 2004-06-18  Thomas Vander Stichele  <thomas at apestaart dot org>
33490
33491         * configure.ac: branch and prerelease
33492
33493 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
33494
33495         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
33496         (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_get),
33497         (gst_tcpclientsrc_init_receive):
33498         * gst/tcp/gsttcpclientsrc.h:
33499           read caps when connecting to server for GDP so we set them correctly
33500
33501 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
33502
33503         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
33504           notify drops and duplicates
33505         * gst/videoscale/videoscale.c: (videoscale_get_structure):
33506           no good reason to limit ourselves to 100x100
33507
33508 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
33509
33510         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
33511         (gst_v4lsrc_open), (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
33512         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
33513         (gst_v4lsrc_get_property):
33514         * sys/v4l/gstv4lsrc.h:
33515         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
33516         (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
33517         (gst_v4l_set_audio):
33518         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame),
33519         (gst_v4lsrc_try_capture):
33520         * sys/v4l/v4lsrc_calls.h:
33521           change try_palette to more general try_capture
33522           add autoprobe option so we can turn off autoprobing
33523           various fixes
33524
33525 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
33526
33527         * configure.ac:
33528           add videorate
33529         * sys/ximage/ximagesink.c: (gst_ximagesink_finalize),
33530         (gst_ximagesink_class_init):
33531         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_finalize),
33532         (gst_xvimagesink_class_init):
33533           run them as finalize, not dispose, since dispose can be invoked
33534           multiple times
33535
33536 2004-06-17  Wim Taymans  <wim@fluendo.com>
33537
33538         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
33539         (gst_alsa_get_time), (gst_alsa_xrun_recovery):
33540         * ext/alsa/gstalsa.h:
33541         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
33542         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init), (gst_alsa_src_loop),
33543         (gst_alsa_src_change_state):
33544         * ext/alsa/gstalsasrc.h:
33545         Make the xrun code timestamp and offset the buffers correctly.
33546         moved the clock to the base class, use alsa methods to get time.
33547         Do correct timestamping on outgoing buffers.
33548
33549 2004-06-17  Wim Taymans  <wim@fluendo.com>
33550
33551         * gst/audiorate/Makefile.am:
33552         * gst/audiorate/gstaudiorate.c: (gst_audiorate_get_type),
33553         (gst_audiorate_base_init), (gst_audiorate_class_init),
33554         (gst_audiorate_link), (gst_audiorate_init), (gst_audiorate_chain),
33555         (gst_audiorate_set_property), (gst_audiorate_get_property),
33556         (gst_audiorate_change_state), (plugin_init):
33557         Added an audiorate converter that fills in gaps.
33558
33559 2004-06-17  Johan Dahlin  <johan@gnome.org>
33560
33561         * ext/tcp/*: Revert Zaheer changes, to make things actually work again.
33562
33563 2004-06-16  Wim Taymans  <wim@fluendo.com>
33564
33565         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get):
33566         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
33567         (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
33568         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
33569         (gst_v4lsrc_get_property):
33570         * sys/v4l/gstv4lsrc.h:
33571         Added a copy mode to v4lsrc where it will output a copied version
33572         of its internal hardware buffer.
33573         Fix the wrong FLAG_SET usage. The flags are integers, not bits, you
33574         can't | them.
33575
33576 2004-06-16  Wim Taymans  <wim@fluendo.com>
33577
33578         * sys/oss/gstosssrc.c: (gst_osssrc_get):
33579         Timestamp fixes.
33580
33581 2004-06-16  Wim Taymans  <wim@fluendo.com>
33582
33583         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
33584         (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
33585         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
33586         (gst_v4lsrc_get_property):
33587         * sys/v4l/gstv4lsrc.h:
33588         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
33589         Added a sync mode enum property to control v4lsrc timestamp method
33590         Removed the use-fixed-fps property and moved functionality in
33591         the enum.
33592         Don't error on an error value from v4l-conf, it might not always
33593         be a real error.
33594
33595 2004-06-16  Wim Taymans  <wim@fluendo.com>
33596
33597         * gst/videorate/Makefile.am:
33598         * gst/videorate/gstvideorate.c: (gst_videorate_get_type),
33599         (gst_videorate_base_init), (gst_videorate_class_init),
33600         (gst_videorate_getcaps), (gst_videorate_link),
33601         (gst_videorate_init), (gst_videorate_chain),
33602         (gst_videorate_set_property), (gst_videorate_get_property),
33603         (gst_videorate_change_state), (plugin_init):
33604         Added a video timestamp corrector.
33605
33606 2004-06-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
33607
33608         fixed a potential leak with previous commit
33609
33610         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
33611
33612 2004-06-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
33613
33614         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
33615         Added missing refcount, fixes bug #144425
33616         Cheers Tim for finding the bug
33617
33618 2004-06-15  Thomas Vander Stichele  <thomas at apestaart dot org>
33619
33620         * sys/v4l/gstv4l.c: (plugin_init):
33621         * sys/v4l/gstv4lcolorbalance.c:
33622         * sys/v4l/gstv4lcolorbalance.h:
33623         * sys/v4l/gstv4lelement.c:
33624         * sys/v4l/gstv4lelement.h:
33625         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
33626         * sys/v4l/gstv4lmjpegsink.h:
33627         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
33628         * sys/v4l/gstv4lmjpegsrc.h:
33629         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
33630         (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
33631         (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
33632         * sys/v4l/gstv4lsrc.h:
33633         * sys/v4l/gstv4ltuner.c:
33634         * sys/v4l/gstv4ltuner.h:
33635         * sys/v4l/gstv4lxoverlay.c:
33636         * sys/v4l/gstv4lxoverlay.h:
33637         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
33638         (gst_v4l_set_window), (gst_v4l_enable_overlay):
33639         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
33640         (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
33641         (gst_v4l_set_audio):
33642         * sys/v4l/v4l_calls.h:
33643         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
33644         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_sync_frame),
33645         (gst_v4lmjpegsink_set_buffer), (gst_v4lmjpegsink_set_playback),
33646         (gst_v4lmjpegsink_playback_init),
33647         (gst_v4lmjpegsink_playback_start), (gst_v4lmjpegsink_get_buffer),
33648         (gst_v4lmjpegsink_play_frame), (gst_v4lmjpegsink_wait_frame),
33649         (gst_v4lmjpegsink_playback_stop),
33650         (gst_v4lmjpegsink_playback_deinit):
33651         * sys/v4l/v4lmjpegsink_calls.h:
33652         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
33653         (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_buffer),
33654         (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
33655         (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_capture_start),
33656         (gst_v4lmjpegsrc_grab_frame), (gst_v4lmjpegsrc_requeue_frame),
33657         (gst_v4lmjpegsrc_capture_stop), (gst_v4lmjpegsrc_capture_deinit):
33658         * sys/v4l/v4lmjpegsrc_calls.h:
33659         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
33660         (gst_v4lsrc_sync_frame), (gst_v4lsrc_set_capture),
33661         (gst_v4lsrc_capture_init), (gst_v4lsrc_capture_start),
33662         (gst_v4lsrc_grab_frame), (gst_v4lsrc_requeue_frame),
33663         (gst_v4lsrc_capture_stop), (gst_v4lsrc_capture_deinit),
33664         (gst_v4lsrc_try_palette):
33665         * sys/v4l/v4lsrc_calls.h:
33666           bunch of paranoia cleanups
33667
33668 2004-06-14  David Schleef  <ds@schleef.org>
33669
33670         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_init),
33671         (cdparanoia_get), (cdparanoia_open), (cdparanoia_change_state):
33672         Send discont events and change timestamps appropriately when
33673         we get a seek event.  (bug #144240)
33674         * ext/cdparanoia/gstcdparanoia.h:
33675
33676 2004-06-14  Benjamin Otte  <otte@gnome.org>
33677
33678         * ext/alsa/gstalsa.c: Use snd_pcm_hw_params_set_rate _near instead of
33679           snd_pcm_hw_params_set_rate  since the latter fails for no good
33680           reason on some setups.
33681
33682 2004-06-14  David Schleef  <ds@schleef.org>
33683
33684         * gst/volume/demo.c: (value_changed_callback): exp10() is not
33685         standard.  Thank you for playing.
33686
33687 2004-06-14  Wim Taymans  <wim@fluendo.com>
33688
33689         * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
33690         Patch 1.3 broke the ordering of the colorspace info and
33691         made the plugin basically work by coincidence, reordered
33692         the info.
33693
33694 2004-06-14  Thomas Vander Stichele  <thomas at apestaart dot org>
33695
33696         * ext/lame/gstlame.c:
33697         * ext/mad/gstmad.c:
33698           sync caps.  Make sure mad can only output a list of rates, not
33699           a full range.  In the future, have three caps lists for each of the
33700           mpeg versions.  Change mpegversion to a double as well.
33701
33702 2004-06-14  Thomas Vander Stichele  <thomas at apestaart dot org>
33703
33704         * gst/volume/.cvsignore:
33705         * gst/volume/Makefile.am:
33706         * gst/volume/demo.c: (value_changed_callback), (idler),
33707         (setup_gui), (main):
33708           added small demo app
33709
33710 2004-06-13  Jan Schmidt  <thaytan@mad.scientist.com>
33711         * ext/esd/esdsink.c: (gst_esdsink_change_state):
33712         * ext/esd/esdsink.h:
33713         Close the esd connection on pause, because esd will just wait -
33714         blocking all other esd clients indefinitely.
33715
33716 2004-06-12  Christophe Fergeau  <teuf@gnome.org>
33717
33718         * gst/tags/gstvorbistag.c: replaced a g_warning which I added in my
33719           previous commit with GST_DEBUG
33720
33721 2004-06-12  Thomas Vander Stichele  <thomas at apestaart dot org>
33722
33723         * configure.ac:
33724           add a header check for a dvdread header in dvdnav.  Fixes #133002
33725
33726 2004-06-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
33727
33728         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
33729         * gst/tcp/gsttcpclientsink.h:
33730         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
33731         * gst/tcp/gsttcpclientsrc.h:
33732         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init),
33733         (gst_tcpserversink_handle_server_read),
33734         (gst_tcpserversink_init_send):
33735         * gst/tcp/gsttcpserversink.h:
33736         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
33737         * gst/tcp/gsttcpserversrc.h:
33738         Modified the tcp plugins so they are portable (IPv4,IPv6, any future
33739         version of IP)
33740
33741 2004-06-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
33742
33743         * configure.ac:
33744         Added ogg library so that OSX detects libtheora properly
33745
33746 2004-06-11  Wim Taymans  <wim@fluendo.com>
33747
33748         * ext/theora/theoradec.c: (theora_dec_chain),
33749         (theora_dec_change_state):
33750         Don't try to decode frames before we received a keyframe.
33751
33752 2004-06-11  Wim Taymans  <wim@fluendo.com>
33753
33754         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
33755         (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
33756         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
33757         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
33758         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
33759         Added property to set the maximum delay of a page.
33760
33761 2004-06-10  Wim Taymans  <wim@fluendo.com>
33762
33763         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
33764         (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
33765         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
33766         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
33767         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
33768         Added max-delay property to control the maximum amount
33769         of data to put in one page.
33770
33771 2004-06-10  Wim Taymans  <wim@fluendo.com>
33772
33773         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
33774         (gst_theora_enc_init), (theora_enc_sink_link),
33775         (theora_buffer_from_packet), (theora_enc_set_property),
33776         (theora_enc_get_property):
33777         Set duration on encoded buffer, added some more properties
33778
33779 2004-06-10  Wim Taymans  <wim@fluendo.com>
33780
33781         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
33782         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
33783         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
33784         * ext/theora/theoraenc.c: (theora_enc_chain):
33785         Fix refcounting bugs
33786
33787 2004-06-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
33788
33789         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
33790         (gst_asf_demux_loop), (gst_asf_demux_process_file),
33791         (gst_asf_demux_process_data), (gst_asf_demux_handle_data),
33792         (gst_asf_demux_process_object), (gst_asf_demux_get_stream),
33793         (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event),
33794         (gst_asf_demux_handle_src_event), (gst_asf_demux_handle_src_query),
33795         (gst_asf_demux_change_state):
33796         * gst/asfdemux/gstasfdemux.h:
33797           You know Chimaira? "I - HATE - EVERYTHING". Yeah, that's what this
33798           feels like. I think we should set a new requirement for demuxers
33799           from now on to implement sane loop functions, data loops, query
33800           and seek functions before first commit into CVS. And this commit
33801           fixes all of the above.
33802
33803 2004-06-10  Christophe Fergeau  <teuf@gnome.org>
33804
33805         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add): make sure parsed
33806           vorbis comments are properly encoded in UTF-8 before adding them
33807           to a GstTagList
33808
33809 2004-06-09  Benjamin Otte  <otte@gnome.org>
33810
33811         * ext/alsa/gstalsa.c: (add_channels):
33812           handle min <= max correctly
33813         * ext/alsa/gstalsa.c: (gst_alsa_fixate_to_mimetype),
33814         (gst_alsa_fixate_field_nearest_int), (gst_alsa_fixate):
33815           add fixation functions so we fixate correctly. No preferring of alaw
33816           anymore because it's the first structure.
33817         * ext/alsa/gstalsa.h:
33818         * ext/alsa/gstalsa.c: (gst_alsa_sw_params_dump),
33819         (gst_alsa_hw_params_dump):
33820           add functions to ease debugging in alsalib
33821         * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
33822         (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
33823         (gst_alsa_start_audio):
33824           only specify hw params if we really setup a format (fixes #134007 -
33825           or at least works around it)
33826
33827 2004-06-09  Wim Taymans  <wim@fluendo.com>
33828
33829         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
33830         (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
33831         (gst_ogg_mux_push_page), (gst_ogg_mux_get_headers),
33832         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_send_headers),
33833         (gst_ogg_mux_loop):
33834         Use stream caps to setup the initial pages in the ogg stream.
33835         Correctly set the streamheader caps on the srcpad.
33836
33837 2004-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
33838
33839         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
33840         (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
33841         (gst_v4lsrc_getcaps):
33842         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
33843         (gst_v4l_get_picture), (gst_v4l_get_audio), (gst_v4l_set_audio):
33844           add querying of fps lists for webcams.  Negotiating to a framerate
33845           now works.
33846
33847 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
33848
33849         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
33850         (theora_push_buffer), (theora_push_packet),
33851         (theora_set_header_on_caps), (theora_enc_chain):
33852           mark buffers and put on streamheader, raw theora streaming
33853           now works too, whee
33854
33855 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
33856
33857         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
33858         (gst_tcp_gdp_read_caps):
33859           do a looping read for caps and GDP headers too
33860
33861 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
33862
33863         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
33864         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get):
33865           return EOS instead of NULL in _get
33866
33867 2004-06-08  Wim Taymans  <wim@fluendo.com>
33868
33869         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
33870         (gst_tcp_gdp_read_caps), (gst_tcp_gdp_write_header),
33871         (gst_tcp_gdp_write_caps):
33872         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
33873         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
33874         (gst_tcpserversrc_gdp_read_header), (gst_tcpserversrc_get):
33875         Memory leak fixes
33876
33877 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
33878
33879         * ext/vorbis/Makefile.am:
33880         * ext/vorbis/vorbis.c: (plugin_init):
33881         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_base_init),
33882         (gst_vorbis_parse_class_init), (gst_vorbis_parse_init),
33883         (vorbis_parse_set_header_on_caps), (vorbis_parse_chain),
33884         (vorbis_parse_change_state):
33885         * ext/vorbis/vorbisparse.h:
33886           adding a vorbisparse element that marks the buffers, streaming
33887           raw vorbis using GDP now works, whee
33888
33889 2004-06-08  Wim Taymans  <wim@fluendo.com>
33890
33891         * ext/jpeg/Makefile.am:
33892         * ext/jpeg/README:
33893         * ext/jpeg/gstjpeg.c: (plugin_init):
33894         * ext/jpeg/gstsmokedec.c: (gst_smokedec_get_type),
33895         (gst_smokedec_base_init), (gst_smokedec_class_init),
33896         (gst_smokedec_init), (gst_smokedec_link), (gst_smokedec_chain):
33897         * ext/jpeg/gstsmokedec.h:
33898         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_get_type),
33899         (gst_smokeenc_base_init), (gst_smokeenc_class_init),
33900         (gst_smokeenc_init), (gst_smokeenc_getcaps), (gst_smokeenc_link),
33901         (gst_smokeenc_resync), (gst_smokeenc_chain),
33902         (gst_smokeenc_set_property), (gst_smokeenc_get_property):
33903         * ext/jpeg/gstsmokeenc.h:
33904         * ext/jpeg/smokecodec.c: (smokecodec_init_destination),
33905         (smokecodec_flush_destination), (smokecodec_term_destination),
33906         (smokecodec_init_source), (smokecodec_fill_input_buffer),
33907         (smokecodec_skip_input_data), (smokecodec_resync_to_restart),
33908         (smokecodec_term_source), (smokecodec_encode_new),
33909         (smokecodec_decode_new), (smokecodec_info_free),
33910         (smokecodec_set_quality), (smokecodec_get_quality),
33911         (smokecodec_set_threshold), (smokecodec_get_threshold),
33912         (smokecodec_set_bitrate), (smokecodec_get_bitrate),
33913         (find_best_size), (abs_diff), (put), (smokecodec_encode),
33914         (smokecodec_parse_header), (smokecodec_decode):
33915         * ext/jpeg/smokecodec.h:
33916         Added a new simple jpeg based codec
33917
33918 2004-06-08  Wim Taymans  <wim@fluendo.com>
33919
33920         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
33921         (gst_multipart_mux_loop):
33922         Fix memory leak
33923
33924 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
33925
33926         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
33927         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_client_remove),
33928         (gst_tcpserversink_handle_client_read), (gst_tcp_buffer_write),
33929         (gst_tcpserversink_handle_client_write), (gst_tcpserversink_chain),
33930         (gst_tcpserversink_init_send), (gst_tcpserversink_close):
33931         * gst/tcp/gsttcpserversink.h:
33932           take streamheader into account
33933
33934 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
33935
33936         * gst/level/Makefile.am:
33937         * gst/level/gstlevel.c: (gst_level_class_init):
33938           clean up marshal generation
33939
33940 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
33941
33942         * gst/tcp/Makefile.am:
33943         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_get_type),
33944         (gst_tcpclientsink_class_init), (gst_tcpclientsink_init),
33945         (gst_tcpclientsink_set_property), (gst_tcpclientsink_get_property):
33946         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
33947         (gst_tcpclientsrc_init), (gst_tcpclientsrc_set_property),
33948         (gst_tcpclientsrc_get_property):
33949         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
33950         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
33951         (gst_tcpserversink_handle_client_read),
33952         (gst_tcpserversink_handle_client_write),
33953         (gst_tcpserversink_set_property), (gst_tcpserversink_get_property):
33954         * gst/tcp/gsttcpserversink.h:
33955           add signals client-added and client-removed
33956         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
33957         (gst_tcpserversrc_init), (gst_tcpserversrc_set_property),
33958         (gst_tcpserversrc_get_property):
33959         uniformized, change default protocol to NONE
33960         * gst/tcp/gsttcp-marshal.list: added
33961 2004-06-07  Benjamin Otte  <otte@gnome.org>
33962
33963         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
33964           handle discont events if they happen before caps nego
33965
33966 2004-06-07  Wim Taymans  <wim@fluendo.com>
33967
33968         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
33969         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
33970         (gst_multipart_demux_plugin_init):
33971         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
33972         (gst_multipart_mux_init), (gst_multipart_mux_loop),
33973         (gst_multipart_mux_change_state):
33974         Small updates, fix a memleak
33975
33976 2004-06-07  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
33977
33978         * configure.ac: OSS portability
33979         * ext/arts/gst_arts.c: idem
33980         * sys/oss/gstosselement.c: idem
33981         * sys/oss/gstossmixer.c: idem
33982         * sys/oss/gstosssink.c: idem
33983         * sys/oss/gstosssrc.c: idem
33984         * sys/oss/oss_probe.c: idem
33985           - check for soundcard.h in different places for some BSD
33986
33987 2004-06-07  Jan Schmidt <thaytan@mad.scientist.com>
33988
33989         * AUTHORS:
33990         Add me to the authors file
33991         * configure.ac:
33992         Increase the libdv requirement to >= version 0.100
33993         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
33994         (gst_dvdec_src_query), (gst_dvdec_handle_sink_event),
33995         (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state):
33996         * ext/dv/gstdvdec.h:
33997         Add support for the new_media flag when sending DISCONT events
33998         Make the querying work when video pad is not linked
33999
34000 2004-06-07  Tim-Philipp Müller  <t.i.m@zen.co.uk>
34001
34002         reviewed by Benjamin Otte  <otte@gnome.org>
34003
34004         * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init):
34005           create a NULL-initialized array of pads, so we don't think they
34006           exist already. (fixes #143130)
34007
34008 2004-06-07  Benjamin Otte  <otte@gnome.org>
34009
34010         * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init),
34011         (mixmatrix_resize), (gst_mixmatrix_set_all_caps),
34012         (gst_mixmatrix_request_new_pad), (gst_mixmatrix_loop):
34013           don't use // coments
34014
34015 2004-06-07  Benjamin Otte  <otte@gnome.org>
34016
34017         * ext/alsa/gstalsa.c: (gst_alsa_samples_to_timestamp):
34018           cast to GstClockTime to get higher granularity
34019         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
34020           use gst_element_set_time_delay to get the exact time
34021         * ext/mad/gstmad.c: (gst_mad_chain):
34022           use the negotiated rate instead of the current frame's rate which
34023           might be wrong because of bit errors. This avoids emitting totally
34024           bogus timestamps and screwing sync.
34025         (fixes #143454)
34026
34027 2004-06-07  Tim-Philipp Müller  <t.i.m@zen.co.uk>
34028
34029         reviewed by Benjamin Otte  <otte@gnome.org>
34030
34031         * gst/adder/gstadder.c: (gst_adder_loop):
34032           properly error out when no negotiation has happened yet. (fixes
34033           #143032)
34034
34035 2004-06-06  Benjamin Otte  <otte@gnome.org>
34036
34037         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
34038           forward correctly transformed offset in discont events. Based on
34039           patch by Arwed v. Merkatz. (fixes #142851)
34040
34041 2004-06-06  David Schleef  <ds@schleef.org>
34042
34043         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: that's
34044         G_HAVE_GNUC_VARARGS, not G_HAVE_GNU_VARARGS.  Should fix compile
34045         problems on several systems.
34046
34047 2004-06-06  Benjamin Otte  <otte@gnome.org>
34048
34049         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
34050           use explicit caps on the srcpad
34051         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
34052           properly error out if caps couldn't be set (fixes #142764)
34053
34054 2004-06-06  Benjamin Otte  <otte@gnome.org>
34055
34056         * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
34057         (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
34058         (gst_alsa_start_audio):
34059           - don't call set_periods_integer anymore, it breaks the
34060           configuration randomly
34061           - call snd_pcm_hw_params_set_access directly instead of using masks
34062           - don't fail if the sw_params can't be set, just use the default
34063           params and hope it works. Alsalib has weird issues when you touch
34064           sw_params and does no proper error reporting about what failed.
34065         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
34066         (gst_alsa_close_audio):
34067           make our alsa debugging go via gst debugging and not conditionally
34068           defined
34069         * ext/alsa/gstalsa.h:
34070           add ALSA_DEBUG_FLUSH macro
34071         * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper),
34072         (plugin_init):
34073           wrap alsa errors to be printed via the gst debugging system and not
34074           spammed to stderr
34075
34076 2004-06-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34077
34078         * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
34079         (gst_qtdemux_handle_src_query), (gst_qtdemux_handle_src_event),
34080         (gst_qtdemux_handle_sink_event), (gst_qtdemux_change_state),
34081         (gst_qtdemux_loop_header), (qtdemux_dump_mvhd),
34082         (qtdemux_parse_trak):
34083         * gst/qtdemux/qtdemux.h:
34084           Bitch. Also known as seeking, querying & co.
34085         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
34086         (gst_osssink_change_state):
34087         * sys/oss/gstosssink.h:
34088           Resyncing is for weenies, this hack is no longer needed and was
34089           broken anyway (since it - unintendedly - always leaves resync to
34090           TRUE).
34091
34092 2004-06-05  Andrew Turner <zxombie@hotpop.com>
34093
34094         * gst/tcp/gsttcp.c: portability (Solaris 10/FreeBSD)
34095         * gst/tcp/gsttcpclientsrc.h: idem
34096           - define MSG_NOSIGNAL if not done
34097           - include unistd.h for off_t
34098           (fixes #143749)
34099
34100 2004-06-05  Benjamin Otte  <otte@gnome.org>
34101
34102         * configure.ac:
34103         * ext/kio/Makefile.am:
34104           check for qt's moc preprocessor explicitly and use it
34105
34106 2004-06-03  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
34107
34108         * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
34109           don't get a signal for EPIPE on socket writes
34110           (somebody check if this works on other platforms)
34111
34112 2004-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
34113
34114         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
34115         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
34116           check error condition on available samples correctly
34117
34118 2004-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
34119
34120         * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_time):
34121           avoid a segfault
34122         * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
34123         (gst_tcp_gdp_read_header), (gst_tcp_gdp_read_caps):
34124         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
34125         (gst_tcpserversrc_gdp_read_header):
34126          use ssize_t over size_t since the former is signed and thus the
34127          check for error codes can work
34128
34129 2004-06-02  Wim Taymans  <wim@fluendo.com>
34130
34131         reviewed by: Johan
34132
34133         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
34134         (gst_multipart_mux_loop):
34135         Oops
34136
34137 2004-06-02  Wim Taymans  <wim@fluendo.com>
34138
34139         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
34140         (gst_multipart_mux_init), (gst_multipart_mux_loop),
34141         (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
34142         (gst_multipart_mux_change_state):
34143         Added configurable boundary specifier, added the value as a
34144         caps field as well.
34145
34146 2004-06-02  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
34147
34148         * gst/tcp/gsttcp.c:
34149         * gst/tcp/gsttcpclientsrc.c:
34150         * gst/tcp/gsttcpclientsrc.h:
34151         * gst/tcp/gsttcpserversrc.c:
34152           - portability fix, to compile on OSX
34153             (fixes #143146)
34154
34155         * sys/osxaudio/gstosxaudioelement.c:
34156         * sys/osxaudio/gstosxaudiosink.c:
34157         * sys/osxaudio/gstosxaudiosrc.c:
34158           - compilation warnings on OSX
34159             (fixes #143153)
34160
34161 2004-06-02  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
34162
34163         * ext/vorbis/vorbisdec.c : sign warning fixes
34164
34165         * gst-libs/gst/mixer/mixertrack.c :
34166           do no use defines which are glib 2.4 specific
34167
34168 2004-06-01  Christophe Fergeau  <teuf@gnome.org>
34169
34170         * ext/flac/gstflactag.c: strip ending framing bit from vorbiscomment
34171           buffer since libflac doesn't expect it (reports a sync error when
34172           it encounters that)
34173
34174
34175 2004-06-01  Owen Fraser-Green  <owen@discobabe.net>
34176
34177         * gst-libs/gst/mixer/mixertrack.h: Changed struct syntax
34178         * gst-libs/gst/mixer/mixertrack.c:
34179         (gst_mixer_track_get_property), (get_mixer_track_init),
34180         (get_mixer_track_get_property): Added property accessors
34181         * gst-libs/gst/mixer/mixeroptions.h: Changed struct syntax
34182         * gst-libs/gst/mixer/mixeroptions.c:
34183         (gst_mixer_options_get_values): Added
34184         * gst-libs/gst/mixer/mixer.h: Changed GstMixerClass syntax
34185         * gst-libs/gst/mixer/mixer.c: Fixed comment
34186
34187
34188 2004-06-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
34189
34190         * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
34191           improve error messages on open
34192
34193
34194 2004-06-01  Thomas Vander Stichele  <thomas at apestaart dot org>
34195
34196         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
34197           check if v4l-conf is in path
34198
34199 2004-06-01  Thomas Vander Stichele  <thomas at apestaart dot org>
34200
34201         * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
34202           change assert to a more readable error message
34203
34204 2004-05-31  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
34205
34206         * gst-libs/gst/tuner/tunerchannel.h:
34207           - add a freq_multiplicator field to make the conversion
34208             between internal frequency unit and Hz
34209         * sys/v4l/gstv4lelement.c:
34210         * sys/v4l2/gstv4l2element.c:
34211           - change default video device to /dev/video0
34212         * sys/v4l/v4l_calls.c:
34213         * sys/v4l2/v4l2_calls.c:
34214           - we only expose frequency to the user in Hz instead of
34215             bastard v4lX unit (either 62.5kHz or 62.5Hz)
34216
34217 2004-05-31  Jan Schmidt  <thaytan@mad.scientist.com>
34218         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
34219           Initialise b_o_s and e_o_s variables
34220         * gst-libs/gst/riff/riff-media.c:
34221         (gst_riff_create_video_caps_with_data):
34222           Add some unusual fourcc's from mplayer avi's
34223         * gst/multipart/multipartmux.c: (gst_multipart_mux_plugin_init):
34224           Make the muxer have rank GST_RANK_NONE, so it doesn't mess up
34225           autoplugging.
34226
34227 2004-05-28  Wim Taymans  <wim@fluendo.com>
34228
34229         * configure.ac:
34230         * gst/alpha/Makefile.am:
34231         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
34232         (gst_alpha_get_type), (gst_alpha_base_init),
34233         (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
34234         (gst_alpha_get_property), (gst_alpha_sink_link), (gst_alpha_add),
34235         (gst_alpha_chroma_key), (gst_alpha_chain),
34236         (gst_alpha_change_state), (plugin_init):
34237         A plugin to add an alpha channel to I420 video. Can optionally do
34238         chroma keying.
34239         * gst/multipart/Makefile.am:
34240         * gst/multipart/multipart.c: (plugin_init):
34241         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
34242         (gst_multipart_demux_class_init), (gst_multipart_demux_init),
34243         (gst_multipart_demux_finalize), (gst_multipart_demux_handle_event),
34244         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
34245         (gst_multipart_demux_change_state),
34246         (gst_multipart_demux_plugin_init):
34247         * gst/multipart/multipartmux.c: (gst_multipart_mux_get_type),
34248         (gst_multipart_mux_base_init), (gst_multipart_mux_class_init),
34249         (gst_multipart_mux_get_sink_event_masks), (gst_multipart_mux_init),
34250         (gst_multipart_mux_sinkconnect), (gst_multipart_mux_pad_link),
34251         (gst_multipart_mux_pad_unlink),
34252         (gst_multipart_mux_request_new_pad),
34253         (gst_multipart_mux_handle_src_event),
34254         (gst_multipart_mux_next_buffer), (gst_multipart_mux_compare_pads),
34255         (gst_multipart_mux_queue_pads), (gst_multipart_mux_loop),
34256         (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
34257         (gst_multipart_mux_change_state), (gst_multipart_mux_plugin_init):
34258         A Multipart demuxer/muxer. Not sure if it violates specs. Used to
34259         send multipart jpeg images to a browser.
34260         * gst/videobox/Makefile.am:
34261         * gst/videobox/README:
34262         * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
34263         (gst_video_box_get_type), (gst_video_box_base_init),
34264         (gst_video_box_class_init), (gst_video_box_init),
34265         (gst_video_box_set_property), (gst_video_box_get_property),
34266         (gst_video_box_sink_link), (gst_video_box_i420),
34267         (gst_video_box_ayuv), (gst_video_box_chain),
34268         (gst_video_box_change_state), (plugin_init):
34269         Crops or adds borders around an image. can do alpha channel
34270         borders as well.
34271         * gst/videomixer/Makefile.am:
34272         * gst/videomixer/README:
34273         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
34274         (gst_videomixer_pad_base_init), (gst_videomixer_pad_class_init),
34275         (gst_videomixer_pad_get_sink_event_masks),
34276         (gst_videomixer_pad_get_property),
34277         (gst_videomixer_pad_set_property),
34278         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_link),
34279         (gst_videomixer_pad_unlink), (gst_videomixer_pad_init),
34280         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
34281         (gst_videomixer_base_init), (gst_videomixer_class_init),
34282         (gst_videomixer_init), (gst_videomixer_request_new_pad),
34283         (gst_videomixer_handle_src_event),
34284         (gst_videomixer_blend_ayuv_i420), (gst_videomixer_fill_checker),
34285         (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
34286         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
34287         (gst_videomixer_loop), (gst_videomixer_get_property),
34288         (gst_videomixer_set_property), (gst_videomixer_change_state),
34289         (plugin_init):
34290         Generic video mixer plugin, can handle multiple inputs all with
34291         different framerates and video sizes. Is fully alpha channel
34292         aware.
34293
34294 2004-05-27  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34295
34296         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
34297           Select first track as master track. Not sure how else to handle
34298           that...
34299         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer):
34300           Discard discont events. Should fix #142962.
34301
34302 2004-05-26  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34303
34304         * ext/alsa/Makefile.am:
34305         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init),
34306         (gst_alsa_mixer_build_list), (gst_alsa_mixer_get_volume),
34307         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
34308         (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
34309         (gst_alsa_mixer_get_option):
34310         * ext/alsa/gstalsamixer.h:
34311         * ext/alsa/gstalsamixeroptions.c:
34312         (gst_alsa_mixer_options_get_type),
34313         (gst_alsa_mixer_options_class_init), (gst_alsa_mixer_options_init),
34314         (gst_alsa_mixer_options_new):
34315         * ext/alsa/gstalsamixeroptions.h:
34316         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
34317         * ext/alsa/gstalsamixertrack.h:
34318           Add enumerations (as GstMixerOptions). Make correct distinction
34319           between input/output tracks. Add capture/playback private flag.
34320           Use flag to decide on whether to set capture or playback volumes
34321           or switches. Use playback and record switches.
34322         * gst-libs/gst/mixer/Makefile.am:
34323         * gst-libs/gst/mixer/mixer-marshal.list:
34324         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init),
34325         (gst_mixer_set_option), (gst_mixer_get_option),
34326         (gst_mixer_mute_toggled), (gst_mixer_record_toggled),
34327         (gst_mixer_volume_changed), (gst_mixer_option_changed):
34328         * gst-libs/gst/mixer/mixer.h:
34329         * gst-libs/gst/mixer/mixeroptions.c: (gst_mixer_options_get_type),
34330         (gst_mixer_options_class_init), (gst_mixer_options_init),
34331         (gst_mixer_options_dispose):
34332         * gst-libs/gst/mixer/mixeroptions.h:
34333           Add GstMixerOptions.
34334         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
34335           Rename Audio Mixer to OSS Mixer (similar to Alsa Mixer). Fix
34336           broken device detection on computers with multiple OSS sound
34337           cards.
34338
34339 2004-05-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34340
34341         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
34342           fixate nicely even when the peer is not negotiating
34343
34344 2004-05-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34345
34346         * gst/audioconvert/gstaudioconvert.c:
34347         (gst_audio_convert_parse_caps):
34348           make sure we don't allow depth > width
34349         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
34350           fixate endianness to G_BYTE_ORDER as default
34351         * gst/audioscale/gstaudioscale.c:
34352           we don't handle another endianness as host-endianness
34353
34354 2004-05-25  David Schleef  <ds@schleef.org>
34355
34356         * gst/ffmpegcolorspace/mem.c:  malloc() is in stdlib.h, not malloc.h
34357
34358 2004-05-24  Benjamin Otte  <otte@gnome.org>
34359
34360         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_sinkconnect),
34361         (gst_oggvorbisenc_setup):
34362           properly fail when we can't setup the vorbis encoder due to
34363           unsupported settings
34364         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sinkconnect),
34365         (gst_vorbisenc_setup):
34366           same
34367         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
34368           fix case where warnings occured when one pad was unlinked while the
34369           other's link function was called
34370
34371 2004-05-24  Thomas Vander Stichele  <thomas at apestaart dot org>
34372
34373         * gst/tcp/Makefile.am:
34374           use GST_ENABLE_NEW
34375
34376 2004-05-24  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34377
34378         * gst-libs/gst/resample/private.h:
34379           don't use optimizations that are #if 0'ed
34380
34381 2004-05-24  Wim Taymans  <wim@fluendo.com>
34382
34383         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
34384         Fix potential division by zero error and hopefully get
34385         the position query right to get correct timestamps on avi
34386         audio.
34387
34388 2004-05-24  Wim Taymans  <wim@fluendo.com>
34389
34390         * gst/videoscale/videoscale.c: (gst_videoscale_scale_nearest),
34391         (gst_videoscale_scale_nearest_str2),
34392         (gst_videoscale_scale_nearest_str4),
34393         (gst_videoscale_scale_nearest_32bit),
34394         (gst_videoscale_scale_nearest_24bit),
34395         (gst_videoscale_scale_nearest_16bit):
34396         Fix the scaling algorithm and avoid a buffer overflow.
34397         removed the while loop in the scaling function as it
34398         was used for point sampling only.
34399
34400 2004-05-24  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34401
34402         * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
34403         (gst_id3_tag_class_init), (gst_id3_tag_init),
34404         (gst_id3_tag_set_property), (gst_id3_tag_get_tag_to_render),
34405         (gst_id3_tag_handle_event), (gst_id3_tag_do_caps_nego),
34406         (gst_id3_tag_send_tag_event):
34407           lots of fixes to make id3mux work and id3demux work correctly
34408
34409 2004-05-24  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
34410
34411         * ext/Makefile.am:
34412           add rules to build shout2send (was removed by accident
34413           when this module was no more marked experimental/broken)
34414
34415 2004-05-24  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
34416
34417         * ext/shout2/gstshout2.c:
34418         * ext/shout2/gstshout2.h:
34419           adding a "connection problem" signal to shout2send
34420           (fixes #142954)
34421
34422 2004-05-21  Thomas Vander Stichele  <thomas at apestaart dot org>
34423
34424         * ext/kio/kioreceiver.cpp:
34425         * ext/kio/kioreceiver.h:
34426           fix sign comparison issues
34427
34428 2004-05-21  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
34429
34430         * gst/cdxaparse/gstcdxaparse.c:
34431         * gst/cdxaparse/gstcdxaparse.h:
34432           some renaming
34433           add some checks/sanity
34434           prepare for seek addition
34435
34436         * sys/sunaudio/gstsunaudio.c:
34437           remove exported dupe init function
34438
34439 2004-05-21  Jan Schmidt  <thaytan@mad.scientist.com>
34440
34441         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_get_formats),
34442         (gst_dvdec_src_convert), (gst_dvdec_sink_convert):
34443           Fix format conversion and position querying.
34444         * gst/debug/progressreport.c: (gst_progressreport_report):
34445           Don't output a bogus total value that we didn't query.
34446         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
34447           Always set XV_AUTOPAINT_COLORKEY to true. Fixes xvimagesink showing
34448           only a blank window after xine has been used.
34449
34450 2004-05-21  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
34451
34452         * m4/as-arts.m4:
34453           sync with upstream version to fix test on FC2
34454           readd with -ko to preserve Id header
34455
34456 2004-05-20  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
34457
34458         * configure.ac:
34459           test for FIONREAD ioctl in sys/filio.h for Solaris compat.
34460         * gst/tcp/gsttcpclientsrc.c: idem
34461         * gst/tcp/gsttcpserversink.c: idem
34462         * gst/tcp/gsttcpserversrc.c: idem
34463         * m4/gst-fionread.m4: idem
34464
34465         * sys/sunaudio/gstsunaudio.c: change category to Sink/Audio
34466
34467         * configure.ac: enable speex plugin for speex 1.1.5+
34468         * ext/speex/gstspeexenc.c: fix cast warning
34469
34470         * ext/esd/README: fix typo
34471
34472 2004-05-20  David Schleef  <ds@schleef.org>
34473
34474         * configure.ac: Minor cosmetic change to convince the buildbot to
34475         reautogen.
34476         * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_class_init),
34477         (gst_sunaudiosink_init), (gst_sunaudiosink_getcaps),
34478         (gst_sunaudiosink_pad_link), (gst_sunaudiosink_chain),
34479         (gst_sunaudiosink_setparams), (gst_sunaudiosink_open),
34480         (gst_sunaudiosink_close), (gst_sunaudiosink_change_state),
34481         (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property):
34482         More hacking.  Plays audio now.
34483
34484 2004-05-20  David Schleef  <ds@schleef.org>
34485
34486         * configure.ac:
34487         * sys/Makefile.am:
34488
34489 2004-05-20  David Schleef  <ds@schleef.org>
34490
34491         * sys/osxaudio/Makefile.am:  New OS X audio plugin by Zaheer Abbas Merali
34492         * sys/osxaudio/gstosxaudio.c:
34493         * sys/osxaudio/gstosxaudioelement.c:
34494         * sys/osxaudio/gstosxaudioelement.h:
34495         * sys/osxaudio/gstosxaudiosink.c:
34496         * sys/osxaudio/gstosxaudiosink.h:
34497         * sys/osxaudio/gstosxaudiosrc.c:
34498         * sys/osxaudio/gstosxaudiosrc.h:
34499
34500 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
34501
34502         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps),
34503         (gst_vorbisenc_chain):
34504           put the codec headers on the caps as streamheader as well as
34505           pushing them out
34506
34507 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
34508
34509         * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
34510         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
34511         (gst_vorbisenc_push_packet), (gst_vorbisenc_chain):
34512         split up push_packet into two functions
34513
34514 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
34515
34516         * gst/tcp/.cvsignore:
34517           ignore enums
34518         * gst/tcp/Makefile.am:
34519         * gst/tcp/README:
34520         * gst/tcp/gsttcp.c:
34521         * gst/tcp/gsttcp.h:
34522         * gst/tcp/gsttcpclientsink.c:
34523         * gst/tcp/gsttcpclientsink.h:
34524         * gst/tcp/gsttcpclientsrc.c:
34525         * gst/tcp/gsttcpclientsrc.h:
34526         * gst/tcp/gsttcpplugin.c:
34527         * gst/tcp/gsttcpserversink.c:
34528         * gst/tcp/gsttcpserversink.h:
34529         * gst/tcp/gsttcpserversrc.c:
34530         * gst/tcp/gsttcpserversrc.h:
34531           add new tcp elements
34532
34533 2004-05-19  Wim Taymans  <wim@fluendo.com>
34534
34535         * gst/law/mulaw-conversion.c: (mulaw_encode):
34536         Fix overflow bug in ulaw encoding.
34537
34538 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34539
34540         * ext/mad/gstmad.c: (gst_mad_handle_event):
34541           don't unref the event twice
34542
34543 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34544
34545         * configure.ac:
34546           remove -Wno-sign-compare
34547
34548 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34549
34550         * configure.ac:
34551           remove -DG_DISABLE_DEPRECATED. It's not usable without workarounds
34552           if you want to work against glib 2.2 and 2.4
34553
34554 2004-05-19  Thomas Vander Stichele  <thomas at apestaart dot org>
34555
34556         * gst/tcp/Makefile.am:
34557         * gst/tcp/gsttcp.c:
34558         * gst/tcp/gsttcp.h:
34559         * gst/tcp/gsttcpsink.h:
34560         * gst/tcp/gsttcpsrc.h:
34561           gsttcp -> gsttcpplugin + CVS surgery in preparation for tcp merge
34562
34563 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34564
34565         * gst/debug/tests.c: (md5_get_value):
34566           fix segfault on gst-inspect
34567
34568 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34569
34570         * gst/debug/testplugin.c:
34571         * gst/debug/tests.c:
34572         * gst/debug/tests.h:
34573           add new extensible and configurable testing element. Current tests
34574           include buffer count, stream length, timestamp/duration matching and
34575           md5.
34576         * gst/debug/Makefile.am:
34577         * gst/debug/gstdebug.c: (plugin_init):
34578           add infrastructure for new element
34579
34580 2004-05-19  Johan Dahlin  <johan@gnome.org>
34581
34582         * ext/dv/gstdvdec.c (gst_dvdec_quality_get_type): Add proper
34583         ending of the array. Fixes gst-inspect segfault on ppc.
34584
34585 2004-05-19  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
34586
34587         * ext/dirac/gstdiracdec.cc : change category to Codec/Decoder/Video
34588
34589         * m4/a52.m4 : don't fix a test that should fail with current a52dec lib
34590
34591 2004-05-18  David Schleef  <ds@schleef.org>
34592
34593         * gst/ffmpegcolorspace/imgconvert.c: (img_convert): Fixes for
34594         warnings (bugs, actually) noticed by gcc but not forte.
34595
34596 2004-05-18  David Schleef  <ds@schleef.org>
34597
34598         * sys/sunaudio/Makefile.am:
34599         * sys/sunaudio/gstsunaudio.c: New sunaudiosink
34600
34601 2004-05-18  David Schleef  <ds@schleef.org>
34602
34603         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
34604         (gst_qtdemux_loop_header):  Patch from dcm@acm.org (David Moore)
34605         to allow qtdemux to use non-seekable streams. (bug #142272)
34606
34607 2004-05-18  David Schleef  <ds@schleef.org>
34608
34609         * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16),
34610         (gst_resample_sinc_ft_float): Remove use of static temporary
34611         buffer.  This code was obviously not supposed to last long, but
34612         it's stuck in our ABI, so it required a little hack to make it
34613         ABI-compatible.  Fixes #142585.
34614         * gst-libs/gst/resample/resample.h: same.
34615
34616 2004-05-18  David Schleef  <ds@schleef.org>
34617
34618         * configure.ac: Add sunaudio
34619         * examples/Makefile.am: make gstplay depend on gconf
34620         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Remove c99-isms
34621         * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette),
34622         (convert_table_lookup), (img_convert): remove c99-isms
34623         * gst/ffmpegcolorspace/imgconvert_template.h: make a constant
34624           unsigned, to fix a warning on Solaris
34625         * gst/mpeg1sys/systems.c: bcopy->memcpy
34626         * gst/rtjpeg/RTjpeg.c: (RTjpeg_yuvrgb8): bcopy->memcpy
34627         * sys/Makefile.am: Add sunaudio
34628
34629 2004-05-18  Wim Taymans  <wim@fluendo.com>
34630
34631         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_init),
34632         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
34633         (gst_ogg_mux_next_buffer), (gst_ogg_mux_push_page),
34634         (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
34635         (gst_ogg_mux_loop):
34636         Fix an ugly memleak where the muxer didn't flush enough ogg
34637         pages. This also resulted in badly muxed ogg files.
34638
34639 2004-05-18  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
34640
34641         * gst/asfdemux/asfheaders.c :
34642         * gst/asfdemux/asfheaders.h :
34643         * gst/asfdemux/gstasfdemux.c :
34644           - fix ASF_OBJ_PADDING guid
34645           - add 3 new object guids (language list, metadata,
34646             extended stream properties)
34647           - add a function to parse extended header objects
34648
34649 2004-05-18  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34650
34651         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
34652           remove leftover debugging g_print
34653
34654 2004-05-17  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34655
34656         * ext/mad/gstmad.c: (gst_mad_handle_event):
34657           Fix for when the first format in a discont event is not a
34658           byte-based one. Should fix #137710.
34659
34660 2004-05-18  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
34661
34662         * m4/a52.m4 : fix compilation with -Wall -Werror
34663         * m4/libfame.m4 : idem
34664         * m4/libmikmod.m4 : idem
34665
34666 2004-05-17  Benjamin Otte  <otte@gnome.org>
34667
34668         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
34669           signal the new tags before giving up the reference
34670
34671 2004-05-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34672
34673         * ext/shout2/gstshout2.c:
34674           use application/ogg instead of application/x-ogg (patch by Patrick
34675           Guimond, fixes #142432)
34676         * sys/oss/gstosselement.c: (gst_osselement_reset),
34677         (gst_osselement_sync_parms):
34678           don't set fragment size unless specified (fixes #142493)
34679
34680 2004-05-17  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
34681
34682         * configure.ac : fix compilation of v4l2src with "-Wall -Werror"
34683           fixes #142664
34684
34685 2004-05-17  Benjamin Otte  <otte@gnome.org>
34686
34687         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
34688           compute offsets correctly for internal buffers so timestamps are set
34689           correctly when we can't seek. Also handle cases where there are no
34690           offsets. (based on a patch by David Moore, fixes #142507)
34691
34692 2004-05-17  Benjamin Otte  <otte@gnome.org>
34693
34694         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
34695           use correct variable when determining amount of data to skip so we
34696           don't skip into the void and segfault
34697
34698 2004-05-16  Benjamin Otte  <otte@gnome.org>
34699
34700         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
34701           Hi, I'm a memleak
34702
34703 2004-05-16  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
34704
34705         * gst/asfdemux/gstasfdemux.c:
34706           - fix a mem leak and always propagate tags
34707           - add WMV3 to known video codecs (but no decoder yet)
34708           - replace "surplus data" at end of audio header for what
34709             it is : codec specific data
34710           - fix a typo
34711
34712 2004-05-16  Arwed v. Merkatz  <v.merkatz@gmx.net>
34713
34714         reviewed by: Ronald Bultje  <rbultje@ronald.bitfreak.net>
34715
34716         * gst-libs/gst/audio/audioclock.c:
34717           Fix wrong return type (#142205).
34718
34719 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34720
34721         * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_init):
34722           Ignore CRCs by default (fixes #142566).
34723
34724 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34725
34726         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
34727         (gst_alsa_mixer_close), (gst_alsa_mixer_supported),
34728         (gst_alsa_mixer_build_list), (gst_alsa_mixer_free_list),
34729         (gst_alsa_mixer_change_state), (gst_alsa_mixer_list_tracks),
34730         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
34731         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record):
34732           Fix for cases where we fail to attach to a mixer.
34733
34734 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34735
34736         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
34737           Don't touch events after not owning them anymore.
34738         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
34739         (gst_wavparse_fmt), (gst_wavparse_other),
34740         (gst_wavparse_handle_seek), (gst_wavparse_loop),
34741         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
34742         (gst_wavparse_srcpad_event):
34743         * gst/wavparse/gstwavparse.h:
34744           Add seeking, fix querying.
34745
34746 2004-05-16  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
34747
34748         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
34749           - process comments even if they don't end with \0\0
34750             g_convert would ignore them if present and works well without them
34751
34752 2004-05-16  Benjamin Otte  <otte@gnome.org>
34753
34754         * ext/alsa/gstalsa.c: (gst_alsa_caps), (gst_alsa_get_caps):
34755           simplify caps
34756
34757 2004-05-16  Benjamin Otte  <otte@gnome.org>
34758
34759         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
34760           don't write to memory we might not write to - g_convert does that
34761           for us anyway (fixes #142613)
34762         (gst_asf_demux_audio_caps):
34763           comment out gst_util_dump_mem
34764
34765 2004-05-16  Benjamin Otte  <otte@gnome.org>
34766
34767         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
34768           compute correct expected timestamps after seek (broken since
34769           last commit)
34770         * ext/gdk_pixbuf/pixbufscale.c: (pixbufscale_init):
34771           rename element and debugging category to gdkpixbufscale
34772
34773 2004-05-16  Benjamin Otte  <otte@gnome.org>
34774
34775         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
34776           add error checking to snd_pcm_delay and remove duplicate call to
34777           snd_pcm_delay that caused issues (see inline code comments)
34778         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
34779           make more readable and fix return value when snd_pcm_delay fails
34780         (fixes #142586)
34781
34782 2004-05-15  Jan Schmidt  <thaytan@mad.scientisti.com>
34783         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_method_get_type),
34784         (gst_pixbufscale_get_type), (gst_pixbufscale_base_init),
34785         (gst_pixbufscale_class_init), (gst_pixbufscale_getcaps),
34786         (gst_pixbufscale_link), (gst_pixbufscale_init),
34787         (gst_pixbufscale_handle_src_event), (pixbufscale_scale),
34788         (gst_pixbufscale_chain), (gst_pixbufscale_set_property),
34789         (gst_pixbufscale_get_property), (pixbufscale_init):
34790         * ext/gdk_pixbuf/pixbufscale.h:
34791         Add these files I forgot earlier
34792
34793 2004-05-15  Jan Schmidt  <thaytan@mad.scientist.com>
34794         * ext/gdk_pixbuf/Makefile.am:
34795         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
34796         * ext/gdk_pixbuf/gstgdkpixbuf.h:
34797         Add new pixbufscale element to scale RGB video
34798         using gdk_pixbuf, because gdk_pixbuf does BILINEAR
34799         and HYPER interpolation correctly.
34800         * ext/theora/theoraenc.c: (theora_enc_chain),
34801         Discard buffer and return if explicit caps could not be set
34802         (theora_enc_get_property):
34803         Make _get return kbps for the bitrate consistent with
34804         the _set function.
34805
34806
34807 2004-05-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34808
34809         * ext/libvisual/visual.c: (gst_visual_chain):
34810           add missing visual_audio_analyze
34811
34812 2004-05-14  David Schleef  <ds@schleef.org>
34813
34814         * ext/esd/esdsink.c: (gst_esdsink_chain): Fix crash when ESD
34815         is killed while we're playing.
34816         * gst/qtdemux/qtdemux.c: (qtdemux_parse): call
34817         gst_element_no_more_pads().
34818
34819 2004-05-14  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
34820
34821         * gst-libs/gst/riff/riff-read.c :
34822           - fix INFO tag extraction in RIFF/AVI files
34823             because gst_event_unref (event) also freed taglist
34824           - avoid a mem leak
34825
34826 2004-05-13  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
34827
34828         * ext/mad/gstid3tag.c : move from "Codec/(Dem/M)uxer" to "Codec/(Dem/M)uxer/Audio"
34829         * gst/wavenc/gstwavenc.c : move from "Codec/Encoder/Audio" to "Codec/Muxer/Audio"
34830
34831         * gst/auparse/gstauparse.c :
34832           - add code (commented for now) to support audio/x-adpcm on src pad
34833             (we have no decoder for those layout yet)
34834
34835         * gst/cdxaparse/gstcdxaparse.c :
34836         * gst/cdxaparse/gstcdxaparse.h :
34837           - partial rewrite using RiffRead (ripped iain's wavparse code)
34838
34839         * gst/rtp/gstrtpL16enc.c : typo
34840         * gst/rtp/gstrtpgsmenc.c : typo
34841
34842 2004-05-13  Benjamin Otte  <otte@gnome.org>
34843
34844         * configure.ac:
34845           check for exact version of libvisual, it's not supposed to be
34846           API/ABI stable yet
34847
34848 2004-05-13  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34849
34850         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
34851           signal no-more-pads
34852
34853 2004-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
34854
34855         * ext/dv/gstdvdec.c: (gst_dvdec_src_convert)
34856         Report which format was used for GST_FORMAT_DEFAULT
34857         * gst/debug/Makefile.am:
34858         * gst/debug/gstdebug.c: (plugin_init):
34859         * gst/debug/progressreport.c: (gst_progressreport_base_init),
34860         (gst_progressreport_class_init), (gst_progressreport_init),
34861         (gst_progressreport_report), (gst_progressreport_set_property),
34862         (gst_progressreport_get_property), (gst_progressreport_chain),
34863         (gst_progressreport_plugin_init):
34864         Add progressreport element for testing.
34865
34866 2004-05-13  Thomas Vander Stichele  <thomas at apestaart dot org>
34867
34868         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_change_state):
34869         * sys/v4l/gstv4lsrc.h:
34870         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
34871         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
34872         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init),
34873         (gst_v4lsrc_grab_frame):
34874           add more debugging
34875           send a discont at start
34876
34877 2004-05-12  Colin Walters  <walters@redhat.com>
34878
34879         * gst/asfdemux/gstasfdemux.c (gst_asf_demux_process_segment): Avoid
34880         inflooping if we can't find a chunk.  Or in other words, don't blow
34881         chunks if we don't have a chunk to blow.
34882
34883 2004-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
34884         * ext/audiofile/gstafsrc.c: (gst_afsrc_get):
34885         Remove old debug output
34886         * ext/dv/gstdvdec.c: (gst_dvdec_quality_get_type),
34887         (gst_dvdec_class_init), (gst_dvdec_loop), (gst_dvdec_change_state),
34888         (gst_dvdec_set_property), (gst_dvdec_get_property):
34889         Change the quality setting to an enum, so it works from gst-launch
34890         Don't renegotiate a non-linked pad. Allows audio only decoding.
34891         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_getcaps),
34892         (gst_deinterlace_link), (gst_deinterlace_init):
34893         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
34894         (gst_videodrop_link):
34895         Some caps negotiation fixes
34896
34897 2004-05-12  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
34898
34899         * ext/tarkin/gsttarkin.c :
34900           - Change RANK from NONE to PRIMARY
34901         * ext/gdk_pixbuf/gstgdkpixbuf.c :
34902           - Change RANK from NONE to MARGINAL
34903         * ext/divx/gstdivxenc.c :
34904           - Change RANK from PRIMARY to NONE (encoder/spider issue)
34905
34906 2004-05-12  Thomas Vander Stichele  <thomas at apestaart dot org>
34907
34908         * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
34909         (gst_vorbisenc_push_packet):
34910           copy a function that was added between 1.0 and 1.0.1 until we
34911           depend on worthwhile features of post-1.0
34912
34913 2004-05-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34914
34915         * configure.ac:
34916           enable shout2 by default
34917         * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
34918         (gst_shout2send_base_init), (gst_shout2send_init),
34919         (gst_shout2send_connect), (gst_shout2send_change_state):
34920         * ext/shout2/gstshout2.h:
34921           make this work again. Based on a patch by Zaheer Abbas Merali (fixes
34922           #142262)
34923         * ext/theora/theora.c: (plugin_init):
34924           don't set rank on encoders
34925
34926 2004-05-11  Jeremy Simon  <jesimon@libertysurf.fr>
34927
34928         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
34929           Use codec_data property instead of flag1 and flag2 for wma
34930
34931 2004-05-11  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
34932
34933         * gst/cdxaparse/gstcdxaparse.c :
34934           - Add mpegversion to CAPS to make it link
34935           - Rank is as GST_RANK_SECONDARY instead of NONE
34936         * gst/auparse/gstauparse.c :
34937           - Document all audio encoding we can encounter from Solaris 9
34938             headers and libsndfile information.
34939           - Increase max. rate from 48000 to 192000 (to match other elements)
34940           - Don't try to play junk data between header and samples
34941
34942 2004-05-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34943
34944         * ext/libvisual/visual.c: (gst_visual_getcaps):
34945           use the right caps depending on endianness (I hope)
34946         * ext/ogg/gstoggmux.c: (gst_ogg_mux_plugin_init):
34947           use GST_RANK_NONE for all non-decoding elements or spider gets
34948           mighty confused
34949
34950 2004-05-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34951
34952         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
34953           Fix some odd cases and fix BE metadata parsing of unicode16 text.
34954
34955 2004-05-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34956
34957         * gst/switch/gstswitch.c: (gst_switch_release_pad),
34958         (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
34959         (gst_switch_loop), (gst_switch_get_type):
34960           whoever that was: DO NOT IMPORT PRIVATE SYMBOLS THAT ARE NOT IN
34961           HEADERS. Had to be said.
34962
34963 2004-05-10  David Schleef  <ds@schleef.org>
34964
34965         * configure.ac: Add prototype Dirac support.
34966         * ext/Makefile.am:
34967         * ext/dirac/Makefile.am:
34968         * ext/dirac/gstdirac.cc:
34969         * ext/dirac/gstdiracdec.cc:
34970
34971 2004-05-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34972
34973         * gst/auparse/gstauparse.c: (gst_auparse_class_init),
34974         (gst_auparse_init), (gst_auparse_chain),
34975         (gst_auparse_change_state):
34976           Hack around spider. Remove me some day please.
34977
34978 2004-05-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34979
34980         * gst/auparse/gstauparse.c: (gst_auparse_chain):
34981           Fix for some uninitialized variables in previous patch, also
34982           makes it work. Fixes #142286 while we're at it.
34983
34984 2004-05-11  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
34985
34986         * gst/auparse/gstauparse.c:
34987                 fixes a-law, adds mu-law, linear pcm (8,16,24,32), ieee (32, 64)
34988                 only unsupported formats are ADPCM/CCITT G.72x
34989                 reviewed by Ronald
34990         * gst-libs/gst/audio/audio.h: adds 24bit depth to PCM (x-raw-int)
34991
34992 2004-05-10  Wim Taymans  <wim@fluendo.com>
34993
34994         * ext/vorbis/Makefile.am:
34995         * ext/vorbis/README:
34996         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_formats),
34997         (oggvorbisenc_get_type), (vorbis_caps_factory), (raw_caps_factory),
34998         (gst_oggvorbisenc_base_init), (gst_oggvorbisenc_class_init),
34999         (gst_oggvorbisenc_sinkconnect), (gst_oggvorbisenc_convert_src),
35000         (gst_oggvorbisenc_convert_sink),
35001         (gst_oggvorbisenc_get_query_types), (gst_oggvorbisenc_src_query),
35002         (gst_oggvorbisenc_init), (gst_oggvorbisenc_get_tag_value),
35003         (gst_oggvorbisenc_metadata_set1), (gst_oggvorbisenc_set_metadata),
35004         (get_constraints_string), (update_start_message),
35005         (gst_oggvorbisenc_setup), (gst_oggvorbisenc_write_page),
35006         (gst_oggvorbisenc_chain), (gst_oggvorbisenc_get_property),
35007         (gst_oggvorbisenc_set_property), (gst_oggvorbisenc_change_state):
35008         * ext/vorbis/oggvorbisenc.h:
35009         * ext/vorbis/vorbis.c: (plugin_init):
35010         * ext/vorbis/vorbisenc.c: (vorbis_caps_factory),
35011         (raw_caps_factory), (gst_vorbisenc_class_init),
35012         (gst_vorbisenc_init), (gst_vorbisenc_setup),
35013         (gst_vorbisenc_push_packet), (gst_vorbisenc_chain),
35014         (gst_vorbisenc_get_property), (gst_vorbisenc_set_property):
35015         * ext/vorbis/vorbisenc.h:
35016         Added a raw vorbis encoder to be used with the oggmuxer.
35017         We still need the old encoder for some gnome applications,
35018         read the README to find out how that works.
35019         The raw encoder is called "rawvorbisenc" until 0.9.
35020
35021 2004-05-10  Wim Taymans  <wim@fluendo.com>
35022
35023         * ext/ogg/gstogg.c: (plugin_init):
35024         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init),
35025         (gst_ogg_print):
35026         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type),
35027         (gst_ogg_mux_base_init), (gst_ogg_mux_class_init),
35028         (gst_ogg_mux_get_sink_event_masks), (gst_ogg_mux_init),
35029         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_pad_link),
35030         (gst_ogg_mux_pad_unlink), (gst_ogg_mux_request_new_pad),
35031         (gst_ogg_mux_handle_src_event), (gst_ogg_mux_next_buffer),
35032         (gst_ogg_mux_push_page), (gst_ogg_mux_compare_pads),
35033         (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop),
35034         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property),
35035         (gst_ogg_mux_change_state), (gst_ogg_mux_plugin_init):
35036         Added an ogg muxer.
35037         Small typo fixes in the demuxer.
35038
35039 2004-05-10  Wim Taymans  <wim@fluendo.com>
35040
35041         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
35042         (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
35043         (theora_enc_change_state), (theora_enc_set_property),
35044         (theora_enc_get_property):
35045         Mark the last packet with an EOS flag which is not really needed
35046         in gstreamer.
35047         Do some better video framerate initialisation.
35048         Update the buffer timestamp.
35049
35050 2004-05-10  Jan Schmidt  <thaytan@mad.scientist.com>
35051
35052         * ext/dv/gstdvdec.c: (gst_dvdec_change_state):
35053         Return the result of the parent state change call
35054
35055 2004-05-10  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35056
35057         * gst/law/alaw.c : alawdec should be registered with type ALAWDEC, not ALAWENC
35058         * gst/law/alaw-decode.c : put audio/x-alaw on pads, instead of audio/x-mulaw
35059         * gst/law/alaw-encode.c : (idem)
35060         * ext/a52dec/gsta52dec.c : mark audio/a52, audio/ac3 as deprecated in a comment
35061         * gst/ac3parse/gstac3parse.c : audio/ac3 => audio/x-ac3
35062         * gst/realmedia/rmdemux.c : audio/a52 => audio/x-ac3
35063
35064 2004-05-09  Benjamin Otte  <otte@gnome.org>
35065
35066         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
35067           don't use a fixed buffer size when writing variable length data to
35068           it. Fixes memory corruption and makes alsasrc work
35069
35070 2004-05-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35071
35072         * ext/gnomevfs/gstgnomevfssink.c:
35073         (_gst_boolean_allow_overwrite_accumulator),
35074         (gst_gnomevfssink_class_init), (gst_gnomevfssink_open_file):
35075           Run glib's default signal handler (??) in RUN_CLEANUP rather than
35076           RUN_LAST, and don't use that to set the accumulator value because
35077           then it's always FALSE.
35078
35079 2004-05-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35080
35081         * gst-libs/gst/riff/riff-media.c:
35082         (gst_riff_create_video_caps_with_data),
35083         (gst_riff_create_audio_caps),
35084         (gst_riff_create_audio_template_caps):
35085         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
35086           Fix for unaligned RIFF files (i.e. where all the chunks together
35087           in a LIST chunk are not of the same size as the size given in
35088           the LIST chunk header). Fixes several odd WAVE files. Also fix
35089           ADPCM (block_align property) in audio, so that wavparse based
35090           on this works now as it used to stand-alone.
35091
35092 2004-05-09  Edward Hervey  <bilboed@bilboed.com>
35093
35094         reviewed by Benjamin Otte  <otte@gnome.org>
35095
35096         * ext/a52dec/gsta52dec.c:
35097         * ext/divx/gstdivxdec.c:
35098         * ext/divx/gstdivxenc.c:
35099         * ext/dts/gstdtsdec.c: (gst_dtsdec_base_init):
35100         * ext/faac/gstfaac.c: (gst_faac_base_init):
35101         * ext/faad/gstfaad.c: (gst_faad_base_init):
35102         * ext/ivorbis/vorbisfile.c:
35103         * ext/lame/gstlame.c:
35104         * ext/libfame/gstlibfame.c:
35105         * ext/mpeg2enc/gstmpeg2enc.cc:
35106         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_base_init):
35107         * ext/sidplay/gstsiddec.cc:
35108         * ext/speex/gstspeexdec.c:
35109         * ext/speex/gstspeexenc.c:
35110         * ext/xvid/gstxviddec.c:
35111         * ext/xvid/gstxvidenc.c:
35112           correct klasses. Mostly s,Codec/(Audio|Video),\1/Codec,
35113           (fixes #142193)
35114
35115 2004-05-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35116
35117         * ext/alsa/gstalsa.c: (device_list),
35118         (gst_alsa_class_probe_devices):
35119         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
35120           Fix alsa oddness in mixer after the combination of using mixer
35121           in source/sink elements and using hw:x,y instead of just hw:x.
35122
35123 2004-05-09  Benjamin Otte  <otte@gnome.org>
35124
35125         * gst/wavparse/gstwavparse.c: (gst_wavparse_destroy_sourcepad),
35126         (gst_wavparse_create_sourcepad):
35127           make PAUSED=>READY=>PAUSED=READY work by not destroying NULL
35128           sourcepads
35129
35130 2004-05-09  Benjamin Otte  <otte@gnome.org>
35131
35132         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
35133           allow discont events before caps nego
35134
35135 2004-05-08  Benjamin Otte  <otte@gnome.org>
35136
35137         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
35138           don't leak events
35139
35140 2004-05-08  Benjamin Otte  <otte@gnome.org>
35141
35142         * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
35143         (gst_level_change_state), (gst_level_init):
35144         * gst/level/gstlevel.h:
35145           figure out if we're initialized directly instead of keeping a
35146           variable that's wrong in 90% of cases
35147           don't initialize pads and then leak them and use a new unitialized
35148           pad. (fixes #142084)
35149           these were bugs so n00bish I didn't find them for an hour :/
35150
35151 2004-05-08 Iain <iain@prettypeople.org>
35152
35153         * gst/wavparse/gstwavparse.[ch]: Rewrote to use RiffRead instead.
35154         * gst-libs/gst/riff/riff-read.c (gst_riff_read_peek_head): Unstatic it
35155         (gst_riff_read_element_data): Ditto, and added a got_bytes argument to
35156         return the length that was read.
35157         (gst_riff_read_strf_auds): Allow fmt tags as well.
35158
35159 2004-05-07  David Schleef  <ds@schleef.org>
35160
35161         * ext/faad/gstfaad.c: (gst_faad_sinkconnect): HACK to correct
35162         signed char assumption in faad.h.
35163
35164 2004-05-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35165
35166         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps):
35167           Missing break, detected by Daniel Gazard <daniel.gazard@free.fr>.
35168
35169 2004-05-07  Colin Walters  <walters@redhat.com>
35170
35171         * gst/volume/gstvolume.c (gst_volume_dispose): Unref dpman.
35172         * ext/flac/gstflacdec.c (gst_flacdec_dispose): Add dispose
35173         function.
35174         * gst/audioscale/gstaudioscale.c (gst_audioscale_dispose):
35175         Add dispose function.
35176
35177 2004-05-08  Jan Schmidt  <thaytan@mad.scientist.com>
35178         * ext/dv/gstdvdec.c: (gst_dvdec_video_link):
35179           Fix caps nego and pad templates. RGB mode caps should
35180           work now.
35181         * ext/dvdnav/gst-dvd:
35182           Move mpeg2dec inside the thread because otherwise the
35183           queue rejects cap changes mid-stream
35184         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
35185         (gst_mpeg2dec_flush_decoder):
35186           For mpeg2dec > 0.4.0, call the flush function instead of
35187           manually extracting all in-flight frames.
35188         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_factory),
35189         (gst_dv1394src_init), (gst_dv1394src_iso_receive):
35190           Change mime type video/dv go video/x-dv to match the
35191           rest of gst-plugins
35192
35193 2004-05-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35194
35195         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
35196         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_type),
35197         (gst_alsa_sink_class_init):
35198         * ext/alsa/gstalsasink.h:
35199         * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_type),
35200         (gst_alsa_src_class_init):
35201         * ext/alsa/gstalsasrc.h:
35202           Make alsasink/src a subclass of alsamixer so that mixer stuff
35203           shows up in gst-rec. Needs some finetuning.
35204
35205 2004-05-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35206
35207         * ext/lame/gstlame.c: (gst_lame_chain):
35208           simplify
35209         * ext/mad/gstmad.c: (gst_mad_handle_event):
35210           fix event leak
35211         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
35212           be able to detect mp3 files < 4096 bytes
35213
35214 2004-05-06  Wim Taymans  <wim@fluendo.com>
35215
35216         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
35217         (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
35218         (theora_enc_set_property), (theora_enc_get_property):
35219         Also encode the first frame, cleanup some code.
35220
35221 2004-05-06  Wim Taymans  <wim@fluendo.com>
35222
35223         * ext/mpeg2enc/gstmpeg2enc.cc:
35224         Forward events first before deciding that negotiation was
35225         not performed.
35226
35227 2004-05-06  Wim Taymans  <wim@fluendo.com>
35228
35229         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
35230         First process the events before deciding that negotiation
35231         was not performed.
35232
35233 2004-05-06  Wim Taymans  <wim@fluendo.com>
35234
35235         * ext/theora/Makefile.am:
35236         * ext/theora/theora.c: (plugin_init):
35237         * ext/theora/theoradec.c: (theora_dec_change_state):
35238         * ext/theora/theoraenc.c: (gst_theora_enc_base_init),
35239         (gst_theora_enc_class_init), (gst_theora_enc_init),
35240         (theora_enc_sink_link), (theora_enc_event), (theora_push_packet),
35241         (theora_enc_chain), (theora_enc_change_state),
35242         (theora_enc_set_property), (theora_enc_get_property):
35243         Added a theora encoder, grouped the encoder and decoder into the
35244         same plugin.
35245
35246 2004-05-05  Thomas Vander Stichele  <thomas at apestaart dot org>
35247
35248         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
35249         (gst_jpegenc_chain):
35250         fix DURATION on outgoing buffers
35251         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
35252         debug using time formats
35253         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
35254         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
35255         (gst_xvimagesink_sink_link):
35256         windows with width/height 0 generate X errors, so don't allow them
35257
35258 2004-05-05  Wim Taymans  <wim@fluendo.com>
35259
35260         * ext/mpeg2dec/gstmpeg2dec.c: (src_templ),
35261         (gst_mpeg2dec_base_init), (gst_mpeg2dec_init),
35262         (gst_mpeg2dec_negotiate_format):
35263         * ext/mpeg2dec/gstmpeg2dec.h:
35264           removed the static pad template so that we can add the
35265           more accurate framerate value to the caps.
35266
35267
35268 2004-05-04  Benjamin Otte  <otte@gnome.org>
35269
35270         * configure.ac:
35271           check for kdemacros.h, too (should fix #141821)
35272         * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
35273           don't crash if no header was sent, but nicely error out (fixes part
35274           of #141554)
35275
35276 2004-05-04  Wim Taymans  <wim@fluendo.com>
35277
35278         * ext/mpeg2enc/gstmpeg2enc.cc: (gst_mpeg2enc_dispose): call the
35279         parent dispose function to avoid segfault on destroy.
35280
35281 2004-05-04  Thomas Vander Stichele  <thomas at apestaart dot org>
35282
35283         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
35284         (plugin_init):
35285         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
35286         (gst_xvimagesink_sink_link):
35287         clean up debugging caps
35288         also recreate xvimage when format has changed
35289
35290 2004-05-04  Benjamin Otte  <otte@gnome.org>
35291
35292         * ext/libvisual/Makefile.am:
35293         * ext/libvisual/visual.c: (gst_visual_class_init),
35294         (gst_visual_init), (gst_visual_dispose), (gst_visual_getcaps),
35295         (gst_visual_srclink), (gst_visual_chain),
35296         (gst_visual_change_state), (plugin_init):
35297           use a GstAdapter to correctly adapt buffer sizes - allows using a
35298           framerate
35299
35300 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
35301
35302         * sys/v4l/gstv4lelement.h:
35303         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
35304         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps), (gst_v4lsrc_getcaps),
35305         (gst_v4lsrc_buffer_free):
35306         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities):
35307         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
35308         (gst_v4lsrc_sync_frame), (gst_v4lsrc_grab_frame),
35309         (gst_v4lsrc_requeue_frame):
35310         move some debugging categories around
35311         query for fps index and set accordingly if found
35312
35313 2004-05-03  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35314
35315         * ext/lame/gstlame.c:
35316         correct defaults that lame_init puts out of range
35317
35318 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
35319
35320         * ext/divx/gstdivxenc.c: (gst_divxenc_get_type),
35321         (gst_divxenc_class_init):
35322         fix range since -1 is the default
35323         * gst/mpeg1sys/gstmpeg1systemencode.c:
35324         (gst_mpeg1_system_encode_get_type), (gst_system_encode_multiplex):
35325         * gst/rtjpeg/gstrtjpegdec.c: (gst_rtjpegdec_get_type),
35326         (gst_rtjpegdec_chain):
35327         * gst/rtjpeg/gstrtjpegenc.c: (gst_rtjpegenc_get_type),
35328         (gst_rtjpegenc_chain):
35329         * sys/qcam/gstqcamsrc.c: (gst_autoexp_mode_get_type),
35330         (gst_qcamsrc_get_type), (gst_qcamsrc_change_state):
35331         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_get_type):
35332         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_type):
35333         * sys/v4l/gstv4lsrc.c:
35334         * sys/v4l/v4l_calls.c: (gst_v4l_open):
35335         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
35336         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
35337         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init):
35338         * sys/vcd/vcdsrc.c: (vcdsrc_get_type), (vcdsrc_get):
35339           remove gst_info calls
35340
35341 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
35342
35343         * Makefile.am:
35344         * po/af.po:
35345         * po/az.po:
35346         * po/en_GB.po:
35347         * po/nl.po:
35348         * po/sr.po:
35349         * po/sv.po:
35350           Updated translations
35351
35352 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
35353
35354         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
35355           refactor/comment code
35356
35357 2004-05-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35358
35359         * gst/asfdemux/Makefile.am:
35360         * gst/asfdemux/asfheaders.c:
35361         * gst/asfdemux/asfheaders.h:
35362         * gst/asfdemux/gstasf.c: (plugin_init):
35363         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_get_type),
35364         (gst_asf_demux_base_init), (gst_asf_demux_process_comment),
35365         (gst_asf_demux_setup_pad):
35366         * gst/asfdemux/gstasfdemux.h:
35367         * gst/asfdemux/gstasfmux.c:
35368         * gst/asfdemux/gstasfmux.h:
35369           Add tagging support to demuxer, split out registration in its own
35370           file instead of in demux (hacky), and prevent having some tables
35371           in our memory multiple times (in asfheaders.h).
35372
35373 2004-05-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35374
35375         * gst/matroska/matroska-demux.c:
35376         (gst_matroska_demux_parse_metadata):
35377         * gst/matroska/matroska-ids.h:
35378           Basic tag reading support.
35379
35380 2004-04-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35381
35382         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
35383           Really detect ac-3 audio.
35384         * gst/typefind/gsttypefindfunctions.c: (matroska_type_find):
35385           really detect matroska files (off-by-1).
35386
35387 2004-04-30  David Schleef  <ds@schleef.org>
35388
35389         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
35390         (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_type_get),
35391         (qtdemux_dump_stsz), (qtdemux_dump_stco), (qtdemux_dump_co64),
35392         (qtdemux_dump_unknown), (qtdemux_parse_tree), (qtdemux_parse_udta),
35393         (qtdemux_tag_add), (get_size), (gst_qtdemux_handle_esds): More qtdemux
35394         hackage -- parse a lot more atoms, extract a few tags.  One might even
35395         mistake this for tag support.  Maybe it is.
35396         * gst/qtdemux/qtdemux.h:
35397
35398 2004-04-30  Colin Walters  <walters@verbum.org>
35399
35400         * ext/alsa/gstalsasink.c (gst_alsa_sink_mmap): Plug a memleak.
35401
35402 2004-04-30  Thomas Vander Stichele  <thomas at apestaart dot org>
35403
35404         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
35405         (gst_ffmpegcolorspace_getcaps):
35406           remove broken nego fix
35407
35408 2004-04-30  Benjamin Otte  <otte@gnome.org>
35409
35410         * configure.ac:
35411         * ext/Makefile.am:
35412         * ext/libvisual/Makefile.am:
35413         * ext/libvisual/visual.c:
35414           add initial support for libvisual (http://libvisual.sourceforge.net)
35415           libvisual is still quite alpha, so expect crashes in there :)
35416
35417 2004-04-29  David Schleef  <ds@schleef.org>
35418
35419         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream), (qtdemux_parse),
35420         (qtdemux_parse_trak), (get_size), (gst_qtdemux_handle_esds): Hacked
35421         up qtdemux to make it spit out codec_data.  Do _not_ look at this
35422         code; you will no longer respect me.
35423
35424 2004-04-29  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35425
35426         * ext/alsa/gstalsa.c : (gst_alsa_class_probe_devices)
35427         * ext/alsa/gstalsa.h :
35428         change alsa pcm device discovery to find more than 1 device
35429         per card. code review by Ronald.
35430
35431 2004-04-29  David Schleef  <ds@schleef.org>
35432
35433         * sys/oss/gstosselement.c: (gst_osselement_rate_probe_check):
35434         Add a check for a driver bug on FreeBSD.  (bug #140565)
35435
35436 2004-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
35437
35438         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_get_type):
35439         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
35440         (gst_jpegenc_getcaps):
35441           move format setting to inner loop
35442         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
35443         (gst_ffmpegcolorspace_getcaps):
35444           use GST_PAD_CAPS if available so that we use already negotiated
35445           caps
35446         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
35447         (qtdemux_parse_moov), (qtdemux_parse):
35448           extra debugging
35449         * sys/qcam/qcam-Linux.c: (qc_lock_wait), (qc_unlock):
35450         * sys/qcam/qcam-os.c: (qc_lock_wait), (qc_unlock):
35451           move hardcoded path to DEFINE
35452
35453 2004-04-28  David Schleef  <ds@schleef.org>
35454
35455         * gst/speed/gstspeed.c: (speed_parse_caps):  Fix caps parsing.
35456         (bug #140064)
35457
35458 2004-04-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35459
35460         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
35461           Don't probe for playback device if we're a source element. Fixes
35462           #139658.
35463
35464 2004-04-29  Benjamin Otte  <otte@gnome.org>
35465
35466         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
35467         (gst_id3_tag_chain):
35468           rewrite buffer offset
35469
35470 2004-04-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35471
35472         * configure.ac:
35473         * ext/Makefile.am:
35474         * ext/dts/Makefile.am:
35475         * ext/dts/gstdtsdec.c: (gst_dtsdec_get_type),
35476         (gst_dtsdec_base_init), (gst_dtsdec_class_init), (gst_dtsdec_init),
35477         (gst_dtsdec_channels), (gst_dtsdec_renegotiate),
35478         (gst_dtsdec_handle_event), (gst_dtsdec_update_streaminfo),
35479         (gst_dtsdec_loop), (gst_dtsdec_change_state),
35480         (gst_dtsdec_set_property), (gst_dtsdec_get_property),
35481         (plugin_init):
35482         * ext/dts/gstdtsdec.h:
35483           New DTS decoder.
35484         * ext/faad/gstfaad.c: (gst_faad_sinkconnect),
35485         (gst_faad_srcconnect):
35486           Add ESDS atom handling (.m4a).
35487
35488 2004-04-27  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35489
35490         * ext/divx/gstdivxdec.c: (plugin_init):
35491           Remove comment that makes no sense.
35492         * ext/mad/gstid3tag.c: (gst_id3_tag_set_property):
35493           Fix for obvious typo that resulted in warnings during gst-register.
35494         * ext/xvid/gstxviddec.c: (gst_xviddec_src_link),
35495         (gst_xviddec_sink_link):
35496           Fix caps negotiation a bit better.
35497         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
35498           We call this 'codec_data', not 'esds'.
35499
35500 2004-04-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35501
35502         * gst/monoscope/gstmonoscope.c:
35503           make sure we only provide 256x128
35504         * gst/monoscope/monoscope.c: (monoscope_init):
35505           assert size of 256x128
35506
35507 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
35508
35509         * Makefile.am:
35510         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_fixate),
35511         (gst_v4lsrc_getcaps), (gst_v4lsrc_buffer_free):
35512           fixate to max width and height of device
35513
35514 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
35515
35516         * Makefile.am:
35517         * sys/v4l/gstv4l.c:
35518         * sys/v4l/gstv4lsrc.c:
35519         * sys/v4l/v4l_calls.c:
35520         * sys/v4l/v4lsrc_calls.c:
35521           fix for qc-usb driver which fakes having more than one buffer
35522           by handing the same buffer twice, which confused GStreamer's/v4lsrc
35523           buffer_free override
35524           add debugging
35525
35526 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
35527
35528         * Makefile.am:
35529         * gst/videotestsrc/gstvideotestsrc.c:
35530         (gst_videotestsrc_class_init), (gst_videotestsrc_change_state),
35531         (gst_videotestsrc_init), (gst_videotestsrc_get),
35532         (gst_videotestsrc_set_property), (gst_videotestsrc_get_property):
35533         * gst/videotestsrc/gstvideotestsrc.h:
35534           add num-buffers property
35535
35536         2004-04-26  Benjamin Otte  <otte@gnome.org>
35537
35538         * ext/mad/gstid3tag.c: (plugin_init):
35539           set id3mux rank to NONE so it doesn't confuse spider
35540           require audio/mpeg,mpegversion=1 in id3mux
35541
35542 2004-04-26  Benjamin Otte  <otte@gnome.org>
35543
35544         * configure.ac:
35545           detect faad correctly as non-working if it's indeed non-working
35546
35547 2004-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
35548
35549         * Makefile.am:
35550         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
35551         (gst_jpegenc_class_init), (gst_jpegenc_getcaps):
35552         fix _getcaps so it only negotiates to its supported format
35553
35554 2004-04-25  Benjamin Otte  <otte@gnome.org>
35555
35556         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
35557           fix memleak
35558
35559 2004-04-23  Benjamin Otte  <otte@gnome.org>
35560
35561         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
35562           audio/x-raw-int with height rules! not. Now it's depth.
35563
35564 2004-04-22  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35565
35566         * gst/wavparse/gstwavparse.c: (gst_wavparse_create_sourcepad),
35567         (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
35568         (gst_wavparse_loop):
35569           Missing variable initialization. Add handling of DVI ADPCM. Fix
35570           mis-parsing of LIST chunks. This works around a bug where we mis-
35571           parse non-aligning LIST chunks (so LIST chunks where the contents
35572           don't align with the actual LIST size). The correct fix is to use
35573           rifflib, I'm not going to fix wavparse - too much work. All this
35574           fixes #104878.
35575
35576 2004-04-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
35577
35578         reviewed by Benjamin Otte  <otte@gnome.org>
35579
35580         * ext/shout/gstshout.c: (gst_icecastsend_change_state):
35581           fix shoutcast not working (fixes #140844)
35582
35583 2004-04-22  Benjamin Otte  <otte@gnome.org>
35584
35585         * ext/hermes/gsthermescolorspace.c:
35586         (gst_hermes_colorspace_caps_remove_format_info):
35587         * gst/colorspace/gstcolorspace.c:
35588         (gst_colorspace_caps_remove_format_info):
35589         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
35590         (gst_ffmpegcolorspace_caps_remove_format_info):
35591           s/gst_caps_simplify/gst_caps_do_simplify/
35592
35593 2004-04-22  Benjamin Otte  <otte@gnome.org>
35594
35595         * gst-libs/gst/riff/riff-media.c:
35596         (gst_riff_create_video_caps_with_data):
35597           mpegversion is an int
35598         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init):
35599           don't try to create pad templates with NULL caps, use any caps
35600           instead.
35601
35602 2004-04-20  David Schleef  <ds@schleef.org>
35603
35604         * ext/sdl/Makefile.am: Link against libgstinterfaces, not
35605         libgstxoverlay.  jmmv@menta.net (Julio M. Merino Vidal)
35606         (bug #140384)
35607
35608 2004-04-20  Daniel Gazard  <daniel.gazard@epita.fr>
35609
35610         reviewed by David Schleef
35611
35612         * ext/mad/gstid3tag.c: Add stdlib.h
35613         * gst/rtp/gstrtpgsmenc.c: same
35614         * gst/tags/gstid3tag.c: same
35615         * gst/udp/gstudpsrc.c: (gst_udpsrc_get): Fix GST_DISABLE_LOADSAVE
35616         * gst/tcp/gsttcpsink.c: (gst_tcpsink_sink_link): Adjust
35617         GST_DISABLE_LOADSAVE use.
35618         * gst/udp/gstudpsink.c: (gst_udpsink_sink_link): Likewise.
35619         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get): Likewise.
35620         * ext/gnomevfs/gstgnomevfssrc.c: Include <stdlib.h> (needed by
35621         atol(3)).
35622         * sys/oss/gstosselement.h: Include <sys/types.h> (needed for dev_t).
35623         * gst/tags/gstvorbistag.c: Include <stdlib.h> (needed by
35624         strtoul(3)).
35625         * gst/rtp/gstrtpL16enc.c: Include <stdlib.h> (needed by random(3)).
35626         * ext/mad/Makefile.am: (libgstmad_la_CFLAGS): Add $(MAD_CFLAGS)
35627         $(ID3_CFLAGS).
35628         * ext/libfame/Makefile.am: (libgstlibfame_la_CFLAGS): Add
35629         $(LIBFAME_CFLAGS).
35630
35631 2004-04-20  David Schleef  <ds@schleef.org>
35632
35633         * gst/realmedia/rmdemux.c:  This was supposed to part of the
35634         last checkin.  Same idea.
35635
35636 2004-04-20  Daniel Gazard  <daniel.gazard@epita.fr>
35637
35638         reviewed by David Schleef
35639
35640         * configure.ac: bump required gstreamer version to 0.8.1.1
35641         because of following changes [--ds]
35642
35643         * gst-libs/gst/riff/riff-read.c:  Include gst/gstutils.h.
35644         (gst_riff_peek_head, gst_riff_peek_list, gst_riff_read_list)
35645         (gst_riff_read_header):  Use GST_READ_UINT*
35646         macros to access possibly unaligned memory.
35647
35648         * gst/typefind/gsttypefindfunctions.c: Include gst/gstutils.h.
35649         (mp3_type_find):  Use GST_READ_UINT*
35650         macros to access possibly unaligned memory.
35651         (mp3_type_find, mpeg1_parse_header, qt_type_find)
35652         (speex_type_find): Likewise
35653
35654         * gst/tags/gstvorbistag.c: (ADVANCE): Likewise
35655
35656         * gst/qtdemux/qtdemux.c: Include stdlib.h (needed by realloc).
35657         (QTDEMUX_GUINT32_GET, QTDEMUX_GUINT16_GET, QTDEMUX_FP32_GET)
35658         (QTDEMUX_FP16_GET, QTDEMUX_FOURCC_GET)
35659         (gst_qtdemux_loop_header, gst_qtdemux_loop_header)
35660         (qtdemux_node_dump_foreach, qtdemux_tree_get_child_by_type)
35661         (qtdemux_tree_get_sibling_by_type):  Use GST_READ_UINT*
35662         macros to access possibly unaligned memory.
35663
35664         * gst/mpegstream/gstmpegpacketize.c: (parse_generic, parse_chunk):
35665         Likewise.
35666
35667         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead)
35668         (gst_mpeg_demux_parse_packet, gst_mpeg_demux_parse_pes): Likewise.
35669
35670         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
35671         Likewise.
35672
35673         * gst/mpeg2sub/gstmpeg2subt.c: (GST_BUFFER_DATA)
35674         (gst_mpeg2subt_chain_subtitle): Likewise.
35675
35676         * gst/mpeg1videoparse/gstmp1videoparse.c: (mp1videoparse_parse_seq)
35677         (gst_mp1videoparse_time_code, gst_mp1videoparse_real_chain):
35678         Likewise.
35679
35680         * gst/mpeg1sys/buffer.c: (mpeg1mux_buffer_update_audio_info):
35681         Likewise.
35682
35683         * gst/cdxaparse/gstcdxaparse.c: (gst_bytestream_peek_bytes):
35684         Likewise.
35685
35686         * gst/asfdemux/gstasfdemux.c: (_read_var_length, _read_uint):
35687         Likewise.
35688
35689 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
35690
35691         * configure.ac:
35692           update required version of GStreamer because of GST_TIME_FORMAT
35693
35694 2004-04-20  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35695
35696         * ext/mad/gstid3tag.c: (gst_id3_tag_init):
35697           remove leftover g_print
35698         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
35699           don't try setting only a subset of the caps. We don't want to kill
35700           autoplugging on purpose
35701
35702 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
35703
35704         * sys/ximage/ximagesink.c: (plugin_init):
35705         * sys/xvimage/xvimagesink.c: (plugin_init):
35706           add debugging categories
35707
35708 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
35709
35710         * po/en_GB.po:
35711         * po/LINGUAS:
35712           Adding en_GB translation (Gareth Owen)
35713
35714 2004-04-20  David Schleef  <ds@schleef.org>
35715
35716         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
35717         (qtdemux_parse), (qtdemux_type_get), (qtdemux_dump_mvhd),
35718         (qtdemux_dump_tkhd), (qtdemux_dump_stsd), (qtdemux_dump_unknown),
35719         (qtdemux_parse_trak), (qtdemux_video_caps), (qtdemux_audio_caps):
35720         A number of new features and hacks to extract the esds atom and
35721         put it into the caps.  (bug #137724)
35722
35723 2004-04-19  David Schleef  <ds@schleef.org>
35724
35725         * gconf/Makefile.am: Fix for non-GNU make
35726         * gst-libs/gst/Makefile.am: Change directory order to handle
35727         GstPlay linking with gstinterfaces
35728         * gst-libs/gst/audio/make_filter: make use of tr portable
35729         * gst-libs/gst/play/Makefile.am: Add intended \
35730         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
35731         (gst_xwin_set_clips): Switch to ISO variadic macro. Use a
35732         function prototype instead of void *.
35733         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Switch to ISO variadic
35734         macro.
35735         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
35736         (gst_ffmpegcolorspace_chain): wrap NULL in GST_ELEMENT_ERROR call
35737         * gst/videofilter/make_filter: make use of tr portable
35738         * pkgconfig/Makefile.am: Remove GNU extension in Makefile target
35739
35740 2004-04-19  Thomas Vander Stichele  <thomas at apestaart dot org>
35741
35742         * po/LINGUAS:
35743         * po/uk.po:
35744           Added Ukrainian translation (Maxim V. Dziumanenko)
35745
35746 2004-04-18  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35747
35748         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_getcaps),
35749         (gst_gsmdec_link), (gst_gsmdec_chain):
35750           Fix capsnego, simplify chain function slightly.
35751         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
35752           Add GSM.
35753
35754 2004-04-18  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35755
35756         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
35757         (gst_wavparse_destroy_sourcepad), (gst_wavparse_create_sourcepad),
35758         (gst_wavparse_parse_fmt), (gst_wavparse_change_state):
35759           Hack to make wavparse work with spider (always -> sometimes pad).
35760           Fixes #135862 && #140411.
35761
35762 2004-04-18  Benjamin Otte  <otte@gnome.org>
35763
35764         * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
35765         (gst_osselement_rate_probe_check),
35766         (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate):
35767           get rid of \n in debug output
35768
35769 2004-04-17  Iain <iain@prettypeople.org>
35770
35771         * gst/wavparse/gstwavparse.c (gst_wavparse_loop): Allow all events,
35772         not just EOS.
35773
35774 2004-04-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35775
35776         * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
35777         (gst_id3_tag_class_init), (gst_id3_tag_get_caps),
35778         (gst_id3_tag_add_src_pad), (gst_id3_tag_init),
35779         (gst_id3_tag_set_property), (gst_id3_tag_do_caps_nego),
35780         (gst_id3_tag_src_link), (gst_id3_tag_chain),
35781         (gst_id3_tag_change_state), (plugin_init):
35782           deprecate id3tag element and replace with id3demux/id3mux.
35783           great side effect: this ugly file is now even uglier, yay!
35784         * ext/mad/gstmad.h:
35785           remove non-available function
35786           update for new get_type
35787
35788 2004-04-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35789
35790         * configure.ac:
35791           require mpeg2dec >= 0.4.0
35792
35793 2004-04-17  Benjamin Otte  <otte@gnome.org>
35794
35795         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
35796         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
35797         (gst_xvimagesink_set_xwindow_id):
35798           call GST_ELEMENT_ERROR whenever get_xcontext fails. Includes
35799           assorted cleanup fixes.
35800
35801 2004-04-16  David Schleef  <ds@schleef.org>
35802
35803         * sys/ximage/ximagesink.h: Compile fix for FreeBSD. (bug #140268)
35804         * sys/xvimage/xvimagesink.h: same
35805
35806 2004-04-16  Thomas Vander Stichele  <thomas at apestaart dot org>
35807
35808         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
35809           Fix GST_ELEMENT_ERROR with (NULL)
35810
35811 2004-04-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35812
35813         * gst-libs/gst/riff/riff-media.c:
35814         (gst_riff_create_video_caps_with_data):
35815           Add div[3456] as fourccs for DivX 3 (fixes #140137).
35816
35817 2004-04-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35818
35819         * gst-libs/gst/riff/riff-media.c:
35820         (gst_riff_create_video_caps_with_data),
35821         (gst_riff_create_video_caps), (gst_riff_create_audio_caps),
35822         (gst_riff_create_video_template_caps),
35823         (gst_riff_create_audio_template_caps):
35824         * gst-libs/gst/riff/riff-media.h:
35825         * gst-libs/gst/riff/riff-read.c:
35826         (gst_riff_read_strf_vids_with_data), (gst_riff_read_strf_vids):
35827         * gst-libs/gst/riff/riff-read.h:
35828         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
35829           Add MS RLE support. I added some functions to read out strf chunks
35830           into strf chunks and the data behind it. This is usually color
35831           palettes (as in RLE, but also in 8-bit RGB). Also use those during
35832           caps creation. Lastly, add ADPCM (similar to wavparse - which
35833           should eventually be rifflib based).
35834         * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
35835         (gst_matroska_demux_init), (gst_matroska_demux_reset):
35836         * gst/matroska/matroska-demux.h:
35837           Remove placeholders for some prehistoric tagging system. Didn't add
35838           support for any tag system really anyway.
35839         * gst/qtdemux/qtdemux.c:
35840           Add support for audio/x-m4a (MPEG-4) through spider.
35841         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
35842         (gst_wavparse_loop):
35843           ADPCM support (#135862). Increase max. buffer size because we
35844           cannot split buffers for ADPCM (screws references) and I've seen
35845           files with 2048 byte chunks. 4096 seems safe for now.
35846
35847 2004-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
35848
35849         * configure.ac: bump nano to 1
35850
35851 === release 0.8.1 ===
35852
35853 2004-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
35854
35855         * configure.ac: releasing 0.8.1, "Comforting Sounds"
35856
35857 2004-04-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35858
35859         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
35860           Fix typo in divxversion (3 instead of 4 for "DIVX" fourcc).
35861           Fixes #140058
35862
35863 2004-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
35864
35865         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_plugin_init):
35866           lower rank of dvddemux so that it's not used for mpeg playback.
35867
35868 2004-04-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35869
35870         * configure.ac:
35871           save libs correctly when checking mad
35872
35873 2004-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
35874
35875         * ext/mad/gstid3tag.c: (plugin_init):
35876           lower rank of id3tag as proposed by Benjamin.  Fixes #139926.
35877
35878 2004-04-13  David Schleef  <ds@schleef.org>
35879
35880         * common/m4/gst-feature.m4: Call -config scripts with
35881         --plugin-libs if it is supported.
35882         * gst/avi/gstavimux.c: (gst_avimux_vidsinkconnect): sequences of
35883         JPEG images are image/jpeg.
35884         * gst/debug/Makefile.am:
35885         * gst/debug/negotiation.c: (gst_negotiation_class_init),
35886         (gst_negotiation_getcaps), (gst_negotiation_pad_link),
35887         (gst_negotiation_update_caps), (gst_negotiation_get_property),
35888         (gst_negotiation_plugin_init): Add a property that acts like
35889         filter caps.
35890         * testsuite/gst-lint:  Move license checking to be a standard
35891         test.
35892
35893 2004-04-13  David Schleef  <ds@schleef.org>
35894
35895         * gst/avi/gstavidemux.c: (gst_avi_demux_reset): Fix memleak.
35896         patch from Sebastien Cote (bug #139958)
35897
35898 2004-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
35899
35900         * examples/gstplay/Makefile.am:
35901         * examples/gstplay/player.c: (main):
35902           make the commandline player example use gconf settings
35903
35904 2004-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
35905
35906         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
35907         (gst_cacasink_sinkconnect), (gst_cacasink_init),
35908         (gst_cacasink_chain), (gst_cacasink_open), (gst_cacasink_close):
35909           init/end library during state transition, not object
35910           creation/disposal.  get rid of custom dispose handler.
35911
35912
35913 2004-04-12  Christian Schaller <Uraeus@gnome.org>
35914
35915         * sys/oss/gstosselement.c: s/lstat/stat/ from freeBSD, since it can
35916         be a symlink
35917
35918 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35919
35920         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_data):
35921           Handle JUNK chunks inside data section. Prevents warnings.
35922
35923 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35924
35925         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
35926         (gst_riff_create_video_template_caps):
35927           Add MS video v1.
35928         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
35929         (gst_avi_demux_stream_data):
35930           Add support for "rec-list" chunks.
35931
35932 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35933
35934         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
35935           Fix another codecname mismatch.
35936
35937 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35938
35939         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
35940           Fix divx caps mismatch and move from video/x-jpeg to image/jpeg
35941           so that MJPEG plays back.
35942
35943 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35944
35945         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
35946         (gst_mp1videoparse_real_chain), (gst_mp1videoparse_change_state):
35947         * gst/mpeg1videoparse/gstmp1videoparse.h:
35948           Fix for some slight mis-cuts in buffer parsing, and for some
35949           potential overflows or faults-causers. Adds disconts. Also fixes
35950           #139105 while we're at it.
35951
35952 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35953
35954         * configure.ac:
35955         * sys/v4l2/gstv4l2element.h:
35956           Workaround for missing struct v4l2_buffer declaration in Suse 9
35957           and Mandrake 10 linux/videodev2.h header file (#135919).
35958
35959 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35960
35961         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
35962           Bail out if no filename was given.
35963
35964 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35965
35966         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps),
35967         (gst_v4l2_fourcc_from_structure):
35968           Add Y41B/Y42B YUV formats (see #125732), fix Y41P (was typo'ed to
35969           Y41B somewhere).
35970
35971 2004-04-09  Benjamin Otte  <otte@gnome.org>
35972
35973         * ext/gnomevfs/gstgnomevfssink.c:
35974         (_gst_boolean_allow_overwrite_accumulator),
35975         (gst_gnomevfssink_class_init):
35976           fix erase signal - if any handler returns false the file will not be
35977           overwritten. If no handler is connected, the file will not be
35978           overwritten either.
35979           renamed signal to "allow-overwrite"
35980         * ext/mad/gstid3tag.c: (tag_list_to_id3_tag_foreach):
35981           free string when adding it to ID3 failed
35982         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
35983           unref event when done
35984         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
35985           free caps
35986         * gst/typefind/gsttypefindfunctions.c:
35987         (mpeg_video_stream_type_find):
35988           fix invalid read
35989
35990 2004-04-08  David Schleef  <ds@schleef.org>
35991
35992         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
35993         (gst_ffmpegcolorspace_register): Change rank to PRIMARY.
35994
35995 2004-04-08  David Schleef  <ds@schleef.org>
35996
35997         * gst/colorspace/gstcolorspace.c: Don't advertise a conversion
35998         we don't support (bug #139532)
35999
36000 2004-04-07  Thomas Vander Stichele  <thomas at apestaart dot org>
36001
36002         * ext/mad/gstmad.c: (gst_mad_handle_event),
36003         (gst_mad_check_caps_reset), (gst_mad_chain),
36004         (gst_mad_change_state):
36005           only set explicit caps if they haven't been set before for
36006           this stream.  MPEG-audio sample rate/channels aren't allowed
36007           to change in-stream.
36008           Fixes #139382
36009
36010 2004-04-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36011
36012         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_base_init),
36013         (_gst_boolean_did_something_accumulator),
36014         (gst_gnomevfssink_class_init), (gst_gnomevfssink_dispose),
36015         (gst_gnomevfssink_init), (gst_gnomevfssink_set_property),
36016         (gst_gnomevfssink_get_property), (gst_gnomevfssink_open_file),
36017         (gst_gnomevfssink_close_file), (gst_gnomevfssink_chain),
36018         (gst_gnomevfssink_change_state):
36019           Fix erase signal. Don't erase by default. Remove handoff signal.
36020           Remove erase property. Don't segfault. General cleanup.
36021
36022 2004-04-07  Benjamin Otte  <otte@gnome.org>
36023
36024         * gst-libs/gst/gconf/test-gconf.c: (main):
36025           add missing gst_init
36026
36027 2004-04-07  Benjamin Otte  <otte@gnome.org>
36028
36029         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
36030           free the mutexes, too
36031
36032 2004-04-07  Benjamin Otte  <otte@gnome.org>
36033
36034         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
36035           actually free the URI string
36036         * ext/mad/gstid3tag.c: (gst_id3_tag_src_event):
36037           compute offset correctly when passing discont events
36038         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
36039           don't leak discont events
36040         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
36041           add some missing breaks so caps aren't copied randomly
36042         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream):
36043           if we realloc memory, we better use it
36044
36045 2004-04-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36046
36047         * ext/mad/gstmad.c: (normal_seek):
36048           fix GST_FORMAT_TIME usage
36049
36050 2004-04-05  David Schleef  <ds@schleef.org>
36051
36052         * ext/kio/kiosrc.cpp:  Undefine KDE_DEPRECATED so we can use
36053         a deprecated function (hack!)
36054
36055 2004-04-05  Benjamin Otte  <otte@gnome.org>
36056
36057         * ext/esd/esdmon.c: (gst_esdmon_get):
36058           fix nonterminated vararg and memleak
36059
36060 2004-04-05  Benjamin Otte  <otte@gnome.org>
36061
36062         * ext/ladspa/gstladspa.c: (gst_ladspa_class_init),
36063         (gst_ladspa_init), (gst_ladspa_force_src_caps),
36064         (gst_ladspa_set_property), (gst_ladspa_get_property),
36065         (gst_ladspa_instantiate), (gst_ladspa_activate),
36066         (gst_ladspa_deactivate), (gst_ladspa_loop), (gst_ladspa_chain):
36067           clean up debugging
36068
36069 2004-04-05  Stefan Kost <kost@imn.htwk-leipzig.de>
36070
36071         reviewed by Benjamin Otte  <otte@gnome.org>
36072
36073         * ext/ladspa/gstladspa.c: (gst_ladspa_class_init):
36074           check for broken LADSPA parameters (fixes #138635)
36075
36076 2004-04-05  Benjamin Otte  <otte@gnome.org>
36077
36078         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps):
36079           advertise buffer-frames correctly on sinkpads
36080
36081 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
36082
36083         * ext/mad/gstmad.c: (gst_mad_get_type), (gst_mad_layer_get_type),
36084         (gst_mad_mode_get_type), (gst_mad_emphasis_get_type),
36085         (gst_mad_get_event_masks), (gst_mad_get_query_types), (index_seek),
36086         (normal_seek), (gst_mad_src_event), (gst_mad_handle_event),
36087         (gst_mad_check_caps_reset), (gst_mad_chain):
36088         add more debugging, only reset caps when we're not in error state
36089
36090 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
36091
36092         * ext/mad/gstmad.c: add debugging category, comment + cleanups
36093
36094 2004-04-05  Julio M. Merino Vidal  <jmmv@menta.net>
36095
36096         reviewed by Benjamin Otte  <otte@gnome.org>
36097
36098         * configure.ac:
36099           fix == in test(1) operator
36100
36101 2004-04-05  Julio M. Merino Vidal  <jmmv@menta.net>
36102
36103         reviewed by Benjamin Otte  <otte@gnome.org>
36104
36105         * configure.ac:
36106           fix --export-symblos-regex to a working regex.
36107
36108 2004-04-04  Benjamin Otte  <otte@gnome.org>
36109
36110         * sys/oss/.cvsignore:
36111           add for oss_probe
36112
36113 2004-04-03  Tim-Phillip Müller <t.i.m@zen.co.uk>
36114
36115         reviewed by Benjamin Otte  <otte@gnome.org>
36116
36117         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
36118           add missing 'new_media' argument (fixes #138168)
36119         * gst/matroska/matroska-demux.c:
36120         (gst_matroska_demux_handle_seek_event):
36121           add vararg terminator (fixes #138169)
36122
36123 2004-04-02  David Schleef  <ds@schleef.org>
36124
36125         * ext/gdk_pixbuf/Makefile.am:  Make sure gstgdkanimation.h is
36126         disted (bug #138914)
36127
36128 2004-04-01  Benjamin Otte  <otte@gnome.org>
36129
36130         * ext/alsa/gstalsa.c: (gst_alsa_change_state),
36131         (gst_alsa_close_audio):
36132           handle case better where a soundcard can't pause
36133         * ext/ogg/gstoggdemux.c:
36134           don't crash when we get events but don't have pads yet
36135
36136 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
36137
36138         * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
36139           throw an error if we couldn't probe any caps.
36140
36141 2004-04-01  Jan Schmidt  <thaytan@mad.scientist.com>
36142
36143         * ext/dvdnav/gst-dvd:
36144         Add a really simple sample DVD player
36145
36146 2004-04-01  Jan Schmidt  <thaytan@mad.scientist.com>
36147
36148         * ext/a52dec/gsta52dec.c: (gst_a52dec_get_type), (gst_a52dec_init),
36149         (gst_a52dec_push), (gst_a52dec_handle_event),
36150         (gst_a52dec_update_streaminfo), (gst_a52dec_loop),
36151         (gst_a52dec_change_state):
36152         * ext/a52dec/gsta52dec.h:
36153           Use a debug category, Output timestamps correctly
36154           Emit tag info, Handle events, tell liba52dec about cpu
36155           capabilities so it can use MMX etc.
36156         * ext/dv/gstdvdec.c: (gst_dvdec_loop), (gst_dvdec_change_state):
36157           Fix a crasher accessing invalid memory
36158         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init),
36159         (dvdnavsrc_update_highlight), (dvdnavsrc_loop),
36160         (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
36161         (dvdnavsrc_event), (dvdnavsrc_get_formats), (dvdnavsrc_convert),
36162         (dvdnavsrc_query):
36163           Some support for byte-format seeking.
36164           Small fixes for still frames and menu button overlays
36165         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
36166         (gst_mpeg2dec_alloc_buffer):
36167           Use a debug category. Adjust the report level of several items to
36168           LOG. Call mpeg2_custom_fbuf to mark our buffers as 'custom buffers'
36169           so it doesn't lose the GstBuffer pointer
36170         * gst/debug/Makefile.am:
36171         * gst/debug/gstdebug.c: (plugin_init):
36172         * gst/debug/gstnavseek.c: (gst_navseek_get_type),
36173         (gst_navseek_base_init), (gst_navseek_class_init),
36174         (gst_navseek_init), (gst_navseek_seek),
36175         (gst_navseek_handle_src_event), (gst_navseek_set_property),
36176         (gst_navseek_get_property), (gst_navseek_chain),
36177         (gst_navseek_plugin_init):
36178         * gst/debug/gstnavseek.h:
36179           Add the navseek debug element for seeking back and forth in a
36180           video stream using arrow keys.
36181         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_get_type),
36182         (gst_mpeg2subt_base_init), (gst_mpeg2subt_class_init),
36183         (gst_mpeg2subt_init), (gst_mpeg2subt_finalize),
36184         (gst_mpeg2subt_getcaps_video), (gst_mpeg2subt_link_video),
36185         (gst_mpeg2subt_handle_video), (gst_mpeg2subt_src_event),
36186         (gst_mpeg2subt_parse_header), (gst_get_nibble),
36187         (gst_setup_palette), (gst_get_rle_code), (gst_draw_rle_line),
36188         (gst_merge_uv_data), (gst_mpeg2subt_merge_title),
36189         (gst_update_still_frame), (gst_mpeg2subt_handle_subtitle),
36190         (gst_mpeg2subt_handle_dvd_event), (gst_mpeg2subt_loop):
36191         * gst/mpeg2sub/gstmpeg2subt.h:
36192           Pretty much a complete rewrite. Now a loopbased element. May still
36193           require work to properly synchronise subtitle buffers.
36194         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private),
36195         (gst_dvd_demux_send_subbuffer):
36196         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_subbuffer):
36197           Don't attempt to create subbuffers of size 0
36198           Reduce a couple of error outputs to warnings.
36199         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect),
36200         (gst_y4mencode_chain):
36201         Output the y4m frame header correctly.
36202
36203 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
36204
36205         * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
36206           throw errors instead of allowing SIGFPE
36207
36208 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
36209
36210         * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_string),
36211         (gst_gconf_render_bin_from_key):
36212           leak plugging and style fixing
36213
36214 2004-03-31  David Schleef  <ds@schleef.org>
36215
36216         * gst/audioscale/gstaudioscale.c: (gst_audioscale_expand_value),
36217         (gst_audioscale_getcaps): Fix getcaps to expand and union lists.
36218         (bug #138225)
36219         * gst/debug/Makefile.am:
36220         * gst/debug/breakmydata.c: (gst_break_my_data_plugin_init):
36221         * gst/debug/gstdebug.c: (plugin_init):  Merge elements into one
36222         plugin.
36223         * gst/debug/negotiation.c: (gst_gst_negotiation_get_type),
36224         (gst_negotiation_base_init), (gst_negotiation_class_init),
36225         (gst_negotiation_init), (gst_negotiation_getcaps),
36226         (gst_negotiation_pad_link), (gst_negotiation_chain),
36227         (gst_negotiation_set_property), (gst_negotiation_get_property),
36228         (gst_negotiation_plugin_init):  New element to talk about random
36229         negotiation things happening in a pipeline.
36230
36231 2004-03-31  Thomas Vander Stichele  <thomas at apestaart dot org>
36232
36233         * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
36234           fix integer addition with help of Stefan Kost
36235
36236 2004-03-31  Thomas Vander Stichele  <thomas at apestaart dot org>
36237
36238         * po/nl.po: updated Dutch translation (Elros Cyriatan)
36239
36240 2004-03-30  David Schleef  <ds@schleef.org>
36241
36242         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer),
36243         (gst_mpeg2dec_negotiate_format):  Handle Y42B-format MPEG
36244         video, patch from Matthew.Spencer@eu.sony.com (Matthew Spencer)
36245         (bug #137504)
36246         * ext/mpeg2dec/gstmpeg2dec.h:
36247
36248 2004-03-30  David Schleef  <ds@schleef.org>
36249
36250         * ext/gdk_pixbuf/Makefile.am: Remove spurious rules. (bug #136527)
36251
36252 2004-03-30  David Schleef  <ds@schleef.org>
36253
36254         * tools/gst-launch-ext-m.m:  Applied patch from gnome@flyn.org (W.
36255         Michael Petullo) to handle .mov
36256
36257 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36258
36259         * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
36260         (gst_osselement_rate_check_rate):
36261           probe caps correctly for sound cards that only support one format
36262
36263 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36264
36265         * ext/kio/kiosrc.cpp: (process_events):
36266           update handling event processing if inside KDE - untested
36267
36268 2004-03-29  David Schleef  <ds@schleef.org>
36269
36270         * ext/hermes/gsthermescolorspace.c: (plugin_init): decrease rank
36271         by 2 to not interfere with other colorspaces.
36272         * ext/pango/gsttextoverlay.c: (plugin_init): change rank to NONE
36273         * gst/colorspace/gstcolorspace.c: (plugin_init): decrease rank by
36274         one to not interfere with ffmpeg_colorspace.
36275
36276 2004-03-29  David Schleef  <ds@schleef.org>
36277
36278         * ext/alsa/gstalsa.c: (gst_alsa_fixate): Don't fixate fields that
36279         aren't in the caps.
36280         * gst/sine/gstsinesrc.c: change rate caps to [1,MAX]
36281         * gst/videocrop/gstvideocrop.c: (plugin_init): Change rank to NONE.
36282
36283 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36284
36285         * gst-libs/gst/riff/riff-media.c:
36286           fail on error, don't try to set stuff on NULL caps
36287
36288 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36289
36290         * configure.ac:
36291         * ext/Makefile.am:
36292         * ext/kio/Makefile.am:
36293         * ext/kio/kioreceiver.cpp:
36294         * ext/kio/kioreceiver.h:
36295         * ext/kio/kiosrc.cpp:
36296         * ext/kio/kiosrc.h:
36297           add experimental kiosrc plugin
36298         * ext/alsa/gstalsaplugin.c: (plugin_init):
36299           initialize debugging category only when we're sure registering the
36300           plugins worked.
36301
36302 2004-03-29  Thomas Vander Stichele  <thomas at apestaart dot org>
36303
36304         * examples/gstplay/player.c: (main):
36305         * gst-libs/gst/play/play.c: (gst_play_class_init),
36306         (gst_play_set_location), (gst_play_set_data_src),
36307         (gst_play_set_video_sink), (gst_play_set_audio_sink),
36308         (gst_play_set_visualization), (gst_play_connect_visualization):
36309           check return values of element_set_state and return FALSE where
36310           failed
36311
36312 2004-03-29  Benjamin Otte  <otte@gnome.org>
36313
36314         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
36315           try harder to check if an event is really a discont
36316
36317 2004-03-29  Thomas Vander Stichele  <thomas at apestaart dot org>
36318
36319         * po/LINGUAS: adding Azerbaijani (M??tin ??mirov)
36320         * po/az.po:
36321
36322 2004-03-28  Benjamin Otte  <otte@gnome.org>
36323
36324         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
36325         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
36326         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
36327           get rid of non-standard "..." ranges in case statements.
36328
36329 2004-03-27  Martin Soto  <martinsoto@users.sourceforge.net>
36330
36331         * gst/mpegstream/gstmpegdemux.c:
36332         * gst/mpegstream/gstmpegdemux.h: Complete overhaul. All DVD
36333         specific functionality split to the new dvddemux element.
36334         * gst/mpegstream/gstdvddemux.c:
36335         * gst/mpegstream/gstdvddemux.h: New demultiplexer for DVD (VOB)
36336         streams, derived from mpegdemux.
36337         * gst/mpegstream/gstmpegparse.c: Discontinuity handling cleaned
36338         up. SCR based timestamp rewriting can be turned off (will probably
36339         completely disappear soon).
36340         * ext/dvdnav/dvdnavsrc.c: Changes resulting from a few months
36341         hacking. General cleanup. All printf statements replaced by
36342         debugging messages. Almost complete libdvdnav support.
36343         (dvdnavsrc_class_init): Got rid of unnecessary signals (replaced
36344         by events. New properties for audio and subpicture languages.
36345         (dvdnavsrc_update_highlight): Now uses events.
36346         (dvdnavsrc_user_op): Cleaned up.
36347         (dvdnavsrc_get): Renamed to dvdnavsrc_loop (element is now loop
36348         based). Lots of cleanup, and propper support for most libdvdnav
36349         events.
36350         (dvdnavsrc_make_dvd_event): New function.
36351         (dvdnavsrc_make_dvd_nav_packet_event): New function.
36352         (dvdnavsrc_make_clut_change_event): New function.
36353
36354 2004-03-26  Benjamin Otte  <otte@gnome.org>
36355
36356         * gst/typefind/gsttypefindfunctions.c: (theora_type_find):
36357           fix bug where typefinding would claim it's theora whenever less then
36358           7 bytes of data were available
36359
36360 2004-03-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36361
36362         * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link),
36363         (gst_alawdec_base_init), (gst_alawdec_class_init),
36364         (gst_alawdec_init), (gst_alawdec_chain):
36365         * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link),
36366         (gst_alawenc_base_init), (gst_alawenc_class_init),
36367         (gst_alawenc_init), (gst_alawenc_chain):
36368         * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link),
36369         (gst_mulawdec_base_init), (gst_mulawdec_class_init),
36370         (gst_mulawdec_init), (gst_mulawdec_chain):
36371         * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link),
36372         (gst_mulawenc_base_init), (gst_mulawenc_class_init),
36373         (gst_mulawenc_init), (gst_mulawenc_chain):
36374           Fix capsnego in all four, remove the unused property functions and
36375           simplify the chain functions slightly. I guess we could use macros
36376           or something similar for those, since the code is so similar, but
36377           I'm currently too lazy...
36378
36379 2004-03-24  David Schleef  <ds@schleef.org>
36380
36381         * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
36382         (gst_osselement_close_audio), (gst_osselement_probe_caps),
36383         (gst_osselement_get_format_structure),
36384         (gst_osselement_rate_probe_check), (gst_osselement_rate_add_range),
36385         (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate),
36386         (gst_osselement_rate_int_compare): Add code to handle rate probing
36387         (bug #120883)
36388         * sys/oss/gstosselement.h: same
36389         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_getcaps):
36390         Use rate probing provided by osselement.
36391         * sys/oss/gstosssrc.c: (gst_osssrc_init), (gst_osssrc_getcaps): same
36392
36393 2004-03-24  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36394
36395         * ext/xvid/gstxvidenc.c: (gst_xvidenc_set_property),
36396         (gst_xvidenc_get_property):
36397           ulong/int mess-up.
36398
36399 2004-03-24  David Schleef  <ds@schleef.org>
36400
36401         * ext/speex/gstspeexdec.c: (gst_speexdec_base_init),
36402         (gst_speexdec_init):
36403         * ext/speex/gstspeexenc.c: (gst_speexenc_base_init),
36404         (gst_speexenc_init):  Create the pad template correctly (from
36405         the static pad template, not a NULL pointer.)
36406
36407 2004-03-25  Benjamin Otte  <otte@gnome.org>
36408
36409         * gst/debug/Makefile.am:
36410         * gst/debug/breakmydata.c:
36411           add element that quasi-randomly changes bytes in the stream.
36412           Intended use is robustness checking of demuxers and decoders in
36413           media tests.
36414
36415 2004-03-24  Benjamin Otte  <otte@gnome.org>
36416
36417         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
36418         (gst_alsa_probe_hw_params):
36419         * ext/alsa/gstalsa.h:
36420           debugging output fixes
36421
36422 2004-03-24  Benjamin Otte  <otte@gnome.org>
36423
36424         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_set_property):
36425           don't g_return_if_fail if element is PLAYING, fail silently as every
36426           other element.
36427         * gst/effectv/gstquark.c: (gst_quarktv_chain):
36428           only fix needed for cast lvalue issues in gst-plugins
36429         * gst/volenv/gstvolenv.c: (gst_volenv_init):
36430           add proxy_getcaps
36431
36432 2004-03-24  Benjamin Otte  <otte@gnome.org>
36433
36434         * gst/level/gstlevel.c: (gst_level_init):
36435           add proxying getcaps function, so level doesn't advertise impossible
36436           caps
36437
36438 2004-03-24  David Schleef  <ds@schleef.org>
36439
36440         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
36441         (gst_qtdemux_loop_header), (qtdemux_parse_moov), (qtdemux_parse),
36442         (qtdemux_node_dump_foreach), (qtdemux_dump_mvhd),
36443         (qtdemux_dump_tkhd), (qtdemux_dump_elst), (qtdemux_dump_mdhd),
36444         (qtdemux_dump_hdlr), (qtdemux_dump_vmhd), (qtdemux_dump_dref),
36445         (qtdemux_dump_stsd), (qtdemux_dump_stts), (qtdemux_dump_stss),
36446         (qtdemux_dump_stsc), (qtdemux_dump_stsz), (qtdemux_dump_stco),
36447         (qtdemux_dump_co64), (qtdemux_dump_dcom), (qtdemux_dump_cmvd),
36448         (qtdemux_parse_tree), (qtdemux_parse_trak):  Fix debugging
36449         messages.  Divide the chunk size by the compression ratio
36450         (needed for MACE audio)
36451
36452 2004-03-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36453
36454         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
36455           Fix buffer overflow read error.
36456
36457 2004-03-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36458
36459         * ext/alsa/gstalsa.h:
36460           Remove unused entry.
36461         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
36462           Add cinepak.
36463         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
36464         (gst_videodrop_link), (gst_videodrop_chain):
36465           Fix, sort of. Was horribly broken with new capsnego. Bah...
36466
36467 2004-03-23  Jeremy Simon  <jesimon@libertysurf.fr>
36468
36469         * gst/typefind/gsttypefindfunctions.c: (ape_type_find),
36470         (plugin_init):
36471         Add a monkeysaudio typefind function
36472
36473 2004-03-23  Johan Dahlin  <johan@gnome.org>
36474
36475         * gst-libs/gst/play/play.c (gst_play_audio_fixate)
36476         (gst_play_video_fixate): Check so the structure has the field
36477         before trying to fixate them, this makes it possible to have
36478         fakesinks for video and audio output without printing errors on
36479         the output console.
36480
36481 2004-03-22  David Schleef  <ds@schleef.org>
36482
36483         * sys/oss/Makefile.am:
36484         * sys/oss/oss_probe.c: (main), (probe_check), (add_range),
36485         (check_rate), (add_rate):  Rate probing test app.
36486
36487 2004-03-21  Benjamin Otte  <otte@gnome.org>
36488
36489         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
36490         (_fixate_caps_to_int), (gst_audio_convert_fixate):
36491           add a fixation function that pretty much does the right thing (fixes
36492           #137556)
36493
36494 2004-03-20  David I. Lehn  <dlehn@users.sourceforge.net>
36495
36496         * configure.ac: GST_PACKAGE default: s/GStreamer/GStreamer Plugins/
36497
36498 2004-03-20  Tim-Phillip Müller <t.i.m@zen.co.uk>
36499
36500         reviewed by: Benjamin Otte  <otte@gnome.org>
36501
36502         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
36503           terminate gst_event_new_discontinuous correctly (fixes parts of
36504           #137711)
36505
36506 2004-03-19  David Schleef  <ds@schleef.org>
36507
36508         * gst-libs/gst/Makefile.am:  Enable xoverlay unconditionally,
36509         since it doesn't depend on X, and it's part of our ABI.
36510
36511 2004-03-19  Iain <iain@prettypeople.org>
36512
36513         * gst/interleave/deinterleave.c (deinterleave_sink_link): Use the
36514         is_int in the structure, not the local variable.
36515
36516 2004-03-19  David Schleef  <ds@schleef.org>
36517
36518         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_change_state),
36519         (gst_rfbsrc_init), (gst_rfbsrc_getcaps), (gst_rfbsrc_fixate),
36520         (gst_rfbsrc_link), (gst_rfbsrc_paint_rect), (gst_rfbsrc_get):
36521         Improvements in caps negotiation.
36522
36523 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
36524
36525         * po/LINGUAS:
36526         * po/af.po:
36527           adding Afrikaans (Petri Jooste)
36528
36529 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
36530
36531         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
36532         (gst_ffmpegcolorspace_chain):
36533         throw error instead of g_critical (#137588)
36534
36535 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
36536
36537         * Makefile.am:
36538         * configure.ac:
36539           dist common and m4 correctly
36540         * po/sv.po:
36541
36542 2004-03-17  David Schleef  <ds@schleef.org>
36543
36544         * pkgconfig/gstreamer-media-info.pc.in:  Add Version.
36545         (bug #137348)
36546
36547 2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
36548
36549         * po/LINGUAS:
36550         * po/sv.po:
36551           adding Swedish translation (Christian Rose)
36552
36553 2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
36554
36555         * Makefile.am: use release.mak
36556
36557 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
36558
36559         * common/ChangeLog:
36560         * common/gst-autogen.sh:
36561           add some explanation about the version detection
36562         * configure.ac:
36563           fix X check
36564
36565 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
36566
36567         * configure.ac: bump nano to 1
36568
36569 === release 0.8.0 ===
36570
36571 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
36572
36573         * configure.ac: release 0.8.0, "Pharmaceutical Itch"
36574
36575 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
36576
36577         * configure.ac:
36578           update libtool version
36579         * gst-libs/gst/media-info/Makefile.am:
36580           actually use libtool version
36581
36582 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
36583
36584         * configure.ac: fix speex detection to work with 1.0 but not 1.1
36585
36586 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
36587
36588         * configure.ac:
36589         * gst-plugins.spec.in:
36590         * pkgconfig/Makefile.am:
36591         * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
36592         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
36593         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
36594         * pkgconfig/gstreamer-libs.pc.in:
36595         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
36596         * pkgconfig/gstreamer-play-uninstalled.pc.in:
36597         * pkgconfig/gstreamer-plugins-uninstalled.pc.in:
36598         * pkgconfig/gstreamer-plugins.pc.in:
36599           remove @VERSION@ from some of the pc files since core and plugins
36600           are decoupled.
36601           created gstreamer-plugins.pc as it's a better name, but keeping
36602           -libs around for now to get fixes upstream done first.
36603
36604 2004-03-15  Julien MOUTTE <julien@moutte.net>
36605
36606         * gst-libs/gst/play/play.c: (gst_play_get_framerate),
36607         (gst_play_get_sink_element): First draft of gst_play_get_framerate.
36608         * gst-libs/gst/play/play.h:
36609
36610 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
36611
36612         * *.c, *.cc: don't mix tabs and spaces
36613
36614 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
36615
36616         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
36617           use the new ffmpegcolorspace
36618         * gst-plugins.spec.in:
36619           package new colorspace and media-info
36620         * configure.ac:
36621         * pkgconfig/Makefile.am:
36622           fix some more disting issues
36623         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
36624         * pkgconfig/gstreamer-media-info.pc.in:
36625           generate media-info pc files
36626
36627 2004-03-15  Johan Dahlin  <johan@gnome.org>
36628
36629         * *.h: Revert indenting
36630
36631 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
36632
36633         * configure.ac:
36634           adding ffmpegcolorspace element
36635         * gst/ffmpegcolorspace/Makefile.am:
36636         * gst/ffmpegcolorspace/avcodec.h:
36637         * gst/ffmpegcolorspace/common.h:
36638         * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
36639         * gst/ffmpegcolorspace/dsputil.h:
36640         * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
36641         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
36642         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_pix_fmt_to_caps),
36643         (gst_ffmpeg_caps_to_pix_fmt):
36644         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
36645         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
36646         (gst_ffmpegcolorspace_caps_remove_format_info),
36647         (gst_ffmpegcolorspace_getcaps), (gst_ffmpegcolorspace_pad_link),
36648         (gst_ffmpegcolorspace_get_type), (gst_ffmpegcolorspace_base_init),
36649         (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_init),
36650         (gst_ffmpegcolorspace_chain), (gst_ffmpegcolorspace_change_state),
36651         (gst_ffmpegcolorspace_set_property),
36652         (gst_ffmpegcolorspace_get_property),
36653         (gst_ffmpegcolorspace_register):
36654         * gst/ffmpegcolorspace/imgconvert.c:
36655         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
36656         (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
36657         (avpicture_get_size), (avcodec_get_pix_fmt_loss),
36658         (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
36659         (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
36660         (yuv422_to_yuv420p), (yuv422_to_yuv422p), (yuv422p_to_yuv422),
36661         (C_JPEG_TO_CCIR), (img_convert_init), (img_apply_table),
36662         (shrink41), (shrink21), (shrink12), (shrink22), (shrink44),
36663         (grow21_line), (grow41_line), (grow21), (grow22), (grow41),
36664         (grow44), (conv411), (gif_clut_index), (build_rgb_palette),
36665         (bitcopy_n), (mono_to_gray), (monowhite_to_gray),
36666         (monoblack_to_gray), (gray_to_mono), (gray_to_monowhite),
36667         (gray_to_monoblack), (avpicture_alloc), (avpicture_free),
36668         (is_yuv_planar), (img_convert), (get_alpha_info_pal8),
36669         (img_get_alpha_info), (deinterlace_line),
36670         (deinterlace_line_inplace), (deinterlace_bottom_field),
36671         (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
36672         * gst/ffmpegcolorspace/imgconvert_template.h:
36673         * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
36674         * gst/ffmpegcolorspace/mmx.h:
36675         * gst/ffmpegcolorspace/utils.c: (avcodec_init):
36676           adding ffmpegcolorspace element supplied by Ronald after cleaning
36677           up and pulling in the right bits of upstream source.
36678           I'm sure a better C/compiler wizard could do some cleaning up (for
36679           example use GLIB's malloc stuff), but as a first pass this
36680           works very well
36681
36682 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
36683
36684         * ext/alsa/gstalsa.h:
36685           I assume Ronald forgot to commit the change to have cardname
36686           as a struct member.  Expect some public spanking at the next
36687           opportunity.
36688
36689 2004-03-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36690
36691         * ext/alsa/gstalsa.c: (gst_alsa_get_property),
36692         (gst_alsa_open_audio), (gst_alsa_close_audio):
36693         * ext/alsa/gstalsa.c:
36694           Don't open the device if we're a mixer (= padless).
36695         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_class_init),
36696         (gst_alsa_mixer_init), (gst_alsa_mixer_open),
36697         (gst_alsa_mixer_close), (gst_alsa_mixer_change_state):
36698           Open mixer during state change rather than during object
36699           initialization. Also, get a device name. Currently in a somewhat
36700           hackish fashion, but I didn't really find something better.
36701
36702 2004-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
36703
36704         * *.c, *.h: run gst-indent
36705
36706 2004-03-14  Benjamin Otte  <otte@gnome.org>
36707
36708         * gst/modplug/gstmodplug.cc:
36709         * gst/modplug/gstmodplug.h:
36710           set correct timestamps on outgoing buffers
36711
36712 2004-03-14  Benjamin Otte  <otte@gnome.org>
36713
36714         * gst/modplug/gstmodplug.cc:
36715           handle events - don't do crap when a discont arrives that's not
36716           necessary
36717           This allows correct loading and playback of mods in Rhythmbox
36718
36719 2004-03-14  Benjamin Otte  <otte@gnome.org>
36720
36721         * configure.ac:
36722         * gst-libs/gst/gconf/Makefile.am:
36723         * pkgconfig/Makefile.am:
36724           move gstreamer-gconf pkgconfig files to pkgconfig/ dir. Make sure
36725           they get rebuilt properly
36726         * configure.ac:
36727           when checking for vorbis, try pkgconfig first.
36728         * gst/modplug/gstmodplug.cc:
36729           add fixate function
36730
36731 2004-03-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36732
36733         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
36734           Fix for obvious mistake, where we first shift the offset and then
36735           read a samplesize element assuming the old offset. Note that this
36736           part still has something weird, i.e. my movies containing those
36737           don't actually play well, but at least there's something that looks
36738           like sound now.
36739
36740 2004-03-14  Jan Schmidt  <thaytan@mad.scientist.com>
36741         * gst/typefind/gsttypefindfunctions.c: (speex_type_find),
36742         (plugin_init):
36743         Add a typefind function for speex format
36744
36745 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36746
36747         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps),
36748         (gst_asf_demux_setup_pad):
36749           Use 25fps as our "fake" fps value (marked for fixage in 0.9.x)
36750           instead of 0. Reason is simple: some elements have a fps range
36751           of 1-max instead of 0-max. So now ASF video actually works.
36752
36753 2004-03-13  Thomas Vander Stichele  <thomas at apestaart dot org>
36754
36755         * po/LINGUAS:
36756         * po/sr.po:
36757           adding serbian as a language
36758
36759 2004-03-13  Benjamin Otte  <otte@gnome.org>
36760
36761         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
36762           return taglist correctly from _get function, don't gst_pad_push it.
36763           (fixes #137042)
36764
36765 2004-03-13  Jan Schmidt  <thaytan@mad.scientist.com>
36766         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
36767
36768 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36769
36770         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_free_list):
36771         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init),
36772         (gst_alsa_mixer_track_new):
36773         * ext/alsa/gstalsamixertrack.h:
36774           Fix ancient leftovers... MixerTrack is a GObject.
36775
36776 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36777
36778         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
36779         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
36780           Don't block during probing...
36781
36782 2004-03-12  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36783
36784         * ext/alsa/gstalsa.c: (gst_alsa_get_type), (gst_alsa_class_init),
36785         (gst_alsa_get_property), (gst_alsa_probe_get_properties),
36786         (gst_alsa_class_probe_devices), (gst_alsa_class_list_devices),
36787         (gst_alsa_probe_probe_property), (gst_alsa_probe_needs_probe),
36788         (gst_alsa_probe_get_values), (gst_alsa_probe_interface_init),
36789         (gst_alsa_open_audio), (gst_alsa_close_audio):
36790         * ext/alsa/gstalsa.h:
36791           Add propertyprobe interface implementation, add some device-name
36792           property, all this so that it looks good in gnome-volume-control.
36793
36794 2004-03-12  David Schleef  <ds@schleef.org>
36795
36796         * configure.ac: the Hermes library controls hermescolorspace, not
36797         colorspace.
36798         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
36799         (gst_mpeg2dec_init): minor pet peeve: disable code with #ifdef,
36800         not /* */
36801         * ext/sdl/sdlvideosink.c: Change XID to unsigned long.
36802         * ext/sdl/sdlvideosink.h: ditto.
36803         * gst/colorspace/gstcolorspace.c: Fix old comments about Hermes
36804
36805 2004-03-12  Benjamin Otte  <otte@gnome.org>
36806
36807         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_set_xwindow_id),
36808         (gst_x_overlay_got_xwindow_id):
36809         * gst-libs/gst/xoverlay/xoverlay.h:
36810           replace XID with unsigned long to get rid of the xlibs dependency in
36811           XOverlay (fixes #137004)
36812
36813 2004-03-13  Jan Schmidt  <thaytan@mad.scientist.com>
36814         * gst/effectv/gstaging.c: (gst_agingtv_base_init),
36815         (gst_agingtv_setup):
36816         * gst/effectv/gstdice.c: (gst_dicetv_get_type),
36817         (gst_dicetv_base_init), (gst_dicetv_class_init),
36818         (gst_dicetv_setup), (gst_dicetv_init), (gst_dicetv_draw):
36819         * gst/effectv/gstedge.c: (gst_edgetv_get_type),
36820         (gst_edgetv_base_init), (gst_edgetv_class_init), (gst_edgetv_init),
36821         (gst_edgetv_setup), (gst_edgetv_rgb32):
36822         * gst/effectv/gsteffectv.c:
36823         * gst/effectv/gstquark.c: (gst_quarktv_link), (gst_quarktv_init),
36824         (gst_quarktv_set_property):
36825         * gst/effectv/gstrev.c: (gst_revtv_get_type),
36826         (gst_revtv_base_init), (gst_revtv_class_init), (gst_revtv_init),
36827         (gst_revtv_setup), (gst_revtv_rgb32):
36828         * gst/effectv/gstshagadelic.c: (gst_shagadelictv_get_type),
36829         (gst_shagadelictv_base_init), (gst_shagadelictv_class_init),
36830         (gst_shagadelictv_init), (gst_shagadelictv_setup),
36831         (gst_shagadelictv_rgb32):
36832         * gst/effectv/gstvertigo.c: (gst_vertigotv_get_type),
36833         (gst_vertigotv_base_init), (gst_vertigotv_class_init),
36834         (gst_vertigotv_setup), (gst_vertigotv_init), (gst_vertigotv_rgb32):
36835         * gst/effectv/gstwarp.c:
36836         Port everything that can be ported to videofilter and fix up the caps.
36837         Can someone with a big-endian machine please check these?
36838
36839 2004-03-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36840
36841         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_get_time),
36842         (gst_osssink_chain), (gst_osssink_change_state):
36843           Latest fixes for A/V sync, audio playback and such. This is about
36844           all... MPEG playback issues are mostly related to the async build-
36845           up of MPEG files, I cannot fix that. Use basicgthread to solve it.
36846
36847 2004-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
36848
36849         patch from: Stephane Loeuillet
36850
36851         * configure.ac:
36852           use pkg-config for some libraries, falling back to the old .m4 way
36853           (fixes #131270)
36854         * m4/libdv.m4:
36855           removed
36856
36857 2004-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
36858
36859         * configure.ac:
36860         * tools/Makefile.am:
36861         * tools/Makefile.in:
36862         * tools/gst-launch-ext-m.m:
36863         * tools/gst-launch-ext.1.in:
36864         * tools/gst-visualise-m.m:
36865         * tools/gst-visualise.1:
36866         * tools/gst-visualise.1.in:
36867           reorganizing generation of script tools
36868
36869 2004-03-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36870
36871         * ext/divx/gstdivxdec.c:
36872           Downgrade priority. We prefer ffdec_mpeg4.
36873         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps), (gst_faad_srcconnect),
36874         (gst_faad_chain), (gst_faad_change_state):
36875           Fix capsnego. Doesn't work for some sounds because we don't have
36876           a 5:1 to stereo element.
36877         * ext/xvid/gstxvid.c: (plugin_init):
36878           Add priority.
36879         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
36880         (gst_osssink_change_state):
36881           Add discont handling.
36882
36883 2004-03-09  Colin Walters  <walters@verbum.org>
36884
36885         * gst/audioconvert/gstaudioconvert.c: Fix typo in width 8
36886         conversion.
36887
36888 2004-03-09  Benjamin Otte  <otte@gnome.org>
36889
36890         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
36891           the signals take 2 arguments
36892
36893 2004-03-09  David Schleef  <ds@schleef.org>
36894
36895         * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad),
36896         (gst_alsa_fixate): Add fixate function.  (bug #136686)
36897         * ext/alsa/gstalsa.h:
36898         * ext/alsa/gstalsasink.c: (gst_alsa_sink_init):
36899
36900 2004-03-09  Benjamin Otte  <otte@gnome.org>
36901
36902         * ext/mikmod/gstmikmod.c: (gst_mikmod_init), (gst_mikmod_loop),
36903         (gst_mikmod_change_state):
36904         * ext/mikmod/gstmikmod.h:
36905           make mikmod's loop function not loop infinitely and call
36906           gst_element_yield anymore
36907         * gst/modplug/gstmodplug.cc:
36908           fix pad negotiation (fixes #136590)
36909
36910 2004-03-09  David Schleef  <ds@schleef.org>
36911
36912         * ext/lcs/Makefile.am:  Fix so that the lcs colorspace plugin
36913         doesn't conflict with the internal colorspace plugin.
36914         * gst-libs/gst/audio/make_filter:  Use `` instead of $() to
36915         satisfy the crappy-ass shell shipped by a certain vendor.
36916         * gst/videofilter/make_filter: same (bug #135299)
36917
36918 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
36919
36920         * configure.ac: bump nano to 1
36921
36922 === release 0.7.6 ===
36923
36924 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
36925
36926         * configure.in: releasing 0.7.6, "There"
36927
36928 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
36929
36930         * pkgconfig/gstreamer-play-uninstalled.pc.in:
36931         * pkgconfig/gstreamer-play.pc.in:
36932           synchronize the two
36933
36934 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
36935
36936         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_base_init),
36937         (cdparanoia_open), (cdparanoia_event):
36938           fix/add error handling
36939         * po/POTFILES.in:
36940           add cdparanoia source
36941         * tools/Makefile.am:
36942           make scripts executable
36943
36944 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
36945
36946         * configure.ac:
36947         * ext/vorbis/Makefile.am:
36948         * sys/Makefile.am:
36949           remove id3types, vorbisfile and xvideosink from the build (#133783)
36950
36951 2004-03-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36952
36953         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
36954           Fix metadata read crash (#136537).
36955
36956 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
36957
36958         * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
36959         * gst-libs/gst/media-info/media-info.c: (gst_media_info_read):
36960           adding mime types, fixing the one-stop function
36961
36962 2004-03-08  Christian Schaller <Uraeus@gnome.org>
36963
36964         * ext/nas/nassink.c and /ext/nas/nassink.h:
36965         More NAS love from Arwed von Merkatz
36966         So lets all sing 'Can you feel the NAS tonight'
36967
36968 2004-03-08  Christian Schaller <Uraeus@gnome.org>
36969
36970         * tools/gst-launch-ext.in:
36971         Replace vorbisfile with oggdemux/vorbisdec/audioconvert
36972
36973 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
36974
36975         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
36976         (gst_mpeg2dec_init):
36977         remove the user_data pad for now, because it is being used in
36978         fixating causing MPEG playback to fixate on 1000 Hz for playback.
36979         If someone knows how to fix this properly, please do.
36980
36981 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
36982
36983         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
36984         (gst_osssink_get_time):
36985         add a warning, IMO this won't get triggered anymore, remove later
36986
36987 2004-03-07  David Schleef  <ds@schleef.org>
36988
36989         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):  Added Cinepak
36990         format (bug #136470)
36991
36992 2004-03-07  Thomas Vander Stichele  <thomas at apestaart dot org>
36993
36994         * gst-libs/Makefile.am:
36995         * gst-libs/gst/media-info/Makefile.am:
36996         * gst-libs/gst/media-info/media-info-priv.c: (found_tag_callback),
36997         (error_callback), (gst_media_info_error_create),
36998         (gst_media_info_error_element), (gmip_init), (gmip_reset),
36999         (gmi_clear_decoder), (gmip_find_type_pre), (gmip_find_type):
37000         * gst-libs/gst/media-info/media-info-priv.h:
37001         * gst-libs/gst/media-info/media-info-test.c: (main):
37002         * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
37003         (gst_media_info_class_init), (gst_media_info_instance_init),
37004         (gst_media_info_set_source), (gst_media_info_read_with_idler),
37005         (gst_media_info_read_idler), (gst_media_info_read):
37006         * gst-libs/gst/media-info/media-info.h:
37007         fixed, should work now
37008
37009 2004-03-07  Christian Schaller <Uraeus@gnome.org>
37010
37011         * ext/nas/nassink.c:
37012         A bunch of NAS fixes from Arwed von Merkatz
37013
37014 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37015
37016         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
37017         (qtdemux_parse_trak):
37018           Fix crash (j might be greater than n_samples, in which case we're
37019           writing outside the allocated space for the array) and memleak.
37020
37021 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37022
37023         * sys/oss/gstosssink.c: (gst_osssink_chain):
37024           And another caller that couldn't handle delay < 0 (unsigned
37025           integer overflow). Video now continues playing on an audio
37026           buffer underrun, and the clock continues working. Audio still
37027           stalls.
37028
37029 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37030
37031         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
37032         (gst_osssink_get_time):
37033           get_delay() may return values lower than 0. In those cases, we
37034           should not actually cast to *unsigned* int64, that will break
37035           stuff horribly. In my case, it screwed up A/V sync in movies
37036           in totem rather badly.
37037
37038 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
37039
37040         * ext/faac/gstfaac.c: (gst_faac_chain):
37041         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
37042         * ext/libpng/gstpngenc.c: (user_write_data):
37043         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
37044         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
37045         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
37046         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
37047         Fix several misuse of gst_buffer_merge (it doesn't take ownership
37048         of any buffer), should fix some leaks. I hope I didn't unref buffers
37049         that shouldn't be...
37050
37051 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
37052
37053         * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
37054         (deep_notify_callback), (tag_flag_score), (found_tag_callback),
37055         (error_callback), (gmi_reset), (gmi_seek_to_track),
37056         (gmi_get_decoder), (gmi_set_mime), (gmip_find_type_pre),
37057         (gmip_find_type_post), (gmip_find_stream_post),
37058         (gmip_find_track_streaminfo_post):
37059         * gst-libs/gst/media-info/media-info-priv.h:
37060         * gst-libs/gst/media-info/media-info-test.c: (print_tag),
37061         (info_print), (main):
37062         * gst-libs/gst/media-info/media-info.c:
37063         (gst_media_info_error_create), (gst_media_info_error_element),
37064         (gst_media_info_instance_init), (gst_media_info_get_property),
37065         (gst_media_info_new), (gst_media_info_set_source),
37066         (gst_media_info_read_idler), (gst_media_info_read):
37067         * gst-libs/gst/media-info/media-info.h:
37068           first pass at making this work again.  This seems to work on
37069           tagged ogg/vorbis and mp3 files.
37070
37071 2004-03-06  Benjamin Otte  <otte@gnome.org>
37072
37073         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
37074           fix huge leak: gst_buffer_merge doesn't unref the first argument
37075           itself.
37076
37077 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
37078
37079         * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_update_info):
37080           report layer/mode/emphasis
37081
37082 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
37083
37084         * ext/mad/gstmad.c: (gst_mad_chain): fixed caps leak
37085
37086 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
37087
37088         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
37089           signal serial
37090
37091 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
37092
37093         * ext/vorbis/vorbis.c: (plugin_init):
37094         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
37095         (gst_vorbis_dec_init), (vorbis_dec_event):
37096         add debug category
37097         make vorbisdec handle _BYTE and _TIME queries
37098
37099 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
37100
37101         * ext/mad/gstmad.c: (gst_mad_chain): send the average bitrate read
37102           from the xing header
37103
37104 2004-03-06  Benjamin Otte  <otte@gnome.org>
37105
37106         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps),
37107         (gst_audio_convert_link), (gst_audio_convert_change_state),
37108         (gst_audio_convert_buffer_from_default_format):
37109           do conversions from/to float correctly, fix some caps nego errors,
37110           export correct supported caps in template and getcaps, use correct
37111           caps in try_set_caps functions
37112
37113 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
37114
37115         For some reason, I only committed a ChangeLog entry yesterday and
37116         not the corresponding code...
37117         * ext/mad/gstmad.c: Fix detection of Xing headers
37118         * gst/tags/gstid3tag.c: Changes to support TLEN tags
37119
37120 2004-03-06  Benjamin Otte  <otte@gnome.org>
37121
37122         * ext/ogg/gstoggdemux.c: (gst_ogg_get_pad_by_pad),
37123         (gst_ogg_demux_src_query):
37124           make sure to handle the case where there's no current chain
37125           gracefully.
37126
37127 2004-03-05  David Schleef  <ds@schleef.org>
37128
37129         * ext/aalib/gstaasink.c: (gst_aasink_fixate), (gst_aasink_init):
37130         Add fixate function. (bug #131128)
37131         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
37132         (gst_sdlvideosink_fixate):  Add fixate function.
37133         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
37134         Fix attempt to print a non-pointer using GST_PTR_FORMAT.
37135         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt):
37136         Fix missing break that was causing ulaw to be interpreted as
37137         raw int.
37138
37139 2004-03-05  David Schleef  <ds@schleef.org>
37140
37141         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
37142         Fix code that ignores return value of gst_buffer_merge().
37143         (bug #114560)
37144         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_descramble_segment):
37145         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice): same
37146         * testsuite/gst-lint:  Check for above.
37147
37148 2004-03-05  David Schleef  <ds@schleef.org>
37149
37150         * gst/udp/gstudpsrc.c: (gst_udpsrc_get):  Check for unfixed
37151         caps and throw an element error.  (bug #136334)
37152
37153 2004-03-05  David Schleef  <ds@schleef.org>
37154
37155         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_srcgetcaps),
37156         (gst_faad_chain): Fix negotiation.
37157         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_handle_src_event): Add
37158         key and button events.
37159         * gst-libs/gst/floatcast/floatcast.h: Fix a minor bug in this
37160         dung heap of code.
37161         * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in: gstgconf
37162         depends on gconf
37163         * gst-libs/gst/gconf/gstreamer-gconf.pc.in: same
37164         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
37165         (gst_play_video_fixate), (gst_play_audio_fixate): Add a fixate
37166         function to encourage better negotiation, particularly between
37167         audioconvert and osssink.
37168         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
37169         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):  Make some debugging
37170         more important.
37171         * gst/typefind/gsttypefindfunctions.c:  Fix mistake in flash
37172         typefinding.
37173         * gst/vbidec/vbiscreen.c:  Add glib header
37174         * pkgconfig/gstreamer-play.pc.in:  Depends on gst-interfaces.
37175
37176 2004-03-06  Christophe Fergeau  <teuf@users.sourceforge.net>
37177
37178         * ext/mad/gstmad.c: Fix detection of Xing headers
37179         * gst/tags/gstid3tag.c: Changes to support TLEN tags
37180
37181 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
37182
37183         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
37184         (gst_wavparse_pad_convert), (gst_wavparse_pad_query):
37185           debug updates
37186
37187 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
37188
37189         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
37190         * ext/mad/gstmad.c: (gst_mad_init), (is_xhead),
37191         (mpg123_parse_xing_header), (gst_mad_chain): parse Xing header in vbr
37192         files, and report the parsed length as a GST_TAG_DURATION tag.
37193         * gst/tags/gstid3tag.c: support TLEN (duration) tag
37194
37195 2004-03-05  Benjamin Otte  <otte@gnome.org>
37196
37197         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_channels):
37198           convert channels correctly. convert correctly to unsigned.
37199
37200 2004-03-05  Julien MOUTTE <julien@moutte.net>
37201
37202         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state): Check if
37203         we have a window before clearing it.
37204
37205 2004-03-05  Julien MOUTTE <julien@moutte.net>
37206
37207         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state): Check if we
37208         have a window before clearing it.
37209
37210 2004-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
37211
37212         * gconf/gstreamer.schemas.in:
37213         * gst-libs/gst/gconf/Makefile.am:
37214           version installation path the same way as for 0.6
37215         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
37216         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
37217         * pkgconfig/gstreamer-play-uninstalled.pc.in:
37218           remove comment that was fixed
37219
37220 2004-03-05  David Schleef  <ds@schleef.org>
37221
37222         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_src_formats),
37223         (gst_qtdemux_src_convert), (gst_qtdemux_get_src_query_types),
37224         (gst_qtdemux_get_event_mask), (gst_qtdemux_handle_src_query),
37225         (gst_qtdemux_handle_src_event), (gst_qtdemux_add_stream):
37226         Add prototype code for handling seeking and querying.
37227
37228 2004-03-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37229
37230         * examples/gstplay/player.c: (main):
37231           Initialize variables to NULL. Prevents a segfault because the
37232           (uninitialized) variable is not NULL, resulting in a crash on
37233           trying to reach error->message.
37234
37235 2004-03-05  Benjamin Otte  <otte@gnome.org>
37236
37237         * gst/audioconvert/gstaudioconvert.c:
37238         (gst_audio_convert_buffer_to_default_format):
37239         make float=>int conversion work correctly even in cornercases.
37240
37241 2004-03-04  David I. Lehn  <dlehn@users.sourceforge.net>
37242
37243         * debian/README.Debian:
37244         * debian/build-deps:
37245         * debian/changelog:
37246         * debian/control:
37247         * debian/control.in:
37248         * debian/copyright:
37249         * debian/gstreamer-a52dec.files:
37250         * debian/gstreamer-aa.files:
37251         * debian/gstreamer-alsa.files:
37252         * debian/gstreamer-alsa.manpages:
37253         * debian/gstreamer-arts.files:
37254         * debian/gstreamer-artsd.files:
37255         * debian/gstreamer-audiofile.files:
37256         * debian/gstreamer-avifile.files:
37257         * debian/gstreamer-cdparanoia.files:
37258         * debian/gstreamer-colorspace.files:
37259         * debian/gstreamer-doc.files:
37260         * debian/gstreamer-dv.files:
37261         * debian/gstreamer-dvd.files:
37262         * debian/gstreamer-esd.files:
37263         * debian/gstreamer-festival.files:
37264         * debian/gstreamer-flac.files:
37265         * debian/gstreamer-gconf.conffiles:
37266         * debian/gstreamer-gconf.files:
37267         * debian/gstreamer-gconf.postinst:
37268         * debian/gstreamer-gnomevfs.files:
37269         * debian/gstreamer-gsm.files:
37270         * debian/gstreamer-http.files:
37271         * debian/gstreamer-jack.files:
37272         * debian/gstreamer-jpeg.files:
37273         * debian/gstreamer-mad.files:
37274         * debian/gstreamer-mikmod.files:
37275         * debian/gstreamer-misc.files:
37276         * debian/gstreamer-mpeg2dec.files:
37277         * debian/gstreamer-oss.files:
37278         * debian/gstreamer-plugin-apps.files:
37279         * debian/gstreamer-plugin-apps.manpages:
37280         * debian/gstreamer-plugin-libs-dev.files:
37281         * debian/gstreamer-plugin-libs.files:
37282         * debian/gstreamer-plugin-template.postinst:
37283         * debian/gstreamer-plugin-template.postrm:
37284         * debian/gstreamer-sdl.files:
37285         * debian/gstreamer-sid.files:
37286         * debian/gstreamer-vorbis.files:
37287         * debian/gstreamer-x.files:
37288         * debian/mk.control:
37289         * debian/rules:
37290         Debian package info not maintained here.
37291
37292 2004-03-04  Thomas Vander Stichele  <thomas at apestaart dot org>
37293
37294         * ext/aalib/gstaasink.c: (gst_aasink_class_init):
37295         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init):
37296         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init):
37297         * ext/divx/gstdivxenc.c: (gst_divxenc_class_init):
37298         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init):
37299         * ext/gsm/gstgsmenc.c: (gst_gsmenc_class_init):
37300         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init):
37301         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init):
37302         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init):
37303         * ext/xvid/gstxvidenc.c: (gst_xvidenc_class_init):
37304         * gst-libs/gst/colorbalance/colorbalance.c:
37305         (gst_color_balance_class_init):
37306         * gst-libs/gst/colorbalance/colorbalancechannel.c:
37307         (gst_color_balance_channel_class_init):
37308         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
37309         * gst-libs/gst/play/play.c: (gst_play_class_init):
37310         * gst-libs/gst/propertyprobe/propertyprobe.c:
37311         (gst_property_probe_iface_init):
37312         * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init):
37313         * gst-libs/gst/tuner/tunerchannel.c:
37314         (gst_tuner_channel_class_init):
37315         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init):
37316         * gst/cutter/gstcutter.c: (gst_cutter_class_init):
37317         * gst/effectv/gstvertigo.c: (gst_vertigotv_class_init):
37318         * sys/cdrom/gstcdplayer.c: (cdplayer_class_init):
37319         * sys/dxr3/dxr3spusink.c: (dxr3spusink_class_init):
37320         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
37321         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
37322         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init):
37323         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init):
37324           fix signals to use - instead of _
37325         * ext/libcaca/gstcacasink.h:
37326         * ext/sdl/sdlvideosink.h:
37327           fix header rename
37328
37329 2004-03-04  David Schleef  <ds@schleef.org>
37330
37331         * testsuite/gst-lint:  Add a check for bad signal names.
37332
37333 2004-03-04  Stefan Kost <kost@imn.htwk-leipzig.de>
37334
37335         reviewed by David Schleef
37336
37337         * gst/videofilter/gstgamma.c: (gst_gamma_rgb32): Fix typo that
37338         modified the alpha channel and caused a warning. (bug #136192)
37339
37340 2004-04-03  Christian Schaller <Uraeus@gnome.org>
37341
37342         * gst-plugins.spec.in:
37343         Change names of plugins to actually be correct. Try to keep things
37344         alphabetical to avoid getting beat up by Thomas
37345
37346 2004-03-03  Julien MOUTTE <julien@moutte.net>
37347
37348         * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_default_video_sink):
37349         Using ximagesink as a default if no gconf key found. We should
37350         probably consider using alsasink instead of osssink for the audio
37351         part.
37352
37353 2004-03-02  Thomas Vander Stichele  <thomas at apestaart dot org>
37354
37355         * configure.ac:
37356           fix --with-plugins, don't think it ever worked before
37357         * gst-plugins.spec.in:
37358           even more updates
37359
37360 2004-03-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37361
37362         * ext/sdl/sdlvideosink.h:
37363         * sys/ximage/ximagesink.h:
37364         * sys/xvideo/xvideosink.h:
37365         * sys/xvimage/xvimagesink.h:
37366           Fix for move of gstvideosink.h -> videosink.h.
37367
37368 2004-03-02  Thomas Vander Stichele  <thomas at apestaart dot org>
37369
37370         * gst-libs/gst/xwindowlistener/Makefile.am:
37371           this is a plugin library, not a library
37372
37373 2004-03-01  David Schleef  <ds@schleef.org>
37374
37375         * AUTHORS:  Added some names.  Add yourself if you're still
37376         missing.
37377
37378 2004-03-01  David Schleef  <ds@schleef.org>
37379
37380         * MAINTAINERS: Add
37381
37382 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
37383
37384         * gst-plugins.spec.in: clean up spec file
37385
37386 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
37387
37388         * gst-libs/gst/video/Makefile.am:
37389         * gst-libs/gst/video/gstvideosink.c:
37390         * gst-libs/gst/video/gstvideosink.h:
37391           rename gstvideosink.h to videosink.h to match other headers
37392         * gst/mixmatrix/Makefile.am:
37393           fix plugin filename
37394         * gst/tags/Makefile.am: fix plugin filename
37395
37396 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
37397
37398         * gst/tags/Makefile.am: fix plugin filename
37399
37400 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
37401
37402         * examples/gstplay/player.c: (got_time_tick), (main):
37403           add error handler
37404           display time_tick more readably
37405         * gst/mixmatrix/Makefile.am:
37406           fix plugin file name
37407
37408 2004-02-29  Christophe Fergeau  <teuf@gnome.org>
37409
37410         * sys/oss/gstosselement.c: (gst_osselement_probe),
37411         (device_combination_append), (gst_osselement_class_probe_devices):
37412         * sys/oss/gstosselement.h:
37413           Reworked enumeration of oss dsps and mixers so that gst-mixer works
37414           on my system using alsa oss emulation, fixes bug #135597
37415
37416 2004-02-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37417
37418         * gst/videodrop/gstvideodrop.c: (gst_videodrop_init),
37419         (gst_videodrop_chain), (gst_videodrop_change_state):
37420         * gst/videodrop/gstvideodrop.h:
37421           Work based on timestamp of input data, not based on the expected
37422           framerate from the input. The consequence is that this element now
37423           not only scales framerates, but also functions as a framerate
37424           corrector or framerate stabilizer/constantizer.
37425
37426 2004-02-27  David Schleef  <ds@schleef.org>
37427
37428         patches from jmmv@menta.net (Julio M. Merino Vidal)
37429
37430         * gst/interleave/deinterleave.c: (deinterleave_chain): Fix
37431         GST_ELEMENT_ERROR call (bug #135634)
37432         * gst/interleave/interleave.c: (interleave_buffered_loop),
37433         (interleave_bytestream_loop): Don't use alloca() (bug #135640)
37434         * sys/cdrom/gstcdplayer_ioctl_bsd.h: Fix ioctls on NetBSD (bug #135645)
37435         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
37436         (gst_osssink_chain): Fix ioctls on NetBSD. (bug #135644)
37437         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_sync_next_frame),
37438         (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
37439         (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_requeue_frame):
37440         Fix GST_ELEMENT_ERROR call.
37441         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_palette): Fix
37442         GST_ELEMENT_ERROR call.
37443
37444 2004-02-27  Benjamin Otte  <otte@gnome.org>
37445
37446         * gst-libs/gst/audio/audio.h:
37447           add macro to make sure header isn't included twice
37448         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
37449           don't use gst_buffer_free
37450         * gst/playondemand/filter.func:
37451           don't use gst_data_free. Free data only once.
37452
37453 2004-02-26  David Schleef  <ds@schleef.org>
37454
37455         * gst-libs/gst/colorbalance/Makefile.am:
37456         * gst-libs/gst/mixer/Makefile.am:
37457         * gst-libs/gst/tuner/Makefile.am:
37458         * gst/level/Makefile.am: -marshal.[ch] and -enum.[ch] files
37459         should not be disted, -marshal.h files should not be installed,
37460         and -enum.h files _should_ be installed.  Fix to make this the
37461         case.
37462
37463 === release 0.7.5 ===
37464
37465 2004-02-26  Thomas Vander Stichele  <thomas at apestaart dot org>
37466
37467         * configure.ac: release 0.7.5, "Under The Sea"
37468
37469 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
37470
37471         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
37472         (gst_audio_convert_change_state), (gst_audio_convert_get_buffer):
37473         * gst/videoscale/gstvideoscale.c:
37474         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
37475           assorted debug/warning fixes
37476
37477 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
37478
37479         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
37480         (gst_videoscale_init), (gst_videoscale_chain),
37481         (gst_videoscale_set_property), (plugin_init):
37482         * gst/videoscale/gstvideoscale.h:
37483         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
37484         (gst_videoscale_scale_rgb), (gst_videoscale_planar411),
37485         (gst_videoscale_planar400), (gst_videoscale_packed422),
37486         (gst_videoscale_packed422rev), (gst_videoscale_32bit),
37487         (gst_videoscale_24bit), (gst_videoscale_16bit),
37488         (gst_videoscale_bilinear), (gst_videoscale_bicubic),
37489         (gst_videoscale_scale_plane_slow),
37490         (gst_videoscale_scale_point_sample),
37491         (gst_videoscale_scale_nearest),
37492         (gst_videoscale_scale_nearest_str2),
37493         (gst_videoscale_scale_nearest_str4),
37494         (gst_videoscale_scale_nearest_32bit),
37495         (gst_videoscale_scale_nearest_24bit),
37496         (gst_videoscale_scale_nearest_16bit):
37497         add debugging category and use it properly
37498         fix use of GST_PTR_FORMAT
37499
37500 2004-02-25  Andy Wingo  <wingo@pobox.com>
37501
37502         * gst/interleave/interleave.c (interleave_buffered_loop): Always
37503         push only when channel->buffer is NULL. Prevents segfaults doing
37504         the state change after a nonlocal exit, like a scheme exception.
37505
37506         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
37507         Handle the case where the intersected caps is empty.
37508
37509 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
37510
37511         * gst/law/mulaw-decode.c: (mulawdec_link):
37512         * gst/law/mulaw.c: (plugin_init):
37513           fix mulawdec so it actually works again
37514
37515 2004-02-24  Arwed v. Merkatz  <v.merkatz@gmx.net>
37516
37517         reviewed by: David Schleef  <ds@schleef.org>
37518
37519         * gst/videofilter/gstgamma.c: (gst_gamma_class_init),
37520         (gst_gamma_init), (gst_gamma_set_property),
37521         (gst_gamma_get_property), (gst_gamma_calculate_tables),
37522         (gst_gamma_rgb24), (gst_gamma_rgb32):  Adds gamma correction
37523         for RGB, with separate r g and b correction factors. (#131167)
37524
37525 2004-02-24  Thomas Vander Stichele  <thomas at apestaart dot org>
37526
37527         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
37528           only signal tags for bitrate if they're > 0 (#134894)
37529
37530 2004-02-24  David Schleef  <ds@schleef.org>
37531
37532         * gst/qtdemux/qtdemux.c: (plugin_init), (gst_qtdemux_loop_header),
37533         (qtdemux_parse_moov), (qtdemux_parse), (qtdemux_node_dump_foreach),
37534         (qtdemux_dump_mvhd), (qtdemux_dump_tkhd), (qtdemux_dump_elst),
37535         (qtdemux_dump_mdhd), (qtdemux_dump_hdlr), (qtdemux_dump_vmhd),
37536         (qtdemux_dump_dref), (qtdemux_dump_stsd), (qtdemux_dump_stts),
37537         (qtdemux_dump_stss), (qtdemux_dump_stsc), (qtdemux_dump_stsz),
37538         (qtdemux_dump_stco), (qtdemux_dump_co64), (qtdemux_dump_dcom),
37539         (qtdemux_dump_cmvd), (qtdemux_parse_tree), (qtdemux_parse_trak):
37540         Cleanups.  Convert g_prints to GST_LOGs.  Add qtdemux debug
37541         category.  Attempt to fix timestamp calculation.
37542
37543 2004-02-24  Johan Dahlin  <johan@gnome.org>
37544
37545         * gst-libs/gst/gconf/gconf.c: Add \n to g_print error messages
37546
37547 2004-02-23  Thomas Vander Stichele  <thomas at apestaart dot org>
37548
37549         * configure.ac:
37550         * gconf/Makefile.am:
37551         * gconf/gstreamer.schemas:
37552         * gst-libs/gst/gconf/Makefile.am:
37553         * gst-libs/gst/gconf/gconf.c:
37554           version gconf schemas and install locations
37555
37556 2004-02-23  Benjamin Otte  <otte@gnome.org>
37557
37558         * ext/xine/xineinput.c: (gst_xine_input_dispose):
37559         (gst_xine_input_subclass_init):
37560           call parent dispose.
37561           change pad template for CD reader correctly
37562         * ext/xine/Makefile.am:
37563         * ext/xine/gstxine.h:
37564         * ext/xine/xine.c: (plugin_init):
37565         * ext/xine/xineaudiosink.c:
37566           wrap audio sinks, too
37567         * gst-libs/gst/resample/private.h:
37568         * gst-libs/gst/resample/resample.c: (gst_resample_init),
37569         (gst_resample_reinit), (gst_resample_scale),
37570         (gst_resample_nearest_s16), (gst_resample_bilinear_s16),
37571         (gst_resample_sinc_slow_s16), (gst_resample_sinc_s16),
37572         (gst_resample_sinc_ft_s16), (gst_resample_nearest_float),
37573         (gst_resample_bilinear_float), (gst_resample_sinc_slow_float),
37574         (gst_resample_sinc_float), (gst_resample_sinc_ft_float):
37575         * gst-libs/gst/resample/resample.h:
37576         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
37577         (gst_audioscale_class_init), (gst_audioscale_link),
37578         (gst_audioscale_get_buffer), (gst_audioscale_init),
37579         (gst_audioscale_chain), (gst_audioscale_set_property),
37580         (gst_audioscale_get_property):
37581         * gst/audioscale/gstaudioscale.h:
37582           s/resample_*/gst_resample_*/i to not clobber namespaces
37583
37584 2004-02-23  Julien MOUTTE  <julien@moutte.net>
37585
37586         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
37587         (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
37588         (gst_riff_create_video_template_caps),
37589         (gst_riff_create_audio_template_caps),
37590         (gst_riff_create_iavs_template_caps):
37591         * gst-libs/gst/riff/riff-media.h:
37592         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
37593         (gst_asf_demux_audio_caps), (gst_asf_demux_add_audio_stream),
37594         (gst_asf_demux_video_caps), (gst_asf_demux_add_video_stream):
37595         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
37596         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
37597         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
37598         (gst_matroska_demux_plugin_init): First batch implementing audio and
37599         video codec tags in demuxers.
37600
37601 2004-02-22  Benjamin Otte  <otte@gnome.org>
37602
37603         * ext/xine/Makefile.am:
37604         * ext/xine/gstxine.h:
37605         * ext/xine/xine.c: (plugin_init):
37606         * ext/xine/xineinput.c:
37607           add input plugin wrapper. Playback from files, http, mms and cdda
37608           works.
37609         * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
37610           remove leftover G_GNUC_UNUSED
37611         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_stream),
37612         (gst_asf_demux_identify_guid):
37613           improve debugging output
37614
37615 2004-02-22  Benjamin Otte  <otte@gnome.org>
37616
37617         reported by: Padraig O'Briain <padraig.obriain@sun.com>
37618
37619         * autogen.sh:
37620           replace test -e with test -x for mkinstalldirs to be more portable.
37621           (fixes #134816)
37622
37623 2004-02-22  Benjamin Otte  <otte@gnome.org>
37624
37625         reported by: Stefan Kost <kost@imn.htwk-leipzig.de>
37626
37627         * gst/audioconvert/gstaudioconvert.c: (plugin_init):
37628           set rank to PRIMARY
37629         * gst/volume/gstvolume.c: (plugin_init):
37630           set rank to NONE
37631         fixes #134960
37632
37633 2004-02-22   Julio M. Merino Vidal <jmmv@menta.net>
37634
37635         reviewed by Benjamin Otte  <otte@gnome.org>
37636
37637         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
37638           escape NULL strings in GST_ELEMENT_ERROR properly (fixes #135116)
37639
37640 2004-02-22  Benjamin Otte  <otte@gnome.org>
37641
37642         * configure.ac:
37643           export [_]*{gst,Gst,GST}.* symbols from plugins
37644
37645 2004-02-22  Christophe Fergeau <teuf@gnome.org>
37646
37647         reviewed by: Benjamin Otte  <otte@gnome.org>
37648
37649         * ext/lame/gstlame.c: (add_one_tag):
37650         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
37651         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value),
37652         (gst_vorbisenc_metadata_set1):
37653         * gst/tags/gstid3tag.c:
37654         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add):
37655           apply fixes from bugs #135042 (lame can't write tags) and #133817
37656           (add GST_ALBUM_VOLUME_{COUNT,NUMBER} tags)
37657
37658 2004-02-22 Ramon Garcia <ramon_garcia_f@yahoo.com>
37659
37660         * configure.ac: Export only gst_plugin_desc from plugins.
37661          Note that this change only makes any effect with Linux using libtool
37662          1.5.2 or higher. Otherwise it is silently ignored, but it would build
37663          fine. And don't try to have several versions of libtool in different
37664          directories.
37665
37666 2004-02-20  Andy Wingo  <wingo@pobox.com>
37667
37668         * gst/intfloat/, gst/oneton: Removed, replaced by audioconvert and
37669         interleave respectively.
37670
37671         * gst/interleave/deinterleave.c: New plugin: deinterleave
37672         (replaces on oneton).
37673         * gst/interleave/interleave.c: New plugin: interleave.
37674         * gst/interleave/plugin.h: Support file.
37675         * gst/interleave/plugin.c: Support file.
37676
37677         * configure.ac: Remove intfloat and oneton, add interleave.
37678
37679         * ext/sndfile/gstsf.c: Handle events better.
37680
37681         * gst/audioconvert/gstaudioconvert.c: Change to support int2float
37682         and float2int operation. int2float has scheduling problems as
37683         noted in in2float_chain.
37684
37685 2004-02-20  Benjamin Otte  <otte@gnome.org>
37686
37687         * ext/xine/Makefile.am:
37688         * ext/xine/gstxine.h:
37689         * ext/xine/xine.c:
37690         * ext/xine/xineaudiodec.c:
37691         * ext/xine/xinecaps.c:
37692           add first version of xine plugin wrapper. Currently only wraps the
37693           QDM2 win32 DLL, and even that only in proof-of-concept quality.
37694         * configure.ac:
37695         * ext/Makefile.am:
37696           add xine plugin wrapper, disabled by default. Use --enable-xine to
37697           build. Note that it'll segfault on gst-register if you don't remove
37698           the goom and tvtime post plugins from xine.
37699         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
37700         (qtdemux_parse), (qtdemux_parse_trak), (qtdemux_audio_caps):
37701           add extradata parsing for QDM2.
37702           change around debugging prints.
37703
37704 2004-02-19  Benjamin Otte  <otte@gnome.org>
37705
37706         * ext/lame/gstlame.c: (gst_lame_chain):
37707         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
37708           use gst_tag_list_insert when you want to insert tags
37709
37710 2004-02-18  David Schleef  <ds@schleef.org>
37711
37712         * configure.ac:  Move massink to gst-rotten
37713         * ext/Makefile.am:
37714         * ext/mas/Makefile.am:
37715         * ext/mas/massink.c:
37716         * ext/mas/massink.h:
37717
37718 2004-02-18  David Schleef  <ds@schleef.org>
37719
37720         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init): Disable gdk_pixbuf
37721         typefinding, since it seems to be worse than nothing.
37722         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):  Add ftyp
37723         atom to recognize .mp4 and .m4a files as video/quicktime.
37724
37725 2004-02-18  David Schleef  <ds@schleef.org>
37726
37727         * gst/sine/demo-dparams.c: (quit_live),
37728         (dynparm_log_value_changed), (dynparm_value_changed), (main):
37729         Use double dparams, not float.
37730         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
37731         (gst_sinesrc_init): Change sync default to FALSE, since multiple
37732         sync'd elements don't really work correctly.
37733         * gst/volume/gstvolume.c: (volume_class_init), (volume_init),
37734         (volume_update_volume), (volume_get_property):  Change dparam
37735         to double.
37736
37737 2004-02-18  Julien MOUTTE  <julien@moutte.net>
37738
37739         * sys/ximage/ximagesink.c:
37740         (gst_ximagesink_xwindow_update_geometry),
37741         (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
37742         (gst_ximagesink_change_state), (gst_ximagesink_expose),
37743         (gst_ximagesink_init): Rework the way software video scaling works. So
37744         now we check on each chain call if the video frames are feeling the
37745         window. If not we try to renegotiate caps. On failure we memorize that
37746         and we won't try again for that PLAYING sessions.
37747         * sys/ximage/ximagesink.h: Adding a boolean to store the caps renego
37748         failure.
37749         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): initialize the
37750         synchronous flag.
37751
37752 2004-02-18  Thomas Vander Stichele  <thomas at apestaart dot org>
37753
37754         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
37755           break up _link so we can give a better debug message for errors
37756
37757 2004-02-18  Thomas Vander Stichele  <thomas at apestaart dot org>
37758
37759         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
37760           set up debug category
37761
37762 2004-02-18  Julien MOUTTE <julien@moutte.net>
37763
37764         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
37765         (gst_ximagesink_handle_xevents), (gst_ximagesink_expose): Reorganizing
37766         the way renegotiation work. The event handling function is not taking
37767         care of external windows and renegotiate method check for pad flags
37768         NEGOTIATING. Should fix : #133209
37769
37770 2004-02-17  Julien MOUTTE  <julien@moutte.net>
37771
37772         * sys/ximage/ximagesink.c: (gst_ximagesink_expose): Checking if the
37773         pad is negotiating before trying renegotiation.
37774
37775 2004-02-17  Thomas Vander Stichele  <thomas at apestaart dot org>
37776
37777         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
37778           pass on all possible mime types as typefind hints
37779
37780 2004-02-17  Julien MOUTTE <julien@moutte.net>
37781
37782         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
37783         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new): Fix a
37784         possible SHM leak if we crash. All other apps using XShm are doing
37785         that.
37786
37787 2004-02-17  Julien MOUTTE  <julien@moutte.net>
37788
37789         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
37790         (gst_ximagesink_expose): Renegotiate size on expose.
37791         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_expose): Update window
37792         size on expose.
37793
37794 2004-02-16  Benjamin Otte  <in7y118@public.uni-hamburg.de>
37795
37796         * testsuite/alsa/sinesrc.c:
37797           cosmetic fix to fix compile issue with gcc 2.95.4
37798
37799 2004-02-16  Julien MOUTTE <julien@moutte.net>
37800
37801         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
37802         (gst_alsa_timestamp_to_bytes): Alsa should trigger an error if it
37803         failed opening the audio device.
37804         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
37805         (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
37806         (gst_ximagesink_xwindow_new), (gst_ximagesink_xwindow_destroy),
37807         (gst_ximagesink_xwindow_resize), (gst_ximagesink_xwindow_clear),
37808         (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
37809         (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
37810         (gst_ximagesink_change_state), (gst_ximagesink_chain),
37811         (gst_ximagesink_set_xwindow_id): Clearing window in READY TO PAUSED.
37812         Removing some useless g_return_if_fail like wingo suggested.
37813         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
37814         (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xvimage_put),
37815         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
37816         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_xwindow_clear),
37817         (gst_xvimagesink_update_colorbalance),
37818         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_xcontext_get),
37819         (gst_xvimagesink_xcontext_clear),
37820         (gst_xvimagesink_get_fourcc_from_caps),
37821         (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
37822         (gst_xvimagesink_set_xwindow_id),
37823         (gst_xvimagesink_colorbalance_list_channels),
37824         (gst_xvimagesink_colorbalance_set_value),
37825         (gst_xvimagesink_colorbalance_get_value): Clearing window in READY TO
37826         PAUSED. Removing some useless g_return_if_fail like wingo suggested.
37827
37828 2004-02-16  Thomas Vander Stichele  <thomas at apestaart dot org>
37829
37830         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
37831           throw error when not negotiated instead of asserting
37832
37833 2004-02-15  Julien MOUTTE  <julien@moutte.net>
37834
37835         * gst/switch/gstswitch.c: (gst_switch_loop): More fixes for
37836         correct data refcounting.
37837
37838 2004-02-15  Julien MOUTTE  <julien@moutte.net>
37839
37840         * gst/switch/gstswitch.c: (gst_switch_change_state),
37841         (gst_switch_class_init): Cleaning the sinkpads correctly on state
37842         change, mostly the EOS flag.
37843
37844 2004-02-15  Julien MOUTTE  <julien@moutte.net>
37845
37846         * examples/gstplay/player.c: (got_eos), (main): Adding some
37847         output for debugging.
37848         * gst-libs/gst/play/play.c: (gst_play_state_change): Stop our
37849         timeouts if we go to any state different from PLAYING.
37850         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek): Fix some
37851         more EOS bugs in riff lib.
37852
37853 2004-02-14  Julien MOUTTE  <julien@moutte.net>
37854
37855         * gst-libs/gst/play/play.c: (gst_play_connect_visualization): Disable
37856         visualization until i find a way to fix switch correctly.
37857         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head): Fix a bug when
37858         EOS arrives.
37859         * gst/switch/gstswitch.c: (gst_switch_release_pad),
37860         (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
37861         (gst_switch_loop), (gst_switch_dispose), (gst_switch_class_init):
37862         Reworked switch to get a more correct behaviour with events and refing
37863         of data stored in sinkpads.
37864         * gst/switch/gstswitch.h: Adding an eos flag for every sinkpad so that
37865         we don't pull from a pad in EOS.
37866
37867 2004-02-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
37868
37869         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
37870           remove v1 tag even if we can't read it (makes sure we don't detect
37871           it again)
37872
37873 2004-02-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
37874
37875         * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait),
37876         (gst_alsa_xrun_recovery):
37877         * ext/alsa/gstalsa.h:
37878           try xrun recovery when wait failed. Make xrun recovery function
37879           return TRUE/FALSE to indicate success. (might fix #134354)
37880
37881 2004-02-13  David Schleef  <ds@schleef.org>
37882
37883         * gst/sine/demo-dparams.c: (dynparm_log_value_changed),
37884         (dynparm_value_changed), (main): Convert from float to double.
37885         * gst/sine/gstsinesrc.c: (gst_sinesrc_init): same.
37886
37887 2004-02-13  David Schleef  <ds@schleef.org>
37888
37889         * gst/silence/gstsilence.c: (gst_silence_class_init),
37890         (gst_silence_set_clock), (gst_silence_get),
37891         (gst_silence_set_property), (gst_silence_get_property):
37892         * gst/silence/gstsilence.h: Add sync property.
37893         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
37894         (gst_sinesrc_init), (gst_sinesrc_set_clock), (gst_sinesrc_get),
37895         (gst_sinesrc_set_property), (gst_sinesrc_get_property):
37896         * gst/sine/gstsinesrc.h: Add sync property.
37897
37898 2004-02-13  David Schleef  <ds@schleef.org>
37899
37900         * gst/intfloat/gstint2float.c: (conv_f32_s16),
37901         (gst_int2float_chain_gint16):  Change stdint usage to glib types.
37902
37903 2004-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
37904
37905         * configure.ac:
37906         * ext/Makefile.am:
37907         * gst-libs/ext/Makefile.am:
37908           move ffmpeg plugin to gst-ffmpeg module
37909
37910 2004-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
37911
37912         * configure.ac: use GST_ARCH to detect architecture
37913
37914 2004-02-12  Julien MOUTTE  <julien@moutte.net>
37915
37916         * gst/vbidec/vbiscreen.c: Fixing thomasvs fixes. Missing header.
37917
37918 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
37919
37920         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
37921           classify LADSPA plugins based on number of src/sink pads
37922           (#133663, Stefan Kost)
37923         * gst/sine/gstsinesrc.c: (gst_sinesrc_init):
37924           fix dparams registration
37925           (#133528, Stefan Kost)
37926         * gst/vbidec/vbiscreen.c: (vbiscreen_set_current_cell):
37927           fix use of isprint and use g_ascii_isprint instead
37928           (#133316, Stefan Kost)
37929
37930 2004-02-11  David Schleef  <ds@schleef.org>
37931
37932         Convert a few inner loops to use liboil.  This is currently
37933         optional, and is only enabled if liboil is present (duh!).
37934         * configure.ac: Check for liboil-0.1
37935         * gst/intfloat/Makefile.am:
37936         * gst/intfloat/gstint2float.c: (conv_f32_s16), (scalarmult_f32),
37937         (gst_int2float_chain_gint16):
37938         * gst/videofilter/Makefile.am:
37939         * gst/videofilter/gstvideobalance.c: (gst_videobalance_class_init),
37940         (tablelookup_u8), (gst_videobalance_planar411):
37941         * gst/videotestsrc/Makefile.am:
37942         * gst/videotestsrc/gstvideotestsrc.c: (plugin_init):
37943         * gst/videotestsrc/videotestsrc.c: (splat_u8), (paint_hline_YUY2),
37944         (paint_hline_IYU2), (paint_hline_str4), (paint_hline_str3),
37945         (paint_hline_RGB565), (paint_hline_xRGB1555):
37946
37947 2004-02-11  David Schleef  <ds@schleef.org>
37948
37949         * ext/lcs/gstcolorspace.c: (colorspace_find_lcs_format),
37950         (gst_colorspace_caps_get_fourcc), (colorspace_setup_converter),
37951         (gst_colorspace_getcaps), (gst_colorspace_link),
37952         (gst_colorspace_base_init), (gst_colorspace_init),
37953         (gst_colorspace_chain), (gst_colorspace_change_state),
37954         (plugin_init): Merge Ronald's patch (bug #117897) and update
37955         for new caps and negotiation.  Seems to work, although it
37956         shows off bugs in lcs.
37957
37958 2004-02-11  David Schleef  <ds@schleef.org>
37959
37960         * ext/alsa/Makefile.am: Fix linking against libgstinterfaces.
37961         (bug #133886)  Noticed by bugs@leroutier.net (Stephane LOEUILLET)
37962
37963 2004-02-11  David Schleef  <ds@schleef.org>
37964
37965         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_class_init),
37966         (gst_rfbsrc_change_state), (gst_rfbsrc_init),
37967         (gst_rfbsrc_set_property), (gst_rfbsrc_get_property):
37968         Add server and port properties
37969
37970 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
37971
37972         * m4/a52.m4:
37973         * m4/aalib.m4:
37974         * m4/as-ffmpeg.m4:
37975         * m4/as-liblame.m4:
37976         * m4/as-slurp-ffmpeg.m4:
37977         * m4/check-libheader.m4:
37978         * m4/esd.m4:
37979         * m4/freetype2.m4:
37980         * m4/gconf-2.m4:
37981         * m4/glib.m4:
37982         * m4/gst-alsa.m4:
37983         * m4/gst-artsc.m4:
37984         * m4/gst-ivorbis.m4:
37985         * m4/gst-matroska.m4:
37986         * m4/gst-sdl.m4:
37987         * m4/gst-shout2.m4:
37988         * m4/gst-sid.m4:
37989         * m4/gtk.m4:
37990         * m4/libdv.m4:
37991         * m4/libfame.m4:
37992         * m4/libmikmod.m4:
37993         * m4/ogg.m4:
37994         * m4/vorbis.m4:
37995           fix underquotedness of macros (#133800)
37996         * m4/as-avifile.m4:
37997         * m4/xmms.m4:
37998           removed because no longer used
37999
38000 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
38001
38002         * configure.ac:
38003           require gettext 0.11.5 so ulonglong.m4 gets checked out and copied
38004           by autopoint (fixes #132996)
38005
38006 2004-02-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38007
38008         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_base_init):
38009         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_base_init):
38010         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_base_init):
38011         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_base_init):
38012           fix memleaks
38013
38014 2004-02-11  David Schleef  <ds@schleef.org>
38015
38016         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
38017         (gst_gdk_pixbuf_chain): Fix logic bug causing spurious errors.
38018         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_base_init),
38019         (gst_jpegdec_init), (gst_jpegdec_chain): Fix negotiation.
38020         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_base_init),
38021         (gst_jpegenc_class_init), (gst_jpegenc_init),
38022         (gst_jpegenc_getcaps), (gst_jpegenc_link), (gst_jpegenc_resync),
38023         (gst_jpegenc_chain), (gst_jpegenc_set_property),
38024         (gst_jpegenc_get_property):  Fix negotiation.  Add some properties.
38025         * ext/jpeg/gstjpegenc.h: Fix negotiation.
38026
38027 2004-02-10  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38028
38029         * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
38030         (gst_mikmod_srcfixate), (gst_mikmod_srclink), (gst_mikmod_loop):
38031         * ext/mikmod/gstmikmod.h:
38032           fix caps negotiation in mikmod
38033         * ext/ogg/gstoggdemux.c: (gst_ogg_print):
38034           output debug information
38035
38036 2004-02-08  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38037
38038         * gst-libs/gst/colorbalance/Makefile.am:
38039         * gst-libs/gst/navigation/Makefile.am:
38040         * gst-libs/gst/xoverlay/Makefile.am:
38041           remove unused GST_OPT_CFLAGS from Makefiles
38042           include X_CFLAGS and X_LIBS in xoverlay. (#131948)
38043
38044 2004-02-07  David Schleef  <ds@schleef.org>
38045
38046         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_handle_event): Don't
38047         push events to pads that haven't been created (#133508)
38048
38049 2004-02-07  Jan Schmidt  <thaytan@mad.scientist.com>
38050
38051         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
38052         (gst_dvdec_sink_convert), (gst_dvdec_handle_sink_event),
38053         (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
38054         (gst_dvdec_loop), (gst_dvdec_change_state):
38055         Second attempt at committing a working dvdec element.
38056
38057 2004-02-06  David Schleef  <ds@schleef.org>
38058
38059         Build fixes for OS X: (see #129600)
38060         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_strh),
38061         (gst_riff_read_strf_vids), (gst_riff_read_strf_auds),
38062         (gst_riff_read_strf_iavs):
38063         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
38064         (gst_avi_demux_stream_odml):
38065         * gst/playondemand/Makefile.am:
38066         * gst/rtp/rtp-packet.c:
38067
38068 2004-02-05  David Schleef  <ds@schleef.org>
38069
38070         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_loop): Revert
38071         last change, because it Just Doesn't Compile.
38072
38073 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38074
38075         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
38076           skip undecodable id3v2 tag instead of keeping it
38077
38078 2004-02-05  David Schleef  <ds@schleef.org>
38079
38080         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
38081         Unref leaked buffer.  (Noticed by Ronald)
38082
38083 2004-02-05  David I. Lehn  <dlehn@users.sourceforge.net>
38084
38085         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
38086         Sync requires with other checks.  >= vs =.
38087
38088 2004-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
38089
38090         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
38091         (gst_dvdec_video_link), (gst_dvdec_loop):
38092         * ext/dv/gstdvdec.h:
38093           rework the caps negotiation so that dvdec works again instead
38094           of just segfaulting.
38095
38096 === release 0.7.4 ===
38097
38098 2004-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
38099
38100         * NEWS: GStreamer Plugins 0.7.4 "For Great Justice" released
38101         * configure.ac: changed for release
38102
38103 2004-02-05  Thomas Vander Stichele  <thomas at apestaart dot org>
38104
38105         * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in:
38106         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
38107         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
38108         * pkgconfig/gstreamer-play-uninstalled.pc.in:
38109           reworked patch by David Lehn to fix libdir and includedir for
38110           uninstalled libraries
38111           removed play and gconf from gstreamer-libs since they have their
38112           own pkgconfig files
38113
38114 2004-02-04  David Schleef  <ds@schleef.org>
38115
38116         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt): Fix a caps
38117         memleak.
38118
38119 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38120
38121         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
38122           use correct GST_TAG_ENCODER tag
38123
38124 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38125
38126         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
38127           be sure to stop the clock when going to paused
38128         * sys/oss/gstosssink.c: (gst_osssink_change_state):
38129           reset number of transmitted when going to ready.
38130         fixes #132935
38131
38132 2004-02-05  Charles Schmidt <cschmidt2@emich.edu>
38133
38134         reviewed by Benjamin Otte
38135
38136         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
38137           extract track count (fixes #133410)
38138
38139 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38140
38141         * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
38142           that should be !=, not == (fixes #132519)
38143
38144 2004-02-04  David Schleef  <ds@schleef.org>
38145
38146         Make sure set_explicit_caps() is called before adding pad.
38147         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
38148         * gst/id3/gstid3types.c: (gst_id3types_loop):
38149         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
38150         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
38151
38152 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
38153
38154         * configure.ac:
38155           bump nano to 2, first prerelease
38156           put back AM_PROG_LIBTOOL
38157
38158 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
38159
38160         * testsuite/alsa/Makefile.am:
38161           these are user test apps, not automatic testsuite tests
38162
38163 2004-02-04  David Schleef  <ds@schleef.org>
38164
38165         Convert GST_DEBUG_CAPS() to GST_DEBUG():
38166         * gst/mpeg1videoparse/gstmp1videoparse.c:
38167         (mp1videoparse_parse_seq):
38168         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
38169         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
38170         * sys/xvideo/gstxwindow.c: (_gst_xwindow_new):
38171         * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
38172         (gst_xvideosink_getcaps):
38173         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
38174         * testsuite/gst-lint: more tests
38175
38176 2004-02-04  David Schleef  <ds@schleef.org>
38177
38178         Replace use of GST_PAD_FORMATS_FUNCTION() and similar macros
38179         with the code that they would expand to.
38180         * ext/flac/gstflacdec.c: (gst_flacdec_get_src_formats),
38181         (gst_flacdec_get_src_query_types),
38182         (gst_flacdec_get_src_event_masks):
38183         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_formats),
38184         (gst_gnomevfssrc_get_query_types),
38185         (gst_gnomevfssrc_get_event_mask):
38186
38187 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38188
38189         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
38190         (gst_sinesrc_dispose):
38191           fix memleak by properly disposing sinesrc
38192
38193 2004-02-04  Julien MOUTTE  <julien@moutte.net>
38194
38195         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_expose):
38196         * gst-libs/gst/xoverlay/xoverlay.h: Adding the _expose method to tell
38197         an overlay to redraw the image because it has been exposed.
38198         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy),
38199         (gst_ximagesink_ximage_put), (gst_ximagesink_expose),
38200         (gst_ximagesink_xoverlay_init), (gst_ximagesink_init):
38201         * sys/ximage/ximagesink.h: Implement expose method from XOverlay
38202         interface
38203         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_destroy),
38204         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_expose),
38205         (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_init):
38206         * sys/xvimage/xvimagesink.h: Implement expose method from XOverlay
38207         interface
38208
38209 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38210
38211         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
38212           more memleak fixage
38213
38214 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38215
38216         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
38217         * gst/typefind/gsttypefindfunctions.c:
38218           fix memleaks shown by gst-typefind
38219
38220 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
38221
38222         * common/glib-gen.mak:
38223           add hack rule to touch .Plo files
38224         * gst-libs/gst/colorbalance/Makefile.am:
38225         * gst-libs/gst/mixer/Makefile.am:
38226         * gst-libs/gst/play/Makefile.am:
38227         * gst-libs/gst/tuner/Makefile.am:
38228           remove glib_root variable
38229
38230 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38231
38232         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream):
38233           set explicit caps before adding the element, so the autopluggers can
38234           plug correctly.
38235         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
38236         (mpeg2_sys_type_find), (mpeg1_sys_type_find),
38237         (mpeg_video_type_find), (mpeg_video_stream_type_find),
38238         (dv_type_find):
38239           fix memleaks in typefind functions. gst_type_find_suggest takes a const
38240           argument.
38241
38242 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
38243
38244         * gst-libs/gst/colorbalance/Makefile.am:
38245         * gst-libs/gst/colorbalance/colorbalance-marshal.list:
38246         * gst-libs/gst/colorbalance/colorbalance.c:
38247         * gst-libs/gst/colorbalance/colorbalance.h:
38248         * gst-libs/gst/colorbalance/colorbalancemarshal.list:
38249         * gst-libs/gst/mixer/Makefile.am:
38250         * gst-libs/gst/mixer/mixer-marshal.list:
38251         * gst-libs/gst/mixer/mixer.c:
38252         * gst-libs/gst/mixer/mixer.h:
38253         * gst-libs/gst/mixer/mixermarshal.list:
38254         * gst-libs/gst/play/Makefile.am:
38255         * gst-libs/gst/play/play.h:
38256         * gst-libs/gst/tuner/Makefile.am:
38257         * gst-libs/gst/tuner/tuner-marshal.list:
38258         * gst-libs/gst/tuner/tuner.c:
38259         * gst-libs/gst/tuner/tuner.h:
38260         * gst-libs/gst/tuner/tunermarshal.list:
38261           use new glib-gen.mak snippet to clean up Makefile.am
38262           fix various bugs in Makefile.am's
38263
38264 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38265
38266         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
38267           handle chain parsing correctly in the multichain case
38268         * ext/theora/theoradec.c: (gst_theora_dec_init), (_theora_ilog),
38269         (theora_dec_from_granulepos), (theora_dec_to_granulepos),
38270         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
38271         (theora_dec_chain):
38272           handle events and queries correctly
38273
38274 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
38275
38276         * .cvsignore:
38277         Ignore generated file _stdint.h.
38278
38279 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
38280
38281         * gst-libs/gst/colorbalance/Makefile.am:
38282         * gst-libs/gst/colorbalance/colorbalance.h:
38283         * gst-libs/gst/mixer/Makefile.am:
38284         * gst-libs/gst/mixer/mixer.h:
38285         * gst-libs/gst/play/Makefile.am:
38286         * gst-libs/gst/play/play.h:
38287         * gst-libs/gst/tuner/Makefile.am:
38288         * gst-libs/gst/tuner/tuner.h:
38289         Generate enum type code with glib-mkenums.
38290         * gst-libs/gst/colorbalance/.cvsignore:
38291         * gst-libs/gst/mixer/.cvsignore:
38292         * gst-libs/gst/play/.cvsignore:
38293         * gst-libs/gst/tuner/.cvsignore:
38294         Ignore generated files.
38295
38296 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
38297
38298         * gst-libs/gst/audio/.cvsignore:
38299         Ignore generated file.
38300         * gst-libs/gst/audio/Makefile.am:
38301         Do not install example filter.
38302
38303 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
38304
38305         * examples/switch/.cvsignore:
38306         Ignore generated file.
38307
38308 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38309
38310         * common/m4/ax_create_stdint_h.m4:
38311         * configure.ac:
38312           add AX_CREATE_STDINT_H to get correct type definitions for a52dec in
38313           _stdint.h.
38314         * Makefile.am:
38315           remove generated _stdint.h in DISTCLEANFILES
38316         * ext/a52dec/gsta52dec.c:
38317           include _stdint.h for a52dec. (should fix #133064)
38318
38319 2004-02-02  Jeremy Simon  <jesimon@libertysurf.fr>
38320
38321         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add),
38322         (gst_tag_to_vorbis_comments):
38323         Add replaygain support to vorbistag
38324
38325 2004-02-02  Jeremy Simon  <jesimon@libertysurf.fr>
38326         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
38327         (gst_ffmpeg_caps_to_extradata):
38328           Fix SVQ3 caps flag properties
38329           Use glib macro for bytes swap
38330
38331 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
38332
38333         * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
38334         * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
38335         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
38336         * ext/sndfile/gstsf.c: (plugin_init):
38337         * gst/avi/gstavi.c: (plugin_init):
38338         * sys/dxr3/dxr3init.c: (plugin_init):
38339         * sys/oss/gstossaudio.c: (plugin_init):
38340         * sys/v4l/gstv4l.c: (plugin_init):
38341         * sys/v4l2/gstv4l2.c: (plugin_init):
38342           remove textdomain calls
38343         * po/nl.po:
38344           update Dutch translation
38345
38346 2004-02-02  Julien MOUTTE  <julien@moutte.net>
38347
38348         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
38349         (gst_play_set_audio_sink): Moving volume in the audio thread for
38350         instantaneous volume change. Maybe i will add another volume in front
38351         of visualization later, not sure yet though.
38352
38353 2004-02-02  Julien MOUTTE  <julien@moutte.net>
38354
38355         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
38356         (gst_ximagesink_handle_xevents): Better X events handling, only take
38357         the latest events for configure and motion.
38358         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents): same.
38359
38360 2004-02-02  Jon Trowbridge  <trow@gnu.org>
38361
38362         reviewed by: David Schleef  <ds@schleef.org>
38363
38364         Fix memory leaks:
38365         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_register):
38366         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_register):
38367
38368 2004-02-02  David Schleef  <ds@schleef.org>
38369
38370         code cleanup.  Change bzero() to memset().  Remove duplicate ; at ends
38371         of lines.
38372         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_event):
38373         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
38374         * ext/xvid/gstxviddec.c: (gst_xviddec_src_link):
38375         * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
38376         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
38377         * gst/effectv/gstedge.c: (gst_edgetv_sinkconnect):
38378         * gst/effectv/gstvertigo.c: (gst_vertigotv_sinkconnect):
38379         * gst/intfloat/float22int.c: (gst_float2_2_int_getcaps),
38380         (gst_float2_2_int_link):
38381         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
38382         * gst/rtjpeg/RTjpeg.c: (RTjpeg_init_mcompress):
38383         * gst/tcp/gsttcpsink.c: (gst_tcpsink_init_send):
38384         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_init_receive):
38385         * gst/udp/gstudpsink.c: (gst_udpsink_init_send):
38386         * gst/udp/gstudpsrc.c: (gst_udpsrc_init_receive):
38387         * sys/v4l/gstv4lelement.c: (gst_v4lelement_init):
38388         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture):
38389         * testsuite/gst-lint: Add tests for bzero and ;;
38390
38391 2004-02-02  David Schleef  <ds@schleef.org>
38392
38393         * gst/debug/efence.c: Add fallback if MAP_ANONYMOUS isn't defined.
38394
38395 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
38396
38397         * ext/aalib/gstaasink.c: (gst_aasink_open):
38398         * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
38399         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
38400         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
38401         * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
38402         (gst_afsink_close_file):
38403         * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
38404         (gst_afsrc_close_file):
38405         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
38406         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
38407         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
38408         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
38409         * ext/esd/esdmon.c: (gst_esdmon_get):
38410         * ext/esd/esdsink.c: (gst_esdsink_chain), (gst_esdsink_open_audio):
38411         * ext/faac/gstfaac.c: (gst_faac_chain):
38412         * ext/faad/gstfaad.c: (gst_faad_chain):
38413         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
38414         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
38415         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
38416         * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
38417         (gst_flacdec_loop):
38418         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
38419         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
38420         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
38421         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
38422         (gst_gnomevfssink_close_file):
38423         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
38424         (gst_gnomevfssrc_open_file):
38425         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
38426         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
38427         * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
38428         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
38429         (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
38430         * ext/mad/gstmad.c: (gst_mad_chain):
38431         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
38432         * ext/mpeg2dec/gstmpeg2dec.c:
38433         * ext/mpeg2enc/gstmpeg2enc.cc:
38434         * ext/mplex/gstmplex.cc:
38435         * ext/mplex/gstmplexibitstream.cc:
38436         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
38437         (gst_ogg_demux_push):
38438         * ext/raw1394/gstdv1394src.c:
38439         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
38440         (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
38441         * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
38442         (gst_sf_loop):
38443         * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
38444         * ext/swfdec/gstswfdec.c: (gst_swfdec_loop):
38445         * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
38446         * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
38447         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
38448         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
38449         * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
38450         * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
38451         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
38452         (gst_riff_read_element_data), (gst_riff_read_seek),
38453         (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
38454         * gst/adder/gstadder.c: (gst_adder_loop):
38455         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
38456         (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
38457         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
38458         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
38459         * gst/avi/gstavimux.c: (gst_avimux_stop_file):
38460         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
38461         * gst/goom/gstgoom.c: (gst_goom_chain):
38462         * gst/id3/gstid3types.c: (gst_id3types_loop):
38463         * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
38464         * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
38465         * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
38466         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
38467         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
38468         (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
38469         (gst_ebml_read_float), (gst_ebml_read_header):
38470         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
38471         (gst_matroska_demux_parse_blockgroup):
38472         * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
38473         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
38474         * gst/oneton/gstoneton.c: (gst_oneton_chain):
38475         * gst/silence/gstsilence.c: (gst_silence_get):
38476         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
38477         * gst/smpte/gstsmpte.c: (gst_smpte_loop):
38478         * gst/speed/gstspeed.c: (speed_loop):
38479         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
38480         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
38481         * gst/volenv/gstvolenv.c: (gst_volenv_chain):
38482         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
38483         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
38484         (gst_wavparse_loop):
38485         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
38486         (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
38487         (dxr3audiosink_close):
38488         * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
38489         * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
38490         (dxr3videosink_close), (dxr3videosink_write_data):
38491         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
38492         * sys/oss/gstosssink.c: (gst_osssink_chain):
38493         * sys/oss/gstosssrc.c: (gst_osssrc_get):
38494         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
38495         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
38496         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
38497         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
38498         (gst_v4l_set_window), (gst_v4l_enable_overlay):
38499         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
38500         (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
38501         (gst_v4l_get_frequency), (gst_v4l_set_frequency),
38502         (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
38503         (gst_v4l_set_audio):
38504         * sys/v4l/v4l_calls.h:
38505         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
38506         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
38507         (gst_v4lmjpegsink_playback_init),
38508         (gst_v4lmjpegsink_playback_start):
38509         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame):
38510         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
38511         (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
38512         (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
38513         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
38514         * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
38515         (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
38516         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
38517         (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
38518         (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
38519         (gst_v4l2_get_output), (gst_v4l2_set_output),
38520         (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
38521         (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
38522         (gst_v4l2_set_attribute):
38523         * sys/v4l2/v4l2_calls.h:
38524         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
38525         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
38526         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
38527         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
38528         (gst_v4l2src_capture_stop):
38529         * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
38530         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
38531         (gst_ximagesink_chain):
38532         * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
38533         (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
38534         (gst_xvideosink_xwindow_new):
38535         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
38536         (gst_xvimagesink_chain):
38537
38538 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
38539
38540         * gst/volume/gstvolume.c: (gst_volume_set_volume),
38541         (gst_volume_get_volume), (volume_class_init), (volume_init),
38542         (volume_chain_int16), (volume_update_volume):
38543         * gst/volume/gstvolume.h:
38544           make code more readable by removing magic numbers
38545           make mixer interface export 0-100 range
38546           make it internally map to 0.0-1.0 range so users don't distort
38547           output by putting the sliders at full volume
38548
38549 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
38550
38551         * gst-libs/gst/play/play.c: (gst_play_tick_callback),
38552         (gst_play_state_change), (gst_play_seek_to_time):
38553         block the tick callback for 0.5 secs after doing a seek
38554
38555 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
38556
38557         * gst-libs/gst/play/play.c: (gst_play_new):
38558           check for GError
38559
38560 2004-02-01  Julien MOUTTE  <julien@moutte.net>
38561
38562         * gst-libs/gst/play/play.c: (gst_play_seek_to_time),
38563         (gst_play_new): Accepting NULL GError, blocking time tick while seeking.
38564         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
38565         (gst_ximagesink_chain), (gst_ximagesink_init): s/sinkconnect/sink_link
38566         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
38567         (gst_xvimagesink_chain), (gst_xvimagesink_init): s/sinkconnect/sink_link
38568
38569 2004-02-01  Thomas Vander Stichele  <thomas at apestaart dot org>
38570
38571         * configure.ac:
38572         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
38573           check for a function added in vorbis 1.1
38574
38575 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38576
38577         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
38578         (gst_alsa_drain_audio), (gst_alsa_stop_audio):
38579           really start/stop clock only on PLAYING <=> PAUSED
38580         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
38581           remove \n from debugging lines
38582         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
38583           make it work when seeking does not
38584         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
38585           reset on DISCONT
38586
38587 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38588
38589         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start):
38590           start clock on PAUSED=>PLAYING, not later
38591         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
38592           extract correct time for different discont formats
38593         (gst_alsa_sink_get_time):
38594           don't segfault when no format is negotiated yet, just return 0
38595         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
38596         (gst_ogg_demux_handle_event), (gst_ogg_demux_push),
38597         (gst_ogg_pad_push):
38598           handle flush and discont events correctly
38599         * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
38600           handle discont events correctly
38601
38602 2004-01-31  Thomas Vander Stichele  <thomas at apestaart dot org>
38603
38604         * gst-libs/gst/play/play.c: (gst_play_error_quark),
38605         (gst_play_error_create), (gst_play_error_plugin),
38606         (gst_play_pipeline_setup), (gst_play_init), (gst_play_new):
38607         * gst-libs/gst/play/play.h:
38608           add error handling during creation
38609         * examples/gstplay/player.c: (main):
38610           use new gst_play_new
38611
38612
38613 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38614
38615         * ext/theora/theoradec.c: (theora_dec_chain):
38616           make comments work
38617         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
38618         (vorbis_dec_src_event), (vorbis_dec_chain):
38619           add encoder tag, fix tag reading to be more error tolerant, change
38620           BITRATE to NOMINAL_BITRATE, add debugging, don't unref events after
38621           gst_pad_event_default.
38622         * gst/tags/gstvorbistag.c:
38623         (gst_tag_list_from_vorbiscomment_buffer):
38624           undefine function specific define at end of function
38625
38626 2004-01-31  Jeremy Simon  <jesimon@libertysurf.fr>
38627
38628         * ext/flac/gstflac.c: (plugin_init):
38629         * ext/flac/gstflacdec.c: (gst_flacdec_class_init):
38630         * ext/flac/gstflacdec.h:
38631         * ext/flac/gstflacenc.h:
38632           Fix typos
38633
38634 2004-01-30  David I. Lehn  <dlehn@users.sourceforge.net>
38635
38636         * examples/gstplay/player.c: s/gstplay.h/play.h/
38637
38638 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
38639
38640         * gst-libs/gst/play/Makefile.am:
38641         * gst-libs/gst/play/gstplay.c:
38642         * gst-libs/gst/play/gstplay.h:
38643         * gst-libs/gst/play/play.c:
38644           more surgery, operation complete
38645
38646 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
38647
38648         * gst-libs/gst/play/play.old.c:
38649         * gst-libs/gst/play/play.old.h:
38650           after CVS surgery by moving, remove
38651         * gst-libs/gst/play/playpipelines.c:
38652           remove
38653
38654         * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
38655           add negotiation error
38656
38657 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
38658
38659         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
38660         (gst_ogg_demux_push):
38661           add some seeking debug info
38662           send a flush when seeking
38663
38664 2004-01-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38665
38666         * configure.ac:
38667           use AC_C_INLINE
38668         * configure.ac:
38669         * ext/Makefile.am:
38670         * ext/theora/Makefile.am:
38671         * ext/theora/theoradec.c:
38672           add theora video decoder. Does just do simple decoding for now and
38673           has been tested against Theora cvs only. It only works when theora
38674           is compiled with --enable-static.
38675         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
38676           always reset packetno on DISCONT
38677
38678 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38679
38680         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
38681           Fix audio.
38682
38683 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38684
38685         * gst/mpegaudioparse/gstmpegaudioparse.c:
38686         (mp3_type_frame_length_from_header):
38687           Fix header parsing - stolen from ffmpeg (thank you! :) ).
38688
38689 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38690
38691         * ext/esd/esdsink.c: (gst_esdsink_init):
38692           Since we have static pad template caps, we don't need to negotiate;
38693           either the core errors out or we know the format.
38694
38695 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38696
38697         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
38698         (gst_riff_read_seek):
38699         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
38700         (gst_ebml_read_seek):
38701           Fix event handling.
38702
38703 2004-01-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38704
38705         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
38706           removee video/x-theora from vp3 decoder, it doesn't handle raw
38707           theora streams
38708         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
38709           fix bug with finalizing element that never went to PAUSED
38710         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
38711           length and position queries were swapped
38712         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
38713         (vorbis_dec_from_granulepos), (vorbis_dec_src_query),
38714         (vorbis_dec_src_event):
38715           implement querying time and bytes
38716
38717 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
38718
38719         * just about every source file:
38720           gst_element_error -> GST_ELEMENT_ERROR
38721
38722 2004-01-29  Julien MOUTTE  <julien@moutte.net>
38723
38724         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get): Fixing seeking
38725         emiting FLUSH and even before DISCONT.
38726         * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): Fix seeking to
38727         get the best instant seeking as possible yay!
38728
38729 2004-01-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38730
38731         * gst/mpeg1videoparse/gstmp1videoparse.c:
38732         (gst_mp1videoparse_real_chain):
38733           Committed wrong version last week... Grr... Didn't notice until now.
38734
38735 2004-01-29  Julien MOUTTE <julien@moutte.net>
38736
38737         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new):
38738         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new): Emit the
38739         have_xwindow_id signal in xwindow_create.
38740
38741 2004-01-29  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38742
38743         * ext/ogg/gstoggdemux.c:
38744           lots of changes - mainly support for chained bitstreams, seeking,
38745           querying and bugfixes of course
38746         * ext/vorbis/Makefile.am:
38747         * ext/vorbis/vorbisdec.c:
38748         * ext/vorbis/vorbisdec.h:
38749           add vorbisdec raw vorbis decoder
38750         * ext/vorbis/vorbis.c: (plugin_init):
38751           register vorbisdec as PRIMARY, vorbisfile as SECONDARY
38752         * gst/intfloat/Makefile.am:
38753         * gst/intfloat/float22int.c:
38754         * gst/intfloat/float22int.h:
38755         * gst/intfloat/gstintfloatconvert.c: (plugin_init):
38756           add float2intnew plugin. It converts multichannel interleaved float to
38757           multichannel interleaved int. The name should probably be changed.
38758         * gst/typefind/gsttypefindfunctions.c: (theora_type_find),
38759         (plugin_init):
38760           add typefinding for raw theora video so oggdemux can detect it.
38761
38762 2004-01-28  Julien MOUTTE  <julien@moutte.net>
38763
38764         * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): seek on video
38765         sink element first.
38766         * gst/videoscale/gstvideoscale.c:
38767         (gst_videoscale_handle_src_event): Fixing src event handler.
38768
38769 2004-01-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38770
38771         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
38772         (gst_v4lsrc_open), (gst_v4lsrc_close),
38773         (gst_v4lsrc_palette_to_caps), (gst_v4lsrc_srcconnect),
38774         (gst_v4lsrc_getcaps), (gst_v4lsrc_set_clock):
38775         * sys/v4l/gstv4lsrc.h:
38776         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_start),
38777         (gst_v4lsrc_grab_frame), (gst_v4lsrc_capture_stop):
38778           Implement resizing... Hack. But that's why v4l is b0rked...
38779
38780 2004-01-28  Julien MOUTTE <julien@moutte.net>
38781
38782         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
38783         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
38784         (gst_ximagesink_ximage_put), (gst_ximagesink_xwindow_new),
38785         (gst_ximagesink_xwindow_destroy):
38786         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
38787         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
38788         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
38789         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_get_xv_support),
38790         (gst_xvimagesink_xcontext_get): Removing some useless debugs messages,
38791         correctly cleaning the image created to check xshm calls on succes,
38792         added a lot of XSync calls in X11 functions, and fixed a segfault when
38793         no image format was defined before negotiation happened.
38794
38795 2004-01-28  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38796
38797         * ext/alsa/gstalsa.c: (gst_alsa_query_func):
38798           use gst_element_get_time to get correct time
38799
38800 2004-01-28  Julien MOUTTE  <julien@moutte.net>
38801
38802         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
38803         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_destroy),
38804         (gst_ximagesink_xcontext_get), (gst_ximagesink_class_init):
38805         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xerror),
38806         (gst_xvimagesink_check_xshm_calls),
38807         (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xcontext_get): Our
38808         X plugins are now able to detect that XShm calls will fail even if the
38809         server claims that it has XShm support (remote displays most of the
38810         time). We then log the error as a GST_DEBUG and set use_shm to FALSE
38811         so that we use non XShm functions. This feature is almost useless for
38812         xvimagesink as Xv is not supported on remote displays anyway, but
38813         it might happen than even on the local display XShm calls fail.
38814
38815 2004-01-27  David Schleef  <ds@schleef.org>
38816
38817         * ext/esd/esdsink.c: (gst_esdsink_class_init), (gst_esdsink_init),
38818         (gst_esdsink_link), (gst_esdsink_get_time), (gst_esdsink_chain),
38819         (gst_esdsink_change_state):  Fix sync issues in esdsink.  Also
38820         changed esdsink to only use 44100,16,2, since esd sucks at rate
38821         conversion and esdsink has had difficulty negotiating.
38822
38823 2004-01-27  Julien MOUTTE <julien@moutte.net>
38824
38825         * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback),
38826         (gst_play_seek_to_time): Fixing the way to get current position.
38827
38828 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38829
38830         * sys/oss/gstosssink.c: (gst_osssink_sink_query):
38831           use gst_element_get_time to get correct time
38832
38833 2004-01-27  Julien MOUTTE <julien@moutte.net>
38834
38835         * gst-libs/gst/play/gstplay.c: (gst_play_set_location): The easiest
38836         fix ever... Inverting 2 lines of code make spider autoplug correctly
38837         tagged mp3 !
38838
38839 2004-01-27  David Schleef  <ds@schleef.org>
38840
38841         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
38842         Use gst_pad_try_set_caps_nonfixed().
38843
38844 2004-01-27  David Schleef  <ds@schleef.org>
38845
38846         * gst/ac3parse/gstac3parse.c: update to checklist 5
38847         * gst/adder/gstadder.c: rewrite negotiation.  update to checklist 5
38848         * gst/audioconvert/gstaudioconvert.c: update to checklist 5
38849         * gst/audioscale/gstaudioscale.c: same
38850         * gst/auparse/gstauparse.c: same
38851         * gst/avi/gstavidemux.c: same
38852
38853 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38854
38855         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
38856           stop processing after EOS
38857
38858 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38859
38860         * gst/asfdemux/asfheaders.h:
38861         * gst/asfdemux/gstasfdemux.c:
38862         * gst/asfdemux/gstasfmux.c: (gst_asfmux_put_guid),
38863         (gst_asfmux_put_string), (gst_asfmux_put_wav_header),
38864         (gst_asfmux_put_vid_header), (gst_asfmux_put_bmp_header):
38865           lot's of fixes to make data extraction simpler and get the code
38866           architecture and compiler independant. Add debugging category
38867         * gst/goom/gstgoom.c: (gst_goom_change_state):
38868           reset channel count on PAUSED=>READY, not READY=>PAUSED
38869
38870 2004-01-26  Colin Walters  <walters@verbum.org>
38871
38872         * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_get): Remove ugly
38873         code to pull a bigger buffer in iradio mode.  This as a side effect
38874         makes typefinding work.
38875
38876 2004-01-26  Jeremy Simon  <jesimon@libertysurf.fr>
38877
38878         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
38879         Fix SVQ3 decoding on PPC
38880
38881 2004-01-26  Julien MOUTTE <julien@moutte.net>
38882
38883         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain): Dunno how
38884         that one managed to stay there... Fixed.
38885
38886 2004-01-26  Jeremy Simon  <jesimon@libertysurf.fr>
38887
38888         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
38889         (gst_ffmpeg_caps_to_extradata), (gst_ffmpeg_caps_to_pixfmt):
38890         * gst/qtdemux/qtdemux.c: (plugin_init), (qtdemux_parse_trak),
38891         (qtdemux_video_caps):
38892         * gst/qtdemux/qtdemux.h:
38893         Add SVQ3 specific flags to qtdemux and ffmpeg
38894
38895 2004-01-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38896
38897         * gst-libs/gst/audio/audio.h:
38898           remove buffer-frames from audio caps
38899         * gst/audioconvert/gstaudioconvert.c:
38900           fix plugin to really work.
38901
38902 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38903
38904         * gst-libs/gst/mixer/mixer.c:
38905         * gst-libs/gst/propertyprobe/propertyprobe.c:
38906         * gst-libs/gst/tuner/tuner.c: (gst_tuner_find_norm_by_name),
38907         (gst_tuner_find_channel_by_name):
38908         * gst-libs/gst/tuner/tuner.h:
38909           Add gtk-doc style comments. Also fix a function name.
38910
38911 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38912
38913         * ext/divx/gstdivxdec.c: (gst_divxdec_init),
38914         (gst_divxdec_negotiate):
38915           Fix for new capsnego - also fixes gst-player with divxdec.
38916
38917 2004-01-25  Julien MOUTTE  <julien@moutte.net>
38918
38919         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
38920         (gst_play_identity_handoff), (gst_play_set_location),
38921         (gst_play_set_visualization), (gst_play_connect_visualization): Another
38922         try in visualization implementation. Still have an issue with switch
38923         blocking when pulling from video_queue and only audio comes out of
38924         spider.
38925         * gst/switch/gstswitch.c: (gst_switch_release_pad),
38926         (gst_switch_poll_sinkpads), (gst_switch_class_init): Implementing pad
38927         release method. And check if the pad is usable before pulling.
38928
38929 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38930
38931         * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose),
38932         (gst_videobalance_init),
38933         (gst_videobalance_colorbalance_list_channels),
38934         (gst_videobalance_colorbalance_set_value),
38935         (gst_videobalance_colorbalance_get_value),
38936         (gst_videobalance_update_properties),
38937         (gst_videobalance_update_tables_planar411),
38938         (gst_videobalance_planar411):
38939         * gst/videofilter/gstvideobalance.h:
38940           Implement lookup-tables. +/- 10x faster.
38941
38942 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38943
38944         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
38945         (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
38946           The index reading was broken. The rest worked fine, but the whole
38947           goal of my rewrite was to make avidemux readable, and this was
38948           not at all readable. Please use typed variables.
38949
38950 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38951
38952         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
38953           Additional pad usability check.
38954         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
38955         (mp1videoparse_find_next_gop), (gst_mp1videoparse_time_code),
38956         (gst_mp1videoparse_real_chain):
38957           Fix MPEG video stream parsing. The original plugin had several
38958           issues, including not timestamping streams where the source was
38959           not timestamped (this happens with PTS values in mpeg system
38960           streams, but MPEG video is also a valid stream on its own so
38961           that needs timestamps too). We use the display time code for that
38962           for now. Also, if one incoming buffer contains multiple valid
38963           frames, we push them all on correctly now, including proper EOS
38964           handling. Lastly, several potential segfaults were fixed, and we
38965           properly sync on new sequence/gop headers to include them in next,
38966           not previous frames (since they're header for the next frame, not
38967           the previous). Also see #119206.
38968         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain),
38969         (bpf_from_header):
38970           Move caps setting so we only do it after finding several valid
38971           MPEG-1 fraes sequentially, not right after the first one (which
38972           might be coincidental).
38973         * gst/typefind/gsttypefindfunctions.c: (mpeg1_sys_type_find),
38974         (mpeg_video_type_find), (mpeg_video_stream_type_find),
38975         (plugin_init):
38976           Add unsynced MPEG video stream typefinding, and change some
38977           probability values so we detect streams rightly. The idea is as
38978           follows: I can have an unsynced system stream which contains
38979           video. In the current code, I would randomly get a type for either
38980           system or video stream type found, because the probabilities are
38981           being calculated rather randomly. I now use fixed values, so we
38982           always prefer system stream if that was found (and that is how it
38983           should be). If no system stream was found, we can still identity                the stream as video-only.
38984
38985 2004-01-23  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38986
38987         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
38988         (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
38989           don't write to buffer. Extract data without the need of
38990           __attribute__ ((packed))
38991
38992 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38993
38994         * gst/typefind/gsttypefindfunctions.c: (mpeg1_parse_header),
38995         (mpeg1_sys_type_find):
38996           Fix MPEG-1 stream typefinding.
38997
38998 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38999
39000         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
39001           Fix typefinding for MPEG-1 system streams, similar to MPEG-2.
39002
39003 2004-01-23  Thomas Vander Stichele  <thomas at apestaart dot org>
39004
39005         * ext/esd/esdsink.c: (gst_esdsink_open_audio):
39006         * ext/esd/gstesd.c: (plugin_init):
39007           private debugging, better error reporting
39008
39009 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39010
39011         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
39012         (gst_riff_read_init), (gst_riff_read_change_state):
39013         * gst-libs/gst/riff/riff-read.h:
39014           Remove stuff fromold metadata system.
39015
39016 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39017
39018         * ext/ogg/gstoggdemux.c:
39019           Fix wrong file comment.
39020         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
39021         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header):
39022           Add metadata reading properly.
39023
39024 2004-01-23  Thomas Vander Stichele  <thomas at apestaart dot org>
39025
39026         * ext/Makefile.am:
39027           Fix nas DIST_SUBDIRS
39028           Uraeus:
39029           Fix bug where make distcheck doesn't get run on adding stuff to
39030           the build.
39031
39032 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39033
39034         * ext/divx/gstdivxdec.c: (gst_divxdec_init), (gst_divxdec_setup):
39035         * ext/divx/gstdivxdec.h:
39036           Fix divx3 ("msmpeg4") playback using divxdec.
39037
39038 2004-01-23  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39039
39040         * gst/typefind/gsttypefindfunctions.c:
39041         (mp3_type_frame_length_from_header): fix bug in length computation
39042         (mp3_type_find): improve debugging output
39043
39044 2004-01-23  Julien MOUTTE  <julien@moutte.net>
39045
39046         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
39047         (gst_play_set_location), (gst_play_seek_to_time),
39048         (gst_play_set_audio_sink), (gst_play_set_visualization),
39049         (gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
39050         the pipeline from scratch. Visualization is back and switch went out as
39051         i realized it was not possible to use the way i wanted.
39052         * sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
39053         (gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
39054         clearing in state change from READY to NULL. So that one can clean the
39055         X ressources keeping the element.
39056         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
39057         (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
39058         (gst_xvimagesink_colorbalance_set_value),
39059         (gst_xvimagesink_colorbalance_get_value),
39060         (gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
39061         (gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
39062         change from READY to NULL and fixed some stupid bugs in colorbalance
39063         get/set values. Also added the following feature : when nobody tries to
39064         set some values to the colorbalance levels before the xcontext is
39065         grabbed, then when creating channels list from Xv attributes we set the
39066         internal values to the Xv defaults. This way we handle buggy Xv drivers
39067         that set default hue values far from the middle of the range (Thanks
39068         to Jon Trowbridge for pointing that issue).
39069         * sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
39070         colorbalance levels have been set before xcontext is grabbed.
39071
39072 2004-01-22  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39073
39074         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
39075           Fix the ossmixer case where we shouldn't open /dev/dsp* because
39076           it might block operations (which is bad for a mixer).
39077
39078 2004-01-22  Thomas Vander Stichele  <thomas at apestaart dot org>
39079
39080         * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
39081         (deep_notify_callback), (gmi_set_decoder), (gmi_clear_decoder),
39082         (gmip_find_type_pre):
39083         * gst-libs/gst/media-info/media-info-priv.h:
39084         * gst-libs/gst/media-info/media-info.c:
39085         (gst_media_info_instance_init), (gst_media_info_read_idler):
39086         add fakesink to get caps on decoder src pad again
39087         fix callback prototype to match new have_type signal signature
39088
39089 2004-01-22  Thomas Vander Stichele  <thomas at apestaart dot org>
39090
39091         * gst/adder/gstadder.c: (gst_adder_link):
39092           fix non-compile and cut-n-paste code
39093
39094 2004-01-21  David Schleef  <ds@schleef.org>
39095
39096         * ext/swfdec/gstswfdec.c: (gst_swfdec_video_getcaps),
39097         (gst_swfdec_video_link), (copy_image), (gst_swfdec_loop),
39098         (gst_swfdec_init), (gst_swfdec_change_state):
39099         * ext/swfdec/gstswfdec.h:
39100         Fix negotiation.
39101         * gst/adder/gstadder.c: (gst_adder_link), (gst_adder_init),
39102         (gst_adder_request_new_pad): Fix negotiation.
39103         * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_fixate):
39104         Add a fixate function.
39105         * gst/intfloat/gstfloat2int.c:
39106         * gst/intfloat/gstfloat2int.h:
39107         * gst/intfloat/gstint2float.c:
39108         * gst/intfloat/gstint2float.h:
39109         Completely rewrite the negotiation.  Doesn't quite work yet,
39110         due to some buffer-frames problem.
39111
39112 2004-01-21  Thomas Vander Stichele  <thomas at apestaart dot org>
39113
39114         * ext/gnomevfs/gstgnomevfssrc.c:
39115         * sys/v4l2/v4l2_calls.h:
39116           fix includes for distcheck
39117
39118 2004-01-21  Christian Schaller <uraeus@gnome.org>
39119
39120         * ext/nas/
39121         Add libnas (network audio system) plugin, patch from Arwed von Merkatz
39122         based on earlier patch from Laurent Vivier
39123
39124 2004-01-20  Jeremy Simon  <jesimon@libertysurf.fr>
39125
39126         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
39127         Fix wma caps property
39128         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
39129         Fix typo (flags1 and flags2)
39130
39131 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
39132
39133         * gst-libs/gst/media-info/media-info-priv.c:
39134         (deep_notify_callback), (gmi_seek_to_track), (gmi_get_decoder),
39135         (gmip_find_type_pre), (gmip_find_type), (gmip_find_stream_post),
39136         (gmip_find_stream), (gmip_find_track_metadata),
39137         (gmip_find_track_streaminfo_post), (gmip_find_track_streaminfo),
39138         (gmip_find_track_format):
39139         * gst-libs/gst/media-info/media-info-priv.h:
39140         * gst-libs/gst/media-info/media-info-test.c: (main):
39141         * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
39142         (gst_media_info_read_idler), (gst_media_info_read):
39143         * gst-libs/gst/media-info/media-info.h:
39144           register debugging category and use it for debugging
39145
39146 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
39147
39148         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_update_streaminfo),
39149         (gst_vorbisfile_new_link):
39150           signal streaminfo through tags
39151
39152 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39153
39154         * ext/mplex/gstmplex.cc:
39155         * ext/mplex/gstmplexibitstream.cc:
39156           g++ doesn't like NULL in our i18n/error macros, should be
39157           either (NULL) or ("").
39158
39159 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39160
39161         * sys/dxr3/dxr3audiosink.c:
39162         * sys/dxr3/dxr3init.c:
39163         * sys/dxr3/dxr3spusink.c: (dxr3spusink_close):
39164         * sys/dxr3/dxr3videosink.c: (dxr3videosink_close):
39165           Fix more error error error errors (missing includes here).
39166
39167 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39168
39169         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
39170           fix thomas' error errors.
39171
39172 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
39173
39174         * ext/mpeg2enc/gstmpeg2enc.cc:
39175           fix error errors.
39176
39177 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39178
39179         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
39180         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
39181           Fix for new error system.
39182
39183 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
39184
39185         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
39186           fix for new error reporting
39187
39188 2004-01-20  David Schleef  <ds@schleef.org>
39189
39190         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
39191         (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
39192         (gst_ximagesink_set_xwindow_id): Change to using a framerate
39193         of [1,100] instead of [0,MAX], since 0 isn't handled correctly,
39194         and neither is 100+, most likely.
39195         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
39196         (gst_xvimagesink_getcaps): same
39197
39198 2004-01-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39199
39200         * configure.ac:
39201           Up version requirement to 2.0.3 (not yet released) to avoid symbol
39202           clashes with ffmpeg.
39203
39204 2004-01-20  Julien MOUTTE  <julien@moutte.net>
39205
39206         * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
39207         (gst_switch_init): Fixed switch element : proxying link and setting
39208         caps from src to sink on request.
39209
39210 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
39211
39212         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
39213         * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
39214         (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
39215         fix element_error
39216
39217 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
39218
39219         * sys/v4l/v4l_calls.h:
39220         * sys/v4l2/v4l2_calls.h:
39221           element_error fixes
39222
39223 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
39224
39225         * gst-libs/gst/gst-i18n-plugin.h:
39226           add locale.h
39227           remove config.h inclusion
39228
39229 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
39230
39231         * autogen.sh:
39232           adding autopoint invocation
39233         * Makefile.am:
39234         * configure.ac:
39235         * gst-libs/gst/gettext.h:
39236           adding gettext bits
39237         * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
39238         * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
39239         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
39240         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
39241         (gst_gnomevfssink_close_file):
39242         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_open_file):
39243         * ext/sndfile/gstsf.c: (gst_sf_loop), (plugin_init):
39244         * gst-libs/gst/gst-i18n-plugin.h:
39245         * gst/avi/gstavi.c: (plugin_init):
39246         * sys/dxr3/dxr3init.c: (plugin_init):
39247         * sys/dxr3/dxr3videosink.c: (dxr3videosink_write_data):
39248         * sys/oss/gstossaudio.c: (plugin_init):
39249         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
39250         * sys/v4l/gstv4l.c: (plugin_init):
39251         * sys/v4l/v4l_calls.c: (gst_v4l_open):
39252         * sys/v4l2/gstv4l2.c: (plugin_init):
39253         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
39254         (gst_v4l2_fill_lists), (gst_v4l2_get_norm), (gst_v4l2_set_norm),
39255         (gst_v4l2_get_input), (gst_v4l2_set_input), (gst_v4l2_get_output),
39256         (gst_v4l2_set_output), (gst_v4l2_get_frequency),
39257         (gst_v4l2_set_frequency), (gst_v4l2_signal_strength),
39258         (gst_v4l2_get_attribute), (gst_v4l2_set_attribute):
39259           make sure locale and translation domain are set
39260           fix translated strings
39261         * po/.cvsignore:
39262         * po/LINGUAS:
39263         * po/Makevars:
39264         * po/POTFILES.in:
39265         * po/nl.po:
39266           put translation files into place
39267         * sys/xvideo/imagetest.c: (main):
39268         * ext/dv/demo-play.c: (main):
39269           fix unnecessary translations
39270
39271 2004-01-19  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
39272
39273         * ext/sndfile/gstsf.c:
39274         * gst/avi/gstavimux.c:
39275         * ext/audiofile/gstafsink.c:
39276         * ext/audiofile/gstafsrc.c:
39277         * ext/gnomevfs/gstgnomevfssink.c:
39278         * ext/gnomevfs/gstgnomevfssrc.c:
39279         * sys/oss/gstosselement.c:
39280         * sys/v4l/v4l_calls.h:
39281           fix i18n include
39282
39283 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
39284
39285         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
39286         (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
39287         (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
39288         (gst_v4l2_get_output), (gst_v4l2_set_output),
39289         (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
39290         (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
39291         (gst_v4l2_set_attribute):
39292         update to new error handling
39293
39294 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
39295
39296         * ext/sidplay/gstsiddec.cc:
39297         * gst/modplug/gstmodplug.cc:
39298           parenthese NULL because C++ seems angry about it
39299
39300 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
39301
39302         * gst-libs/gst/gst-i18n-plugin.h:
39303           add skeleton i18n stuff, but needs to be further implemented
39304
39305 2004-01-18  Thomas Vander Stichele  <thomas at apestaart dot org>
39306
39307         * examples/gstplay/player.c: (main):
39308         * ext/aalib/gstaasink.c: (gst_aasink_open):
39309         * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
39310         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
39311         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
39312         * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
39313         (gst_afsink_close_file):
39314         * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
39315         (gst_afsrc_close_file):
39316         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
39317         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
39318         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
39319         * ext/esd/esdmon.c: (gst_esdmon_get):
39320         * ext/esd/esdsink.c: (gst_esdsink_chain):
39321         * ext/faac/gstfaac.c: (gst_faac_chain):
39322         * ext/faad/gstfaad.c: (gst_faad_chain):
39323         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
39324         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
39325         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
39326         * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
39327         (gst_flacdec_loop):
39328         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
39329         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
39330         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
39331         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
39332         (gst_gnomevfssink_close_file):
39333         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
39334         (gst_gnomevfssrc_open_file):
39335         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
39336         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
39337         * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
39338         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
39339         (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
39340         * ext/mad/gstmad.c: (gst_mad_chain):
39341         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
39342         * ext/mpeg2dec/gstmpeg2dec.c:
39343         * ext/mpeg2enc/gstmpeg2enc.cc:
39344         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
39345         * ext/mplex/gstmplex.cc:
39346         * ext/mplex/gstmplexibitstream.cc:
39347         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
39348         (gst_ogg_demux_push), (gst_ogg_pad_push):
39349         * ext/raw1394/gstdv1394src.c:
39350         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
39351         (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
39352         * ext/sidplay/gstsiddec.cc:
39353         * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
39354         (gst_sf_loop):
39355         * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
39356         * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
39357         * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
39358         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
39359         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
39360         * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
39361         * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
39362         * gst-libs/gst/Makefile.am:
39363         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
39364         (gst_riff_read_element_data), (gst_riff_read_seek),
39365         (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
39366         * gst/adder/gstadder.c: (gst_adder_parse_caps), (gst_adder_loop):
39367         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
39368         (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
39369         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
39370         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
39371         * gst/avi/gstavimux.c: (gst_avimux_stop_file):
39372         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
39373         * gst/goom/gstgoom.c: (gst_goom_chain):
39374         * gst/id3/gstid3types.c: (gst_id3types_loop):
39375         * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
39376         * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
39377         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
39378         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
39379         (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
39380         (gst_ebml_read_float), (gst_ebml_read_header):
39381         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
39382         (gst_matroska_demux_parse_blockgroup):
39383         * gst/modplug/gstmodplug.cc:
39384         * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
39385         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
39386         * gst/oneton/gstoneton.c: (gst_oneton_chain):
39387         * gst/silence/gstsilence.c: (gst_silence_get):
39388         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
39389         * gst/smpte/gstsmpte.c: (gst_smpte_loop):
39390         * gst/speed/gstspeed.c: (speed_loop):
39391         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
39392         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
39393         * gst/volenv/gstvolenv.c: (gst_volenv_chain):
39394         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
39395         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
39396         (gst_wavparse_loop):
39397         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
39398         (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
39399         (dxr3audiosink_close):
39400         * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
39401         * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
39402         (dxr3videosink_close), (dxr3videosink_write_data):
39403         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
39404         * sys/oss/gstosselement.h:
39405         * sys/oss/gstosssink.c: (gst_osssink_get_type), (gst_osssink_init),
39406         (gst_osssink_chain):
39407         * sys/oss/gstosssrc.c: (gst_osssrc_get):
39408         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
39409         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
39410         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
39411         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_window),
39412         (gst_v4l_enable_overlay):
39413         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
39414         (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
39415         (gst_v4l_get_frequency), (gst_v4l_set_frequency),
39416         (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
39417         (gst_v4l_set_audio):
39418         * sys/v4l/v4l_calls.h:
39419         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
39420         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
39421         (gst_v4lmjpegsink_playback_init),
39422         (gst_v4lmjpegsink_playback_start):
39423         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
39424         (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_capture),
39425         (gst_v4lmjpegsrc_set_capture_m), (gst_v4lmjpegsrc_capture_init),
39426         (gst_v4lmjpegsrc_requeue_frame):
39427         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
39428         (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
39429         (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
39430         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
39431         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
39432         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
39433         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
39434         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
39435         (gst_v4l2src_capture_stop):
39436         * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
39437         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
39438         (gst_ximagesink_chain):
39439         * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
39440         (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
39441         (gst_xvideosink_xwindow_new):
39442         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
39443         (gst_xvimagesink_chain):
39444         use new error signal, function and categories
39445
39446 2004-01-18  Jeremy Simon <jesimon@libertysurf.fr>
39447
39448         * configure.ac:
39449         * ext/Makefile.am:
39450         * ext/musicbrainz/gsttrm.c:
39451         * ext/musicbrainz/gsttrm.h:
39452         * ext/musicbrainz/Makefile.am:
39453         Add a trm plugin
39454
39455 2004-01-18  Julien MOUTTE  <julien@moutte.net>
39456
39457         * sys/ximage/ximagesink.c: (gst_ximagesink_set_property),
39458         (gst_ximagesink_get_property), (gst_ximagesink_class_init): Adding
39459         synchronous property for debugging.
39460         * sys/ximage/ximagesink.h: Adding the synchronous boolean flag.
39461         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
39462         (gst_xvimagesink_set_property): Moving a pointer declaration to a
39463         smaller block, fixing indent.
39464
39465 2004-01-16  David Schleef  <ds@schleef.org>
39466
39467         * gst/videofilter/gstvideobalance.c: Fix regression; changing a
39468         property affects the video stream.
39469         * sys/xvimage/xvimagesink.c:
39470         * sys/xvimage/xvimagesink.h:
39471         Add synchronous property for debugging.  Should probably be
39472         disabled in non-CVS builds.  Make sure that the Xv attribute
39473         exists before we set it (crash!).  Fix a silly float bug that
39474         caused colorbalance to just not work.
39475
39476 2004-01-17  Christian Schaller <Uraeus@gnome.org>
39477
39478         * tools/gst-launch-ext.in - update for new plugins
39479
39480 2004-01-16  David Schleef  <ds@schleef.org>
39481
39482         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect): Fix use of
39483         already-freed caps.
39484
39485 2994-01-16  Christian Schaller <Uraeus@gnome.org>
39486
39487         * Update spec for new colorspace plugin and libcaca plugin
39488         * Fix compilation of libcaca plugin (clock -> id)
39489
39490 2004-01-16  Julien MOUTTE <julien@moutte.net>
39491
39492         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_update_colorbalance),
39493         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
39494         (gst_xvimagesink_set_xwindow_id),
39495         (gst_xvimagesink_colorbalance_set_value),
39496         (gst_xvimagesink_colorbalance_get_value),
39497         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
39498         (gst_xvimagesink_init), (gst_xvimagesink_class_init): Implementing
39499         correct colorbalance properties. They can now be set when the element
39500         is still in NULL state. The values will be committed to the Xv Port
39501         when xcontext is initialized.
39502         * sys/xvimage/xvimagesink.h: Added hue, saturation, contrast,
39503         brightness int values in the GstXvImagesink structure.
39504
39505 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39506
39507         * gst-libs/gst/Makefile.am:
39508           restructure so having local patches works easier.
39509
39510 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39511
39512         * ext/mpeg2enc/Makefile.am:
39513         * ext/mpeg2enc/gstmpeg2enc.cc:
39514         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
39515           Bugfix with respect to EOS handling.
39516
39517 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39518
39519         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
39520           Link with right caps (else, it segfaults).
39521         * ext/mplex/gstmplexjob.cc:
39522           Fix for slight API change in 1.6.1.93 release of mjpegtools.
39523
39524 2004-01-15  David Schleef  <ds@schleef.org>
39525
39526         * gst-libs/gst/audio/Makefile.am:
39527         Add gstaudiofiltertemplate.c and building of gstaudiofilterexample.c
39528         from the template.
39529         * gst-libs/gst/audio/gstaudiofilter.c:
39530         * gst-libs/gst/audio/gstaudiofilter.h:
39531         Add bytes_per_sample and size and n_samples calculation.
39532         * gst-libs/gst/audio/gstaudiofilterexample.c:
39533         Remove, now autogenerated.
39534         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
39535         Moved from gstaudiofilterexample, object name changed, code added
39536         so that it actually works.
39537         * gst-libs/gst/audio/make_filter:
39538         Script to build an audiofilter subclass from the template.
39539         * gst/colorspace/Makefile.am:
39540         * gst/colorspace/yuv2yuv.c:
39541         Remove file, since it's GPL, and we don't use it.
39542
39543 2004-01-15  Julien MOUTTE  <julien@moutte.net>
39544
39545         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
39546         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Making both of
39547         them use the buffer free function to test how the buffer was allocated.
39548
39549 2004-01-15  David Schleef  <ds@schleef.org>
39550
39551         * ext/esd/esdsink.c: (gst_esdsink_class_init): Remove property
39552         that handles osssink fallback.
39553         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
39554         (gst_audio_convert_getcaps):
39555         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
39556         Add audio/x-qdm2 for QDM2 audio.
39557         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
39558         * gst/sine/gstsinesrc.h: Add example of how to implement tags.
39559         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
39560         Decrease minimum size to 16x16.
39561         * gst/wavparse/gstwavparse.c:
39562         Convert disabled pad template caps to new caps.
39563         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
39564         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
39565         (gst_xvimagesink_chain): Throw element error when display cannot
39566         be opened.  Increase minimum framerate to 1.0.  Check the data
39567         free function on a buffer to make sure it is the type we expect
39568         before manipulating it.
39569
39570 2004-01-15  Julien MOUTTE <julien@moutte.net>
39571
39572         * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
39573         (gst_videobalance_colorbalance_set_value): Implement passthru if
39574         settings are in the middle.
39575         * tools/gst-launch-ext.in: Stop using xvideosink, use ximagesink.
39576
39577 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39578
39579         * gst/videofilter/Makefile.am:
39580         * gst/volume/Makefile.am:
39581           Since we use videofilter symbols, link to it.
39582
39583 2004-01-15  Julien MOUTTE <julien@moutte.net>
39584
39585         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init): Setting
39586         mixer interface type to HARDWARE.
39587         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init): Adding a default
39588         type to SOFTWARE.
39589         * gst-libs/gst/mixer/mixer.h: Adding mixer interface type and macro.
39590         * gst-libs/gst/mixer/mixertrack.h: Adding mixertrack flag SOFTWARE.
39591         * gst/volume/gstvolume.c: (gst_volume_interface_supported),
39592         (gst_volume_interface_init), (gst_volume_list_tracks),
39593         (gst_volume_set_volume), (gst_volume_get_volume),
39594         (gst_volume_set_mute), (gst_volume_mixer_init),
39595         (gst_volume_dispose), (gst_volume_get_type), (volume_class_init),
39596         (volume_init): Implementing mixer interface.
39597         * gst/volume/gstvolume.h: Adding tracklist for mixer interface.
39598         * sys/oss/gstosselement.c: (gst_osselement_get_type),
39599         (gst_osselement_change_state): Removing some trailing commas in
39600         structures.
39601         * sys/oss/gstossmixer.c: (gst_ossmixer_interface_init): Setting mixer
39602         interface type to HARDWARE.
39603         * sys/v4l/gstv4lcolorbalance.c:
39604         (gst_v4l_color_balance_interface_init): Setting colorbalance interface
39605         type to HARDWARE.
39606         * sys/v4l2/gstv4l2colorbalance.c:
39607         (gst_v4l2_color_balance_interface_init): Setting colorbalance
39608         interface type to HARDWARE.
39609         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): use exactly the
39610         same code than ximagesink for event handling.
39611
39612 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39613
39614         * ext/snapshot/Makefile.am:
39615         * ext/snapshot/gstsnapshot.c: (gst_snapshot_sinkconnect),
39616         (gst_snapshot_chain):
39617         * ext/snapshot/gstsnapshot.h:
39618           This has to be a joke... Snapshot should be connected to a tee,
39619           colorspace element before it and EOS after that, where the other
39620           src of the tee receives normal data.
39621           The current way is *wrong*.
39622
39623 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39624
39625         * ext/hermes/gsthermescolorspace.c:
39626           Fix another compile error. Same as below.
39627
39628 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39629
39630         * gst/colorspace/gstcolorspace.c:
39631         * gst/colorspace/yuv2yuv.c: (gst_colorspace_yuy2_to_i420),
39632         (gst_colorspace_i420_to_yv12):
39633           Fix compiling... Didn't test if it actually works.
39634
39635 2004-01-15  David Schleef  <ds@schleef.org>
39636
39637         * configure.ac:
39638         * gst/colorspace/Makefile.am:
39639         * gst/colorspace/gstcolorspace.c:
39640         * gst/colorspace/gstcolorspace.h:
39641         * gst/colorspace/yuv2rgb.c:
39642         * gst/colorspace/yuv2rgb.h:
39643         Duplicate the ext/hermes colorspace plugin, and remove Hermes
39644         code and GPL code.  Fix for new caps negotiation.  Rewrite
39645         much of the format handling code, and some of the conversion
39646         code.  Basically, rewrote almost everything.  This element
39647         handles I420, YV12 to RGB conversions.
39648         * ext/hermes/Makefile.am:
39649         * ext/hermes/gsthermescolorspace.c:
39650         Rename colorspace to hermescolorspace.  Fix negotiation issues.
39651         Remove non-Hermes related code.  This element handles lots of
39652         RGB to RGB conversions, but no YUV.
39653         * ext/hermes/gstcolorspace.c:
39654         * ext/hermes/gstcolorspace.h:
39655         * ext/hermes/rgb2yuv.c:
39656         * ext/hermes/yuv2rgb.c:
39657         * ext/hermes/yuv2rgb.h:
39658         * ext/hermes/yuv2rgb_mmx16.s:
39659         * ext/hermes/yuv2yuv.c:
39660         * ext/hermes/yuv2yuv.h:
39661         Remove old code.
39662
39663 2004-01-14  Colin Walters  <walters@verbum.org>
39664
39665         * ext/mad/gstid3tag.c (gst_id3_tag_chain): Don't nego caps if
39666         they've already been.
39667
39668 2004-01-15  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39669
39670         * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
39671           assume tag mode when pad is not connected
39672
39673 2004-01-15  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39674
39675         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
39676           Don't update the time of the clock
39677         (gst_alsa_sink_loop):
39678           sync to the clock given to alsasink, not the own clock
39679         * sys/oss/gstosssink.c: (gst_osssink_chain):
39680           sync to the clock
39681         (gst_osssink_change_state):
39682           activate the clock
39683         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
39684         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
39685           remove bogus code that made DISCONT events unhandled
39686         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
39687           explicitly case to double in _set_simple. (fixes 2nd warning in bug
39688           #131502)
39689         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_read_object_header),
39690         (gst_asf_demux_handle_sink_event), (gst_asf_demux_audio_caps),
39691         (gst_asf_demux_add_audio_stream), (gst_asf_demux_video_caps):
39692           convert g_warning because of wrong asf data to GST_WARNINGs (fixes
39693           2nd warning in bug #131502)
39694
39695 2004-01-14  Julien MOUTTE  <julien@moutte.net>
39696
39697         * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
39698         (gst_videobalance_colorbalance_set_value),
39699         (gst_videobalance_colorbalance_get_value): Fixing videobalance ranges
39700         for colorbalance interface implementation.
39701         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
39702         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
39703         (gst_ximagesink_dispose), (gst_ximagesink_init),
39704         (gst_ximagesink_class_init): Adding DISPLAY property.
39705         * sys/ximage/ximagesink.h: Adding display_name to store display.
39706         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
39707         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
39708         (gst_xvimagesink_dispose), (gst_xvimagesink_init),
39709         (gst_xvimagesink_class_init): Adding DISPLAY property and colorbalance
39710         properties (they still need polishing though for gst-launch use : no
39711         xcontext yet, i ll do that tomorrow).
39712         * sys/xvimage/xvimagesink.h: Adding display_name to store display.
39713
39714 2004-01-14  Julien MOUTTE  <julien@moutte.net>
39715
39716         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
39717         (gst_play_set_location), (gst_play_set_visualization): Preparing
39718         switch integration, adding videobalance in the pipeline.
39719
39720 2004-01-14  Julien MOUTTE <julien@moutte.net>
39721
39722         * gst-libs/gst/colorbalance/colorbalance.c:
39723         (gst_color_balance_class_init): Adding a default type.
39724         * gst-libs/gst/colorbalance/colorbalance.h: Adding a macro to access
39725         the type.
39726         * gst/videofilter/gstvideobalance.c: (gst_videobalance_get_type),
39727         (gst_videobalance_dispose), (gst_videobalance_class_init),
39728         (gst_videobalance_init), (gst_videobalance_interface_supported),
39729         (gst_videobalance_interface_init),
39730         (gst_videobalance_colorbalance_list_channels),
39731         (gst_videobalance_colorbalance_set_value),
39732         (gst_videobalance_colorbalance_get_value),
39733         (gst_videobalance_colorbalance_init): Implementing colorbalance
39734         interface.
39735         * gst/videofilter/gstvideobalance.h: Adding colorbalance channels
39736         list.
39737         * sys/ximage/ximagesink.c: (gst_ximagesink_set_xwindow_id): Fixing a
39738         bug which was triggering a BadAccess X error when setting an overlay
39739         before pad was really negotiated.
39740         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_colorbalance_init):
39741         Using the colorbalance type macro.
39742
39743 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39744
39745         * ext/flac/gstflacenc.c: (gst_flacenc_set_metadata),
39746         (gst_flacenc_chain):
39747           handle tags correctly
39748         * gst/tags/gstid3tag.c: (gst_tag_list_new_from_id3v1):
39749           extract ID3v1 tags correctly
39750
39751 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39752
39753         * gst/typefind/gsttypefindfunctions.c: (matroska_type_find),
39754         (plugin_init):
39755           Improve matroska typefinding for odd-typed headers...
39756
39757 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39758
39759         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
39760           Fix for using incremental number on padnames.
39761
39762 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39763
39764         * ext/divx/gstdivxdec.c:
39765         * ext/divx/gstdivxenc.c:
39766           Set category to divx4linux instead of divx (too generic).
39767         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
39768         (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
39769         (gst_wavparse_loop), (gst_wavparse_change_state):
39770         * gst/wavparse/gstwavparse.h:
39771           fix parsing of WAV files with non-standard fmt-tag size and fix
39772           skipping of unrecognized chunks... Someone please fix this thing
39773           to use rifflib so all this is automated.
39774         * sys/v4l/Makefile.am:
39775         * sys/v4l2/Makefile.am:
39776           Add X_CFLAGS because we depend on X (for overlay).
39777
39778 2004-01-14  Jan Schmidt  <thaytan@mad.scientist.com>
39779
39780         * ext/mpeg2dec/gstmpeg2dec.c:
39781           Don't issue a timestamp unless we tagged the frame
39782           with a PTS.
39783
39784 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39785
39786         * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback):
39787           Query the audio element to get the time, not the clock. We're
39788           interested in the element's time here.
39789
39790 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39791
39792         * ext/aalib/gstaasink.c: (gst_aasink_chain):
39793         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
39794         * ext/esd/esdsink.c: (gst_esdsink_chain):
39795         * ext/libcaca/gstcacasink.c: (gst_cacasink_chain):
39796         * ext/mas/massink.c: (gst_massink_chain):
39797         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_chain):
39798         * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_index),
39799         (gst_matroska_demux_parse_metadata):
39800         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop),
39801         (gst_mpeg_parse_release_locks):
39802         * gst/tcp/gsttcpsink.c: (gst_tcpsink_chain):
39803         * gst/udp/gstudpsink.c: (gst_udpsink_chain):
39804         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
39805         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
39806         (gst_osssink_change_state):
39807         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
39808         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
39809         * sys/xvideo/xvideosink.c: (gst_xvideosink_chain),
39810         (gst_xvideosink_release_locks):
39811         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
39812           use element time.
39813         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_start),
39814         (gst_alsa_clock_stop):
39815         * gst-libs/gst/audio/audioclock.c: (gst_audio_clock_set_active),
39816         (gst_audio_clock_get_internal_time):
39817           simplify for use with new clocking code.
39818         * testsuite/alsa/Makefile.am:
39819         * testsuite/alsa/sinesrc.c: (sinesrc_init), (sinesrc_force_caps):
39820           fix testsuite for new caps system
39821
39822 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39823
39824         * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
39825         * ext/flac/gstflacenc.c: (add_one_tag):
39826           length is already host endian, no need to convert. Fixes playback of
39827           tagged files on PPC. (bug #128384)
39828
39829 2004-01-13  Julien MOUTTE <julien@moutte.net>
39830
39831         * gst-libs/gst/colorbalance/colorbalance.h: Adding a type to the
39832         colorbalance interface stating if it is hardware based or software
39833         based.
39834         * gst/videofilter/gstvideobalance.c: (gst_videobalance_planar411):
39835         Removing a trailing comma.
39836         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
39837         (gst_xvimagesink_colorbalance_init): Integrating a patch from Jon
39838         Trowbridge <trow@ximian.com> querying Xv adaptor for min/max value as
39839         the documentation seems to be wrong on the -1000 to 1000 interval.
39840
39841 2004-01-12  David Schleef  <ds@schleef.org>
39842
39843         * gst/debug/efence.c: (gst_efence_init), (gst_efence_chain),
39844         (gst_efence_buffer_alloc), (gst_fenced_buffer_new),
39845         (gst_fenced_buffer_default_free), (gst_fenced_buffer_default_copy):
39846         Fix negotiation.  Add a bufferalloc function for the sink pad,
39847         and generally clean up some of the code.
39848
39849 2004-01-12  Julien MOUTTE <julien@moutte.net>
39850
39851         * gst-libs/gst/colorbalance/colorbalancechannel.c:
39852         (gst_color_balance_channel_dispose): Adding safety check in dispose
39853         method.
39854         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
39855         (gst_xvimagesink_xcontext_clear),
39856         (gst_xvimagesink_interface_supported),
39857         (gst_xvimagesink_colorbalance_list_channels),
39858         (gst_xvimagesink_colorbalance_set_value),
39859         (gst_xvimagesink_colorbalance_get_value),
39860         (gst_xvimagesink_colorbalance_init), (gst_xvimagesink_get_type):
39861         Adding colorbalance interface support to set XV parameters such as
39862         HUE, BRIGHTNESS, CONTRAST, SATURATION.
39863         * sys/xvimage/xvimagesink.h: Adding the channels list for colorbalance
39864         interface.
39865
39866 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
39867
39868         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_get_type),
39869         (gst_audio_convert_class_init), (gst_audioconvert_getcaps),
39870         (gst_audio_convert_init), (gst_audio_convert_set_property),
39871         (gst_audio_convert_get_property), (gst_audio_convert_chain),
39872         (gst_audio_convert_link),
39873         (gst_audio_convert_buffer_to_default_format),
39874         (gst_audio_convert_buffer_from_default_format), (plugin_init):
39875           - implement _getcaps and use it
39876           - improve linking
39877           - remove float caps since no float conversion is actually done
39878           - remove properties and arguments that were to be used for rate
39879             conversion
39880
39881 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
39882
39883         * gst-libs/gst/audio/audio.c: (_gst_audio_structure_set_list),
39884         (gst_audio_structure_set_int):
39885         * gst-libs/gst/audio/audio.h:
39886           add helper functions for _getcaps matching the standard audio
39887           templates
39888
39889 2004-01-12  David Schleef  <ds@schleef.org>
39890
39891         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
39892         Test that pad is negotiated before getting its caps.
39893
39894 2004-01-12  Julien MOUTTE <julien@moutte.net>
39895
39896         * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element): When
39897         analyzing the pads of an element the bin is mostly in READY state so
39898         no caps were negotiated. This helper function needs to work with
39899         _get_caps directly then. I was not freeing them though, added that to
39900         fix the mem leak.
39901
39902 2004-01-12  Julien MOUTTE <julien@moutte.net>
39903
39904         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
39905         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Fixing the
39906         direct put buffers detection. I prefer checking GST_BUFFER_PRIVATE
39907         than the free_func.
39908
39909 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
39910
39911         * sys/oss/gstossaudio.c: (plugin_init):
39912         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
39913         * sys/oss/gstosselement.h:
39914           make an oss debugging category
39915           make failure more descriptive
39916
39917 2004-01-11  David Schleef  <ds@schleef.org>
39918
39919         * ext/ffmpeg/gstffmpeg.c:
39920         * ext/ffmpeg/gstffmpegcodecmap.c:
39921         * ext/ffmpeg/gstffmpegdec.c:
39922         * ext/ffmpeg/gstffmpegenc.c:
39923         * ext/ffmpeg/gstffmpegprotocol.c:
39924         * ext/gdk_pixbuf/gstgdkanimation.c:
39925         * ext/jpeg/gstjpeg.c:
39926         * ext/libpng/gstpng.c:
39927         * ext/mpeg2dec/perftest.c:
39928         * ext/speex/gstspeex.c:
39929         * gst-libs/gst/resample/dtos.c:
39930         * gst/intfloat/gstintfloatconvert.c:
39931         * gst/oneton/gstoneton.c:
39932         * gst/rtjpeg/RTjpeg.c:
39933         * gst/rtp/gstrtp.c:
39934         * sys/dxr3/dxr3init.c:
39935         * sys/glsink/gstgl_nvimage.c:
39936         * sys/glsink/gstgl_pdrimage.c:
39937         * sys/glsink/gstglsink.c:
39938         * testsuite/gst-lint:
39939         Make sure everybody wraps #include "config.h" in #ifdef HAVE_CONFIG_H
39940
39941 2004-01-11  David Schleef  <ds@schleef.org>
39942
39943         * ext/alsa/gstalsasrc.c: (gst_alsa_src_set_caps):
39944         * ext/faac/gstfaac.c: (gst_faac_sinkconnect):
39945         * ext/gdk_pixbuf/gstgdkanimation.c:
39946         (gst_gdk_animation_iter_create_pixbuf):
39947         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
39948         (gst_gdk_pixbuf_chain):
39949         * ext/gdk_pixbuf/gstgdkpixbuf.h:
39950         * ext/jack/gstjack.c: (gst_jack_change_state):
39951         * ext/xvid/gstxviddec.c: (gst_xviddec_sink_link):
39952         * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element):
39953         * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
39954         * gst/videofilter/gstvideofilter.c:
39955         (gst_videofilter_set_output_size):
39956         Remove all usage of gst_pad_get_caps(), and replace it with
39957         gst_pad_get_allowed_caps() or gst_pad_get_negotiated_cap().
39958
39959 2004-01-11  David Schleef  <ds@schleef.org>
39960
39961         * configure.ac:
39962         * ext/Makefile.am: Fixes to make ext/libcaca compile.
39963         * ext/divx/gstdivxdec.c:
39964         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
39965         (gst_gdk_pixbuf_init), (gst_gdk_pixbuf_chain): Make gdkpixbufdec
39966         handle images that span multiple buffers.  Now work with both
39967         filesrc ! gdkpixbufdec and qtdemux ! gdkpixbufdec.
39968         * ext/gdk_pixbuf/gstgdkpixbuf.h:
39969         * ext/libcaca/gstcacasink.h: Fixes needed due to recent
39970         video/video.h changes
39971         * ext/xvid/gstxvid.c: (gst_xvid_csp_to_caps): same
39972         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
39973         (gst_v4lmjpegsrc_buffer_free): Use buffer free function instead
39974         of GstData free function.
39975         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
39976         same.
39977
39978 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39979
39980         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_class_init),
39981         (gst_v4l2element_dispose), (gst_v4l2element_set_property),
39982         (gst_v4l2element_get_property):
39983         * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults), (gst_v4l2_open):
39984           add norm, channel and frequency properties.
39985         * sys/v4l2/gstv4l2tuner.c:
39986           fixes for tuner interface changes
39987         * sys/v4l2/gstv4l2element.h:
39988         * sys/v4l2/gstv4l2src.c:
39989         * sys/v4l2/gstv4l2src.h:
39990         * sys/v4l2/v4l2src_calls.c:
39991         * sys/v4l2/v4l2src_calls.h:
39992           rework v4l2src to work with saa1734 cards and allow mmaped buffers.
39993
39994 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39995
39996         * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init),
39997         (gst_tuner_find_norm_by_name), (gst_v4l2_find_channel_by_name),
39998         (gst_tuner_channel_changed), (gst_tuner_norm_changed),
39999         (gst_tuner_frequency_changed), (gst_tuner_signal_changed):
40000         * gst-libs/gst/tuner/tuner.h:
40001           GObjects aren't const.
40002           Add find_by_name functions.
40003           Add checks to _changed functions.
40004         * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_get_channel),
40005         (gst_v4l_tuner_get_norm):
40006           Fixes for above.
40007
40008 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40009
40010         * gst-libs/gst/video/video.h:
40011           Fix caps template names to be understandable.
40012           Prefix everything with GST_VIDEO.
40013         * ext/aalib/gstaasink.c:
40014         * ext/divx/gstdivxdec.c:
40015         * ext/divx/gstdivxenc.c:
40016         * ext/gdk_pixbuf/gstgdkpixbuf.c:
40017         * ext/hermes/gstcolorspace.c: (gst_colorspace_base_init):
40018         * ext/jpeg/gstjpegdec.c: (raw_caps_factory):
40019         * ext/jpeg/gstjpegenc.c: (raw_caps_factory):
40020         * ext/libcaca/gstcacasink.c:
40021         * ext/libpng/gstpngenc.c: (raw_caps_factory):
40022         * ext/snapshot/gstsnapshot.c:
40023         * ext/swfdec/gstswfdec.c:
40024         * ext/xvid/gstxviddec.c:
40025         * ext/xvid/gstxvidenc.c:
40026         * gst/chart/gstchart.c:
40027         * gst/deinterlace/gstdeinterlace.c:
40028         * gst/effectv/gsteffectv.c:
40029         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
40030         * gst/goom/gstgoom.c:
40031         * gst/median/gstmedian.c:
40032         * gst/monoscope/gstmonoscope.c: (gst_monoscope_init),
40033         (gst_monoscope_srcconnect), (gst_monoscope_chain):
40034         * gst/overlay/gstoverlay.c:
40035         * gst/smooth/gstsmooth.c:
40036         * gst/smpte/gstsmpte.c:
40037         * gst/synaesthesia/gstsynaesthesia.c:
40038         * gst/videocrop/gstvideocrop.c:
40039         * gst/videodrop/gstvideodrop.c:
40040         * gst/y4m/gsty4mencode.c:
40041         * sys/qcam/gstqcamsrc.c:
40042         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps):
40043           Make them work with new video.h file.
40044         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
40045         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
40046         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
40047         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
40048           Make it work with new buffer allocation system.
40049
40050 2004-01-11  Julien MOUTTE  <julien@moutte.net>
40051
40052         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain): Fixing the
40053         pad_alloc_buffer implementation to use ->srcpad
40054         * ext/hermes/gstcolorspace.c: (gst_colorspace_chain): Fixing the
40055         pad_alloc_buffer implementation to use ->srcpad
40056         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):  Fixing the
40057         pad_alloc_buffer implementation to use ->srcpad
40058         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
40059         (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
40060         (gst_ximagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
40061         a reference to everything we need.
40062         * sys/ximage/ximagesink.h: adding a reference to the sink in the image.
40063         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
40064         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
40065         (gst_xvimagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
40066         a reference to everything we need.
40067         * sys/xvimage/xvimagesink.h: adding a reference to the sink in the image
40068
40069 2004-01-11  David Schleef  <ds@schleef.org>
40070
40071         * ext/divx/gstdivxenc.c: remove bogus gst_caps_is_fixed() test
40072         * gst/debug/efence.c: (gst_efence_chain), (gst_fenced_buffer_new),
40073         (gst_fenced_buffer_default_copy): Fix for rename of buffer private
40074         structure members.
40075         * gst/effectv/gstwarp.c: (gst_warptv_setup): Don't reset the time
40076         value during a resize/renegotiation.
40077         * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain): use
40078         gst_pad_alloc_buffer();
40079         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
40080         (gst_v4lmjpegsrc_buffer_free): Fix for rename of buffer private
40081         structure members.
40082         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
40083         Fix for rename of buffer private structure members.
40084         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
40085         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
40086         Fix for rename of buffer private structure members.
40087         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
40088         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
40089         Fix for rename of buffer private structure members.
40090
40091 2004-01-11  Arwed v. Merkatz <v.merkatz@gmx.net>
40092
40093         reviewed by: David Schleef <ds@schleef.org>
40094
40095         * gst/videofilter/Makefile.am:
40096         * gst/videofilter/gstgamma.c: Gamma correction filter.  Modified
40097         from the patch by ds to fit in with recent make_filter changes.
40098
40099 2004-01-11  Julien MOUTTE  <julien@moutte.net>
40100
40101         * configure.ac: Adding examples/switch/Makefile
40102         * examples/Makefile.am: Adding examples/switch
40103         * examples/switch/Makefile.am: Adding switcher example.
40104         * examples/switch/switcher.c: (got_eos), (idle_iterate),
40105         (switch_timer), (main): Adding an example demonstrating switch usage
40106         with 2 videotestsrc showing different patterns.
40107         * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
40108         (gst_switch_init): Fixing switch with the new caps system.
40109
40110 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40111
40112         * gst-libs/gst/video/video.h:
40113           Fix 32bit caps. Issue remaining: The macro names are chosen poorly.
40114           They should probably be like
40115           GST_VIDEO_PAD_TEMPLATE_CAPS_{RGB,BGR,RGBx,BGRx}.
40116
40117 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40118
40119         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
40120         (qtdemux_parse_trak):
40121           fix audio chunk size/timestamp calculation
40122
40123 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40124
40125         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
40126           fix SVQ3 caps
40127
40128 2004-01-11  Steve Baker  <steve@stevebaker.org>
40129
40130         * gst/effectv/gstaging.c: (gst_agingtv_get_type),
40131         (gst_agingtv_base_init), (gst_agingtv_class_init),
40132         (gst_agingtv_init), (gst_agingtv_setup), (gst_agingtv_rgb32),
40133         (gst_agingtv_set_property), (gst_agingtv_get_property):
40134         Port agingTV to videofilter
40135
40136 2004-01-09  Julien MOUTTE <julien@moutte.net>
40137
40138         * ext/hermes/gstcolorspace.c: (gst_colorspace_chain):
40139         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
40140
40141 2004-01-09  Julien MOUTTE <julien@moutte.net>
40142
40143         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain):
40144         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
40145         * gst-libs/gst/xoverlay/xoverlay.c:
40146         (gst_x_overlay_got_desired_size): Updating doc for the xid being 0.
40147         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
40148         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
40149         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
40150         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
40151         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
40152         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
40153         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init): Implementing
40154         the bufferalloc_function to replace bufferpools, fixing the XOverlay
40155         interface implementation to handle xid being 0 and fix some bugs
40156         triggered by Benjamin's testcase.
40157         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
40158         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
40159         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init): Implementing
40160         the bufferalloc_function to replace bufferpools, fixing the XOverlay
40161         interface implementation to handle xid being 0 and fix some bugs
40162         triggered by Benjamin's testcase.
40163
40164 2004-01-09  David Schleef  <ds@schleef.org>
40165
40166         * ext/librfb/gstrfbsrc.c:  Hacking.  Added actual decoding and
40167         mouse pointer events.  It works.
40168
40169 2004-01-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40170
40171         * ext/divx/gstdivxenc.c: (gst_divxenc_init):
40172           Use explicit caps - fix capsnego.
40173         * ext/xvid/gstxviddec.c:
40174         * ext/xvid/gstxvidenc.c:
40175           Remove macro-inside-macro which caused compile errors.
40176         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_header):
40177           Error out if it's not a RIFF file. Else we error out without
40178           gst_element_error() which is not good...
40179
40180 2004-01-08  David Schleef  <ds@schleef.org>
40181
40182         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
40183         Fix pad_link function to handle formats that ffmpeg returns
40184         as multiple caps structures.
40185         * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain):
40186         Only complain if source buffer is _smaller_ than expected.
40187         * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
40188         (gst_videoscale_handle_src_event): Resize navigation events
40189         when passing them upstream.
40190         * gst/videotestsrc/gstvideotestsrc.c:
40191         * gst/videotestsrc/gstvideotestsrc.h:
40192         * gst/videotestsrc/videotestsrc.c:
40193         * gst/videotestsrc/videotestsrc.h:
40194         Rewrite many of the buffer painting functions to handle odd
40195         sizes (for many formats, size%4!=0 or size%8!=0).  Most have
40196         been verified to work with my video card.
40197         * testsuite/gst-lint:  Add check for elements calling
40198         gst_pad_get_caps() instead of gst_pad_get_allowed_caps().
40199
40200 2004-01-08  David Schleef  <ds@schleef.org>
40201
40202         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
40203         (gst_videodrop_link), (gst_videodrop_init): Fix negotiation.
40204
40205 2004-01-08  Julien MOUTTE  <julien@moutte.net>
40206
40207         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents): A
40208         configure event is not emiting the desired size signal. That fixes
40209         aspect ratio issues with gst-player.
40210
40211 2004-01-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40212
40213         * gst/median/gstmedian.c: (gst_median_link), (gst_median_init):
40214           Fix capsnego.
40215
40216 2004-01-08  Julien MOUTTE  <julien@moutte.net>
40217
40218         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_create): Using XOverlay
40219         public method to fire size signal.
40220
40221 2004-01-07  Julien MOUTTE  <julien@moutte.net>
40222
40223         * examples/gstplay/Makefile.am: Adding the interface library.
40224         * gst-libs/gst/play/Makefile.am: Adding the interface library.
40225         * gst-libs/gst/play/gstplay.c: (gst_play_set_video_sink): Connecting to         the XOverlay size signal instead of GstVideoSink.
40226         * gst-libs/gst/play/gstplay.h: Including the XOverlay interface to check
40227         GST_IS_X_OVERLAY before signal connect.
40228         * gst-libs/gst/video/gstvideosink.c: (gst_videosink_class_init):
40229         Removing the have_video_size signal.
40230         * gst-libs/gst/video/gstvideosink.h: Removing the have_video_size signal
40231         and associated public method.
40232         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
40233         (gst_ximagesink_sinkconnect): Using XOverlay public method to fire size
40234         signal.
40235         * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
40236         (gst_xvideosink_xwindow_new): Using XOverlay public method to fire size
40237         signal.
40238         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sinkconnect):
40239         Using XOverlay public method to fire size signal.
40240
40241 2004-01-07  David Schleef  <ds@schleef.org>
40242
40243         * gst/videofilter/Makefile.am:
40244         * gst/videofilter/gstvideotemplate.c:
40245         * gst/videofilter/make_filter:
40246         Create gstvideoexample.c in a srcdir!=builddir friendly way.
40247         Convert make_filter to /bin/sh script.
40248
40249 2004-01-07  Thomas Vander Stichele  <thomas at apestaart dot org>
40250
40251         * gst/modplug/gstmodplug.cc: fix element description
40252
40253 2004-01-07  Julien MOUTTE  <julien@moutte.net>
40254
40255         * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
40256         (got_video_size): Adding some new lines in g_print calls.
40257         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
40258         (gst_ximagesink_xwindow_destroy), (gst_ximagesink_xwindow_resize),
40259         (gst_ximagesink_handle_xevents), (gst_ximagesink_fixate),
40260         (gst_ximagesink_sinkconnect), (gst_ximagesink_change_state),
40261         (gst_ximagesink_chain), (gst_ximagesink_buffer_new),
40262         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size):
40263         Complete code review, reverting some stuff i disagree with, adding
40264         some fixes : time synchronization on invalid timestamps, renegotiation
40265         of private window.
40266         * sys/ximage/ximagesink.h:
40267         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_destroy),
40268         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_handle_xevents),
40269         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
40270         (gst_xvimagesink_fixate), (gst_xvimagesink_sinkconnect),
40271         (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
40272         (gst_xvimagesink_buffer_new),
40273         (gst_xvimagesink_navigation_send_event),
40274         (gst_xvimagesink_set_xwindow_id),
40275         (gst_xvimagesink_get_desired_size),
40276         (gst_xvimagesink_xoverlay_init): Complete code review, reverting some
40277         stuff i disagree with, adding some fixes : Renegotiation of private
40278         window, implementing get_desired_size.
40279
40280 2004-01-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40281
40282         * ext/audiofile/gstafsink.c: (gst_afsink_init), (gst_afsink_chain),
40283         (gst_afsink_handle_event):
40284         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init):
40285         * gst/avi/gstavimux.c: (gst_avimux_request_new_pad):
40286         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_init):
40287         * sys/dxr3/dxr3spusink.c: (dxr3spusink_init):
40288         * sys/dxr3/dxr3videosink.c: (dxr3videosink_init):
40289           Fix for instantiate-test (see core). Also remove dead code from
40290           jpegenc (which still needs fixing, but that's lower on my TODO
40291           list...).
40292         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
40293           Never return NULL as caps.
40294
40295 2004-01-07  David Schleef  <ds@schleef.org>
40296
40297         * configure.ac:
40298         * ext/Makefile.am:
40299         * ext/librfb/Makefile.am:
40300         * ext/librfb/gstrfbsrc.c:
40301         New source plugin based on librfb-0.1.  RFB (remote framebuffer)
40302         is the protocol used by VNC.
40303
40304 2004-01-07  David Schleef  <ds@schleef.org>
40305
40306         * gst/videofilter/gstvideotemplate.c:
40307         * gst/videofilter/gstvideotemplate.h:
40308         * gst/videofilter/make_filter:
40309         Merge videotemplate header into source file.
40310         * gst/effectv/Makefile.am:
40311         * gst/effectv/gsteffectv.c: (plugin_init):
40312         * gst/effectv/gstwarp.c:
40313         Make warpTV a subclass of videofilter.
40314
40315 2004-01-07  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40316
40317         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
40318           Add guard against invalid utf-8 conversions in mad. Just in case.
40319
40320 2004-01-07  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40321
40322         * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
40323           Fix for bug shown by poisoning
40324
40325 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40326
40327         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
40328         (gst_v4lmjpegsrc_buffer_free):
40329         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
40330         (gst_v4lsrc_srcconnect), (gst_v4lsrc_getcaps), (gst_v4lsrc_get),
40331         (gst_v4lsrc_buffer_free):
40332           Fix for removed bufferpools.
40333
40334 2004-01-07  Jan Schmidt  <thaytan@mad.scientist.com>
40335
40336         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
40337         Fix caps negotiation.
40338
40339         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
40340         (dvdnavsrc_update_buttoninfo), (dvdnavsrc_get),
40341         (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
40342         (dvdnavsrc_event):
40343         * ext/mpeg2dec/gstmpeg2dec.c:
40344         * gst-libs/gst/navigation/navigation.c:
40345         (gst_navigation_send_key_event), (gst_navigation_send_mouse_event):
40346         * gst-libs/gst/navigation/navigation.h:
40347         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_handle_src_event):
40348         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
40349         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
40350         Super-simple first version of mouse and keyboard events. Clicking
40351         on a DVD menu now works, although it may not take you where you
40352         expected.
40353
40354         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
40355         * gst/videotestsrc/gstvideotestsrc.c:
40356         (gst_videotestsrc_src_fixate):
40357         These fixate functions were broken - they never actually
40358         fixated :)
40359
40360 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40361
40362         * ext/shout/gstshout.c: (gst_icecastsend_base_init),
40363         (gst_icecastsend_init):
40364           fix for new caps system.
40365         * gst-libs/gst/mixer/mixertrack.h:
40366         * sys/oss/gstossmixer.c: (gst_ossmixer_build_list):
40367           Add 'master track' flag (for tools like ACME that only want to
40368           change the main volume).
40369
40370 2004-01-07  Jan Schmidt  <thaytan@mad.scientist.com>
40371
40372         * ext/xvid/gstxvid.c: (gst_xvid_structure_to_csp),
40373         (gst_xvid_csp_to_caps):
40374         * ext/xvid/gstxviddec.c: (gst_xviddec_src_getcaps):
40375         * ext/xvid/gstxvidenc.c:
40376         ifdef out ARGB type when it isn't available
40377         in xvidcore 1.0.0beta2
40378
40379 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40380
40381         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
40382           When we have received a new SCR right in the first buffer after
40383           a seek (so in the same cycle that handles the discont), we should
40384           handle the buffer instead of unreffing it, else we lose data.
40385
40386 2004-01-06  Iain <iain@prettypeople.org>
40387
40388         * gst/intfloat/gstint2float.c (gst_int2float_link): Set the
40389           buffer-frames caps too.
40390
40391         * gst/oneton/gstoneton.c (gst_oneton_sink_connect): Only create the new
40392           caps that we need, don't destroy them all and rebuild them. And when
40393           creating src pads, use the src pad template rather than the sink...
40394
40395 2004-01-05  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40396
40397         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
40398           Add pad to element *after* setting functions such as event handler.
40399           Without this, the scheduler (opt) will link pads, set the event
40400           handler from the default event function (dispatcher in gstpad.c)
40401           and *after* that, we will set our own event function, which will
40402           thus never be used (and thus mpegdemux doesn't handle events).
40403
40404 2004-01-04  David Schleef  <ds@schleef.org>
40405
40406         Fix the fixate functions to handle new prototype:
40407         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
40408         * gst/videotestsrc/gstvideotestsrc.c:
40409         (gst_videotestsrc_src_fixate):
40410         * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
40411         * sys/ximage/ximagesink.c: (gst_ximagesink_fixate):
40412         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
40413
40414 2004-01-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40415
40416         * sys/ximage/ximagesink.h:
40417         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
40418         (gst_ximagesink_xwindow_destroy), (gst_ximagesink_sinkconnect),
40419         (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
40420         (gst_ximagesink_xoverlay_init):
40421           assorted fixes to make (re)embedding work
40422         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect),
40423         (gst_ximagesink_get_desired_size):
40424           implement desired size additions to XOverlay
40425
40426 2004-01-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40427
40428         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init),
40429         (gst_x_overlay_got_xwindow_id), (gst_x_overlay_get_desired_size),
40430         (gst_x_overlay_got_desired_size):
40431         * gst-libs/gst/xoverlay/xoverlay.h:
40432           Add optional "desired size" signal and querying.
40433
40434 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40435
40436         * gst/matroska/matroska-demux.c:
40437         (gst_matroska_demux_parse_blockgroup):
40438           Fix EBML-laced block parsing. Diffs are relative to previous
40439           lace, not the first lace. Thanks to Mosu from the Matroska
40440           team for detecting this.
40441         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
40442         (gst_wavparse_parse_fmt), (gst_wavparse_getcaps),
40443         (gst_wavparse_handle_sink_event), (gst_wavparse_loop),
40444         (gst_wavparse_change_state):
40445         * gst/wavparse/gstwavparse.h:
40446           Quickfix for capsnego.
40447
40448 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40449
40450         * gst/wavenc/gstwavenc.c: (set_property), (gst_wavenc_init):
40451           Fix indenting, fix pad creation.
40452
40453 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40454
40455         * ext/xvid/gstxviddec.c: (gst_xviddec_init),
40456         (gst_xviddec_src_getcaps), (gst_xviddec_src_link),
40457         (gst_xviddec_sink_link):
40458           Implement src_getcaps() so proper size caps is negotiated.
40459
40460 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40461
40462         * ext/flac/gstflacdec.c: (gst_flacdec_loop):
40463           Finish flac decoder on EOS. See #116178.
40464
40465 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40466
40467         * gst/matroska/matroska-demux.c: (gst_matroska_demux_src_getcaps),
40468         (gst_matroska_demux_add_stream):
40469         * gst/matroska/matroska-ids.h:
40470           Add getcaps() function to fix capsnego...
40471
40472 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40473
40474         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
40475         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
40476         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
40477           Fix more integer overflows. Again, see #126967.
40478
40479 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40480
40481         * ext/mpeg2dec/gstmpeg2dec.c:
40482           Add support for mpeg2dec-0.4.0 (released two weeks ago). See
40483           #130416.
40484
40485 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40486
40487         * configure.ac:
40488         * ext/xvid/gstxvid.c: (gst_xvid_init), (gst_xvid_error),
40489         (gst_xvid_structure_to_csp), (gst_xvid_csp_to_caps):
40490         * ext/xvid/gstxvid.h:
40491         * ext/xvid/gstxviddec.c: (gst_xviddec_class_init),
40492         (gst_xviddec_init), (gst_xviddec_setup), (gst_xviddec_chain),
40493         (gst_xviddec_src_link), (gst_xviddec_sink_link),
40494         (gst_xviddec_change_state):
40495         * ext/xvid/gstxviddec.h:
40496         * ext/xvid/gstxvidenc.c: (gst_xvidenc_profile_get_type),
40497         (gst_xvidenc_base_init), (gst_xvidenc_class_init),
40498         (gst_xvidenc_init), (gst_xvidenc_setup), (gst_xvidenc_chain),
40499         (gst_xvidenc_link), (gst_xvidenc_set_property),
40500         (gst_xvidenc_get_property), (gst_xvidenc_change_state):
40501         * ext/xvid/gstxvidenc.h:
40502           Update xvid plugin to latest xvid (1.0.0-beta3) API.
40503
40504 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40505
40506         * gst/rtp/rtp-packet.c:
40507           Add sys/types.h include, since OS X doesn't define in_addr_t
40508           in netinet/in.h, like it does on Linux (see #129600).
40509
40510 2004-01-03  Thomas Canty <tommydal@optushome.com.au>
40511
40512         reviewed by: Ronald Bultje  <rbultje@ronald.bitfreak.net>
40513
40514         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_dispose):
40515           Correct logic of dispose function (see #129306).
40516
40517 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40518
40519         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_pes):
40520         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
40521         (gst_mpeg_parse_init):
40522         * gst/mpegstream/gstmpegparse.h:
40523           Remove clock (which was never provided, i.e. dead code), and
40524           also fix integer overflows at high PTS values (see #126967).
40525
40526 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40527
40528         * ext/flac/gstflacdec.c:
40529         * ext/libpng/gstpngenc.h:
40530         * ext/mikmod/gstmikmod.h:
40531           OS X fixes (see #126628).
40532
40533 2004-01-02  David Schleef  <ds@schleef.org>
40534
40535         * ext/alsa/gstalsasrc.c: (gst_alsa_src_pad_factory),
40536         (gst_alsa_src_base_init): Remove bogus "src" request pad.
40537         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_base_init),
40538         (gst_mpeg_parse_class_init): Move pad template registration
40539         to class_init, since the derived class (mpegdemux) doesn't
40540         want them.
40541
40542 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40543
40544         * sys/ximage/Makefile.am:
40545         * sys/xvideo/Makefile.am:
40546         * sys/xvimage/Makefile.am:
40547           Move interface libs from LDFLAGS to LIBADD, fix relocation errors
40548           after installation (see #127664).
40549
40550 2004-01-02  David Schleef  <ds@schleef.org>
40551
40552         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_init),
40553         (gst_ffmpegenc_connect):  Negotiation fixes.
40554         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_negotiate_format):
40555         Remove inappropriate gst_caps_free().
40556         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
40557         Reenable Ronald's internal resize code, since the core handles
40558         it correctly now.
40559
40560 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40561
40562         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
40563         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
40564         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init), (gst_v4lsrc_init):
40565           Fix pad template stuff.
40566
40567 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40568
40569         * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
40570         * gst/matroska/ebml-write.c: (gst_ebml_write_sint):
40571           fix signed integer reading/writing.
40572
40573 2004-01-02  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40574
40575         * ext/alsa/README:
40576           Remove outdated document
40577
40578 2004-01-03  Jan Schmidt  <thaytan@mad.scientist.com>
40579
40580         * gst/cutter/gstcutter.c: (gst_cutter_init):
40581           src pad was being created twice - oops.
40582
40583 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40584
40585         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
40586           Comment out internal resize. It doesn't handle the resulting
40587           XEvent internally, does another try_set_caps() which leads to
40588           a really nice loop.
40589           Real fix will come when Julien and Dave are awake. ;).
40590
40591 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40592
40593         * ext/mpeg2enc/gstmpeg2enc.cc:
40594           fix const/nonconst compile issue.
40595
40596 2004-01-02  David Schleef  <ds@schleef.org>
40597
40598         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate),
40599         (gst_xvimagesink_sinkconnect), (gst_xvimagesink_init):
40600         Add fixate function and a check for bad formats.
40601
40602 2004-01-01  David Schleef  <ds@schleef.org>
40603
40604         Negotiation fixes:
40605         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
40606         (gst_audiofilter_init):
40607         * gst/debug/efence.c: (gst_efence_init):
40608         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
40609         (gst_deinterlace_init):
40610         * gst/volume/gstvolume.c: (volume_connect):
40611
40612 2004-01-01  David Schleef  <ds@schleef.org>
40613
40614         Convert elements to use gst_pad_use_explicit_caps() where
40615         appropriate:
40616         * ext/a52dec/gsta52dec.c: (gst_a52dec_init), (gst_a52dec_reneg):
40617         * ext/audiofile/gstafparse.c: (gst_afparse_init),
40618         (gst_afparse_open_file):
40619         * ext/audiofile/gstafsrc.c: (gst_afsrc_init),
40620         (gst_afsrc_open_file):
40621         * ext/esd/esdmon.c: (gst_esdmon_init), (gst_esdmon_get):
40622         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
40623         (gst_ffmpegdec_chain):
40624         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
40625         * ext/flac/gstflacdec.c: (gst_flacdec_init), (gst_flacdec_write):
40626         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init),
40627         (gst_gdk_pixbuf_chain):
40628         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init), (gst_jpegdec_link),
40629         (gst_jpegdec_chain):
40630         * ext/mad/gstmad.c: (gst_mad_init), (gst_mad_chain):
40631         * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
40632         (gst_mikmod_negotiate):
40633         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
40634         (gst_mpeg2dec_negotiate_format):
40635         * ext/mpeg2enc/gstmpeg2enc.cc:
40636         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
40637         * ext/speex/gstspeexdec.c: (gst_speexdec_init),
40638         (gst_speexdec_sinkconnect):
40639         * ext/swfdec/gstswfdec.c: (gst_swfdec_loop), (gst_swfdec_init):
40640         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_init),
40641         (gst_vorbisfile_new_link):
40642         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_init),
40643         (gst_ac3parse_chain):
40644         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_add_audio_stream),
40645         (gst_asf_demux_setup_pad):
40646         * gst/auparse/gstauparse.c: (gst_auparse_init),
40647         (gst_auparse_chain):
40648         * gst/id3/gstid3types.c: (gst_id3types_loop):
40649         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
40650         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
40651         (mp1videoparse_parse_seq):
40652         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_init),
40653         (bpf_from_header):
40654         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
40655         (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_lpcm_set_caps):
40656         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
40657         (gst_mpeg_parse_send_data):
40658         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
40659         (gst_qtdemux_add_stream):
40660         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
40661         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
40662         (gst_wavparse_parse_fmt):
40663
40664 2004-01-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40665
40666         * configure.ac:
40667           Fix configure check for mpeg2enc. We need 1.6.1.93 instead of
40668           1.6.1.92, since the pkg-config file of 1.6.1.92 is borked and
40669           it therefore uses the wrong include paths. Too bad... Note
40670           that 1.6.1.93 is not release yet. ;).
40671           Also add a check for mplex, which is now using the lib'ified
40672           mplex from mjpegtools, too.
40673         * ext/ffmpeg/gstffmpegcodecmap.c:
40674           Add codec_tag for 3ivx/xvid. For xvid, this should fix playback
40675           issues. I don't think ffmpeg handles 3ivx correctly, so this
40676           probably won't work. But it won't hurt either.
40677         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_connect),
40678         (gst_ffmpegdec_chain):
40679         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect),
40680         (gst_ffmpegenc_chain_audio):
40681           Fix memleak in audio encoding. Close codec if open fails, this
40682           calls the cleanup routines so we can re-use the context.
40683         * ext/mpeg2enc/gstmpeg2enc.cc:
40684           Fix pad template names/types, fix memory issue with getcaps().
40685         * ext/mpeg2enc/gstmpeg2encoder.cc:
40686         * ext/mpeg2enc/gstmpeg2encoder.hh:
40687           Fix compile issue with new caps system (const thingy).
40688         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
40689         * ext/mpeg2enc/gstmpeg2encpicturereader.hh:
40690           We read a first frame right on initing, so that we have a caps
40691           when we init the output. This caps is cached in padprivate and
40692           read as first frame.
40693         * ext/mplex/Makefile.am:
40694         * ext/mplex/gstmplex.cc:
40695         * ext/mplex/gstmplex.h:
40696         * ext/mplex/gstmplex.hh:
40697         * ext/mplex/gstmplexibitstream.cc:
40698         * ext/mplex/gstmplexibitstream.hh:
40699         * ext/mplex/gstmplexjob.cc:
40700         * ext/mplex/gstmplexjob.hh:
40701         * ext/mplex/gstmplexoutputstream.cc:
40702         * ext/mplex/gstmplexoutputstream.hh:
40703           We wrap mjpegtools mplex. So I rewrote the plugin. The old plugin
40704           had issues, didn't do capsnego, supported only a subset of the
40705           mplex features and required a mplex fork in our local CVS. Plus
40706           that it worked agaist a very old mplex version. Rewriting was
40707           faster than updating it.
40708         * gst-libs/ext/Makefile.am:
40709         * gst-libs/ext/mplex/INSTRUCT:
40710         * gst-libs/ext/mplex/Makefile.am:
40711         * gst-libs/ext/mplex/README:
40712         * gst-libs/ext/mplex/TODO:
40713         * gst-libs/ext/mplex/ac3strm_in.cc:
40714         * gst-libs/ext/mplex/audiostrm.hh:
40715         * gst-libs/ext/mplex/audiostrm_out.cc:
40716         * gst-libs/ext/mplex/aunit.hh:
40717         * gst-libs/ext/mplex/bits.cc:
40718         * gst-libs/ext/mplex/bits.hh:
40719         * gst-libs/ext/mplex/buffer.cc:
40720         * gst-libs/ext/mplex/buffer.hh:
40721         * gst-libs/ext/mplex/fastintfns.h:
40722         * gst-libs/ext/mplex/format_codes.h:
40723         * gst-libs/ext/mplex/inputstrm.cc:
40724         * gst-libs/ext/mplex/inputstrm.hh:
40725         * gst-libs/ext/mplex/lpcmstrm_in.cc:
40726         * gst-libs/ext/mplex/mjpeg_logging.cc:
40727         * gst-libs/ext/mplex/mjpeg_logging.h:
40728         * gst-libs/ext/mplex/mjpeg_types.h:
40729         * gst-libs/ext/mplex/mpastrm_in.cc:
40730         * gst-libs/ext/mplex/mpegconsts.cc:
40731         * gst-libs/ext/mplex/mpegconsts.h:
40732         * gst-libs/ext/mplex/mplexconsts.hh:
40733         * gst-libs/ext/mplex/multplex.cc:
40734         * gst-libs/ext/mplex/outputstream.hh:
40735         * gst-libs/ext/mplex/padstrm.cc:
40736         * gst-libs/ext/mplex/padstrm.hh:
40737         * gst-libs/ext/mplex/stillsstream.cc:
40738         * gst-libs/ext/mplex/stillsstream.hh:
40739         * gst-libs/ext/mplex/systems.cc:
40740         * gst-libs/ext/mplex/systems.hh:
40741         * gst-libs/ext/mplex/vector.cc:
40742         * gst-libs/ext/mplex/vector.hh:
40743         * gst-libs/ext/mplex/videostrm.hh:
40744         * gst-libs/ext/mplex/videostrm_in.cc:
40745         * gst-libs/ext/mplex/videostrm_out.cc:
40746         * gst-libs/ext/mplex/yuv4mpeg.cc:
40747         * gst-libs/ext/mplex/yuv4mpeg.h:
40748         * gst-libs/ext/mplex/yuv4mpeg_intern.h:
40749         * gst-libs/ext/mplex/yuv4mpeg_ratio.cc:
40750           We don't fork mjpegtools' mplex in our CVS anymore.
40751         * gst/avi/gstavidemux.c: (gst_avi_demux_src_getcaps),
40752         (gst_avi_demux_add_stream):
40753         * gst/avi/gstavidemux.h:
40754           Add getcaps() function for proper caps nego. This makes some
40755           parts of AVI playback/reading work.
40756         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
40757           Resize window on new capsnego. This is probably wrong, but
40758           I'm still committing it because with current capsnego, the
40759           first successfull capsnego is auto-fixated, therefore rounded
40760           down to the lowest values in the caps. this results in a 16x16
40761           XWindow that is not reized when real capsnego finishes.
40762           Dave, I see more cases of this, do you know a proper solution?
40763         * tools/gst-launch-ext.in:
40764           Fix MPEG-4 AAC (Apple iPod/iTunes) file commandline.
40765
40766 2003-12-31  David Schleef  <ds@schleef.org>
40767
40768         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get):
40769         * gst/udp/gstudpsrc.c: (gst_udpsrc_get):
40770           Change gst_pad_proxy_link() to gst_pad_try_set_caps()
40771
40772 2003-12-30  David Schleef  <ds@schleef.org>
40773
40774         * ext/ffmpeg/gstffmpegcolorspace.c:
40775         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
40776         (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_init),
40777         (gst_ffmpegcsp_chain): Negotiation fixes
40778         * ext/mad/gstmad.c: (gst_mad_chain): Negotiation fixes
40779         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
40780         (gst_audio_convert_link), (gst_audio_convert_channels):
40781         * gst/audioscale/gstaudioscale.c: (gst_audioscale_getcaps),
40782         (gst_audioscale_link), (gst_audioscale_get_buffer),
40783         (gst_audioscale_chain): Negotiation fixes
40784         * gst/audioscale/gstaudioscale.h:
40785         * gst/videofilter/gstvideofilter.c:
40786         (gst_videofilter_format_get_structure), (gst_videofilter_getcaps),
40787         (gst_videofilter_link), (gst_videofilter_init),
40788         (gst_videofilter_set_output_size), (gst_videofilter_setup),
40789         (gst_videofilter_find_format_by_structure):
40790         * gst/videofilter/gstvideofilter.h: Negotiation fixes
40791         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
40792         (gst_videoscale_link):
40793         * gst/videoscale/videoscale.c: (videoscale_get_structure),
40794         (videoscale_find_by_structure), (gst_videoscale_setup):
40795         * gst/videoscale/videoscale.h: Negotiation fixes
40796         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
40797         (gst_ximagesink_fixate), (gst_ximagesink_init): Add a fixate
40798         function, restrict resizing to a multiple of 4 (hack until
40799         everyone supports odd sizes correctly).
40800
40801 2003-12-29  Colin Walters  <walters@verbum.org>
40802
40803         * ext/esd/esdsink.c (gst_esdsink_link): Fix typo; get depth instead of
40804         signed.
40805
40806 2003-12-30  Jan Schmidt <thaytan@mad.scientist.com>
40807
40808         * ext/sndfile/gstsf.c: (gst_sf_loop):
40809           Fix warning about discarding const qualifier
40810
40811 2003-12-27  Jeremy Simon   <jesimon@libertysurf.fr>
40812
40813         * gst/cutter/gstcutter.c:
40814         * gst/videoscale/gstvideoscale.c:
40815         * gst/volenv/gstvolenv.c:
40816         * gst-libs/gst/audio/audio.c:
40817         * gst-libs/gst/video/video.c:
40818           Fix warnings
40819
40820 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40821
40822         * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
40823           Don't send ALSA debugging to stderr.
40824         * ext/alsa/gstalsa.h:
40825           Use GST_WARNING instead of g_warning when ALSA functions fail.
40826
40827 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40828
40829         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
40830           Free XVAdapterInfo correctly.
40831
40832 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40833
40834         * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
40835         (gst_id3_tag_do_caps_nego), (gst_id3_tag_src_link):
40836           Make id3tag use correct caps nego.
40837
40838 2003-12-27  Amaury Jacquot <sxpert@esitcom.org>
40839
40840         * ext/ivorbis/vorbis.c:
40841         * ext/ivorbis/vorbisenc.h:
40842         * ext/ivorbis/vorbisfile.c:
40843           Modify so that it uses the new caps things
40844
40845 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40846
40847         * testsuite/spider/spider1.c: (main):
40848         * testsuite/spider/spider2.c: (main):
40849         * testsuite/spider/spider3.c: (main):
40850           Make tests compile again. They probably don't work.
40851
40852 2003-12-24  Colin Walters  <walters@verbum.org>
40853
40854         * sys/oss/gstosssink.c (gst_osssink_sink_fixate): Return NULL if
40855         we can't fixate the caps anymore.
40856
40857 2003-12-23  David Schleef  <ds@schleef.org>
40858
40859         * gst/volume/gstvolume.c: (volume_init): Proxy getcaps.
40860         * sys/oss/gstosssink.c: (gst_osssink_init),
40861         (gst_osssink_sink_fixate): Add fixate function.
40862
40863 2003-12-24  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40864
40865         * ext/ffmpeg/gstffmpegcodecmap.c:
40866         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_getcaps),
40867         (gst_ffmpegcsp_srcconnect_func), (gst_ffmpegcsp_sinkconnect),
40868         (gst_ffmpegcsp_srcconnect), (gst_ffmpegcsp_get_type),
40869         (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
40870         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
40871         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
40872         (gst_ffmpegcsp_get_property), (gst_ffmpegcsp_register):
40873           fix typo in RGB masks, and move back to "old" colorspace
40874           capsnego code until whoever wrote this new crap has actually
40875           tested it so that it works.
40876           And yes, this works, keep it that way please.
40877
40878 2003-12-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40879
40880         * ext/divx/gstdivxdec.c: (gst_divxdec_base_init),
40881         (gst_divxdec_init), (gst_divxdec_negotiate):
40882         * ext/divx/gstdivxdec.h:
40883         * ext/divx/gstdivxenc.c: (gst_divxenc_base_init),
40884         (gst_divxenc_init):
40885         * ext/faac/gstfaac.c: (gst_faac_base_init), (gst_faac_init),
40886         (gst_faac_sinkconnect), (gst_faac_srcconnect):
40887         * ext/mpeg2enc/gstmpeg2enc.cc:
40888         * ext/mpeg2enc/gstmpeg2encoder.cc:
40889         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
40890         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_base_init),
40891         (dxr3audiosink_init), (dxr3audiosink_pcm_sinklink):
40892         * sys/dxr3/dxr3spusink.c: (dxr3spusink_base_init),
40893         (dxr3spusink_init):
40894         * sys/dxr3/dxr3videosink.c: (dxr3videosink_base_init),
40895         (dxr3videosink_init):
40896           Fix caps breakage after Dave's caps branch merge.
40897
40898 2003-12-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40899
40900         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
40901           Fix for 24bpp display.
40902
40903 2003-12-23  Colin Walters  <walters@verbum.org>
40904
40905         * ext/gnomevfs/gstgnomevfssink.c: Add ARG_HANDLE property that takes
40906         a GnomeVFSHandle directly.
40907
40908 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40909
40910         * gst/volume/Makefile.am:
40911         * gst/volume/gstvolume.c: (volume_connect), (volume_parse_caps),
40912         (volume_base_init), (volume_init):
40913           Reenable volume element and fix to work with new caps stuff.
40914           Rhythmbox needs this.
40915
40916 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40917
40918         * gst/qtdemux/qtdemux.c: (plugin_init):
40919           qtdemux requires bytestream
40920
40921 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40922
40923         * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_link):
40924           Fix remaining caps handling errors due to CAPS merge.
40925
40926 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40927
40928         * ext/faad/gstfaad.c: (gst_faad_base_init), (gst_faad_init),
40929         (gst_faad_sinkconnect), (gst_faad_srcgetcaps),
40930         (gst_faad_srcconnect):
40931           Port to new caps system.
40932
40933 2003-12-21  Julien MOUTTE  <julien@moutte.net>
40934
40935         * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
40936         (got_video_size), (main): using g_print instead of g_message.
40937         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup): Fixing EOS
40938         signal which was not emitted because of "switch" element added to the
40939         bin but not connected. (Removing from the bin temporarily)
40940
40941 2003-12-21  Julien MOUTTE  <julien@moutte.net>
40942
40943         * configure.ac: X_DISPLAY_MISSING is set to 1 if AC_PATH_XTRA fails to
40944         find X development files. I don't understand the previous tests and
40945         they fail on my debian/ppc unstable. This one works.
40946         * examples/gstplay/player.c: (main): Set the pipeline to READY before
40947         exiting.
40948         * gst-libs/gst/play/gstplay.c: (gst_play_get_length_callback),
40949         (gst_play_set_video_sink), (gst_play_set_audio_sink),
40950         (gst_play_set_visualization): Add some safety checks in set_ methods
40951         and state_change. This was throwing some ugly CRITICAL messages when
40952         pipeline was getting disposed and casts were failing.
40953
40954 2003-12-21  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40955
40956         * configure.ac:
40957           Improve mpeg2enc detection. This is for distributions that do
40958           ship mjpegtools, but without mpeg2enc. Also does object check
40959           for might there ever be ABI incompatibility.
40960         * ext/mpeg2enc/gstmpeg2enc.cc:
40961           Add Andrew as second maintainer (he's helping me), and also add
40962           an error if no caps was set. This happens if I pull before capsnego
40963           and that's something I should solve sometime else.
40964         * gst/matroska/matroska-demux.c:
40965         (gst_matroska_demux_parse_blockgroup):
40966           Fix time parsing.
40967         * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link),
40968         (gst_matroska_mux_track_header):
40969           Add caps to templates.
40970         * gst/mpegaudioparse/gstmpegaudioparse.c: (mp3_sink_factory):
40971           Add mpegversion=1 to prevent confusion with MPEG/AAC.
40972         * gst/mpegstream/gstmpegdemux.c:
40973           Remove layer since it causes warnings about unfixed caps.
40974         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
40975           Fix obvious typo (we error out if caps were set, we should of
40976           course error out if *no* caps were set).
40977         * sys/oss/gstosselement.c: (gst_osselement_convert):
40978           Fix format conversion, we confused bits/bytes.
40979         * sys/oss/gstosselement.h:
40980           Improve documentation for 'bps'.
40981         * sys/v4l/TODO:
40982           Remove stuff about plugins that need removing - this was done
40983           ages ago.
40984         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init),
40985         (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query):
40986         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_src_convert),
40987         (gst_v4lsrc_src_query):
40988         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
40989         (gst_v4l2src_src_convert), (gst_v4l2src_src_query):
40990           Add get_query_types(), get_formats() and query() functions.
40991
40992 2003-12-21  Thomas Vander Stichele  <thomas at apestaart dot org>
40993
40994         * ChangeLog: moved to gstreamer/docs/random/old/ChangeLog.gst-plugins
40995           * moved CVS to freedesktop.org