gst/playback/gstplaysink.c: Add some more debug info.
[platform/upstream/gstreamer.git] / ChangeLog
1 2008-12-11  Wim Taymans  <wim.taymans@collabora.co.uk>
2
3         * gst/playback/gstplaysink.c: (gen_audio_chain),
4         (gst_play_sink_reconfigure):
5         Add some more debug info.
6         Fix linking of just an encoded sink.
7         Handle failure to create a sink chain more gracefully than crashing.
8
9 2008-12-11  Wim Taymans  <wim.taymans@collabora.co.uk>
10
11         * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
12         Pushing 10 buffers is enough to run the test.
13
14 2008-12-11  Wim Taymans  <wim.taymans@collabora.co.uk>
15
16         * tests/examples/seek/seek.c: (do_seek), (stop_cb),
17         (skip_toggle_cb), (rate_spinbutton_changed_cb), (msg_segment_done),
18         (main):
19         Hook up the SKIP seek flag.
20
21 2008-12-10  Wim Taymans  <wim.taymans@collabora.co.uk>
22
23         * gst/playback/gstplaybin2.c: (pad_added_cb):
24         Error out with a missing-plugin error when the input-selector was not
25         found.
26
27         * gst/playback/gstplaysink.c: (gst_play_sink_reconfigure):
28         Indentation.
29
30 2008-12-10  Wim Taymans  <wim.taymans@collabora.co.uk>
31
32         * gst/playback/gstplaysink.c: (gst_play_sink_class_init),
33         (gst_play_sink_dispose), (gst_play_sink_finalize), (try_element),
34         (gen_video_chain), (gen_audio_chain), (gst_play_sink_reconfigure),
35         (gst_play_sink_send_event), (gst_play_sink_change_state):
36         Use G_DEFINE_TYPE.
37         Try to set the selected sink to READY before using it. This will allow
38         for detection of incompatible formats sooner.
39         Don't cause a fatal error when conversion elements are missing but post
40         a missing-element message and a warning instead because things might
41         still link and run fine.
42         Simplyfy the construction of audio and video sink chains.
43
44 2008-12-10  Wim Taymans  <wim.taymans@collabora.co.uk>
45
46         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_class_init),
47         (gst_ogg_pad_dispose), (gst_ogg_pad_finalize):
48         Use G_DEFINE_TYPE for the OggPad to get some threadsafe type 
49         init from glib.
50
51 2008-12-10  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
52
53         Patch by: Luis Menina <liberforce at freeside dot fr>
54
55         * gst-libs/gst/floatcast/floatcast.h:
56         * gst/typefind/gsttypefindfunctions.c:
57         Include glib.h instead of a specific GLib header. Including single
58         GLib headers is deprecated. Fixes bug #563904.
59
60 2008-12-09  Julien Moutte  <julien@fluendo.com>
61
62         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps): 
63         Support higher max audio rates for some formats (WAV, Vorbis, LPCM).
64
65 2008-12-09  Stefan Kost  <ensonic@users.sf.net>
66
67         * gst-libs/gst/riff/riff-read.c:
68           Fix handling of odd chunks in riff metadata.
69
70 2008-12-08  Wim Taymans  <wim.taymans@collabora.co.uk>
71
72         * gst/volume/gstvolume.c: (gst_volume_class_init),
73         (volume_before_transform), (volume_transform_ip):
74         Use new basetransform vmethod to reconfigure the dynamic properties and
75         any pending volume/mute changes. Fixes #563508.
76
77 2008-12-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
78
79         * configure.ac:
80         First check for "theoraenc theoradec" and if that failed check
81         for "theora >= 1.0alpha5". The former appeared in 1.0beta3 and
82         deprecate the latter. Also linking on Windows fails with just "theora"
83         and the version check would fail for the release candidates.
84         Fixes bug #563718.
85
86 2008-12-08  Stefan Kost  <ensonic@users.sf.net>
87
88         * gst/playback/gstdecodebin.c:
89         * gst/playback/gstdecodebin2.c:
90           Add basic docs to decodebin and link to decodebin from decodebin2.
91           
92 2008-12-08  Wim Taymans  <wim.taymans@collabora.co.uk>
93
94         Patch by: Olivier Crete  <tester at tester ca>
95
96         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_packet_remove):
97         * gst-libs/gst/rtp/gstrtcpbuffer.h:
98         Implement gst_rtcp_packet_remove(). Fixes #563174.
99
100         * tests/check/libs/rtp.c: (GST_START_TEST), (rtp_suite):
101         Add unit test for some RTCP functions.
102
103 2008-12-04  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
104
105         * configure.ac:
106         Apparently AC_CONFIG_MACRO_DIR breaks when using more
107         than one macro directory, reverting last change.
108
109 2008-12-04  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
110
111         * configure.ac:
112         Set AC_CONFIG_MACRO_DIR to common/m4 to point autoconf to
113         our M4 macros.
114
115 2008-12-03  Edward Hervey  <edward.hervey@collabora.co.uk>
116
117         * sys/ximage/ximagesink.c: (gst_ximagesink_buffer_alloc):
118         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
119         Clear all flags on buffers returned from the image pool.
120         Fixes #563143
121
122 2008-11-29  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
123
124         Patch by: Cygwin Ports maintainer
125                   <yselkowitz at users dot sourceforge dot net>
126
127         * autogen.sh:
128         * configure.ac:
129         Require gettext 0.17 because older versions don't mix with libtool
130         2.2. At build time an older gettext version will still work.
131         Fixes bug #556091.
132
133 2008-11-28  Christian Schaller <christian.schaller@collabora.co.uk>
134
135         * gst/speexresample/Makefile.am: fix build by removing -lgstaudio 
136
137 2008-11-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
138
139         * docs/plugins/gst-plugins-base-plugins.args:
140         * docs/plugins/gst-plugins-base-plugins.hierarchy:
141         * docs/plugins/gst-plugins-base-plugins.interfaces:
142         * docs/plugins/gst-plugins-base-plugins.prerequisites:
143         * docs/plugins/inspect/plugin-videorate.xml:
144         * gst/speexresample/gstspeexresample.c:
145         Update documentation of speexresample for the new element name.
146
147 2008-11-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
148
149         * gst/speexresample/README:
150         Update README with the latest diff between the Speex resampler
151         and our copy.
152
153 2008-11-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
154
155         * gst/speexresample/gstspeexresample.c: (plugin_init):
156         Update the debug category from speex_resample to audioresample.
157
158 2008-11-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
159
160         * gst/audioresample/Makefile.am:
161         * gst/audioresample/buffer.c:
162         * gst/audioresample/buffer.h:
163         * gst/audioresample/debug.c:
164         * gst/audioresample/debug.h:
165         * gst/audioresample/functable.c:
166         * gst/audioresample/functable.h:
167         * gst/audioresample/gstaudioresample.c:
168         * gst/audioresample/gstaudioresample.h:
169         * gst/audioresample/resample.c:
170         * gst/audioresample/resample.h:
171         * gst/audioresample/resample_chunk.c:
172         * gst/audioresample/resample_functable.c:
173         * gst/audioresample/resample_ref.c:
174         * tests/check/elements/audioresample.c:
175         Remove audioresample files.
176
177 2008-11-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
178
179         * docs/plugins/inspect/plugin-audioresample.xml:
180         Regenerated for library filename change.
181
182 2008-11-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
183
184         * configure.ac:
185         * docs/plugins/Makefile.am:
186         * docs/plugins/gst-plugins-base-plugins-sections.txt:
187         * docs/plugins/gst-plugins-base-plugins.args:
188         * docs/plugins/gst-plugins-base-plugins.hierarchy:
189         * docs/plugins/gst-plugins-base-plugins.interfaces:
190         * docs/plugins/gst-plugins-base-plugins.prerequisites:
191         * docs/plugins/inspect/plugin-adder.xml:
192         * docs/plugins/inspect/plugin-alsa.xml:
193         * docs/plugins/inspect/plugin-audioconvert.xml:
194         * docs/plugins/inspect/plugin-audiorate.xml:
195         * docs/plugins/inspect/plugin-audioresample.xml:
196         * docs/plugins/inspect/plugin-audiotestsrc.xml:
197         * docs/plugins/inspect/plugin-cdparanoia.xml:
198         * docs/plugins/inspect/plugin-decodebin.xml:
199         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
200         * docs/plugins/inspect/plugin-gdp.xml:
201         * docs/plugins/inspect/plugin-gio.xml:
202         * docs/plugins/inspect/plugin-gnomevfs.xml:
203         * docs/plugins/inspect/plugin-libvisual.xml:
204         * docs/plugins/inspect/plugin-ogg.xml:
205         * docs/plugins/inspect/plugin-pango.xml:
206         * docs/plugins/inspect/plugin-playback.xml:
207         * docs/plugins/inspect/plugin-queue2.xml:
208         * docs/plugins/inspect/plugin-subparse.xml:
209         * docs/plugins/inspect/plugin-tcp.xml:
210         * docs/plugins/inspect/plugin-theora.xml:
211         * docs/plugins/inspect/plugin-typefindfunctions.xml:
212         * docs/plugins/inspect/plugin-uridecodebin.xml:
213         * docs/plugins/inspect/plugin-video4linux.xml:
214         * docs/plugins/inspect/plugin-videorate.xml:
215         * docs/plugins/inspect/plugin-videoscale.xml:
216         * docs/plugins/inspect/plugin-videotestsrc.xml:
217         * docs/plugins/inspect/plugin-volume.xml:
218         * docs/plugins/inspect/plugin-vorbis.xml:
219         * docs/plugins/inspect/plugin-ximagesink.xml:
220         * docs/plugins/inspect/plugin-xvimagesink.xml:
221         * gst/speexresample/gstspeexresample.c: (plugin_init):
222         * gst/speexresample/Makefile.am:
223         * tests/check/Makefile.am:
224         * tests/check/elements/speexresample.c: (setup_speexresample),
225         (GST_START_TEST), (test_pipeline):
226         Rename the moved speexresample to audioresample, integrate into the
227         build system and remove the old audioresample from the build system.
228         Fixes bug #558124, #385061, #346218, #116051.
229
230 2008-11-27  Wim Taymans  <wim.taymans@collabora.co.uk>
231
232         * gst-libs/gst/audio/gstbaseaudiosrc.c:
233         (gst_base_audio_src_get_offset), (gst_base_audio_src_create):
234         Avoid nasty int overflows after about 12 hours and 25 minutes when these
235         code paths are triggered. 
236         A free beer to Håvard Graff for finding this!
237
238 2008-11-27  Wim Taymans  <wim.taymans@collabora.co.uk>
239
240         Patch by: 이문형 <iwings at gmail dot com>
241
242         * gst-libs/gst/rtsp/gstrtspconnection.c:
243         (gst_rtsp_connection_connect):
244         A successful gst_poll_wait() doesn't always mean successful connect() on
245         Windows.  We should check errors by calling gst_poll_fd_has_error().
246         See #561924.
247
248 2008-11-25  Wim Taymans  <wim.taymans@collabora.co.uk>
249
250         * gst-libs/gst/rtp/gstrtcpbuffer.c:
251         Fix typo in the docs.
252
253 2008-11-25  Wim Taymans  <wim.taymans@collabora.co.uk>
254
255         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_sink_event):
256         If no stream was found before receiving EOS, post an error message.
257         Fixes #561924.
258
259 2008-11-25  Wim Taymans  <wim.taymans@collabora.co.uk>
260
261         * ext/theora/gsttheoraenc.h:
262         * ext/theora/theoraenc.c: (gst_theora_enc_init),
263         (theora_buffer_from_packet), (theora_push_packet),
264         (theora_enc_sink_event), (theora_enc_is_discontinuous),
265         (theora_enc_chain):
266         Parse segment events.
267         Pass incomming buffer timestamps to outgoing buffers.
268         Use the running_time to construct the granulepos.
269         Fixes #562163.
270
271 2008-11-25  Wim Taymans  <wim.taymans@collabora.co.uk>
272
273         * gst/playback/gstplaybin2.c: (activate_group):
274         Fix buffer-duration property.
275
276 2008-11-25  Wim Taymans  <wim.taymans@collabora.co.uk>
277
278         * gst-libs/gst/audio/gstbaseaudiosink.c:
279         (gst_base_audio_sink_drain), (gst_base_audio_sink_event),
280         (gst_base_audio_sink_sync_latency), (gst_base_audio_sink_render),
281         (gst_base_audio_sink_change_state):
282         Really fix audiosink drain handling by keeping track of the running_time
283         of the last sample.
284
285 2008-11-24  Michael Smith <msmith@songbirdnest.com>
286
287         * gst/playback/gstplaybin2.c:
288           Add notification of current stream. Add ability to configure buffer
289           sizes.
290         * gst/playback/gsturidecodebin.c:
291           Add ability to configure buffer sizes for streaming mode.
292           Bug #561734.
293
294 2008-11-24  Stefan Kost  <ensonic@users.sf.net>
295
296         * gst-libs/gst/audio/gstbaseaudiosink.c:
297           Time is already in running_time. Remove base_time handling. Fixes
298           audiosinks not draining and thus chopping some audio in the end.
299
300 2008-11-24  David Schleef  <ds@schleef.org>
301
302         * ext/ogg/gstoggmux.c:
303         * ext/ogg/gstoggmux.h:
304           If we're muxing a dirac stream, flush the page after every picture.
305
306 2008-11-24  Stefan Kost  <ensonic@users.sf.net>
307
308         * gst-libs/gst/audio/gstbaseaudiosink.c:
309           Add one log message to check for audio_drained. Sync one log message
310           with the condition. Send EOS after draining audio in pull mode.
311
312 2008-11-24  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
313
314         * ext/gio/gstgiobasesrc.c: (gst_gio_base_src_create):
315         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
316         Use gst_buffer_try_new_and_alloc() and fail properly if the
317         allocation failed. This prevents abort() if downstream elements
318         request an insane amount of memory.
319
320 2008-11-24  Wim Taymans  <wim.taymans@collabora.co.uk>
321
322         * gst/volume/gstvolume.c: (volume_choose_func),
323         (volume_update_volume), (gst_volume_set_volume),
324         (gst_volume_get_volume), (gst_volume_set_mute),
325         (gst_volume_class_init), (gst_volume_init),
326         (volume_process_double), (volume_process_float),
327         (volume_process_int32), (volume_process_int32_clamp),
328         (volume_process_int24), (volume_process_int24_clamp),
329         (volume_process_int16), (volume_process_int16_clamp),
330         (volume_process_int8), (volume_process_int8_clamp), (volume_setup),
331         (volume_transform_ip), (volume_set_property),
332         (volume_get_property):
333         * gst/volume/gstvolume.h:
334         Cleanup volume, define and use default values.
335         Recalculate new volume and mute setup before processing. Fixes #561789.
336
337         * tests/check/elements/volume.c: (GST_START_TEST), (volume_suite):
338         Add controller unit test. Patch by: Jonathan Matthew
339         Fix bogus test that messed with basetransform's internal state.
340
341 2008-11-22  Wim Taymans  <wim.taymans@collabora.co.uk>
342
343         * gst/videorate/gstvideorate.c:
344         Add jpeg and png image media types to the caps. Fixes #561436.
345
346 2008-11-22  Wim Taymans  <wim.taymans@collabora.co.uk>
347
348         * gst/playback/gstplaysink.c: (gen_audio_chain):
349         Don't post an error when we can't configure the volume but post a
350         warning instead. Fixes #561780.
351
352 2008-11-21  David Schleef  <ds@schleef.org>
353
354         Patch by: Jonathan Rosser <jonathan.rosser@rd.bbc.co.uk>
355
356         * gst/videotestsrc/gstvideotestsrc.c:
357         * gst/videotestsrc/gstvideotestsrc.h:
358         * gst/videotestsrc/videotestsrc.c:
359         * gst/videotestsrc/videotestsrc.h:
360           Add a zone plate pattern generator based on BBC R&D Report
361           1978/23 (yeah *that* 1978).  Try 'videotestsrc pattern=zone-plate
362           kx2=20 ky2=20 kt=1'.
363
364 2008-11-20  Michael Smith <msmith@songbirdnest.com>
365
366         * gst/playback/gstdecodebin2.c:
367           Fix random fat-fingering making this not compile.
368
369 2008-11-20  Michael Smith <msmith@songbirdnest.com>
370
371         * gst/playback/gstdecodebin2.c:
372           If the top-level type of the stream is plain text, don't try to decode
373           it, matching behaviour of decodebin.
374         * gst/playback/gstplaysink.c:
375           If we fail to generate a text chain (e.g. due to missing optional
376           plugins), don't crash.
377
378 2008-11-20  Michael Smith <msmith@songbirdnest.com>
379
380         * gst-libs/gst/rtsp/gstrtspdefs.c:
381           Fix win32 build. Oops.
382
383 2008-11-20  Michael Smith <msmith@songbirdnest.com>
384
385         * gst-libs/gst/rtsp/gstrtspdefs.c:
386           Use WSAGetLastError() rather than errno/h_errno on win32.
387
388 2008-11-20  Michael Smith <msmith@songbirdnest.com>
389
390         * gst-libs/gst/riff/riff-media.c:
391           Support WMA Lossless properly.
392
393 2008-11-18  David Schleef  <ds@schleef.org>
394
395         * gst/videotestsrc/gstvideotestsrc.c:
396         * gst/videotestsrc/gstvideotestsrc.h:
397         * gst/videotestsrc/videotestsrc.c:
398         * gst/videotestsrc/videotestsrc.h:
399           Add "colorspec" property, specifying whether to generate BT.601
400           or BT.709 video.  This only affects YCbCr values, not RGB, since
401           if you're generating a 709 test pattern, presumably you want
402           709 RGB primaries, not 601.  Also add "smpte75" pattern, which
403           uses 75% colors instead of 100%, since this is often more useful
404           for testing (and also follows the SMPTE EG-1 guideline).
405
406 2008-11-18  Alessandro Decina  <alessandro.d@gmail.com>
407
408         * gst/playback/gstdecodebin.c:
409         Add a "sink-caps" property to decodebin like it's done for decodebin2.
410         Fixes #560380.
411
412 2008-11-14  Jan Schmidt  <jan.schmidt@sun.com>
413
414         * gst/audioresample/gstaudioresample.c:
415         Guard against a NULL dereference I somehow encountered -
416         with a FLUSH_STOP arriving either before basetransform _start(),
417         or after _stop().
418
419         * gst/typefind/gsttypefindfunctions.c:
420         Make sure we never jump backwards when typefinding corrupt mov files.
421
422 2008-11-14  Jan Schmidt  <jan.schmidt@sun.com>
423
424         * gst-libs/gst/interfaces/propertyprobe.c:
425         Fix random type causing a docs warning.
426
427 2008-11-14  Stefan Kost  <ensonic@users.sf.net>
428
429         * sys/v4l/gstv4l.c:
430           Give it a minimal rank for autovideosrc.
431
432 2008-11-13  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
433
434         * gst/typefind/gsttypefindfunctions.c: (jp2_type_find),
435         (plugin_init):
436         Improve typefinding of ISO JPEG2000 mime types.
437
438 2008-11-13  Wim Taymans  <wim.taymans@collabora.co.uk>
439
440         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
441         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_setcaps),
442         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
443         * sys/xvimage/xvimagesink.h:
444         Avoid typechecking when we do trivial casts.
445         Move error handling out of the main program flow.
446         Sneak in the display-region caps property, not completely correct yet.
447         Cache the width/height in buffer_alloc instead of parsing it from the
448         caps all the time.
449
450 2008-11-13  Wim Taymans  <wim.taymans@collabora.co.uk>
451
452         * gst/playback/gstplaybin2.c: (deactivate_group):
453         don't try to unlink the selector sinkpad when we don't have it yet. This
454         can happen if an error occured before the group was complete.
455
456 2008-11-13  Wim Taymans  <wim.taymans@collabora.co.uk>
457
458         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data),
459         (gst_rtp_buffer_set_packet_len), (gst_rtp_buffer_get_packet_len),
460         (gst_rtp_buffer_get_header_len), (gst_rtp_buffer_get_version),
461         (gst_rtp_buffer_set_version), (gst_rtp_buffer_get_padding),
462         (gst_rtp_buffer_set_padding), (gst_rtp_buffer_pad_to),
463         (gst_rtp_buffer_get_extension), (gst_rtp_buffer_set_extension),
464         (gst_rtp_buffer_get_extension_data),
465         (gst_rtp_buffer_set_extension_data), (gst_rtp_buffer_get_ssrc),
466         (gst_rtp_buffer_set_ssrc), (gst_rtp_buffer_get_csrc_count),
467         (gst_rtp_buffer_get_csrc), (gst_rtp_buffer_set_csrc),
468         (gst_rtp_buffer_get_marker), (gst_rtp_buffer_set_marker),
469         (gst_rtp_buffer_get_payload_type),
470         (gst_rtp_buffer_set_payload_type), (gst_rtp_buffer_get_seq),
471         (gst_rtp_buffer_set_seq), (gst_rtp_buffer_get_timestamp),
472         (gst_rtp_buffer_set_timestamp),
473         (gst_rtp_buffer_get_payload_subbuffer),
474         (gst_rtp_buffer_get_payload_len), (gst_rtp_buffer_get_payload):
475         Avoid expensive type checks we already did as part of the 
476         _validate() function that should be called first.
477
478 2008-11-11  Wim Taymans  <wim.taymans@collabora.co.uk>
479
480         * gst-libs/gst/rtp/gstbasertpdepayload.c: (create_segment_event),
481         (gst_base_rtp_depayload_push_full),
482         (gst_base_rtp_depayload_set_gst_timestamp):
483         Fix some cases where a newsegment event was not sent.
484
485 2008-11-11  Wim Taymans  <wim.taymans@collabora.co.uk>
486
487         * gst/playback/gstplaybin2.c: (activate_group):
488         Catch state change errors and stop from the uridecodebin elements
489         instead of trying to continue in vain.
490
491 2008-11-10  Wim Taymans  <wim.taymans@collabora.co.uk>
492
493         * gst-libs/gst/audio/gstbaseaudiosink.c:
494         (gst_base_audio_sink_sync_latency), (gst_base_audio_sink_render),
495         (gst_base_audio_sink_callback):
496         Use gst_base_sink_do_preroll() to wait for PLAYING and before waiting
497         for the latency to expire, fixes #559567.
498
499 2008-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
500
501         * gst/adder/gstadder.c:
502           Change author string after seeing output of gst-inspector.
503
504 2008-11-10  Wim Taymans  <wim.taymans@collabora.co.uk>
505
506         * gst/playback/gstplaysink.c: (gst_play_sink_reconfigure):
507         Don't try to do crazy things when we only have a text pad without a
508         video pad. Fixes #559478.
509
510 2008-11-06  Wim Taymans  <wim.taymans@collabora.co.uk>
511
512         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
513         Fix case where we don't have a range for the rates or channels as is the
514         case with truespeech.
515
516 2008-11-05  Wim Taymans  <wim.taymans@collabora.co.uk>
517
518         * gst/volume/gstvolume.c: (volume_update_real_volume),
519         (gst_volume_set_volume), (gst_volume_get_volume),
520         (gst_volume_set_mute), (gst_volume_init), (volume_setup),
521         (volume_transform_ip), (volume_update_mute),
522         (volume_update_volume), (volume_get_property):
523         * gst/volume/gstvolume.h:
524         Keep negotiated state in a separate variable.
525         Protect the volume and mute properties with the object lock.
526         Protect modifying the transform with the transform lock.
527
528 2008-11-05  Wim Taymans  <wim.taymans@collabora.co.uk>
529
530         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
531         (gst_ffmpeg_pixfmt_to_caps):
532         Only convert caps to string when debug is enabled.
533
534 2008-11-04  Wim Taymans  <wim.taymans@collabora.co.uk>
535
536         * ext/theora/gsttheoradec.h:
537         * ext/theora/theoradec.c: (gst_theora_dec_init),
538         (gst_theora_dec_reset), (theora_dec_src_event),
539         (theora_dec_sink_event), (theora_handle_type_packet):
540         Copy seqnum.
541         Keep events in a pending list, like vorbisdec, instead of trying
542         to construct a segment event ourselves.
543
544         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
545         (vorbis_dec_src_event), (vorbis_dec_sink_event):
546         * ext/vorbis/vorbisdec.h:
547         Copy seqnum.
548
549 2008-11-04  Wim Taymans  <wim.taymans@collabora.co.uk>
550
551         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
552         (gst_ogg_demux_deactivate_current_chain),
553         (gst_ogg_demux_perform_seek), (gst_ogg_demux_handle_page),
554         (gst_ogg_demux_loop):
555         * ext/ogg/gstoggdemux.h:
556         Copy seqnums around to track playback segments and messages.
557
558 2008-11-03  Wim Taymans  <wim.taymans@collabora.co.uk>
559
560         Based on patch by: Matthias Kretz <kretz at kde dot org>
561
562         * ext/alsa/gstalsasink.c: (gst_alsasink_open),
563         (gst_alsasink_prepare), (gst_alsasink_unprepare),
564         (gst_alsasink_write):
565         Make all access non-blocking so that we can better handle unplugging
566         of usb devices. Fixes #559111
567
568 2008-11-03  Wim Taymans  <wim.taymans@collabora.co.uk>
569
570         Patch by: Damien Lespiau  <damien.lespiau gmail com>
571
572         * gst-libs/gst/rtsp/gstrtspconnection.c:
573         (gst_rtsp_connection_write):
574         Make the next call to poll not depend on previous calls to poll with or
575         without reading from the active descriptor. Fixes #544293.
576
577 2008-10-31  Wim Taymans  <wim.taymans@collabora.co.uk>
578
579         Patch by: Nick Haddad <nick at haddads dot net>
580
581         * gst-libs/gst/riff/riff-ids.h:
582         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
583         Add support for other fourcc codes that are commonly used for
584         'uncompressed RGB', including 'RGB ', 'RAW ', and 0.
585         Fixes #558553.
586
587 2008-10-30  Stefan Kost  <ensonic@users.sf.net>
588
589         * gst/audioresample/gstaudioresample.c:
590           Return the result of parent_class->event().
591
592 2008-10-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
593
594         * gst/audioresample/gstaudioresample.c:
595         (gst_audioresample_class_init), (audioresample_fixate_caps):
596         Fixate the rate to the nearest supported rate instead of
597         the first one. Fixes bug #549510.
598
599 2008-10-27  Wim Taymans  <wim.taymans@collabora.co.uk>
600
601         * win32/common/libgstaudio.def:
602         Add new symbols.
603
604 2008-10-23  Wim Taymans  <wim.taymans@collabora.co.uk>
605
606         * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
607         Attempt to make obfuscated code clearer.
608
609 2008-10-23  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
610
611         * docs/libs/gst-plugins-base-libs-sections.txt:
612         * gst-libs/gst/floatcast/floatcast.h:
613         Move float endianness conversion macros to core. Second part of
614         bug ##555196.
615
616 2008-10-22  Stefan Kost  <ensonic@users.sf.net>
617
618         * sys/ximage/ximagesink.h:
619         * sys/xvimage/xvimagesink.h:
620           Don't mark as gtk-doc docs as they aren't public.
621
622 2008-10-22  Stefan Kost  <ensonic@users.sf.net>
623
624         * sys/xvimage/xvimagesink.c:
625         * sys/xvimage/xvimagesink.h:
626         * tests/icles/Makefile.am:
627         * tests/icles/test-colorkey.c:
628           Allow setting colorkey if possible. Implement property probe interface
629           for optional X features (autopaint-colorkey, double-buffer and
630           colorkey). Fixes #554533
631
632 2008-10-22  Sebastian Dröge  <slomo@circular-chaos.org>
633
634         * gst-libs/gst/tag/tags.c: (gst_tag_image_data_to_image_buffer):
635         Remove useless buffer size assignment. It already has this value.
636
637 2008-10-20  Wim Taymans  <wim.taymans@collabora.co.uk>
638
639         * gst-libs/gst/audio/gstaudiosink.c:
640         (gst_audioringbuffer_class_init), (gst_audioringbuffer_acquire),
641         (gst_audioringbuffer_activate), (gst_audioringbuffer_release),
642         (gst_audioringbuffer_stop):
643         Implement a separate activate functions to start monitoring the segments
644         or, in pull mode, pulling in data.
645
646         * gst-libs/gst/audio/gstbaseaudiosink.c:
647         (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
648         (gst_base_audio_sink_query_pad), (gst_base_audio_sink_query),
649         (gst_base_audio_sink_setcaps), (gst_base_audio_sink_callback),
650         (gst_base_audio_sink_activate_pull),
651         (gst_base_audio_sink_async_play),
652         (gst_base_audio_sink_change_state):
653         Implement pad and element convert query function.
654         Activate the ringbuffer.
655         Use the segment last_stop value as the offset to pull.
656         Use new basesink _do_preroll() method to preroll in the pulling thread.
657         Take appropriate locking in the pulling thread.
658
659         * gst-libs/gst/audio/gstringbuffer.h:
660         Update some docs.
661
662 2008-10-20  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
663
664         * gst/typefind/gsttypefindfunctions.c: (mxf_type_find):
665         Improve MXF typefinding a bit by searching for a header partition
666         pack instead of just a general partition pack and checking more
667         bytes for valid values.
668
669 2008-10-20  Wim Taymans  <wim.taymans@collabora.co.uk>
670
671         * tests/icles/.cvsignore:
672         update ignore file.
673
674         * tests/icles/Makefile.am:
675         * tests/icles/test-box.c: (make_pipeline), (main):
676         Add another interactive command line experimentation suite for
677         dynamically boxing/cropping/saling an input video.
678
679 2008-10-17  Wim Taymans  <wim.taymans@collabora.co.uk>
680
681         * docs/libs/gst-plugins-base-libs-sections.txt:
682         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_convert),
683         (gst_ring_buffer_activate), (gst_ring_buffer_is_active):
684         * gst-libs/gst/audio/gstringbuffer.h:
685         Add methods to more accuratly control the pulling thread of a
686         ringbuffer.
687         Add format conversion helper code to the ringbuffer.
688         API: GstRingBuffer:gst_ring_buffer_activate()
689         API: GstRingBuffer:gst_ring_buffer_is_active()
690         API: GstRingBuffer:gst_ring_buffer_convert()
691
692 2008-10-16  Wim Taymans  <wim.taymans@collabora.co.uk>
693
694         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func),
695         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
696         (gst_audioringbuffer_stop):
697         Signal thread startup earlier so that we can immediatly go into pull
698         mode when we have to and block on preroll.
699
700 2008-10-16  Wim Taymans  <wim.taymans@collabora.co.uk>
701
702         * gst-libs/gst/audio/gstringbuffer.c:
703         (gst_ring_buffer_prepare_read):
704         In pull mode we want the callback to prepull a buffer we can preroll on
705         even when we are not yet playing.
706
707 2008-10-16  Stefan Kost  <ensonic@users.sf.net>
708
709         * ext/alsa/Makefile.am:
710         * ext/cdparanoia/Makefile.am:
711         * ext/gio/Makefile.am:
712         * ext/gnomevfs/Makefile.am:
713         * ext/libvisual/Makefile.am:
714         * ext/ogg/Makefile.am:
715         * ext/pango/Makefile.am:
716         * ext/theora/Makefile.am:
717         * ext/vorbis/Makefile.am:
718         * gst/adder/Makefile.am:
719         * gst/audioconvert/Makefile.am:
720         * gst/audiorate/Makefile.am:
721         * gst/audioresample/Makefile.am:
722         * gst/audiotestsrc/Makefile.am:
723         * gst/ffmpegcolorspace/Makefile.am:
724         * gst/gdp/Makefile.am:
725         * gst/playback/Makefile.am:
726         * gst/subparse/Makefile.am:
727         * gst/tcp/Makefile.am:
728         * gst/typefind/Makefile.am:
729         * gst/videorate/Makefile.am:
730         * gst/videoscale/Makefile.am:
731         * gst/videotestsrc/Makefile.am:
732         * gst/volume/Makefile.am:
733         * sys/v4l/Makefile.am:
734         * sys/ximage/Makefile.am:
735         * sys/xvimage/Makefile.am:
736           Don't install static libs for plugins. Fixes #550851 for base.
737
738 2008-10-16  Wim Taymans  <wim.taymans@collabora.co.uk>
739
740         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_init):
741         Set the default blocksize to -1 because we will then use the configured
742         samplesperbuffer to create our output buffer.
743
744 2008-10-15  Edward Hervey  <edward.hervey@collabora.co.uk>
745
746         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
747         (gst_riff_create_video_template_caps):
748         Add mappping for the KMVC (Karl Morton's Video) Codec.
749
750 2008-10-15  Edward Hervey  <edward.hervey@collabora.co.uk>
751
752         * gst/typefind/gsttypefindfunctions.c: (flac_type_find):
753         Don't forget to advance the offset of what we're matching against, else
754         we end up in a forever loop.
755
756 2008-10-15  Sebastian Dröge  <slomo@circular-chaos.org>
757
758         * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
759         Improve typefinding a bit. If we don't have a Unicode charset
760         try GST_SUBTITLE_ENCODING and otherwise try ISO-8859-15.
761
762 2008-10-14  Edward Hervey  <edward.hervey@collabora.co.uk>
763
764         * ext/theora/theoradec.c: (theora_dec_decode_buffer):
765         Fix build on macosx.
766
767 2008-10-13  Wim Taymans  <wim.taymans@collabora.co.uk>
768
769         Based on patch by: Robin Stocker <robin at nibor dot org>
770
771         * ext/theora/gsttheoradec.h:
772         * ext/theora/theoradec.c: (gst_theora_dec_init),
773         (theora_dec_setcaps), (theora_handle_type_packet),
774         (theora_dec_decode_buffer), (theora_dec_change_state):
775         Parse input caps and make the PAR override the encoded PAR when
776         specified by a container. Fixes #555699.
777
778 2008-10-13  Wim Taymans  <wim.taymans@collabora.co.uk>
779
780         * gst-libs/gst/rtp/gstbasertpdepayload.c:
781         (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain),
782         (gst_base_rtp_depayload_set_gst_timestamp),
783         (gst_base_rtp_depayload_change_state):
784         * gst-libs/gst/rtp/gstbasertpdepayload.h:
785         Add some more G_LIKELY
786         Fail when the setcaps function was not called.
787
788         * gst-libs/gst/rtp/gstbasertppayload.c:
789         (gst_basertppayload_set_outcaps):
790         Propagate return value of setcaps.
791
792 2008-10-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
793
794         * gst/subparse/Makefile.am:
795         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
796         (gst_sub_parse_class_init), (gst_sub_parse_init),
797         (gst_convert_to_utf8), (detect_encoding), (convert_encoding),
798         (get_next_line), (gst_sub_parse_data_format_autodetect),
799         (feed_textbuf), (handle_buffer), (gst_sub_parse_change_state),
800         (gst_subparse_type_find):
801         * gst/subparse/gstsubparse.h:
802         Add support for UTF16/UTF32 subtitles as long as the first bytes of
803         the first buffer contain the BOM. This also adds support for other
804         encodings that allow NUL bytes via the encoding property.
805         Fixes bugs #552237 and #456788.
806
807 2008-10-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
808
809         * gst-libs/gst/tag/tags.c: (gst_tag_image_data_to_image_buffer):
810         Don't drop the last byte of image tags if they're not an URI list.
811         Fixes bug #556066.
812
813 2008-10-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
814
815         * gst/typefind/gsttypefindfunctions.c: (flac_type_find):
816         For looking at the 4th byte we have to get 4 bytes of course
817         and not 3.
818
819 2008-10-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
820
821         * gst/typefind/gsttypefindfunctions.c: (flac_type_find):
822         Improve FLAC-without-headers typefinding by looking at most of the
823         frame header and checking if invalid values are used. Should prevent
824         quite some false positives compared to the old version which only
825         check if the first 14 bits are set.
826
827 2008-10-11  Stefan Kost  <ensonic@users.sf.net>
828
829         * sys/xvimage/xvimagesink.c:
830           Don't assert on caps==NULL.
831
832 2008-10-10  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
833
834         * gst/subparse/gstsubparse.c:
835         (gst_sub_parse_data_format_autodetect), (handle_buffer),
836         (gst_sub_parse_change_state):
837         * gst/subparse/gstsubparse.h:
838         * tests/check/elements/subparse.c: (GST_START_TEST):
839         Add support for subtitle files with UTF-8 BOM at the beginning
840         by simple stripping it from the first line before passing it
841         to any parsing code. Fixes bug #555257 and playback of files
842         created by Gnome Subtitles.
843
844 2008-10-10  Wim Taymans  <wim.taymans@collabora.co.uk>
845
846         * gst/audiotestsrc/gstaudiotestsrc.c:
847         (gst_audio_test_src_class_init), (gst_audio_test_src_init),
848         (gst_audio_test_src_src_fixate), (gst_audio_test_src_setcaps),
849         (gst_audio_test_src_start), (gst_audio_test_src_stop),
850         (gst_audio_test_src_do_seek), (gst_audio_test_src_check_get_range),
851         (gst_audio_test_src_create):
852         * gst/audiotestsrc/gstaudiotestsrc.h:
853         Define the default property values in the usual place.
854         Implement start/stop to reset values correctly.
855         Calculate the sample size only once when we negotiate.
856         Rename some values to make more sense.
857         Keep track of our byte range.
858         Add support for pull based scheduling. Disabled for now until we have
859         the whole stack working.
860         Set the BUFFER_OFFSET correctly.
861
862 2008-10-10  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
863
864         Based on a patch by: xavierb at gmail dot com
865
866         * gst/subparse/gstsubparse.c:
867         (gst_sub_parse_data_format_autodetect):
868         * tests/check/elements/subparse.c: (GST_START_TEST):
869         Make the detection of the used subtitle a bit less strict
870         for srt subtitles. Fixes bug #555607.
871
872 2008-10-10  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
873
874         * ext/vorbis/vorbisenc.c:
875         (gst_vorbis_enc_buffer_check_discontinuous):
876         Fix discontinuity detection which was broken by last commit.
877
878 2008-10-09  Tim-Philipp Müller  <tim.muller at collabora co uk>
879
880         * configure.ac::
881           Require core CVS for ghostpad API additions used by decodebin2.
882
883 2008-10-08  Edward Hervey  <edward.hervey@collabora.co.uk>
884
885         * gst-libs/gst/audio/gstbaseaudiosrc.c:
886         (gst_base_audio_src_create):
887         Fix debug statements (space between '%' and actual format).
888
889 2008-10-08  Wim Taymans  <wim.taymans@collabora.co.uk>
890
891         * gst/playback/gstdecodebin2.c: (gst_decode_pad_activate):
892         Remove bogus assert, the decodepad could have been created inside an
893         already existing group.
894
895 2008-10-08  Andy Wingo  <wingo@pobox.com>
896
897         * gst/playback/gstdecodebin2.c (expose_pad): Fix typo: unset
898         target instead of setting it.
899         (gst_decode_pad_activate, gst_decode_pad_unblock): This is now the
900         API for a decode pad. The bugfix is that we set the group in
901         activate(), not when the pad was created because it might be NULL
902         then.
903         (gst_decode_group_control_source_pad, gst_decode_group_expose):
904         Update to use the API.
905
906 2008-10-08  Andy Wingo  <wingo@pobox.com>
907
908         * gst/playback/gstdecodebin2.c (struct _GstDecodePad): Change to
909         be a subclass of GstGhostPad.
910         (analyze_new_pad): So, when emitting the signals that determine
911         how we do autoplugging, already create the ghost pad and use it as
912         the pad in the signal arguments. This allows applications to make
913         a connection between the pad passed in e.g. autoplug-continue, and
914         the pad passed in new-decoded-pad.
915         (connect_pad, expose_pad): Update to receive the ghosted decode
916         pad in the args, retargetting it as necessary if we have to plug
917         the target pad through a multiqueue.
918         (gst_decode_group_control_source_pad): Adapt to receive an
919         already-ghosted pad that just needs activation, blocking, and
920         drain notification.
921         (sort_end_pads): Adapt for decode pads actually being pads.
922         (gst_decode_group_expose): Adapt for decode pads actually being
923         pads. Rewrite the decode pad names so they appear in order. Adds a
924         new error case if we couldn't set the name.
925         (gst_decode_group_free, gst_decode_group_hide): Adapt cleanup
926         logic.
927         (gst_decode_pad_set_blocked, gst_decode_pad_add_drained_check):
928         New API for the decode pad, needed because we shouldn't do these
929         things inside gst_decode_pad_new(), but after.
930         (gst_decode_pad_new): Change to actually make the real pad, and
931         delay the blocking/drainage bits.
932
933 2008-10-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
934
935         Patch by: Daniel Drake <dsd at laptop dot org>
936
937         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear_collectpads):
938         Unref all buffers when clearing collectpads. Fixes bug #546955.
939
940 2008-10-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
941
942         Based on a patch by: Klaas <klaas at rivercrew dot net>
943
944         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_sink_event),
945         (gst_vorbis_enc_buffer_check_discontinuous),
946         (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
947         * ext/vorbis/vorbisenc.h:
948         Keep track of the upstream segments and use the running time on that
949         segment instead of the buffer timestamp everywhere. Fixes bug #525807.
950
951 2008-10-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
952
953         * gst/audioconvert/audioconvert.c: (audio_convert_convert):
954         Prevent overflows with big buffer when calculating the size of
955         the intermediate buffer by using gst_util_uint64_scale() instead of
956         plain arithmetics. Fixes bug #552801.
957
958 2008-10-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
959
960         Patch by: Pavel Zeldin <pzeldin at gmail dot com>
961
962         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_render_time),
963         (gst_clock_overlay_class_init), (gst_clock_overlay_finalize),
964         (gst_clock_overlay_init), (gst_clock_overlay_set_property),
965         (gst_clock_overlay_get_property):
966         * ext/pango/gstclockoverlay.h:
967         API: Add ability to specify format for date/time display by
968         adding a "time-format" property.
969         Fixes bug #554879.
970
971 2008-10-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
972
973         Patch by: Jan Gerber <j at oil21 dot org>
974
975         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
976         (gst_riff_create_video_template_caps):
977         Add FFV1 fourcc to support playback of FFMPEG lossless video
978         in AVI. Fixes bug #555319.
979
980 2008-10-08  Wim Taymans  <wim.taymans@collabora.co.uk>
981
982         Patch by: Håvard Graff <havard dot graff at tandberg dot com>
983
984         * gst-libs/gst/audio/gstbaseaudiosrc.c:
985         (gst_base_audio_src_create):
986         Implement skew clock slaving. Fixes #552559.
987
988 2008-10-08  Wim Taymans  <wim.taymans@collabora.co.uk>
989
990         * gst-libs/gst/audio/multichannel.c:
991         * gst-libs/gst/audio/testchannels.c:
992         Fix include of config.h
993
994 2008-10-06  Wim Taymans  <wim.taymans@collabora.co.uk>
995
996         Based on Patch by: Tero Saarni <tero dot saarni at gmail dot com>
997
998         * gst-libs/gst/sdp/gstsdpmessage.c: (gst_sdp_parse_line),
999         (print_media), (gst_sdp_message_dump):
1000         Fix parsing of the c= field containing multicast addresses.
1001         Fixes #552199.
1002         Add the connection info to the session or streams.
1003         Fix parsing of the bandwidth.
1004         Add debugging for the connections and bandwidths for a media.
1005         Add debugging for the bandwidth of the session. 
1006
1007 2008-10-06  Wim Taymans  <wim.taymans@collabora.co.uk>
1008
1009         * gst-libs/gst/rtp/gstbasertppayload.c:
1010         (gst_basertppayload_change_state):
1011         Configure the next seqnum and timestamp in the state change so that they
1012         can be queried soon after.
1013
1014 2008-10-06  Wim Taymans  <wim.taymans@collabora.co.uk>
1015
1016         * gst-libs/gst/rtp/gstbasertpdepayload.c:
1017         (gst_base_rtp_depayload_chain):
1018         Improve debugging of the rtptime.
1019
1020 2008-10-05  Jan Schmidt  <jan.schmidt@sun.com>
1021
1022         * configure.ac:
1023         Back to development -> 0.10.21.1
1024
1025 2008-10-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1026
1027         * gst/typefind/gsttypefindfunctions.c: (flac_type_find),
1028         (plugin_init):
1029         Add typefinding for FLAC without headers in the beginning.
1030         This is already handled by flacdec and friends.
1031
1032 2008-10-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1033
1034         * gst/typefind/gsttypefindfunctions.c: (mxf_type_find),
1035         (plugin_init):
1036         Add typefinder for MXF.
1037
1038 2008-10-03  Jan Schmidt  <jan.schmidt@sun.com>
1039
1040         * tests/icles/Makefile.am:
1041         Only build test-colorkey if GTK+ is available.
1042
1043 === release 0.10.21 ===
1044
1045 2008-10-03  Jan Schmidt <jan.schmidt@sun.com>
1046
1047         * configure.ac:
1048           releasing 0.10.21, "We Could Be Wrong"
1049
1050 2008-09-28  Jan Schmidt  <jan.schmidt@sun.com>
1051
1052         * configure.ac:
1053         0.10.20.4 pre-release
1054
1055 2008-09-25  Wim Taymans  <wim.taymans@collabora.co.uk>
1056
1057         Patch by: Vincent Penquerc'h <ogg dot k dot ogg dot k at googlemail dot com>
1058
1059         * ext/theora/theoraparse.c: (theora_parse_set_streamheader):
1060         Set the BOS flag on the BOS packet. Fixes #553244.
1061
1062 2008-09-23  Wim Taymans  <wim.taymans@collabora.co.uk>
1063
1064         * gst-libs/gst/rtsp/gstrtspmessage.c:
1065         (gst_rtsp_message_parse_request),
1066         (gst_rtsp_message_parse_response):
1067         Fix the g_return_val_if_fail() statements.
1068
1069 2008-09-22  Michael Smith <msmith@songbirdnest.com>
1070
1071         * gst-libs/gst/tag/gsttagdemux.c:
1072           Fail to activate if there's insufficient data in the file to be usable,
1073           preventing an assertion fail later. Fixes #552960
1074
1075 2008-09-15  Tim-Philipp Müller  <tim.muller at collabora co uk>
1076
1077         * gst-libs/gst/pbutils/descriptions.c:
1078         * gst/typefind/gsttypefindfunctions.c:
1079           Recognise Kate subtitle streams (#550582).
1080
1081 2008-09-13  Tim-Philipp Müller  <tim.muller at collabora co uk>
1082
1083         * gst-libs/gst/audio/audio.h: (GST_AUDIO_FIELD_SIGNED):
1084           Remove trailing comma from enum list, which causes problems
1085           with -pendantic (#550729).
1086
1087 2008-09-10  Jan Schmidt  <jan.schmidt@sun.com>
1088
1089         * configure.ac:
1090         0.10.20.2 pre-release
1091
1092         * po/LINGUAS:
1093         * po/id.po:
1094         * po/pt_BR.po:
1095
1096         New translations.
1097
1098 2008-09-05  Tim-Philipp Müller  <tim.muller at collabora co uk>
1099
1100         * gst-libs/gst/interfaces/propertyprobe.c:
1101           (gst_property_probe_get_properties),
1102           (gst_property_probe_get_property),
1103           (gst_property_probe_probe_property),
1104           (gst_property_probe_probe_property_name),
1105           (gst_property_probe_needs_probe),
1106           (gst_property_probe_needs_probe_name),
1107           (gst_property_probe_get_values),
1108           (gst_property_probe_get_values_name),
1109           (gst_property_probe_probe_and_get_values),
1110           (gst_property_probe_probe_and_get_values_name):
1111           More sanity checks for our second-favourite interface.
1112
1113 2008-09-05  Stefan Kost  <ensonic@users.sf.net>
1114
1115         * gst-libs/gst/interfaces/propertyprobe.c:
1116           Check for NULL pointer, in the hope that this fixes #532864.
1117
1118 2008-09-05  Tim-Philipp Müller  <tim.muller at collabora co uk>
1119
1120         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_class_init):
1121           No really, the next release is 0.10.21 (fix Since: tags in docs).
1122
1123 2008-09-04  Wim Taymans  <wim.taymans@collabora.co.uk>
1124
1125         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_stop):
1126         Disable a code path that is now called but causes a deadlock for some
1127         reason and is unneeded.
1128
1129 2008-09-04  Stefan Kost  <ensonic@users.sf.net>
1130
1131         * sys/xvimage/xvimagesink.c:
1132         * sys/xvimage/xvimagesink.h:
1133           Add a "draw-border" property that can be set to false to disable
1134           drawing borders.
1135           
1136         * tests/icles/test-colorkey.c:
1137         * tests/icles/Makefile.am:
1138           Add new test application for the colorkey handling.
1139
1140 2008-09-03  Edward Hervey  <edward.hervey@collabora.co.uk>
1141
1142         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
1143         Use a decent caps for TrueSpeech instead of a ffmpeg-specific one.
1144         This will also be fixed for upcoming gst-ffmpeg release so that once
1145         this release of -base is out, it will work with the latest gst-ffmpeg
1146         release.
1147
1148 2008-09-03  Edward Hervey  <edward.hervey@collabora.co.uk>
1149
1150         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
1151         (gst_riff_create_audio_template_caps):
1152         Add Truespeech mapping for RIFF formats (AVI/WAV).
1153         Fixes #550656
1154
1155 2008-09-03  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1156
1157         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
1158         Typefind video/mj2 and image/jp2 ISO JPEG2000 mime types.
1159         Fixes #550638.
1160
1161 2008-09-03  Stefan Kost  <ensonic@users.sf.net>
1162
1163         * configure.ac:
1164         * gst/subparse/Makefile.am:
1165         * gst/subparse/gstsubparse.c:
1166         * gst/subparse/samiparse.c:
1167         * tests/check/elements/subparse.c:
1168           Rework last change, so that we build subparse, but just disable the
1169           sami parse functionality, if we're configured to not use xml. In the
1170           tests only the sami test is disabled now.
1171
1172 2008-09-02  Stefan Kost  <ensonic@users.sf.net>
1173
1174         * configure.ac:
1175           Disable subparse when xml is disabled. It woundn't work anyway. Fixes
1176           test runs.
1177
1178 2008-09-02  Tim-Philipp Müller  <tim.muller at collabora co uk>
1179
1180         * po/POTFILES.in:
1181           Add some more files with strings for translation.
1182
1183 2008-09-02  Stefan Kost  <ensonic@users.sf.net>
1184
1185         * gst-libs/gst/tag/gstvorbistag.c:
1186         * tests/check/libs/tag.c:
1187           Use new geo location tags from core. Fixes #481169
1188
1189 2008-09-01  Edward Hervey  <edward.hervey@collabora.co.uk>
1190
1191         * tests/check/elements/audioresample.c: (setup_audioresample),
1192         (fail_unless_perfect_stream), (test_perfect_stream_instance),
1193         (test_discont_stream_instance):
1194         Now that GstBaseTransform is 'fixed' ... remove cruft from tests.
1195         Add debugging for coherence.
1196
1197 2008-08-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
1198
1199         Patch by: Jonathan Matthew  <notverysmart gmail com>
1200
1201         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
1202           Add typefinder for PDF documents (which is nice to have, since it's a
1203           common format, but also helps prevent false positives). Fixes #549814.
1204
1205 2008-08-27  Wim Taymans  <wim.taymans@collabora.co.uk>
1206
1207         * gst/playback/gstplaybin2.c: (selector_blocked), (pad_added_cb),
1208         (no_more_pads_cb):
1209         Fix nasty race where multiple decodebins could start pushing data before
1210         we manage to configure the sinks, resulting in not-linked errors in
1211         typical RTSP streaming cases.
1212
1213 2008-08-26  Wim Taymans  <wim.taymans@collabora.co.uk>
1214
1215         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_stop):
1216         Since we now call stop, we trigger this code path that causes a deadlock
1217         is apparently not needed.
1218
1219 2008-08-26  Wim Taymans  <wim.taymans@collabora.co.uk>
1220
1221         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_start),
1222         (gst_ring_buffer_stop):
1223         Also allow the case where the ringbuffer was paused when we try to stop
1224         it so that the basesrc stop function is still called.
1225
1226 2008-08-23  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1227
1228         Patch by: Mike Ruprecht <cmaiku at gmail dot com>
1229
1230         * sys/v4l/gstv4lelement.c: (gst_v4l_class_probe_devices):
1231         Reprobe devices again instead of taking a cached list as new
1232         devices could've been plugged in. Fixes bug #549062.
1233
1234 2008-08-23  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1235
1236         Patch by: Alessandro Dessina <alessandro nnva org>
1237
1238         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain),
1239         (gst_ogg_demux_activate_chain):
1240         Don't add pads and activate them for skeleton streams. These are already
1241         handled inside oggdemux. Fixes bug #537599.
1242
1243 2008-08-22  Wim Taymans  <wim.taymans@collabora.co.uk>
1244
1245         * ext/vorbis/vorbisdec.c: (vorbis_dec_change_state):
1246         Reset variable so that query and convert fail after going back to
1247         READY. Fixes #548898.
1248
1249 2008-08-22  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1250
1251         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_chain):
1252         If a buffer arrives with a timestamp before the timestamp+duration
1253         of the previous buffer clip it instead of dropping it completely.
1254         Slight improvement for the unfixable bug #548913.
1255
1256 2008-08-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1257
1258         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
1259         Take the current timestamp instead of timestamp+duration for the offset.
1260         This offset will later be used for calculating the timestamp and
1261         otherwise vorbisdec will interpolate timestamps wrong if upstream
1262         only sends timestamps and no granulepos.
1263
1264 2008-08-21  Stefan Kost  <ensonic@users.sf.net>
1265
1266         * tests/examples/seek/seek.c:
1267           Don't crash when having no visualisations.
1268
1269 2008-08-16  David Schleef  <ds@schleef.org>
1270
1271         * gst/typefind/gsttypefindfunctions.c: DV typefinding.  Remove
1272           check for a bit that is 0 in IEC 61384, but not SMPTE 314M.
1273           Fixes #548065.
1274
1275 2008-08-15  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1276
1277         * gst-libs/gst/pbutils/missing-plugins.c: (copy_and_clean_caps):
1278         When cleaning up the caps fields also remove "depth" for the same
1279         reason we remove "width".
1280
1281 2008-08-14  Tim-Philipp Müller  <tim.muller at collabora co uk>
1282
1283         * gst-libs/gst/pbutils/descriptions.c: (format_info_get_desc):
1284           Add Lead H.264 here as well.
1285
1286 2008-08-14  Julien Moutte  <julien@fluendo.com>
1287
1288         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
1289         (gst_riff_create_video_template_caps): Add Lead H.264 variant.
1290
1291 2008-08-13  Wim Taymans  <wim.taymans@collabora.co.uk>
1292
1293         * gst-libs/gst/audio/gstbaseaudiosrc.c:
1294         (gst_base_audio_src_create):
1295         When not slaved to another clock also subtract the base_time from our
1296         internal clock time to get the running time.
1297
1298 2008-08-12  David Schleef  <ds@schleef.org>
1299
1300         * ext/theora/theoraenc.c: Remove the 2000 kbit limit to bitrate,
1301           since it has no basis in libtheora.
1302
1303 2008-08-12  Stefan Kost  <ensonic@users.sf.net>
1304
1305         * gst-libs/gst/interfaces/propertyprobe.h:
1306           Remove double "interface" from doc-string.
1307
1308         * gst-libs/gst/interfaces/xoverlay.h:
1309           Document interface.
1310
1311         * gst-libs/gst/riff/riff.c:
1312           Add basic doc blobs.
1313
1314 2008-08-11  Stefan Kost  <ensonic@users.sf.net>
1315
1316         * gst-libs/gst/audio/Makefile.am:
1317           Don't try to build that example anymore.
1318
1319 2008-08-11  Stefan Kost  <ensonic@users.sf.net>
1320
1321         * gst-libs/gst/audio/.cvsignore:
1322         * gst-libs/gst/audio/Makefile.am:
1323         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
1324         * gst-libs/gst/audio/make_filter:
1325           Move audiofiltertemplate to gst-template.
1326
1327 2008-08-11  Stefan Kost  <ensonic@users.sf.net>
1328
1329         * docs/libs/gst-plugins-base-libs-sections.txt:
1330         * gst-libs/gst/audio/gstaudiosrc.h:
1331           More docs and shuffling. What can we do with the hundreds of #defines.
1332
1333 2008-08-11  Stefan Kost  <ensonic@users.sf.net>
1334
1335         * gst-libs/gst/audio/audio.h:
1336         * gst-libs/gst/audio/gstaudiofilter.h:
1337         * gst-libs/gst/audio/gstringbuffer.h:
1338         * gst-libs/gst/interfaces/propertyprobe.h:
1339         * gst-libs/gst/tag/gsttagdemux.h:
1340           Reducing number of dundocumented symbols.
1341
1342 2008-08-11  Stefan Kost  <ensonic@users.sf.net>
1343
1344         * gst-libs/gst/audio/audio.c:
1345           Fix doc comment syntax.
1346
1347         * gst-libs/gst/interfaces/propertyprobe.c:
1348           Add more doc-comments and a FIXME: for the signal.    
1349
1350 2008-08-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1351
1352         * ext/ogg/gstoggmux.c: (gst_ogg_mux_sink_event),
1353         (gst_ogg_mux_request_new_pad):
1354         * ext/ogg/gstoggmux.h:
1355         Don't pretend to support NEWSEGMENT events, instead override the
1356         GstCollectPads event function to return FALSE on NEWSEGMENT events
1357         and do the normal work for other events.
1358
1359         This prevents elements like flacenc to seek to the start and rewrite
1360         some data which then results in a broken Ogg packet.
1361
1362 2008-08-07  Tim-Philipp Müller  <tim.muller at collabora co uk>
1363
1364         Patch by: Frederic Crozat <fcrozat@mandriva.org>
1365
1366         * ext/alsa/gstalsaplugin.c: (plugin_init):
1367         * ext/cdparanoia/gstcdparanoiasrc.c: (plugin_init):
1368         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
1369         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init):
1370         * gst-libs/gst/audio/gstbaseaudiosrc.c: (_do_init):
1371         * gst-libs/gst/pbutils/pbutils.c: (gst_pb_utils_init):
1372         * gst-libs/gst/tag/tags.c: (gst_tag_register_tags_internal):
1373         * gst/playback/gstdecodebin.c: (plugin_init):
1374         * gst/playback/gstdecodebin2.c: (gst_decode_bin_plugin_init):
1375         * gst/playback/gstplayback.c: (plugin_init):
1376         * gst/playback/gstqueue2.c: (plugin_init):
1377         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_plugin_init):
1378         * sys/v4l/gstv4l.c: (plugin_init):
1379         Make sure gettext returns translations in UTF-8 encoding rather
1380         than in the current locale encoding (#546822).
1381
1382 2008-08-06  Stefan Kost  <ensonic@users.sf.net>
1383
1384         * gst-libs/gst/pbutils/descriptions.c:
1385           Add audio/x-qdm for qtdemux.
1386
1387 2008-08-05  Stefan Kost  <ensonic@users.sf.net>
1388
1389         * ext/vorbis/vorbisdec.c:
1390           Do not leak old taglist.
1391
1392 2008-08-04  Stefan Kost  <ensonic@users.sf.net>
1393
1394         * tests/icles/test-scale.c:
1395           Include <stdlib.h> for atoi().
1396
1397 2008-08-04  Andy Wingo  <wingo@pobox.com>
1398
1399         * gst/audiotestsrc/gstaudiotestsrc.c: Very crucial and important
1400         documentation fix.
1401
1402 2008-08-01  Stefan Kost  <ensonic@users.sf.net>
1403
1404         * gst/adder/gstadder.c:
1405           Cleanup lots of empty lines that came from gst-indent going havoc
1406           before I added the INDENT_ON/OFF marker some time agao.
1407
1408 2008-08-01  Stefan Kost  <ensonic@users.sf.net>
1409
1410         * configure.ac:
1411         * gst-libs/gst/riff/riff-read.c:
1412           Bump requirement to latest core and use new tag for riff formats.
1413           Needed for #520694.
1414
1415 2008-08-01  Wim Taymans  <wim.taymans@collabora.co.uk>
1416
1417         * tests/examples/dynamic/Makefile.am:
1418         * tests/examples/dynamic/codec-select.c: (make_encoder),
1419         (make_pipeline), (do_switch), (my_bus_callback), (main):
1420         Add example app that dynamically switches between 3 'encoders'.
1421
1422 2008-07-31  Wim Taymans  <wim.taymans@collabora.co.uk>
1423
1424         * gst/playback/gstplaysink.c: (gst_play_sink_set_vis_plugin):
1425         Add some more comments.
1426
1427 2008-07-31  Wim Taymans  <wim.taymans@collabora.co.uk>
1428
1429         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_getcaps),
1430         (gst_video_test_src_create):
1431         Discard buffers of the wrong size after renegotiation, this is perfectly
1432         possible with things like capsfilter that could suggest caps changes
1433         upstream without knowing the size of the buffer.
1434
1435 2008-07-31  Wim Taymans  <wim.taymans@collabora.co.uk>
1436
1437         * tests/icles/.cvsignore:
1438         * tests/icles/Makefile.am:
1439         * tests/icles/test-scale.c: (make_pipeline), (main):
1440         Add dynamic rescaling tests for the new basetransform.
1441
1442 2008-07-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
1443
1444         * gst/audioconvert/Makefile.am:
1445           Dist recently-added gstfastrandom.h.
1446
1447 2008-07-30  Edward Hervey  <edward.hervey@collabora.co.uk>
1448
1449         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
1450         Fix a "may be used uninitialized in this function" which weirdly only
1451         appears on macosx (?).
1452
1453 2008-07-30  Stefan Kost  <ensonic@users.sf.net>
1454
1455         * gst-libs/gst/riff/riff-ids.h:
1456           Adding acid chunk for tempo and loop information.
1457
1458 2008-07-29  Stefan Kost  <ensonic@users.sf.net>
1459
1460         * sys/xvimage/Makefile.am:
1461           floor() needs linking to $(LIBM).
1462
1463 2008-07-29  Stefan Kost  <ensonic@users.sf.net>
1464
1465         * ext/gnomevfs/gstgnomevfssrc.c:
1466           Aggregate short reads and add some comments and debug logging.
1467           Fixes #537380
1468
1469 2008-07-29  Stefan Kost  <ensonic@users.sf.net>
1470
1471         * gst/playback/gstplaybasebin.c:
1472           Fix property doc markup (its not a signal).
1473
1474         * sys/xvimage/xvimagesink.c:
1475           Add since tag for new proeprties (also add sice tags fro the last two
1476           other additions).
1477
1478 2008-07-29  Stefan Kost  <ensonic@users.sf.net>
1479
1480         * sys/xvimage/xvimagesink.c:
1481         * sys/xvimage/xvimagesink.h:
1482           Add autofill/colorkey properties. Fixes #538656.
1483
1484 2008-07-28  David Schleef  <ds@schleef.org>
1485
1486         * sys/xvimage/xvimagesink.c:
1487           Fix rounding errors when converting colorbalance values
1488           between hardware and object property ranges.  Partial
1489           fix for #537889, however, there still seems to be a small
1490           drift problem that could be totem's fault.
1491
1492 2008-07-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1493
1494         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
1495         (gst_ogg_demux_perform_seek), (gst_ogg_demux_handle_page):
1496         Don't use GST_CLOCK_TIME_NONE as start of NEWSEGMENT events.
1497         This fixes a critical warning.
1498
1499 2008-07-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1500
1501         * ext/ogg/gstoggmux.c:
1502         Allow muxing of CELT into Ogg streams.
1503
1504 2008-07-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1505
1506         * gst/typefind/gsttypefindfunctions.c: (celt_type_find),
1507         (plugin_init):
1508         Add simple typefinder for the CELT codec (www.celt-codec.org).
1509
1510 2008-07-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1511
1512         Patch by: Jan Gerber <j at oil21 dot org>
1513
1514         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_parse_skeleton_fisbone):
1515         Fix calculation of the start time from skeleton streams.
1516         Fixes bug #530068.
1517
1518 2008-07-24  Stefan Kost  <ensonic@users.sf.net>
1519
1520         * tests/examples/seek/seek.c:
1521           Use 64 bit constant GST_CLOCK_TIME_NONE instead of plain -1.
1522
1523 2008-07-23  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1524
1525         * gst/audioconvert/audioconvert.h:
1526         * gst/audioconvert/gstaudioquantize.c:
1527         (gst_audio_quantize_setup_dither),
1528         (gst_audio_quantize_free_dither):
1529         * gst/audioconvert/gstfastrandom.h:
1530         Implement a linear congruential generator as pseudo random number
1531         generator for the dither noise. This is about 2 times faster than
1532         using GLib's mersenne twister. Also this uses only integer math for
1533         generating integers while GLib internally uses floating point math.
1534
1535 2008-07-23  Michael Smith <msmith@songbirdnest.com>
1536
1537         * configure.ac:
1538           Remove AC_ISC_POSIX; it breaks on some systems and is not needed.
1539
1540 2008-07-23  Tim-Philipp Müller  <tim.muller at collabora co uk>
1541
1542         Patch by: Damien Lespiau  <damien.lespiau gmail com>
1543
1544         * gst-libs/gst/sdp/gstsdpmessage.c: (print_media):
1545           Use GST_STR_NULL to avoid crashes with libcs that don't
1546           like NULL strings in printf args (such as the win32 one).
1547           Fixes #544306.
1548
1549 2008-07-17  Jan Schmidt  <Jan.Schmidt@sun.com>
1550
1551         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls):
1552         Oops - set the size of the image used for probing back to 1x1, for
1553         consistency with ximagesink
1554
1555 2008-07-17  Jan Schmidt  <Jan.Schmidt@sun.com>
1556
1557         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
1558         (gst_ximagesink_ximage_new):
1559         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
1560         (gst_xvimagesink_xvimage_new):
1561
1562         Apparently on Solaris and OS/X (at least), it's not legal to ask the
1563         X server to attach to a shared memory segment after we've deleted it,
1564         with the result that MIT-SHM is disabled. Instead, remove it only after 
1565         X succeeds in attaching too.
1566
1567 2008-07-16  David Schleef  <ds@schleef.org>
1568
1569         * gst/audiotestsrc/gstaudiotestsrc.c:
1570         * gst/audiotestsrc/gstaudiotestsrc.h:
1571           Add 'ticks', a 1/30 second sine wave pulse every second.
1572
1573 2008-07-15  David Schleef  <ds@schleef.org>
1574
1575         * gst-libs/gst/video/video.c: Revert ABI change.
1576
1577 2008-07-15  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1578
1579         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
1580         Make it impossible to have NULL caps at the point where we set
1581         framerate and other things. Also don't return immediately for "3ivd"
1582         video and let framerate, etc be set. Might fix bug #542508.
1583
1584 2008-07-14  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1585
1586         * gst-libs/gst/video/video.c: (gst_video_format_parse_caps):
1587         Video format can also be conveniently determined from (many)
1588         non-fixed caps.
1589
1590 2008-07-14  Jan Schmidt  <thaytan@noraisin.net>
1591
1592         * gst/playback/gstplaybasebin.c:
1593         * gst/playback/gstplaybasebin.h:
1594         * gst/playback/gstplaybin.c:
1595         * gst/playback/gststreamselector.c:
1596         First stab at integrating DVD subpicture overlay into
1597         playbin. Successfully plugs and plays, but the queues need
1598         shrinking - 3 seconds of video is too much buffering.
1599
1600 2008-07-11  Stefan Kost  <ensonic@users.sf.net>
1601
1602         * gst/audioconvert/gstaudioconvert.c:
1603           Remove now obsolete note in the docs.
1604
1605 2008-07-11  Stefan Kost  <ensonic@users.sf.net>
1606
1607         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
1608         * docs/plugins/gst-plugins-base-plugins-overrides.txt:
1609         * docs/plugins/gst-plugins-base-plugins-sections.txt:
1610         * docs/plugins/gst-plugins-base-plugins.args:
1611         * docs/plugins/gst-plugins-base-plugins.hierarchy:
1612         * docs/plugins/gst-plugins-base-plugins.interfaces:
1613         * docs/plugins/gst-plugins-base-plugins.prerequisites:
1614         * docs/plugins/gst-plugins-base-plugins.signals:
1615         * docs/plugins/inspect/plugin-adder.xml:
1616         * docs/plugins/inspect/plugin-alsa.xml:
1617         * docs/plugins/inspect/plugin-audioconvert.xml:
1618         * docs/plugins/inspect/plugin-audiorate.xml:
1619         * docs/plugins/inspect/plugin-audioresample.xml:
1620         * docs/plugins/inspect/plugin-audiotestsrc.xml:
1621         * docs/plugins/inspect/plugin-cdparanoia.xml:
1622         * docs/plugins/inspect/plugin-decodebin.xml:
1623         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
1624         * docs/plugins/inspect/plugin-gdp.xml:
1625         * docs/plugins/inspect/plugin-gnomevfs.xml:
1626         * docs/plugins/inspect/plugin-libvisual.xml:
1627         * docs/plugins/inspect/plugin-ogg.xml:
1628         * docs/plugins/inspect/plugin-pango.xml:
1629         * docs/plugins/inspect/plugin-playback.xml:
1630         * docs/plugins/inspect/plugin-queue2.xml:
1631         * docs/plugins/inspect/plugin-subparse.xml:
1632         * docs/plugins/inspect/plugin-tcp.xml:
1633         * docs/plugins/inspect/plugin-theora.xml:
1634         * docs/plugins/inspect/plugin-typefindfunctions.xml:
1635         * docs/plugins/inspect/plugin-uridecodebin.xml:
1636         * docs/plugins/inspect/plugin-video4linux.xml:
1637         * docs/plugins/inspect/plugin-videorate.xml:
1638         * docs/plugins/inspect/plugin-videoscale.xml:
1639         * docs/plugins/inspect/plugin-videotestsrc.xml:
1640         * docs/plugins/inspect/plugin-volume.xml:
1641         * docs/plugins/inspect/plugin-vorbis.xml:
1642         * docs/plugins/inspect/plugin-ximagesink.xml:
1643         * docs/plugins/inspect/plugin-xvimagesink.xml:
1644         * ext/alsa/gstalsamixer.c:
1645         * ext/alsa/gstalsasink.c:
1646         * ext/alsa/gstalsasrc.c:
1647         * ext/gio/gstgiosink.c:
1648         * ext/gio/gstgiosrc.c:
1649         * ext/gio/gstgiostreamsink.c:
1650         * ext/gio/gstgiostreamsrc.c:
1651         * ext/gnomevfs/gstgnomevfssink.c:
1652         * ext/gnomevfs/gstgnomevfssrc.c:
1653         * ext/ogg/gstoggdemux.c:
1654         * ext/ogg/gstoggmux.c:
1655         * ext/pango/gstclockoverlay.c:
1656         * ext/pango/gsttextoverlay.c:
1657         * ext/pango/gsttextrender.c:
1658         * ext/pango/gsttimeoverlay.c:
1659         * ext/theora/theoradec.c:
1660         * ext/theora/theoraenc.c:
1661         * ext/theora/theoraparse.c:
1662         * ext/vorbis/vorbisdec.c:
1663         * ext/vorbis/vorbisenc.c:
1664         * ext/vorbis/vorbisparse.c:
1665         * ext/vorbis/vorbistag.c:
1666         * gst/adder/gstadder.c:
1667         * gst/audioconvert/gstaudioconvert.c:
1668         * gst/audioresample/gstaudioresample.c:
1669         * gst/audiotestsrc/gstaudiotestsrc.c:
1670         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
1671         * gst/gdp/gstgdpdepay.c:
1672         * gst/gdp/gstgdppay.c:
1673         * gst/playback/gstdecodebin2.c:
1674         * gst/playback/gstplaybin.c:
1675         * gst/playback/gstplaybin2.c:
1676         * gst/playback/gstqueue2.c:
1677         * gst/playback/gsturidecodebin.c:
1678         * gst/tcp/gstmultifdsink.c:
1679         * gst/tcp/gsttcpserversink.c:
1680         * gst/videorate/gstvideorate.c:
1681         * gst/videoscale/gstvideoscale.c:
1682         * gst/videotestsrc/gstvideotestsrc.c:
1683         * gst/volume/gstvolume.c:
1684         * sys/ximage/ximagesink.c:
1685         * sys/xvimage/xvimagesink.c:
1686           Cleanup Plugin docs. Link to signals and properties. Fix sub-section
1687           titles. Drop mentining that all our example pipelines are "simple"
1688           pipelines.
1689
1690 2008-07-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1691
1692         * tests/examples/seek/Makefile.am:
1693         Fix out of tree build by adding all required CFLAGS.
1694
1695 2008-07-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1696
1697         * gst/playback/gstdecodebin.c: (add_raw_queue):
1698         And ref the pad before returning it again when linking to the queue
1699         failed. Otherwise we will unref the pad twice later and things break.
1700
1701 2008-07-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1702
1703         * gst/playback/gstdecodebin.c: (add_raw_queue):
1704         If linking the raw pad with a queue fails, try it without a queue
1705         instead of failing completely. This should never happen.
1706
1707 2008-07-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1708
1709         Patch by: Evgeniy Stepanov <eugeni dot stepanov at gmail dot com>
1710
1711         * gst/playback/gstdecodebin.c: (add_raw_queue), (close_pad_link):
1712         Add a queue after a demuxer if the demuxer outputs raw data. This was
1713         done before only for non-raw data but is required in this case too.
1714         Fixes bug #540215.
1715
1716         decodebin2 doesn't have this issue because all streams of a group
1717         go through multiqueue.
1718
1719 2008-07-03  Wim Taymans  <wim.taymans@collabora.co.uk>
1720
1721         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
1722
1723         * gst-libs/gst/sdp/gstsdpmessage.c:
1724         Makes libgstsdp compile with mingw32 by defining the right WINVER so
1725         that getaddrinfo() can be used. Fixes #541358.
1726
1727 2008-07-01  Wim Taymans  <wim.taymans@collabora.co.uk>
1728
1729         * gst/videotestsrc/gstvideotestsrc.c:
1730         (gst_video_test_src_class_init), (gst_video_test_src_init),
1731         (gst_video_test_src_set_property),
1732         (gst_video_test_src_get_property), (gst_video_test_src_create):
1733         * gst/videotestsrc/gstvideotestsrc.h:
1734         Cleanups, use default property values as defines.
1735         Add property to enable/disable peer buffer allocation.
1736
1737 2008-06-30  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1738
1739         * tests/check/elements/gdpdepay.c: (gdpdepay_suite):
1740         * tests/check/pipelines/streamheader.c: (streamheader_suite):
1741         Enable unit tests on PPC again as the bugs are now fixed.
1742
1743 2008-06-30  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1744
1745         * gst-libs/gst/riff/riff-ids.h:
1746         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
1747         (gst_riff_create_audio_template_caps):
1748         Add support for ADPCM IMA DK3 and DK4 variant in RIFF containers.
1749         Fixes bug #540351.
1750
1751 2008-06-30  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1752
1753         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
1754         (gst_ffmpeg_pixfmt_to_caps):
1755         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
1756         (gst_ffmpegcsp_get_unit_size):
1757         Only set/get on the PAL8 format, ffmpegcolorspace doesn't support
1758         it on other formats. Also adjust the unit size only for that format
1759         to not include the palette. Fixes bug #540497.
1760
1761 2008-06-29  Stefan Kost  <ensonic@users.sf.net>
1762
1763         * gst/adder/gstadder.c:
1764           Use GST_DEBUG_FUNCPTR and remove some extra vlnak lines.
1765
1766 2008-06-27  Stefan Kost  <ensonic@users.sf.net>
1767
1768         * ChangeLog:
1769           ChangeLog surgery.
1770   
1771         * tests/examples/seek/seek.c:
1772           Move variable into ifdef too.
1773         
1774
1775 2008-06-27  Stefan Kost  <ensonic@users.sf.net>
1776
1777         * tests/examples/seek/seek.c:
1778           Include config.h and check if we have X. Remove XInitThread(), don't
1779           think its needed. Fixes: #540334.
1780
1781 2008-06-26  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1782
1783         Patch by: Sam Morris <sam at robots dot org to uk>
1784
1785         * gst-libs/gst/interfaces/mixertrack.c:
1786         (gst_mixer_track_class_init), (gst_mixer_track_get_property),
1787         (gst_mixer_track_set_property):
1788         API: Add "index" property to GstMixerTrack to differantiate between
1789         multiple mixer tracks with the same label.
1790
1791         * ext/alsa/gstalsamixeroptions.c: (gst_alsa_mixer_options_new):
1792         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
1793         Set the "index" property of GstMixerTrack to the index given by ALSA.
1794         Fixes bug #528299.
1795
1796 2008-06-25  Stefan Kost  <ensonic@users.sf.net>
1797
1798         * tests/examples/seek/Makefile.am:
1799         * tests/examples/seek/seek.c:
1800           Remove libgstvideo usage. Use gtk_get_option_group instead of
1801           gtk_init().
1802
1803 2008-06-24  Stefan Kost  <ensonic@users.sf.net>
1804
1805         * tests/check/Makefile.am:
1806           Name the test registry format neutral.
1807
1808 2008-06-24  Stefan Kost  <ensonic@users.sf.net>
1809
1810         * gst/playback/gstqueue2.c:
1811           Do not double notify. Remove the unsued return value.
1812
1813 2008-06-24  Stefan Kost  <ensonic@users.sf.net>
1814
1815         * ext/alsa/gstalsamixer.c:
1816           Also consider "speaker" as a name for master volume. If that doesn't
1817           help look for the first non-mono volume control that also has a
1818           playback switch.
1819
1820 2008-06-24  Stefan Kost  <ensonic@users.sf.net>
1821
1822         * ChangeLog:
1823           Forgot to save the ChangeLog :/
1824
1825 2008-06-24  Stefan Kost  <ensonic@users.sf.net>
1826
1827         * tests/examples/seek/Makefile.am:
1828         * tests/examples/seek/seek.c:
1829           Embedd the xwindow. Allow to play multiple files.
1830
1831 2008-06-24  Jan Schmidt  <jan.schmidt@sun.com>
1832
1833         * sys/ximage/ximagesink.c (gst_ximagesink_ximage_put),
1834         (gst_ximagesink_setcaps):
1835         * sys/ximage/ximagesink.h:
1836         When the caps change, make sure to re-draw borders in
1837         force-aspect-ratio=true mode.
1838         * sys/xvimage/xvimagesink.c (gst_xvimagesink_xvimage_put):
1839         Don't clear the border_draw flag until we actually draw the border.
1840         * tests/check/Makefile.am:
1841         Ignore alsasink/src during the states test too, so it doesn't fail
1842         when running without access to the sound device.
1843
1844 2008-06-22  Stefan Kost  <ensonic@users.sf.net>
1845
1846         * tests/examples/seek/seek.c:
1847           Fix crasher when playing a parse-launch line the 2nd time.
1848
1849 2008-06-21  Thomas Vander Stichele  <thomas at apestaart dot org>
1850
1851         * tests/check/pipelines/oggmux.c:
1852           Properly ifdef tests to fix compilation.
1853
1854 2008-06-20  Michael Smith <msmith@songbirdnest.com>
1855
1856         * gst/playback/gstplay-marshal.list:
1857         * gst/playback/gstplaybin2.c:
1858           Add get-video-pad, get-audio-pad, get-text-pad action signals to
1859           playbin2. This allows the user to get to the selector's sinkpads, and
1860           thus inspect a range of things - caps, tags, etc. 
1861
1862 2008-06-20  Michael Smith <msmith@songbirdnest.com>
1863
1864         * gst/playback/gstplaybin2.c:
1865           Use a different constant for the convert-frame signal id.
1866           Fixes #537009.
1867
1868 2008-06-20  Michael Smith <msmith@songbirdnest.com>
1869
1870         * gst/playback/gstplaybin2.c:
1871         * gst/playback/gstplaysink.c:
1872           Fix a whole bunch of typos in comments and log statements. 
1873
1874 2008-06-20  Michael Smith <msmith@songbirdnest.com>
1875
1876         * sys/xvimage/xvimagesink.c:
1877           Don't set colour balance values on the Xv port if the user hasn't
1878           changed them (via properties or the interface). Avoids accumulating
1879           rounding errors for the common case.
1880           Partial fix for bug #537889.
1881
1882 2008-06-20  Michael Smith <msmith@songbirdnest.com>
1883
1884         * gst/playback/gstdecodebin2.c:
1885           Ensure decodebin2 emits 'drained' signal once, and only once, when all
1886           pads are drained.
1887
1888 2008-06-20  Wim Taymans  <wim.taymans@collabora.co.uk>
1889
1890         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_get_latency),
1891         (gst_vorbis_enc_src_query), (gst_vorbis_enc_chain):
1892         Report the encoder latency. Fixes #538232.
1893
1894 2008-06-20  Wim Taymans  <wim.taymans@collabora.co.uk>
1895
1896         * gst/playback/gstplaybin2.c: (gst_play_bin_get_property),
1897         (notify_source), (activate_group):
1898         Implement the source property, emit notify when it changes in the
1899         underlying uridecodebin.
1900
1901 2008-06-20  Wim Taymans  <wim.taymans@collabora.co.uk>
1902
1903         * tests/examples/seek/seek.c: (stop_cb):
1904         Free and clear the seek element list so that we don't use invalid
1905         references when seeking after recreating a gst-launch line.
1906
1907 2008-06-20  Wim Taymans  <wim.taymans@collabora.co.uk>
1908
1909         * gst-libs/gst/audio/gstbaseaudiosink.c:
1910         (gst_base_audio_sink_query), (gst_base_audio_sink_skew_slaving),
1911         (gst_base_audio_sink_render):
1912         Report latency even if we are not live instead of hiding it.
1913         Take ts-offset and render-delay of the basesink into account when
1914         scheduling samples.
1915         Rework the clipping code so that we can take the various offsets into
1916         account and still do correct clipping.
1917
1918 2008-06-20  Jan Schmidt  <jan.schmidt@sun.com>
1919
1920         * configure.ac:
1921         Bump verion back to devel -> 0.10.20.1
1922
1923 2008-06-20  Sebastian Dröge  <slomo@circular-chaos.org>
1924
1925         * gst-libs/gst/tag/tags.c: (gst_tag_image_data_to_image_buffer):
1926         Don't increase the size of non-string image buffers by one as this
1927         might in theory confuse decoders. Still increase it by one for string
1928         image buffers to append '\0'.
1929
1930 2008-06-20  Sebastian Dröge  <slomo@circular-chaos.org>
1931
1932         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
1933         
1934         * gst/gdp/gstgdppay.c: (gst_gdp_pay_reset):
1935         Fix a buffer memleak and remove a confusing and wrong debug output.
1936         Fixes bug #538663.
1937
1938 === release 0.10.20 ===
1939
1940 2008-06-18  Jan Schmidt <jan.schmidt@sun.com>
1941
1942         * configure.ac:
1943           releasing 0.10.20, "Here I Go Again"
1944
1945 2008-06-11  Jan Schmidt  <jan.schmidt@sun.com>
1946
1947         * configure.ac:
1948         0.10.19.3 pre-release
1949
1950 2008-06-11  Jan Schmidt  <jan.schmidt@sun.com>
1951
1952         * gst-libs/gst/rtsp/gstrtspconnection.c:
1953         Fix build on win32.
1954         Patch By: David Schleef <ds@schleef.org>
1955         Fixes: #536874
1956
1957 2008-06-11  Sebastian Dröge  <slomo@circular-chaos.org>
1958
1959         * ext/gio/gstgiobasesrc.c: (gst_gio_base_src_finalize),
1960         (gst_gio_base_src_create):
1961         * ext/gio/gstgiobasesrc.h:
1962         Try to read the requested number of bytes, even if the first
1963         read returns less than requested, until nothing is read anymore
1964         or we have the requested amount of bytes. This fixes playback of
1965         files via Samba as Samba only allows to read 64k at once.
1966
1967         Implement a caching algorithm that makes sure that we read at
1968         least 4k of data every time. Some elements will try to read a few
1969         bytes, then seek, read again a few bytes and so on and this is
1970         painfully slow as every operation has to go over DBus if GVfs is
1971         used as backend.
1972
1973         Fixes bug #536849 and #536848.
1974
1975         * ext/gio/gstgiosrc.c: (gst_gio_src_class_init),
1976         (gst_gio_src_check_get_range):
1977         Override check_get_range() to blacklist http/https URIs
1978         and whitelist file URIs. More to be added on demand.
1979
1980 2008-06-05  Jan Schmidt  <jan.schmidt@sun.com>
1981
1982         * configure.ac:
1983         0.10.19.2 pre-release
1984
1985 2008-06-04  Jan Schmidt  <jan.schmidt@sun.com>
1986
1987         * win32/common/libgstrtsp.def:
1988         * win32/common/libgsttag.def:
1989         Add new API functions to the dll exports
1990
1991 2008-06-04  Michael Smith <msmith@songbirdnest.com>
1992
1993         * gst/playback/gstplaybasebin.c:
1994           Disconnect signals from decodebins we created before we remove it
1995           from playbin, to avoid crashes if the decodebin is eventually
1996           disposed after the playbin itself (possible if the app takes a
1997           reference on the decodebin).
1998           Fixes #536521.
1999
2000 2008-06-04  Tim-Philipp Müller  <tim.muller at collabora co uk>
2001
2002         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
2003           (mp3_type_find), (musepack_type_find), (MULTIPART_MAX_HEADER_SIZE),
2004           (mpeg_sys_type_find), (mpeg_ts_type_find), (mpeg4_video_type_find),
2005           (h264_video_type_find), (mpeg_video_stream_type_find),
2006           (dv_type_find), (mmsh_type_find):
2007           Bunch of small clean-ups: use gst_type_find_suggest_simple(); don't
2008           copy caps for no good reason (this may be desirable to make it easier
2009           to detect leaks, but then it should probably be done for all caps
2010           in the typefinder somewhere).
2011
2012 2008-06-04  Peter Kjellerstedt  <pkj@axis.com>
2013
2014         * tests/check/Makefile.am:
2015         Do not try to run the check tests for subparse unless it has been
2016         built.
2017
2018 2008-06-04  Peter Kjellerstedt  <pkj@axis.com>
2019
2020         * tests/check/pipelines/streamheader.c: (buffer_probe_cb),
2021         (test_multifdsink_gdp_vorbisenc), (streamheader_suite):
2022         Do not try to run a test which requires vorbisenc unless we have
2023         actually built it.
2024
2025 2008-06-04  Peter Kjellerstedt  <pkj@axis.com>
2026
2027         * gst-libs/gst/rtsp/gstrtspconnection.c:
2028         (gst_rtsp_connection_set_auth), (gst_rtsp_connection_set_auth_param),
2029         (gst_rtsp_connection_clear_auth_params),
2030         (gst_rtsp_connection_set_qos_dscp), (gst_rtsp_connection_get_ip):
2031         * gst-libs/gst/rtsp/gstrtspconnection.h:
2032         Add a couple of missing argument guards.
2033         Add a way of setting the DSCP for an RTSP connection.
2034         Add an accessor method for the ip member of GstRTSPConnection as all
2035         members are supposed to be private.
2036
2037 2008-06-04  Peter Kjellerstedt  <pkj@axis.com>
2038
2039         * gst/tcp/gstmultifdsink.c: (setup_dscp_client):
2040         Fixed accidental use of IPv4 options for all IPv6 addresses.
2041
2042 2008-06-04  Tim-Philipp Müller  <tim.muller at collabora co uk>
2043
2044         * gst-libs/gst/interfaces/mixertrack.h:
2045           Document mixer track flags.
2046
2047 2008-06-04  Sebastian Dröge  <slomo@circular-chaos.org>
2048
2049         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
2050
2051         * gst/gdp/gstgdppay.c: (gst_gdp_pay_reset_streamheader):
2052         Don't set caps on the buffers that contain a copy of the buffer
2053         including the caps of them resulting in an always increasing refcount
2054         of the caps and insanely large caps. Instead include a buffer without
2055         caps in the new caps. Fixes bug #536475.
2056
2057 2008-06-04  Sebastian Dröge  <slomo@circular-chaos.org>
2058
2059         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps):
2060         Transform a given PAR to a range on the struct with the generic
2061         height/width instead of the struct with the possibly restricted
2062         height/width.
2063
2064 2008-06-04  Sebastian Dröge  <slomo@circular-chaos.org>
2065
2066         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps):
2067         Prefer the given format if it contains something stricter than [1,MAX]
2068         for height or width and only put a structure that requires rescaling
2069         as second. This makes it possible to use videoscale in pipelines where
2070         the source can actually produce the wanted height/width but usually
2071         selects a different one from the requested.
2072
2073 2008-06-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
2074
2075         Based on patch by: John Millikin <jmillikin gmail com>
2076
2077         * gst-libs/gst/tag/gstvorbistag.c: (tag_matches), (gst_vorbis_tag_add),
2078           (gst_vorbis_tag_add_coverart):
2079           Retrieve COVERART tags from vorbis comments (#512333)
2080
2081 2008-06-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
2082
2083         * gst-libs/gst/tag/tag.h:
2084         * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum):
2085           Don't forget to add new enum value here too (should probably use
2086           glib-mkenums here...).
2087
2088 2008-06-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
2089
2090         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_add_id3_image):
2091         * gst-libs/gst/tag/tag.h: (GST_TAG_IMAGE_TYPE_NONE),
2092         * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum),
2093           (gst_tag_image_type_get_type), (gst_tag_image_type_is_valid),
2094           (gst_tag_image_data_to_image_buffer):
2095           Add two utility functions to avoid code duplication (#512333):
2096           API: add gst_tag_image_data_to_image_buffer()
2097           API: add gst_tag_list_add_id3_image()
2098           API: add GST_TAG_IMAGE_TYPE_NONE enum value
2099
2100 2008-06-03  Sebastian Dröge  <slomo@circular-chaos.org>
2101
2102         * win32/common/libgstaudio.def:
2103         Add gst_audio_check_channel_positions() to the exported symbols.
2104
2105 2008-06-03  Sebastian Dröge  <slomo@circular-chaos.org>
2106
2107         * docs/libs/gst-plugins-base-libs-sections.txt:
2108         * gst-libs/gst/audio/multichannel.c:
2109         (gst_audio_check_channel_positions):
2110         * gst-libs/gst/audio/multichannel.h:
2111         API: Make gst_audio_check_channel_positions() public.
2112
2113         * tests/check/libs/audio.c: (GST_START_TEST):
2114         Add some simple checks for gst_audio_check_channel_positions().
2115
2116 2008-06-02  Tim-Philipp Müller  <tim.muller at collabora co uk>
2117
2118         * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
2119           minrange and maxrange are scaled according to the frequency
2120           multiplier.
2121
2122 2008-06-02  Tim-Philipp Müller  <tim.muller at collabora co uk>
2123
2124         * ext/pango/Makefile.am:
2125         * ext/pango/gsttextoverlay.c: (gst_text_overlay_shade_y),
2126           (gst_text_overlay_blit_yuv420), (gst_text_overlay_push_frame):
2127           Use gstvideo functions to calculate strides and plane offsets. Fixes
2128           rendering issue ('ghost' images of the text on the chroma planes)
2129           with widths or heights that are not multiples of 8 (#506659 and
2130           probably also #485729).
2131
2132         * tests/icles/test-textoverlay.c: (show_text), (test_textoverlay),
2133           (main):
2134           Test with odd height/width too.
2135
2136 2008-06-02  Sebastian Dröge  <slomo@circular-chaos.org>
2137
2138         * gst/adder/gstadder.c: (gst_adder_query_duration),
2139         (gst_adder_query_latency):
2140         When using gst_element_iterate_pads() one has to unref every pad
2141         after usage.
2142
2143 2008-05-31  Mark Nauwelaerts  <mnauw@users.sf.net>
2144
2145         * gst-libs/gst/audio/gstbaseaudiosrc.c:
2146         (gst_base_audio_src_class_init):
2147         Add a gtk-doc chunk for the new properties to have a Since: indication.
2148
2149 2008-05-31  Mark Nauwelaerts  <mnauw@users.sf.net>
2150
2151         * gst-libs/gst/audio/gstbaseaudiosrc.c:
2152         (gst_base_audio_src_class_init), (gst_base_audio_src_dispose),
2153         (gst_base_audio_src_get_property), (gst_base_audio_src_setcaps),
2154         (gst_base_audio_src_change_state):
2155         Provide readable actual-buffer-time and actual-latency-time properties
2156         that reflect the configured ringbuffer values. Fixes #524724.
2157         API: GstBaseAudioSrc:actual-buffer-time
2158         API: GstBaseAudioSrc:actual-latency-time
2159
2160 2008-05-30  Wim Taymans  <wim.taymans@collabora.co.uk>
2161
2162         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push),
2163         (gst_basertppayload_change_state):
2164         Simply converting the running time into an RTP timestamp by scaling it
2165         based on the clock-rate is good enough for making an RTP timestamp. This
2166         has the added benefit that we can later on expose a property with the
2167         RTP timestamp of running time 0, as is needed for RTSP servers to
2168         generate the response of the PLAY request.
2169
2170 2008-05-30  Sebastian Dröge  <slomo@circular-chaos.org>
2171
2172         * gst/audioconvert/gstaudioconvert.c:
2173         (structure_has_fixed_channel_positions),
2174         (gst_audio_convert_transform_caps):
2175         Allow up to 11 positioned channels now that audioconvert can handle
2176         this but add no default positions for > 8 channels.
2177         
2178         * tests/check/elements/audioconvert.c: (GST_START_TEST):
2179         Add some unit tests for the above change: Test conversion of
2180         11 positioned channels to stereo and the other way around, test
2181         conversion of 15 unpositioned channels in different ways.
2182
2183 2008-05-29  Sebastian Dröge  <slomo@circular-chaos.org>
2184
2185         * win32/common/libgstaudio.def:
2186         Add gst_audio_clock_reset to the list of exported symbols.
2187
2188 2008-05-29  Sebastian Dröge  <slomo@circular-chaos.org>
2189
2190         * tests/check/elements/vorbisdec.c: (vorbisdec_suite):
2191         Remove wrong_channels_identification_header unit test as we now
2192         support 7 (and more channels).
2193
2194 2008-05-29  Sebastian Dröge  <slomo@circular-chaos.org>
2195
2196         * gst/audioconvert/gstchannelmix.c:
2197         (gst_channel_mix_fill_one_other):
2198         If mixing left or right to center (or the other way around) only take
2199         the complete value if we don't already have the original position in
2200         the source.
2201
2202 2008-05-29  Sebastian Dröge  <slomo@circular-chaos.org>
2203
2204         * gst-libs/gst/audio/multichannel.c:
2205         (gst_audio_check_channel_positions),
2206         (gst_audio_set_structure_channel_positions_list),
2207         (gst_audio_fixate_channel_positions):
2208         Allow rear center together with rear left/right and other previously
2209         conflicting channel positions. The reason why they weren't allowed
2210         was the channel mixing implementation in audioconvert.
2211         Also take this into account when fixing channel layouts.
2212
2213         Allow setting channel positions for 1/2 channels when using
2214         gst_audio_set_structure_channel_position().
2215
2216         * gst/audioconvert/gstchannelmix.c:
2217         (gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
2218         (gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
2219         (gst_channel_mix_fill_special), (gst_channel_mix_fill_matrix):
2220         Major rewrite of the channel mixing.
2221
2222         We now allow previously conflicting channel positions to appear
2223         together (rear center and rear left/right for example).
2224         Fixes bug #533817.
2225
2226         Rework the way channels are mixed together to take more possible
2227         channel positions into account, properly mix from/to side channels
2228         and don't assume that either center, left&right or nothing of a
2229         specific position is available anymore.
2230
2231         * tests/check/elements/audioconvert.c: (GST_START_TEST):
2232         Adjust unit tests with non-standard 1/2 channel layouts to the more
2233         correct new behaviour.
2234
2235         Add a unit test for 5.1->Stereo downmixing.
2236
2237 2008-05-29  Sebastian Dröge  <slomo@circular-chaos.org>
2238
2239         * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
2240         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_generate_sink_caps):
2241         Add sane defaults for the 7 and 8 channel layouts as those are
2242         undefined in the Vorbis spec. Use NONE channel layouts when decoding
2243         more than 8 channels instead of erroring out. Fixes bug #535356.
2244
2245 2008-05-28  Wim Taymans  <wim.taymans@collabora.co.uk>
2246
2247         * docs/plugins/Makefile.am:
2248         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
2249         * docs/plugins/gst-plugins-base-plugins-sections.txt:
2250         * ext/theora/theoraparse.c:
2251         Add theoraparse to the docs and fix some docs.
2252
2253 2008-05-28  Wim Taymans  <wim.taymans@collabora.co.uk>
2254
2255         * gst-libs/gst/cdda/gstcddabasesrc.c:
2256         (gst_cdda_base_src_add_track), (gst_cdda_base_src_create):
2257         Fix EOS condition and track addition check, the track.end sector is
2258         included in the track. Fixes #533265.
2259
2260 2008-05-28  Wim Taymans  <wim.taymans@collabora.co.uk>
2261
2262         Patch by: Mark Nauwelaerts <manauw at skynet be>
2263
2264         * gst/videorate/gstvideorate.c: (gst_video_rate_reset),
2265         (gst_video_rate_flush_prev), (gst_video_rate_event),
2266         (gst_video_rate_chain):
2267         * gst/videorate/gstvideorate.h:
2268         React (more) to NEWSEGMENT
2269         Small adjustment in timestamp calculation to prevent mismatches
2270         Fixes #435633.
2271
2272 2008-05-28  Tim-Philipp Müller  <tim.muller at collabora co uk>
2273
2274         * tests/examples/seek/seek.c: (make_parselaunch_pipeline):
2275           Initialise error to NULL as we should.
2276
2277 2008-05-28  Sebastian Dröge  <slomo@circular-chaos.org>
2278
2279         * gst/adder/gstadder.c: (gst_adder_query_duration),
2280         (gst_adder_query_latency), (gst_adder_query):
2281         Implement latency query.
2282
2283 2008-05-27  Sebastian Dröge  <slomo@circular-chaos.org>
2284
2285         * gst/adder/gstadder.c: (gst_adder_query_duration):
2286         Correctly resync the iterator if gst_iterator_next() returns
2287         GST_ITERATOR_RESYNC.
2288
2289 2008-05-27  Tim-Philipp Müller  <tim.muller at collabora co uk>
2290
2291         * win32/vs6/libgstpbutils.dsp:
2292           Add pbutils-enumtypes.c to sources (#518037).
2293
2294 2008-05-27  Wim Taymans  <wim.taymans@collabora.co.uk>
2295
2296         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
2297         (gst_audio_clock_reset), (gst_audio_clock_get_internal_time):
2298         * gst-libs/gst/audio/gstaudioclock.h:
2299         Add method to inform the clock that the time starts from 0 again. We use
2300         this info to calculate a clock offset so that the time we report in
2301         internal_time is monotonically increasing, as required by the clock base
2302         class. Fixes #521761.
2303         API: GstAudioClock::gst_audio_clock_reset()
2304
2305         * gst-libs/gst/audio/gstbaseaudiosink.c:
2306         (gst_base_audio_sink_skew_slaving),
2307         (gst_base_audio_sink_change_state):
2308         * gst-libs/gst/audio/gstbaseaudiosrc.c:
2309         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
2310         Reset reported time when we (re)create the ringbuffer.
2311
2312 2008-05-27  Tim-Philipp Müller  <tim.muller at collabora co uk>
2313
2314         * ext/alsa/gstalsamixertrack.c:
2315           (gst_alsa_mixer_track_update_alsa_capabilities):
2316           Make sure playback volumes aren't accidentally overwritten by
2317           capture volumes if an alsa mixer track has both playback and
2318           capture capabilities: we create two GstMixerTracks in that
2319           case, so make sure we query only the alsa capabilities that
2320           refer to the type of GstMixerTrack we created from the dual
2321           capability alsa element. Should fix issues with Audigy2 sound
2322           cards (#518082).
2323
2324 2008-05-27  Tim-Philipp Müller  <tim.muller at collabora co uk>
2325
2326         * tests/check/pipelines/oggmux.c: (test_pipeline):
2327           Don't use deprecated function.
2328
2329 2008-05-27  Wim Taymans  <wim.taymans@collabora.co.uk>
2330
2331         * gst/playback/gstdecodebin2.c:
2332         (gst_decode_group_control_source_pad), (gst_decode_group_expose):
2333         Check for NULL cases and log them, creating ghostpads can, for example,
2334         fail when the pad returns wrong caps.
2335
2336         * gst/playback/gstplaybin2.c: (perform_eos):
2337         When pushing out the EOS event, collect the return value and warn when
2338         something failed.
2339
2340 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
2341
2342         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
2343         (gst_riff_create_video_template_caps):
2344         Add support for DVCPRO.
2345
2346 2008-05-26  Tim-Philipp Müller  <tim.muller at collabora co uk>
2347
2348         * gst/videoscale/gstvideoscale.c: (DEFAULT_PROP_METHOD):
2349           Change default scaling method from nearest-neighbour to bilinear.
2350
2351 2008-05-26  Tim-Philipp Müller  <tim.muller at collabora co uk>
2352
2353         * tests/check/libs/video.c:
2354           More checks.
2355
2356 2008-05-25  Tim-Philipp Müller  <tim.muller at collabora co uk>
2357
2358         * gst/subparse/gstsubparse.c: (parser_state_init),
2359           (gst_sub_parse_format_autodetect), (handle_buffer):
2360         * gst/subparse/gstsubparse.h:
2361         * tests/check/elements/subparse.c: (test_tmplayer_style3b):
2362           Limit duration to a maximum of five seconds for tmplayer format where
2363           we can guess the duration only from the timestamp of the next line of
2364           text. We don't want to show a text for eternities just because nothing
2365           else is being said for a while.
2366
2367 2008-05-23  Wim Taymans  <wim.taymans@collabora.co.uk>
2368
2369         * gst-libs/gst/rtp/gstbasertpdepayload.c:
2370         (gst_base_rtp_depayload_chain),
2371         (gst_base_rtp_depayload_handle_sink_event),
2372         (gst_base_rtp_depayload_push_full),
2373         (gst_base_rtp_depayload_change_state):
2374         Check sequence numbers, mark input buffers with a discont flag for the
2375         subclass when we detected a gap, drop duplicate buffers. We do this
2376         because one can use the element without a jitterbuffer in front and we
2377         don't want to feed the subclasses invalid or reordered data.
2378         Do an error when the subclass did not provide a process function instead
2379         of crashing.
2380         Some other small cleanups.
2381
2382 2008-05-22  Tim-Philipp Müller  <tim.muller at collabora co uk>
2383
2384         * gst/videotestsrc/videotestsrc.c: (paint_hline_NV12_NV21):
2385           May just as well use the precalculated uvstride here.
2386
2387 2008-05-22  Jan Schmidt  <jan.schmidt@sun.com>
2388
2389         * docs/plugins/Makefile.am:
2390         * docs/plugins/gst-plugins-base-plugins-overrides.txt:
2391         * docs/plugins/gst-plugins-base-plugins-sections.txt:
2392         * docs/plugins/gst-plugins-base-plugins.args:
2393         * docs/plugins/gst-plugins-base-plugins.hierarchy:
2394         * docs/plugins/gst-plugins-base-plugins.interfaces:
2395         * docs/plugins/gst-plugins-base-plugins.prerequisites:
2396         * docs/plugins/inspect/plugin-adder.xml:
2397         * docs/plugins/inspect/plugin-alsa.xml:
2398         * docs/plugins/inspect/plugin-audioconvert.xml:
2399         * docs/plugins/inspect/plugin-audiorate.xml:
2400         * docs/plugins/inspect/plugin-audioresample.xml:
2401         * docs/plugins/inspect/plugin-audiotestsrc.xml:
2402         * docs/plugins/inspect/plugin-cdparanoia.xml:
2403         * docs/plugins/inspect/plugin-decodebin.xml:
2404         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
2405         * docs/plugins/inspect/plugin-gdp.xml:
2406         * docs/plugins/inspect/plugin-gio.xml:
2407         * docs/plugins/inspect/plugin-gnomevfs.xml:
2408         * docs/plugins/inspect/plugin-libvisual.xml:
2409         * docs/plugins/inspect/plugin-ogg.xml:
2410         * docs/plugins/inspect/plugin-pango.xml:
2411         * docs/plugins/inspect/plugin-playback.xml:
2412         * docs/plugins/inspect/plugin-queue2.xml:
2413         * docs/plugins/inspect/plugin-subparse.xml:
2414         * docs/plugins/inspect/plugin-tcp.xml:
2415         * docs/plugins/inspect/plugin-theora.xml:
2416         * docs/plugins/inspect/plugin-typefindfunctions.xml:
2417         * docs/plugins/inspect/plugin-uridecodebin.xml:
2418         * docs/plugins/inspect/plugin-video4linux.xml:
2419         * docs/plugins/inspect/plugin-videorate.xml:
2420         * docs/plugins/inspect/plugin-videoscale.xml:
2421         * docs/plugins/inspect/plugin-videotestsrc.xml:
2422         * docs/plugins/inspect/plugin-volume.xml:
2423         * docs/plugins/inspect/plugin-vorbis.xml:
2424         * docs/plugins/inspect/plugin-ximagesink.xml:
2425         * docs/plugins/inspect/plugin-xvimagesink.xml:
2426         * ext/cdparanoia/gstcdparanoiasrc.c:
2427         * ext/ogg/gstoggdemux.c:
2428         * ext/ogg/gstoggdemux.h:
2429         * ext/ogg/gstoggmux.c:
2430         * ext/ogg/gstoggmux.h:
2431         * gst/audioconvert/audioconvert.c:
2432         * gst/audioconvert/audioconvert.h:
2433         * gst/audioconvert/gstaudioconvert.h:
2434         * gst/gdp/gstgdpdepay.h:
2435         * gst/gdp/gstgdppay.h:
2436         * gst/playback/gstdecodebin.c:
2437         * gst/playback/gstdecodebin2.c:
2438         * gst/playback/gstplaybin.c:
2439         * gst/playback/gstplaybin2.c:
2440         * gst/playback/gsturidecodebin.c:
2441         * gst/tcp/gstmultifdsink.c:
2442         * gst/tcp/gstmultifdsink.h:
2443         * gst/tcp/gsttcp.h:
2444
2445         Add some documentation comments, and some new headers to be scanned.
2446         Rename some internal enum declarations (audioconvert's DitherType and
2447         NoiseShapingType, GstUnitType from the TCP elements) to match the
2448         documented GObject type names so that the docs pick them up.
2449         Name the playbin2 docs markups properly so they get picked up. They'll
2450         need renaming back when/if playbin2 becomes playbin.
2451
2452         100% symbol coverage for the plugin docs, booya.
2453
2454 2008-05-22  Sebastian Dröge  <slomo@circular-chaos.org>
2455
2456         Patch by: Thijs Vermeir <thijsvermeir@gmail.com>
2457
2458         * gst/videotestsrc/videotestsrc.c: (paint_hline_NV12_NV21):
2459         Fix generation of NV12/NV21 frames. Fixes bug #532454.
2460
2461 2008-05-22  Wim Taymans  <wim.taymans@collabora.co.uk>
2462
2463         Patch by: Sjoerd Simons <sjoerd at luon dot net>
2464
2465         * gst/playback/gstdecodebin.c: (remove_fakesink):
2466         Lock the fakesink before setting the state to NULL and removing it from
2467         the bin so that a concurrent state change cannot interfere. 
2468         Fixes #534331.
2469
2470 2008-05-21  Felipe Contreras  <felipe.contreras@gmail.com>
2471
2472         * docs/Makefile.am:
2473         Fix installing plugin documentation when gtk-doc is disabled.
2474
2475 2008-05-21  Felipe Contreras  <felipe.contreras@gmail.com>
2476
2477         * gst-libs/gst/rtsp/Makefile.am:
2478         Distribute, don't install md5.h
2479
2480 2008-05-21  Julien Moutte  <julien@fluendo.com>
2481
2482         * gst/tcp/gstmultifdsink.c: (setup_dscp_client): Use IPPROTO_IP
2483         instead of SOL_IP, works on more platforms.
2484         * gst/typefind/gsttypefindfunctions.c: (aac_type_find): Fix printf
2485         arguments.
2486
2487 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
2488
2489         * ext/vorbis/vorbisdec.c:
2490         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform):
2491         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_show_frame):
2492         Some debug and comment fixes.
2493
2494         * tests/examples/dynamic/addstream.c: (main):
2495         Fix , to ;
2496
2497 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
2498
2499         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
2500         * gst/playback/decodetest.c: (new_decoded_pad_cb):
2501         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
2502         (try_to_link_1), (elem_is_dynamic), (close_link), (type_found),
2503         (cleanup_decodebin):
2504         * gst/playback/gstdecodebin2.c: (gst_decode_bin_init),
2505         (connect_element), (gst_decode_group_control_demuxer_pad):
2506         * gst/playback/gstplaybasebin.c: (queue_remove_probe),
2507         (queue_out_of_data), (gen_preroll_element), (preroll_unlinked),
2508         (mute_group_type):
2509         * gst/playback/gstplaybin.c: (gst_play_bin_vis_blocked),
2510         (gst_play_bin_set_property), (handoff), (gen_video_element),
2511         (gen_text_element), (gen_audio_element), (gen_vis_element),
2512         (remove_sinks), (add_sink), (setup_sinks):
2513         * gst/playback/gstplaybin2.c: (pad_added_cb), (no_more_pads_cb):
2514         * gst/playback/gstplaysink.c: (gst_play_sink_get_video_sink),
2515         (gst_play_sink_get_audio_sink), (gst_play_sink_vis_unblocked),
2516         (gst_play_sink_vis_blocked), (gst_play_sink_set_vis_plugin),
2517         (gst_play_sink_get_vis_plugin), (gst_play_sink_set_mute),
2518         (gen_video_chain), (gen_text_chain), (gen_audio_chain),
2519         (gen_vis_chain), (gst_play_sink_reconfigure),
2520         (gst_play_sink_set_font_desc), (gst_play_sink_get_font_desc),
2521         (gst_play_sink_request_pad):
2522         * gst/playback/gsturidecodebin.c: (type_found), (setup_source):
2523         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
2524         (cb_newpad):
2525         * gst/playback/test6.c: (new_decoded_pad_cb):
2526         * tests/check/elements/audioconvert.c: (GST_START_TEST):
2527         * tests/check/elements/audiorate.c: (test_injector_chain),
2528         (do_perfect_stream_test):
2529         * tests/check/elements/ffmpegcolorspace.c: (GST_START_TEST):
2530         * tests/check/elements/gdpdepay.c: (GST_START_TEST):
2531         * tests/check/elements/gnomevfssink.c:
2532         * tests/check/elements/textoverlay.c:
2533         (notgst_check_setup_src_pad2), (notgst_check_teardown_src_pad2):
2534         * tests/check/elements/videotestsrc.c: (GST_START_TEST):
2535         * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
2536         * tests/check/pipelines/oggmux.c: (test_pipeline):
2537         * tests/check/pipelines/streamheader.c: (GST_START_TEST):
2538         * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
2539         * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
2540         * tests/examples/seek/scrubby.c: (make_wav_pipeline):
2541         * tests/examples/seek/seek.c: (make_mod_pipeline),
2542         (make_dv_pipeline), (make_wav_pipeline), (make_flac_pipeline),
2543         (make_sid_pipeline), (make_parse_pipeline), (make_vorbis_pipeline),
2544         (make_theora_pipeline), (make_vorbis_theora_pipeline),
2545         (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
2546         (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline),
2547         (update_fill), (msg_buffering):
2548         Don't use bad gst_element_get_pad().
2549
2550 2008-05-21  Stefan Kost  <ensonic@users.sf.net>
2551
2552         * gst-libs/gst/riff/riff-media.c:
2553           Fix wrong method name in docs. Fix calculation of strf fields for
2554           broken mulaw/alaw.
2555   
2556         * gst-libs/gst/riff/riff-read.c:
2557           Whitespace fix and removing double ';'.
2558
2559 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
2560
2561         * docs/design/part-playbin2.txt:
2562         Add some leftover doc.
2563
2564 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
2565
2566         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_fill_others):
2567         Fix copy & paste error in last commit.
2568
2569 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
2570
2571         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_fill_others):
2572         Add support for mixing GST_AUDIO_CHANNEL_POSITION_SIDE_* from/to
2573         other channel positions when source has SIDE channels and dest doesn't
2574         or the other way around.
2575
2576 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
2577
2578         Patch by: Henrik Eriksson <henriken at axis dot com>
2579
2580         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
2581         (gst_multi_fd_sink_init), (setup_dscp_client), (setup_dscp),
2582         (gst_multi_fd_sink_add_full), (gst_multi_fd_sink_set_property),
2583         (gst_multi_fd_sink_get_property):
2584         * gst/tcp/gstmultifdsink.h:
2585         Add support for DSCP QOS. Fixes #469933.
2586
2587 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
2588
2589         * tests/check/elements/audioconvert.c: (GST_START_TEST):
2590         Add another test that checks if conversion between standard 1 and 2
2591         channel layouts with and without positions set is working.
2592
2593 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
2594
2595         * gst-libs/gst/audio/multichannel.c:
2596         (gst_audio_check_channel_positions):
2597         Allow non-standard 2 channel layouts.
2598         
2599         * tests/check/elements/audioconvert.c: (GST_START_TEST):
2600         Add some tests for converting and remapping non-standard 1 and 2
2601         channel layouts.
2602
2603 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
2604
2605         * gst/audioconvert/gstchannelmix.c:
2606         (gst_channel_mix_fill_normalize):
2607         Prevent division by zero if the channel mix matrix contains only
2608         zeroes.
2609
2610 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
2611
2612         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
2613
2614         * gst/gdp/gstgdppay.c: (gst_gdp_pay_chain):
2615         Close a buffer memory leak. Fixes bug #534071.
2616
2617 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
2618
2619         * gst-libs/gst/rtsp/gstrtsptransport.h:
2620         Make the GstRTSPTransport struct members public as there are no
2621         setters/getters and it's supposed to be changed directly.
2622         Fixes bug #533087.
2623
2624 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
2625
2626         * gst/adder/gstadder.c:
2627         Adder also doesn't support audio/x-raw-int with width!=depth so don't
2628         claim this on the pad template caps.
2629
2630 2008-05-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2631
2632         * gst-libs/gst/audio/gstbaseaudiosink.c:
2633         (gst_base_audio_sink_sync_latency):
2634         We can only use our optimal calibration if we prerolled before the
2635         latency expired.
2636
2637 2008-05-20  Tim-Philipp Müller  <tim.muller at collabora co uk>
2638
2639         * configure.ac:
2640           Require core CVS for GstBaseSrc buffer caps setting magic.
2641
2642 2008-05-20  Sebastian Dröge  <slomo@circular-chaos.org>
2643
2644         * gst/audioconvert/gstaudioconvert.c:
2645         (gst_audio_convert_fixate_channels):
2646         Fix logic in last commit.
2647
2648 2008-05-20  Sebastian Dröge  <slomo@circular-chaos.org>
2649
2650         * gst/audioconvert/gstaudioconvert.c:
2651         (gst_audio_convert_fixate_channels):
2652         Passthrough the channel positions if the number of output channels is
2653         the same as the number of input channels, the input had a channel
2654         layout and downstream requests no special one. We did this already for
2655         > 2 channels but now it's also done for 1 channel. Fixes bug #533617.
2656
2657 2008-05-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2658
2659         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_init),
2660         (gst_gnome_vfs_src_finalize),
2661         (gst_gnome_vfs_src_received_headers_callback),
2662         (gst_gnome_vfs_src_create), (gst_gnome_vfs_src_stop):
2663         * ext/gnomevfs/gstgnomevfssrc.h:
2664         Set the ICY caps on the srcpad from where they get picked up by the base
2665         class now and set on the outgoing buffers.
2666
2667         * gst-libs/gst/audio/gstbaseaudiosrc.c:
2668         (gst_base_audio_src_create):
2669         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_buffer_new):
2670         BaseSrc now sets the caps on outgoing buffers automatically.
2671
2672 2008-05-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2673
2674         * gst-libs/gst/audio/gstbaseaudiosink.c:
2675         (gst_base_audio_sink_resample_slaving),
2676         (gst_base_audio_sink_skew_slaving),
2677         (gst_base_audio_sink_sync_latency), (gst_base_audio_sink_render),
2678         (gst_base_audio_sink_async_play),
2679         (gst_base_audio_sink_change_state):
2680         Change the way in which the ringbuffer is started when dealing with a
2681         slaved clock and latency. We now sync to the clock until we reach
2682         upstream latency before starting the ringbuffer. This has the effect
2683         that we can accurately align the master and slave clocks and let the
2684         rate correction code take care of the initial drift or rounding errors
2685         instead of leaving them uncorrected with the old approach.
2686
2687 2008-05-20  Sebastian Dröge  <slomo@circular-chaos.org>
2688
2689         * gst/audioconvert/gstaudioconvert.c:
2690         (gst_audio_convert_fixate_channels):
2691         Correctly set the default channel positions when converting to 8
2692         channels.
2693
2694 2008-05-19  Tim-Philipp Müller  <tim.muller at collabora co uk>
2695
2696         * configure.ac:
2697           Error out if we don't have the required version of core.
2698
2699 2008-05-19  Tim-Philipp Müller  <tim.muller at collabora co uk>
2700
2701         * gst/typefind/gsttypefindfunctions.c: (aac_type_find):
2702           Use data scan helper in aac typefinder and stop scanning
2703           for headers when we've found a type. Also fix potential invalid
2704           memory access when calculating the frame length.
2705
2706 2008-05-19  Tim-Philipp Müller  <tim.muller at collabora co uk>
2707
2708         * gst/typefind/gsttypefindfunctions.c: (data_scan_ctx_ensure_data),
2709           (mpeg_sys_is_valid_pack):
2710           Don't modify scan context when we return FALSE in ensure_data, so
2711           it's possible to continue scanning, and we don't end up with a NULL
2712           data pointer and a positive size, which might bite us the next time
2713           we're called. Small constification.
2714
2715 2008-05-16  Sebastian Dröge  <slomo@circular-chaos.org>
2716
2717         * gst/adder/gstadder.c:
2718         Adder doesn't support 24 bit samples so don't claim it supports them
2719         in the pad template caps.
2720
2721 2008-05-14  Wim Taymans  <wim.taymans@collabora.co.uk>
2722
2723         * gst-libs/gst/rtp/gstbasertpdepayload.c:
2724         (gst_base_rtp_depayload_chain):
2725         Validate the RTP packet before further processing it. It's just too
2726         dangerous to accept random packets and people are not forced to use a
2727         jitterbuffer or session manager to filter out the bad packets.
2728
2729         * gst-libs/gst/rtp/gstrtpbuffer.c:
2730         (gst_rtp_buffer_set_extension_data),
2731         (gst_rtp_buffer_get_payload_subbuffer):
2732         Small cleanups.
2733         When setting extension data in a buffer that is too small, we fail and
2734         we should not set the extension bit.
2735         Change GST_WARNINGS into g_warning because they really are
2736         programming errors.
2737
2738         * tests/check/libs/rtp.c: (GST_START_TEST):
2739         Catch the g_warnings now in the unit tests and that fact that failing to
2740         set extension data left the extension bit untouched.
2741
2742 2008-05-14  Tim-Philipp Müller  <tim.muller at collabora co uk>
2743
2744         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init):
2745           Revert previous change which made basetransform handle buffer_alloc
2746           and which breaks things badly in the non-passthrough case since it
2747           returned buffers with a different (ie. sometimes smaller) size than
2748           the size requested.
2749
2750 2008-05-14  Wim Taymans  <wim.taymans@collabora.co.uk>
2751
2752         Patch by: Bernard B <b-gnome at largestprime dot net>
2753
2754         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_compare_seqnum):
2755         Fix seqnum compare function for bordercase values and fix the docs
2756         again. Fixes #533075.
2757
2758         * tests/check/libs/rtp.c: (GST_START_TEST), (rtp_suite):
2759         Add a testcase for seqnum compare function.
2760
2761 2008-05-14  Sebastian Dröge  <slomo@circular-chaos.org>
2762
2763         * gst/adder/gstadder.c: (gst_adder_setcaps),
2764         (gst_adder_class_init):
2765         Correctly declare the supported endianness on the pad templates
2766         and check for correct endianness in the set caps function. Adder
2767         only supports native endianness.
2768         Also use gst_element_class_set_details_simple().
2769
2770 2008-05-14  Stefan Kost  <ensonic@users.sf.net>
2771
2772         * sys/xvimage/xvimagesink.c:
2773           Better debug logging in port value handling. Merging separate port
2774           value loops into one.
2775
2776 2008-05-13  Wim Taymans  <wim.taymans@collabora.co.uk>
2777
2778         Patch by: Hannes Bistry <hannesb at gmx dot de>
2779
2780         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_start):
2781         * gst/tcp/gsttcpserversink.c:
2782         (gst_tcp_server_sink_handle_server_read),
2783         (gst_tcp_server_sink_handle_wait), (gst_tcp_server_sink_init_send):
2784         Fix regression in clientsrc because we did not add the fd to the poll
2785         set anymore. Fixes #532364.
2786         Do some cleanups here and there.
2787
2788 2008-05-13  Sebastian Dröge  <slomo@circular-chaos.org>
2789
2790         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
2791         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init):
2792         * gst/playback/gstplay-marshal.list:
2793         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_class_init):
2794         Use correct marshallers. GstCaps are a boxed type and no GObject
2795         subclass.
2796
2797 2008-05-13  Sebastian Dröge  <slomo@circular-chaos.org>
2798
2799         * win32/common/libgstrtsp.def:
2800         Add gst_rtsp_connection_(set|clear)_auth_param() to the exported
2801         symbols.
2802
2803 2008-05-13  Sebastian Dröge  <slomo@circular-chaos.org>
2804
2805         Patch by: Sjoerd Simons <sjoerd at luon dot net>
2806
2807         * tests/check/elements/audioresample.c:
2808         (live_switch_alloc_only_48000), (live_switch_get_sink_caps),
2809         (live_switch_push), (GST_START_TEST):
2810         Add unit test for the latest basetransform negotiation changes.
2811         See bug #526768.
2812
2813 2008-05-13  Sebastian Dröge  <slomo@circular-chaos.org>
2814
2815         * gst/ffmpegcolorspace/imgconvert.c: (nv12_to_nv21):
2816         Fix nv12<->nv21 conversion if stride is larger than width.
2817
2818 2008-05-13  Sebastian Dröge  <slomo@circular-chaos.org>
2819
2820         Patch by: Jan Gerber <j at oil21 dot org>
2821
2822         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_parse_skeleton_fishead),
2823         (gst_ogg_pad_parse_skeleton_fisbone):
2824         * ext/ogg/gstoggdemux.h:
2825         Parse presentation time from skeleton streams and use it as offset
2826         for the timestamps. Fixes bug #530068.
2827
2828 2008-05-12  Wim Taymans  <wim.taymans@collabora.co.uk>
2829
2830         * gst-libs/gst/audio/gstbaseaudiosink.c:
2831         (gst_base_audio_sink_render), (gst_base_audio_sink_async_play):
2832         Revert previous patch that attempted to more accurately calculate the
2833         initial offset between master and slave clock. The best thing we can do
2834         in general is take the time of both clocks as the diff since we don't
2835         know when the actual preroll happened.
2836
2837 2008-05-11  Tim-Philipp Müller  <tim.muller at collabora co uk>
2838
2839         * gst-libs/gst/pbutils/install-plugins.c:
2840           Fix docs: type and missing word.
2841
2842 2008-05-10  Tim-Philipp Müller  <tim.muller at collabora co uk>
2843
2844         * gst/typefind/gsttypefindfunctions.c: (h264_video_type_find):
2845           Don't do lots of 4-byte peeks, but use the 'new' data scan helper
2846           for this instead; don't check if we've found enough markers after
2847           each and every step, it's enough to do that only if we've actually
2848           found a new marker.
2849           Embed a G_UNLIKELY into the IS_MPEG_HEADER macro.
2850
2851 2008-05-10  Tim-Philipp Müller  <tim.muller at collabora co uk>
2852
2853         * gst/typefind/gsttypefindfunctions.c:
2854           (DATA_SCAN_CTX_CHUNK_SIZE), (DataScanCtx), (data_scan_ctx_advance),
2855           (data_scan_ctx_ensure_data), (GST_MPEGVID_TYPEFIND_TRY_SYNC),
2856           (mpeg_video_stream_type_find):
2857           Move scan helper thingy to the beginning of the file so we can use
2858           it in other typefind functions. Rename it to something more
2859           generic. Also improve handling of things towards the end of the
2860           typefind data: peek as much as we can if we know the size of the
2861           data, rather than just min_size.
2862
2863 2008-05-09  Jan Schmidt  <jan.schmidt@sun.com>
2864
2865         * docs/libs/gst-plugins-base-libs-sections.txt:
2866         * gst-libs/gst/interfaces/colorbalance.c:
2867         * gst-libs/gst/interfaces/colorbalance.h:
2868         * gst-libs/gst/interfaces/colorbalancechannel.c:
2869         * gst-libs/gst/interfaces/colorbalancechannel.h:
2870         * gst-libs/gst/interfaces/tuner.c:
2871         * gst-libs/gst/interfaces/tunerchannel.c:
2872         * gst-libs/gst/interfaces/tunerchannel.h:
2873         * gst-libs/gst/interfaces/tunernorm.c:
2874         * gst-libs/gst/interfaces/tunernorm.h:
2875         * gst-libs/gst/video/video.c:
2876         * gst-libs/gst/video/video.h:
2877         Document the GstTuner and GstColorBalance interfaces, and some
2878         other random API functions that needed it. 70% symbol coverage, woo.
2879
2880 2008-05-09  Wim Taymans  <wim.taymans@collabora.co.uk>
2881
2882         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_acquire):
2883         Choose to allocate one less segment but require one additional segment
2884         as latency. 
2885
2886         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_acquire):
2887         No need to increment the number of segments in the source.
2888
2889         * gst-libs/gst/audio/gstbaseaudiosink.c:
2890         (gst_base_audio_sink_get_time), (clock_convert_external),
2891         (gst_base_audio_sink_resample_slaving),
2892         (gst_base_audio_sink_skew_slaving),
2893         (gst_base_audio_sink_none_slaving), (gst_base_audio_sink_render),
2894         (gst_base_audio_sink_async_play):
2895         Remove adding latency when returning the internal time while subtracting
2896         it again when we use the value a little later.
2897         When calculating the end timestamp, we are making a rounding error
2898         with the current algorithm. Ensure that we don't accumulate these
2899         rounding errors when aligning samples by not resampling at all if we
2900         don't need to. Fixes #419351.
2901         Make the initial calibration of the clock slaving a little more
2902         predictable and accurate. Also handle the case where we don't do
2903         clock slaving.
2904
2905 2008-05-09  Sebastian Dröge  <slomo@circular-chaos.org>
2906
2907         Based on a patch by:
2908           Björn Benderius <bjoern dot benderius at axis dot com>
2909
2910         * gst/ffmpegcolorspace/avcodec.h:
2911         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
2912         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
2913         (gst_ffmpegcsp_avpicture_fill):
2914         * gst/ffmpegcolorspace/imgconvert.c: (nv12_to_nv21):
2915         * gst/ffmpegcolorspace/imgconvert_template.h:
2916         Add conversions from/to NV12 and NV21 and conversions between those
2917         two formats. Fixes bug #532166.
2918
2919 2008-05-08  Edward Hervey  <edward.hervey@collabora.co.uk>
2920
2921         * gst/typefind/gsttypefindfunctions.c: (h264_video_type_find):
2922         Abort the h264 typefinding as soon as _peek() doesn't return anything,
2923         which happens for example with files smaller than 128kb.
2924
2925 2008-05-08  Wim Taymans  <wim.taymans@collabora.co.uk>
2926
2927         Patch by: Wouter Cloetens <zombie at e2big dot org>
2928
2929         * gst-libs/gst/rtsp/Makefile.am:
2930         * gst-libs/gst/rtsp/gstrtspconnection.c:
2931         (gst_rtsp_connection_create), (md5_digest_to_hex_string),
2932         (auth_digest_compute_hex_urp), (auth_digest_compute_response),
2933         (add_auth_header), (gst_rtsp_connection_free),
2934         (gst_rtsp_connection_set_auth), (str_case_hash), (str_case_equal),
2935         (gst_rtsp_connection_set_auth_param),
2936         (gst_rtsp_connection_clear_auth_params):
2937         * gst-libs/gst/rtsp/gstrtspconnection.h:
2938         Add Digest authorization support for RTSP connections. See #532065.
2939
2940         * gst-libs/gst/rtsp/md5.c:
2941         * gst-libs/gst/rtsp/md5.h:
2942         Yeap, another md5 implementation until we can depend on a glib that has
2943         support for it.
2944
2945 2008-05-08  Sebastian Dröge  <slomo@circular-chaos.org>
2946
2947         Patch by: Sjoerd Simons <sjoerd at luon dot net>
2948
2949         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init):
2950         Let audioresample use the buffer allocation of basetransform instead
2951         of it's own stuff.
2952
2953         * tests/check/elements/audioresample.c: (alloc_only_48000),
2954         (GST_START_TEST), (audioresample_suite):
2955         Add unit test for the recent basetransform bugfix, where upstream
2956         changes caps to something that can't be passed through anymore.
2957
2958 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
2959
2960         * win32/common/config.h.in:
2961           Don't define GST_FUNCTION, if GLib supports MSVC we'd much rather
2962           use the real thing than having "???" unconditionally.
2963
2964 2008-05-07  Wim Taymans  <wim.taymans@collabora.co.uk>
2965
2966         * gst-libs/gst/audio/gstbaseaudiosink.c:
2967         (gst_base_audio_sink_query):
2968         Report the latency with the new seglatency parameter.
2969
2970         * gst-libs/gst/audio/gstringbuffer.c:
2971         (gst_ring_buffer_debug_spec_buff), (gst_ring_buffer_parse_caps),
2972         (gst_ring_buffer_acquire):
2973         * gst-libs/gst/audio/gstringbuffer.h:
2974         Add new field to the ringbufferspec to specify the expected latency
2975         between the underlying device read/write pointer, this is needed
2976         when writing sinks that sit a little closer to the hardware.
2977         Add some more docs for other fields.
2978
2979 2008-05-06  Sebastian Dröge  <slomo@circular-chaos.org>
2980
2981         * gst/volume/gstvolume.c: (volume_transform_ip):
2982         Return NOT_NEGOTIATED if we didn't set a process function yet for some
2983         reason instead of crashing later. Might fix bug #509125.
2984
2985 2008-05-06  Sebastian Dröge  <slomo@circular-chaos.org>
2986
2987         Based on a patch by: Tim-Philipp Müller  <tim.muller at collabora co uk>
2988
2989         * gst/audioconvert/audioconvert.c: (audio_convert_prepare_context):
2990         * gst/audioconvert/audioconvert.h:
2991         * gst/audioconvert/gstaudioconvert.c:
2992         (gst_audio_convert_parse_caps),
2993         (structure_has_fixed_channel_positions),
2994         (gst_audio_convert_transform_caps):
2995         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_fill_matrix):
2996         Add support for more than 8 channels and NONE channel layouts. For
2997         more than 8 channels no channel conversion is supported yet, only
2998         format conversions are supported. Fixes bug #398033.
2999
3000         * tests/check/elements/audioconvert.c: (verify_convert),
3001         (GST_START_TEST), (audioconvert_suite):
3002         Add some unit tests by Tim for checking the NONE channel layouts
3003         and more than 8 channels and add some more unit tests for channel
3004         conversions.
3005
3006 2008-05-06  Wim Taymans  <wim.taymans@collabora.co.uk>
3007
3008         * gst/playback/gstdecodebin2.c: (connect_pad):
3009         When autoplugging fails, set the element back to NULL before
3010         unreffing it.
3011
3012 2008-05-06  Sebastian Dröge  <slomo@circular-chaos.org>
3013
3014         * win32/common/libgstaudio.def:
3015         Add gst_base_audio_src_[sg]et_slave_method() to the exported
3016         symbols.
3017
3018 2008-05-05  Sebastian Dröge  <slomo@circular-chaos.org>
3019
3020         * gst/subparse/samiparse.c: (handle_start_sync),
3021         (end_sami_element), (characters_sami):
3022         Remove trailing, leading and double whitespaces.
3023         Correctly timestamp buffers and output the last buffer too.
3024
3025         * tests/check/elements/subparse.c: (GST_START_TEST),
3026         (subparse_suite):
3027         Add a simple unit test for SAMI parsing.
3028
3029 2008-05-05  Sebastian Dröge  <slomo@circular-chaos.org>
3030
3031         Patch by: Young-Ho Cha <ganadist at chollian dot net>
3032
3033         * gst/subparse/samiparse.c: (handle_start_sync),
3034         (start_sami_element), (end_sami_element), (characters_sami),
3035         (sami_context_reset):
3036         Only output characters inside the "sync" elements. There could be
3037         other elements like "style" that have some content but should
3038         not be printed. Fixes bug #467911.
3039
3040 2008-05-05  Sebastian Dröge  <slomo@circular-chaos.org>
3041
3042         * gst/playback/gstplaybasebin.c: (set_audio_mute),
3043         (set_active_source):
3044         * gst/playback/gstplaybasebin.h:
3045         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
3046         (playbin_set_audio_mute):
3047         Allow setting -1 as current-audio to mute the current audio stream,
3048         similar to what is done for subtitles. Fixes bug #342294.
3049
3050 2008-05-05  Edward Hervey  <edward.hervey at collabora co uk>
3051
3052         * gst-libs/gst/pbutils/descriptions.c: (formats): 
3053         It's SorensOn and not SorensEn.
3054
3055 2008-05-04  Tim-Philipp Müller  <tim.muller at collabora co uk>
3056
3057         * gst-libs/gst/pbutils/descriptions.c: (formats):
3058           Fix description of video/x-flash-video.
3059
3060 2008-05-04  Sebastian Dröge  <slomo@circular-chaos.org>
3061
3062         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func):
3063         * gst-libs/gst/audio/gstaudiosrc.c: (audioringbuffer_thread_func):
3064         * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
3065         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps_list):
3066         Remove some unused code.
3067
3068         * gst/audioconvert/gstaudioquantize.c:
3069         (gst_audio_quantize_free_noise_shaping):
3070         Don't return before freeing the noise shaping history.
3071
3072 2008-05-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
3073
3074         * tests/check/elements/subparse.c: (do_test),
3075           (test_tmplayer_style3b), (subparse_suite):
3076           Add unit test for the tmplayer variant from bug #530962.
3077
3078 2008-05-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
3079
3080         * gst/subparse/gstsubparse.c: (handle_buffer),
3081           (gst_sub_parse_sink_event):
3082         * gst/subparse/tmplayerparse.c: (tmplayer_process_buffer),
3083           (tmplayer_parse_line):
3084           Fix parsing of tmplayer subtitle variant where every single line contains
3085           text and there isn't an empty line after each line to determine the
3086           duration (#530962). Improve EOS handling for tmplayer subtitles a bit by
3087           making sure that we push out the last line of text without a duration if
3088           there's still text left in the buffer at the end.
3089
3090 2008-05-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
3091
3092         * gst/subparse/gstsubparse.c: (feed_textbuf):
3093           Fix detection of discontinuities based on the buffer offset (doesn't work
3094           so well if no buffer offset is set) and also check for the DISCONT buffer
3095           flag. This keeps the parser state from being reset after each buffer in
3096           the unit test.
3097
3098 2008-05-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
3099
3100         * gst/typefind/gsttypefindfunctions.c: (mpeg_video_stream_type_find):
3101           Further fine-tuning: don't absolutely require sequence or GOP headers
3102           (as introduced in the previous commit), but adjust the typefind
3103           probabilities returned accordingly if we don't see them. Also make sure
3104           picture header and first slice are somewhat close to each other (which
3105           is not perfect but still better than requiring a fixed offset or having
3106           no limit at all).
3107
3108 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
3109
3110         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
3111         (gst_basertppayload_sink_setcaps),
3112         (gst_basertppayload_sink_getcaps):
3113         Rename the setcaps/getcaps function internally to make it clear that
3114         they are called for the sink pad.
3115
3116 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
3117
3118         * gst-libs/gst/rtp/gstbasertpdepayload.c:
3119         (gst_base_rtp_depayload_class_init),
3120         (gst_base_rtp_depayload_handle_sink_event), (create_segment_event),
3121         (gst_base_rtp_depayload_packet_lost),
3122         (gst_base_rtp_depayload_set_gst_timestamp):
3123         * gst-libs/gst/rtp/gstbasertpdepayload.h:
3124         Catch packet-lost events from the jitterbuffer and convert them into a
3125         vmethod call (lost-packet) so that depayloaders can do something smart.
3126         Also add a default packet-lost function that sends out a segment update
3127         to the decoders.
3128
3129 2008-05-02  Stefan Kost  <ensonic@users.sf.net>
3130
3131         * gst/playback/test4.c:
3132         * gst/playback/test5.c:
3133         * gst/playback/test6.c:
3134         * gst/playback/test7.c:
3135           Also include config.h when relying on defines from it. Fixes the
3136           build. Its been a please to serve :)
3137
3138 2008-05-02  Thijs Vermeir <thijsvermeir@gmail.com>
3139
3140         * gst/videotestsrc/videotestsrc.c (paint_setup_NV12),
3141         (paint_setup_NV21), (paint_hline_NV12_NV21):
3142         Add support for NV12 and NV21 in videotestsrc
3143
3144 2008-05-02  Sebastian Dröge  <slomo@circular-chaos.org>
3145
3146         * gst/videoscale/gstvideoscale.c:
3147         * gst/videoscale/vs_4tap.c: (vs_image_scale_4tap_Y):
3148         * gst/videoscale/vs_image.c: (vs_image_scale_nearest_RGBA),
3149         (vs_image_scale_linear_RGBA), (vs_image_scale_nearest_RGB),
3150         (vs_image_scale_linear_RGB), (vs_image_scale_nearest_YUYV),
3151         (vs_image_scale_linear_YUYV), (vs_image_scale_nearest_UYVY),
3152         (vs_image_scale_linear_UYVY), (vs_image_scale_nearest_Y),
3153         (vs_image_scale_linear_Y), (vs_image_scale_nearest_RGB565),
3154         (vs_image_scale_linear_RGB565), (vs_image_scale_nearest_RGB555),
3155         (vs_image_scale_linear_RGB555):
3156         Support 1x1 images as input and output as for example the BBC HQ new
3157         streams have 1x1 GIFs in the playlists for some reason.
3158
3159 2008-05-01  Tim-Philipp Müller  <tim.muller at collabora co uk>
3160
3161         * gst/playback/gstdecodebin.c: (free_pad_probe_for_element),
3162           (try_to_link_1):
3163           If we can't activate one of the decoders we plugged in (such as,
3164           say, musepackdec) for some reason (it might not support push mode,
3165           for example), remove any pad probes that close_pad_link() might
3166           have set up. This makes sure we later don't try to remove a probe
3167           for a pad that doesn't exist any longer, and avoids nast warnings
3168           and probably other things too.
3169
3170 2008-04-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
3171
3172         * gst/typefind/gsttypefindfunctions.c:
3173           (mpeg_video_stream_ctx_ensure_data), (mpeg_video_stream_type_find),
3174           (plugin_init):
3175           Rework mpeg video stream typefinding a bit more: make sure sequence,
3176           GOP, picture and slice headers appear in the order they should and
3177           that we've in fact at least had one of each; fix picture header
3178           detection; decouple picture and slice header check - don't assume
3179           they're at a fixed offset, there may be extra data in between. Also,
3180           announce varying degrees of probability depending on what we found
3181           exactly (multiple pictures, at least one picture, just sequence and
3182           GOP headers). Finally, in _ensure_data(), take into account that we
3183           might be typefinding smaller amounts of data, such as the first
3184           buffer of a stream, so fall back to the minimum size needed as long
3185           as that's available, instead of erroring out if there's less than
3186           2kB of data. Fixes #526173. Conveniently also doesn't recognise the
3187           fuzzed file from #399342 as valid.
3188
3189 2008-04-30  Michael Smith <msmith@songbirdnest.com>
3190
3191         * ext/theora/theoradec.c:
3192           Cool kids don't divide by zero.
3193           Treat PAR of x:0 as 1:1.
3194           Fixes #530719.
3195
3196 2008-04-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
3197
3198         * gst/typefind/gsttypefindfunctions.c: (MpegVideoStreamCtx),
3199           (mpeg_video_stream_ctx_advance), (mpeg_video_stream_ctx_ensure_data),
3200           (mpeg_video_stream_type_find):
3201           Refactor a bit: use context structure to track parsing offset and
3202           size of available data and make the code a bit clearer. Fixes bad
3203           memory access in #356937.
3204
3205 2008-04-28  Michael Smith <msmith@songbirdnest.com>
3206
3207         * gst/playback/test4.c:
3208         * gst/playback/test5.c:
3209         * gst/playback/test6.c:
3210         * gst/tcp/gstmultifdsink.c:
3211           Include stdlib.h and unistd.h only if the appropriate HAVE_*_H macro
3212           is defined.
3213
3214 2008-04-28  Wim Taymans  <wim.taymans@collabora.co.uk>
3215
3216         * gst-libs/gst/audio/gstbaseaudiosink.h:
3217         Clarify some docs.
3218
3219         * gst-libs/gst/audio/gstbaseaudiosrc.c: (slave_method_get_type),
3220         (gst_base_audio_src_class_init), (gst_base_audio_src_init),
3221         (gst_base_audio_src_set_slave_method),
3222         (gst_base_audio_src_get_slave_method),
3223         (gst_base_audio_src_set_property),
3224         (gst_base_audio_src_get_property), (gst_base_audio_src_create):
3225         * gst-libs/gst/audio/gstbaseaudiosrc.h:
3226         Add property and methods for selecting the clock slave method in the
3227         source, like in the sink.
3228         We only implement "none" and "re-timestamp" for now.
3229         API: gst_base_audio_src_set_slave_method()
3230         API: gst_base_audio_src_get_slave_method()
3231
3232 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
3233
3234         * gst-libs/gst/rtp/gstrtpbuffer.c:
3235         Fix the docs about the seqnum compare function, it returns a difference.
3236
3237 2008-04-24  Edward Hervey  <edward.hervey@collabora.co.uk>
3238
3239         * ext/alsa/gstalsadeviceprobe.c:
3240         (gst_alsa_get_device_list): Don't return before freeing up
3241         the allocated structures.
3242
3243 2008-04-24  Stefan Kost  <ensonic@users.sf.net>
3244
3245         * gst/playback/gstplaybin.c:
3246           Remove obsolete streaminfo code and fix a leak. Fixes #529546
3247
3248 2008-04-23  Stefan Kost  <ensonic@users.sf.net>
3249
3250         * ext/ogg/gstoggdemux.c:
3251           Revert the event part, that should not go in.
3252
3253 2008-04-23  Stefan Kost  <ensonic@users.sf.net>
3254
3255         * ext/ogg/gstoggdemux.c:
3256           Don't leak GstPluginFeatures when filtering.
3257
3258 2008-04-23  Stefan Kost  <ensonic@users.sf.net>
3259
3260         * sys/xvimage/xvimagesink.c:
3261           Add some logging for cases when grabbing the xv failed.
3262
3263 2008-04-21  David Schleef  <ds@schleef.org>
3264
3265         * ext/ogg/gstoggmux.c:
3266           Update Ogg/Dirac muxing.  Removes the weird "KW-DIRAC" bos
3267           packet.  Should conform to what we currently think is the
3268           final Ogg/Dirac muxing spec.
3269
3270 2008-04-21  David Schleef  <ds@schleef.org>
3271
3272         * sys/xvimage/xvimagesink.c:
3273           Fix typo that causes the overlay keying color to bright green
3274           on a 16-bit display.  Dark grey good.  Bright green bad.
3275
3276 2008-04-21  Stefan Kost  <ensonic@users.sf.net>
3277
3278         * ext/gnomevfs/gstgnomevfsuri.c:
3279           Add  FIXME comment about using uri-list for source and sink.
3280
3281 2008-04-20  Sebastian Dröge  <slomo@circular-chaos.org>
3282
3283         * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header):
3284         GST_TYPE_FRACTION contains gints so correctly cast gint64 arguments to
3285         vaargs functions to gint. Otherwise the fractions will get 0 set
3286         instead of the correct value on big endian systems. Fixes bug #529018.
3287
3288 2008-04-20  Sebastian Dröge  <slomo@circular-chaos.org>
3289
3290         * ext/gnomevfs/gstgnomevfssink.c:
3291         (gst_gnome_vfs_sink_uri_get_protocols):
3292         * ext/gnomevfs/gstgnomevfssrc.c:
3293         (gst_gnome_vfs_src_uri_get_protocols):
3294         * ext/gnomevfs/gstgnomevfsuri.c: (_internal_get_supported_uris),
3295         (gst_gnomevfs_get_supported_uris):
3296         Get the list of supported URI schemes in a threadsafe way and use the
3297         same list for the source and sink.
3298
3299 2008-04-20  Sebastian Dröge  <slomo@circular-chaos.org>
3300
3301         * ext/gio/gstgio.c: (_internal_get_supported_protocols),
3302         (gst_gio_get_supported_protocols):
3303         Don't generate a new supported protocols list on each call but cache
3304         it. It's supposed to be static anyway, this way we only leak it once
3305         per process.
3306
3307         * ext/gio/gstgiosink.c: (gst_gio_sink_base_init),
3308         (gst_gio_sink_class_init), (gst_gio_sink_finalize),
3309         (gst_gio_sink_set_property), (gst_gio_sink_get_property),
3310         (gst_gio_sink_start):
3311         * ext/gio/gstgiosink.h:
3312         * ext/gio/gstgiosrc.c: (gst_gio_src_base_init),
3313         (gst_gio_src_class_init), (gst_gio_src_finalize),
3314         (gst_gio_src_set_property), (gst_gio_src_get_property),
3315         (gst_gio_src_start):
3316         * ext/gio/gstgiosrc.h:
3317         API: Add "file" properties where one can set a GFile as
3318         source/destination.
3319
3320         Add locking to the properties and use
3321         gst_element_class_set_details_simple() instead of a static
3322         GstElementDetails struct.
3323
3324 2008-04-19  Sebastian Dröge  <slomo@circular-chaos.org>
3325
3326         * gst/typefind/gsttypefindfunctions.c: (musepack_type_find),
3327         (plugin_init):
3328         Add "mpp" and "mp+" as possible extensions for MusePack files.
3329
3330         Add typefinding for MusePack StreamVersion 8 files and include the
3331         stream version in the caps.
3332
3333 2008-04-19  Sebastian Dröge  <slomo@circular-chaos.org>
3334
3335         * gst-libs/gst/rtp/gstrtppayloads.c:
3336         (gst_rtp_payload_info_for_name):
3337         Use g_ascii_strcasecmp() instead of the deprecated g_strcasecmp().
3338
3339 2008-04-18  Tim-Philipp Müller  <tim at centricular dot net>
3340
3341         * configure.ac:
3342           Bump Gtk+ requirement to 2.12.0 for gtk_range_set_fill_level
3343           (NB: this only affects compilation of some of the examples).
3344           Remove some configure.ac cruft that's not needed any longer.
3345
3346 2008-04-18  Edward Hervey  <edward.hervey@collabora.co.uk>
3347
3348         * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_chain):
3349         Don't validate the payload if there isn't any.
3350         Fixes #525915
3351
3352 2008-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
3353
3354         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_may_start):
3355         Use g_atomic_int_set() instead of gst_atomic_int_set().
3356
3357 2008-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
3358
3359         * ext/gio/gstgio.c: (gst_gio_get_supported_protocols):
3360         Return NULL instead of a gchar * array with one NULL element if we
3361         don't get any supported URI schemes from GIO.
3362
3363 2008-04-15  Stefan Kost  <ensonic@users.sf.net>
3364
3365         * gst/audiotestsrc/gstaudiotestsrc.c:
3366           Remove cpp style commented old code.
3367
3368 2008-04-15  Stefan Kost  <ensonic@users.sf.net>
3369
3370         * gst/playback/gstdecodebin2.c:
3371           Fix signal docs.
3372
3373 2008-04-14  Tim-Philipp Müller  <tim at centricular dot net>
3374
3375         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init),
3376           (gst_text_overlay_init):
3377           Fix textoverlay unit test again by making the supposed default
3378           value for the wait-text property the actual default value.
3379           Also fix Since: tag for new property.
3380
3381 2008-04-11  Tim-Philipp Müller  <tim at centricular dot net>
3382
3383         * gst-libs/gst/video/video.c: (gst_video_format_new_caps),
3384           (gst_video_format_to_fourcc), (gst_video_format_get_row_stride),
3385           (gst_video_format_get_pixel_stride),
3386           (gst_video_format_get_component_width),
3387           (gst_video_format_get_component_height),
3388           (gst_video_format_get_component_offset), (gst_video_format_get_size),
3389           (gst_video_format_convert):
3390           Add guards to these functions to ensure sane input values.
3391
3392         * tests/check/libs/video.c:
3393           Fix unit test not to create caps with width=0 and height=0.
3394
3395 2008-04-11  Wim Taymans  <wim.taymans@collabora.co.uk>
3396
3397         * docs/design/draft-keyframe-force.txt:
3398         Fix typo.
3399
3400         * gst/playback/gstqueue2.c: (update_buffering),
3401         (gst_queue_handle_src_query):
3402         Set buffering mode in the messages.
3403         Set buffering percent in the query.
3404
3405         * tests/examples/seek/seek.c: (update_fill), (msg_state_changed),
3406         (do_stream_buffering), (do_download_buffering), (msg_buffering):
3407         Do some more fancy things based on the buffering method in use.
3408
3409 2008-04-09  Wim Taymans  <wim.taymans@collabora.co.uk>
3410
3411         * tests/examples/seek/seek.c: (update_fill), (set_update_fill),
3412         (play_cb), (pause_cb), (stop_cb), (msg_state_changed),
3413         (msg_buffering), (main):
3414         Add basic download reports to seek using the new buffering API.
3415
3416 2008-04-09  Wim Taymans  <wim.taymans@collabora.co.uk>
3417
3418         * gst/playback/gstqueue2.c: (update_buffering),
3419         (gst_queue_close_temp_location_file), (gst_queue_handle_src_query),
3420         (gst_queue_src_checkgetrange_function):
3421         Include extra buffering stats in the buffering message.
3422         Implement BUFFERING query.
3423
3424         * gst/playback/gsturidecodebin.c: (do_async_start),
3425         (do_async_done), (type_found), (setup_streaming), (setup_source),
3426         (gst_uri_decode_bin_change_state):
3427         Only add decodebin2 when the type is found in streaming mode.
3428         Make uridecodebin async to PAUSED even when we don't have decodebin2
3429         added yet.
3430
3431 2008-04-09  Sebastian Dröge  <slomo@circular-chaos.org>
3432
3433         * ext/gio/gstgio.c: (gst_gio_get_supported_protocols):
3434         Filter cdda from the supported URI schemes. We can't support
3435         musicbrainz tags and everything else one expects from a cdda source
3436         with GIO. Fixes bug #526794.
3437
3438 2008-04-07  Jan Schmidt  <jan.schmidt@sun.com>
3439
3440         * sys/xvimage/xvimagesink.c (gst_xvimagesink_xvimage_new),
3441         (gst_xvimagesink_buffer_alloc):
3442         Fix calculation of 'expected size' for YV12 buffers.
3443         Be a little more verbose in the debug output for buffer-alloc'ed
3444         buffers which turn out to have the wrong size.
3445
3446 2008-04-07  Tim-Philipp Müller  <tim at centricular dot net>
3447
3448         * NEWS:
3449         * RELEASE:
3450         * gst-plugins-base.doap:
3451           Merge other changes from 0.10.19 release branch.
3452
3453 2008-04-06  Tim-Philipp Müller  <tim at centricular dot net>
3454
3455         * gst-libs/gst/audio/gstbaseaudiosink.c:
3456           (gst_base_audio_sink_class_init):
3457         * gst-libs/gst/audio/gstbaseaudiosrc.c:
3458           (gst_base_audio_src_class_init):
3459         * gst/playback/gstplayback.c: (plugin_init):
3460         * gst/volume/gstvolume.c: (plugin_init):
3461           Work around missing bits of thread-safety on older GLibs some
3462           more to avoid assertions when starting up multiple playbin
3463           objects concurrently (see #512382).
3464
3465 2008-04-06  Tim-Philipp Müller  <tim at centricular dot net>
3466
3467         * gst-libs/gst/pbutils/missing-plugins.c: (copy_and_clean_caps):
3468           Remove some more fields.
3469
3470 2008-04-06  Sebastian Dröge  <slomo@circular-chaos.org>
3471
3472         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
3473
3474         * configure.ac:
3475         Actually build dlls when cross-compiling with mingw32.
3476         Fixes bug #526247.
3477
3478 2008-04-03  Tim-Philipp Müller  <tim at centricular dot net>
3479
3480         * configure.ac:
3481           Bump version to 0.10.19.1 after the unplanned 0.10.19 release.
3482
3483 2008-04-03  Wim Taymans  <wim.taymans@collabora.co.uk>
3484
3485         * tests/examples/seek/seek.c: (play_cb), (pause_cb), (stop_cb),
3486         (msg_buffering), (connect_bus_signals), (main):
3487         Add statusbar.
3488         Add buffering support with feedback in the statusbar.
3489
3490 2008-04-03  Tim-Philipp Müller  <tim at centricular dot net>
3491
3492         * ext/ogg/gstoggmux.c:
3493           Fix sample pipeline description.
3494
3495 2008-04-03  Stefan Kost  <ensonic@users.sf.net>
3496
3497         * docs/plugins/Makefile.am:
3498         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
3499         * docs/plugins/gst-plugins-base-plugins-overrides.txt:
3500         * docs/plugins/gst-plugins-base-plugins-sections.txt:
3501           Add playbin, playbin2, decodebin, decodebin2, uridecodebin and oggmux
3502
3503         * docs/plugins/gst-plugins-base-plugins.args:
3504         * docs/plugins/gst-plugins-base-plugins.hierarchy:
3505         * docs/plugins/gst-plugins-base-plugins.interfaces:
3506         * docs/plugins/gst-plugins-base-plugins.prerequisites:
3507         * docs/plugins/inspect/plugin-adder.xml:
3508         * docs/plugins/inspect/plugin-alsa.xml:
3509         * docs/plugins/inspect/plugin-audioconvert.xml:
3510         * docs/plugins/inspect/plugin-audiorate.xml:
3511         * docs/plugins/inspect/plugin-audioresample.xml:
3512         * docs/plugins/inspect/plugin-audiotestsrc.xml:
3513         * docs/plugins/inspect/plugin-cdparanoia.xml:
3514         * docs/plugins/inspect/plugin-decodebin.xml:
3515         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
3516         * docs/plugins/inspect/plugin-gdp.xml:
3517         * docs/plugins/inspect/plugin-gnomevfs.xml:
3518         * docs/plugins/inspect/plugin-libvisual.xml:
3519         * docs/plugins/inspect/plugin-ogg.xml:
3520         * docs/plugins/inspect/plugin-pango.xml:
3521         * docs/plugins/inspect/plugin-playback.xml:
3522         * docs/plugins/inspect/plugin-queue2.xml:
3523         * docs/plugins/inspect/plugin-subparse.xml:
3524         * docs/plugins/inspect/plugin-tcp.xml:
3525         * docs/plugins/inspect/plugin-theora.xml:
3526         * docs/plugins/inspect/plugin-typefindfunctions.xml:
3527         * docs/plugins/inspect/plugin-uridecodebin.xml:
3528         * docs/plugins/inspect/plugin-video4linux.xml:
3529         * docs/plugins/inspect/plugin-videorate.xml:
3530         * docs/plugins/inspect/plugin-videoscale.xml:
3531         * docs/plugins/inspect/plugin-videotestsrc.xml:
3532         * docs/plugins/inspect/plugin-volume.xml:
3533         * docs/plugins/inspect/plugin-vorbis.xml:
3534         * docs/plugins/inspect/plugin-ximagesink.xml:
3535         * docs/plugins/inspect/plugin-xvimagesink.xml:
3536           Update introspection data.
3537
3538         * ext/ogg/gstoggmux.c:
3539           Document oggmux.
3540
3541         * gst/playback/gstdecodebin2.c:
3542           Don't use gtk-doc style comment start for private stuff, but make it
3543           formatted like this for consistency.
3544
3545 2008-04-03  Wim Taymans  <wim.taymans@collabora.co.uk>
3546
3547         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init),
3548         (gst_decode_bin_init), (gst_decode_bin_dispose),
3549         (gst_decode_bin_set_sink_caps), (gst_decode_bin_get_sink_caps),
3550         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
3551         (analyze_new_pad), (connect_pad), (expose_pad),
3552         (gst_decode_group_new), (gst_decode_group_control_demuxer_pad),
3553         (gst_decode_group_expose), (gst_decode_group_free),
3554         (do_async_start), (do_async_done), (gst_decode_bin_change_state):
3555         Remove fakesink hack, we can now implement this more elegantly.
3556         Added property to bypass typefinding.
3557         Removed underrun callback and demuxer pad probe, we now use the srcpad
3558         probe to expose groups.
3559         API::sink-caps property
3560
3561         * gst/playback/gstplaybin2.c: (no_more_pads_cb):
3562         Guard against multiple emissions of the no_more_pads signal, which
3563         happens when we are dealing with chained oggs.
3564
3565         * gst/playback/gsturidecodebin.c: (remove_decoders),
3566         (make_decoder), (type_found), (setup_streaming), (source_new_pad),
3567         (setup_source):
3568         For streams, use our own typefind element and plug our queue after it.
3569         We will need this to determine the type of buffering to use for the
3570         queue soon.
3571
3572 2008-04-03  Wim Taymans  <wim.taymans@collabora.co.uk>
3573
3574         * gst-libs/gst/audio/gstbaseaudiosink.c:
3575         (gst_base_audio_sink_skew_slaving), (gst_base_audio_sink_render):
3576         Guard against over and underflows because of clock slaving.
3577         When we are using our own clock, still compensate for any calibrations
3578         that we might have done to our clock.
3579
3580 2008-04-03  Wim Taymans  <wim.taymans@collabora.co.uk>
3581
3582         * ext/theora/theoradec.c: (theora_handle_type_packet),
3583         (theora_dec_chain):
3584         Don't try to do anything fancy with the return code from pushing an
3585         event, it does not have enough information to turn it into a
3586         GST_FLOW_ERROR.
3587
3588 2008-04-03  Wim Taymans  <wim.taymans@collabora.co.uk>
3589
3590         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_reset),
3591         (gst_ogg_demux_chain_elem_pad):
3592         Add small debug line.
3593         Pass return code from the internal decoder instead of the too generic
3594         GST_FLOW_ERROR.
3595
3596 2008-04-03  Sebastian Dröge  <slomo@circular-chaos.org>
3597
3598         * gst-libs/gst/cdda/Makefile.am:
3599         * gst-libs/gst/cdda/base64.c:
3600         * gst-libs/gst/cdda/base64.h:
3601         * gst-libs/gst/cdda/gstcddabasesrc.c:
3602         (gst_cddabasesrc_calculate_musicbrainz_discid):
3603         Use GLib's base64 implementation instead of our own.
3604
3605 2008-04-02  Wim Taymans  <wim.taymans@collabora.co.uk>
3606
3607         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
3608         (gst_ogg_demux_read_chain):
3609         Refix oggdemux, we only have a problem if we failed to find a chain and
3610         we are not EOF.
3611
3612 2008-04-02  Wim Taymans  <wim.taymans@collabora.co.uk>
3613
3614         Patch by: Victor STINNER <victor dot stinner at haypocalc dot com>
3615
3616         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
3617         (gst_ogg_demux_read_chain):
3618         When we fail to find a BOS page and we and up with no chain, error out
3619         properly instead of segfaulting. Fixes #525665.
3620
3621 2008-04-02  Wim Taymans  <wim.taymans@collabora.co.uk>
3622
3623         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
3624         (gst_ogg_demux_read_chain), (gst_ogg_demux_handle_page):
3625         The new-pad-group sequence is add-pads, no-more-pads, add-pads,
3626         no-more-pads...
3627
3628 2008-04-02  Wim Taymans  <wim.taymans@collabora.co.uk>
3629
3630         * gst/playback/gstqueue2.c: (update_out_rates),
3631         (gst_queue_open_temp_location_file),
3632         (gst_queue_close_temp_location_file), (gst_queue_handle_src_event),
3633         (gst_queue_handle_src_query), (gst_queue_set_property):
3634         Update the estimated input data when we push out a buffer.
3635         Add some debug info about the temp file.
3636         Only forward src events when we are not using a temp file.
3637         Don't block the duration query, we need to find something better.
3638         Don't leak the temp filename.
3639
3640 2008-04-01  Sebastian Dröge  <slomo@circular-chaos.org>
3641
3642         * configure.ac:
3643         Require GLib 2.12 and liboil 0.3.14.
3644
3645         * gst/volume/gstvolume.c: (volume_process_double):
3646         Unconditionally use liboil 0.3.14 function.
3647
3648 2008-03-31  Wim Taymans  <wim.taymans@collabora.co.uk>
3649
3650         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
3651         ms-gsm can have arbitrarty sample rates. See #481354.
3652
3653 2008-03-28  Wim Taymans  <wim.taymans@collabora.co.uk>
3654
3655         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
3656         MP4S is generic MPEG-4, not a microsoft variant.
3657
3658 2008-03-27  Michael Smith <msmith@fluendo.com>
3659
3660         * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_chain):
3661           Check the body CRC (if set) when depayloading.
3662           Fixes #522401.
3663
3664 2008-03-24  Tim-Philipp Müller  <tim at centricular dot net>
3665
3666         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init):
3667           Fix Since: version for new property.
3668
3669 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
3670
3671         * gst-libs/gst/rtsp/gstrtspconnection.c:
3672         (gst_rtsp_connection_connect), (gst_rtsp_connection_write),
3673         (gst_rtsp_connection_read_internal), (gst_rtsp_connection_poll):
3674         Don't error when poll_wait returns EAGAIN.
3675
3676 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
3677
3678         * gst/playback/gstqueue2.c: (gst_queue_is_filled):
3679         The queue is never filled when there are no buffers in the queue at all.
3680         Fixes #523993.
3681
3682 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
3683
3684         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
3685         (init_group), (free_group), (gst_play_bin_init),
3686         (gst_play_bin_finalize), (gst_play_bin_set_uri),
3687         (gst_play_bin_set_suburi), (gst_play_bin_get_video_tags),
3688         (gst_play_bin_get_audio_tags), (gst_play_bin_get_text_tags),
3689         (gst_play_bin_set_current_video_stream),
3690         (gst_play_bin_set_current_audio_stream),
3691         (gst_play_bin_set_current_text_stream),
3692         (gst_play_bin_set_encoding), (gst_play_bin_set_property),
3693         (gst_play_bin_get_property), (pad_added_cb), (pad_removed_cb),
3694         (no_more_pads_cb), (perform_eos), (autoplug_select_cb),
3695         (activate_group), (deactivate_group), (setup_next_source),
3696         (save_current_group), (gst_play_bin_change_state):
3697         Update some docs.
3698         Add new locks and conds to protect pipeline creation and group
3699         switching.
3700         Implement the sub-uri property.
3701         Keep track of pending uridecodebin creation and configure the output
3702         pipeline after all streams are configured.
3703         Propagate subtitle encoding to the uridecodebins.
3704         Implement getting the video/audio/visualisation elements.
3705         Use input-selector for stream switching.
3706         If we are asked to do visualisation, prefer to autoplug raw sinks
3707         instead of sinks that accept encoded data.
3708
3709 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
3710
3711         * gst/playback/gstplaysink.c: (gst_play_sink_class_init),
3712         (gst_play_sink_init), (gst_play_sink_dispose),
3713         (gst_play_sink_set_video_sink), (gst_play_sink_get_video_sink),
3714         (gst_play_sink_set_audio_sink), (gst_play_sink_get_audio_sink),
3715         (gst_play_sink_vis_unblocked), (gst_play_sink_vis_blocked),
3716         (gst_play_sink_set_vis_plugin), (gst_play_sink_get_vis_plugin),
3717         (gst_play_sink_set_volume), (gst_play_sink_get_volume),
3718         (gst_play_sink_set_mute), (gen_video_chain), (gen_text_chain),
3719         (gen_audio_chain), (gen_vis_chain), (gst_play_sink_reconfigure),
3720         (gst_play_sink_set_font_desc), (gst_play_sink_get_font_desc),
3721         (gst_play_sink_send_event_to_sink), (gst_play_sink_change_state):
3722         * gst/playback/gstplaysink.h:
3723         Add methods to get audio/video/vis elements.
3724         Add methods to set the font description for the overlay.
3725         Remove properties, we're using this element with its methods only.
3726         Add support for subtitles.
3727         Rearrange the locking a bit to not use the object lock for protecting
3728         the pipeline construction.
3729         Try to use the volume and mute property on the sink when its available.
3730         Implement the mute option with volume when the sink does not have a mute
3731         property.
3732         Only add volume element when the sink has no volume property.
3733         Only do visualisations with raw audio pads.
3734
3735 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
3736
3737         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init),
3738         (gst_text_overlay_init), (gst_text_overlay_set_property),
3739         (gst_text_overlay_get_property), (gst_text_overlay_src_event),
3740         (gst_text_overlay_text_event), (gst_text_overlay_video_event),
3741         (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
3742         (gst_text_overlay_change_state):
3743         * ext/pango/gsttextoverlay.h:
3744         Add property to configure waiting for text on the textpad or not, with
3745         the default behaviour being the old one (always wait for text before
3746         rendering the video). This default behaviour is usually not the best one
3747         because the text stream can very sparse and could require queueing a lot
3748         of video.
3749         Fix the flushing and EOS handing so that we don't mix up their meaning.
3750
3751 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
3752
3753         * gst/playback/gsturidecodebin.c:
3754         (gst_uri_decode_bin_autoplug_factories),
3755         (gst_uri_decode_bin_class_init), (gst_uri_decode_bin_init),
3756         (gst_uri_decode_bin_finalize), (gst_uri_decode_bin_set_encoding),
3757         (gst_uri_decode_bin_set_property),
3758         (gst_uri_decode_bin_get_property), (no_more_pads_full),
3759         (new_decoded_pad_cb), (gen_source_element), (remove_decoders),
3760         (proxy_autoplug_factories_signal), (make_decoder),
3761         (source_new_pad), (setup_source):
3762         Add a readonly source property and notify.
3763         Add new lock for protecting the construction of the pipeline.
3764         Keep track of the decodebins we plugged.
3765         Correctly proxy the autoplug signal so that it actually continues.
3766         Proxy subtitle-encoding to the decodebins.
3767
3768 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
3769
3770         * tests/examples/seek/seek.c: (audio_toggle_cb), (video_toggle_cb),
3771         (text_toggle_cb), (update_streams), (main):
3772         Rearrange some buttons in playbin2 and make some other boxes insensitive
3773         when needed.
3774         Add language codes to subtitle selection boxes when we gind the right
3775         tags for the streams.
3776
3777 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
3778
3779         * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose),
3780         (gst_decode_bin_set_caps), (gst_decode_bin_get_caps),
3781         (gst_decode_bin_set_subs_encoding),
3782         (gst_decode_bin_get_subs_encoding),
3783         (gst_decode_bin_autoplug_factories), (connect_pad), (are_raw_caps),
3784         (deactivate_free_recursive):
3785         Protect caps property with the object lock.
3786         Protect encoding property with the object lock.
3787         Keep list of elements we added that have the subtitle-encoding property.
3788         Distribute the subtitle-encoding to all of the elements when it
3789         changes.
3790
3791 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
3792
3793         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_release):
3794         Small debug improvement.
3795
3796         * gst-libs/gst/audio/gstbaseaudiosink.c:
3797         (gst_base_audio_sink_render):
3798         Fix bug in determining the sample start/stop position, we want to base
3799         this decision on the fact that we are going forwards or backwards, not
3800         slower or faster. This fixes some ugly resync warnings when playing at
3801         very slow speeds.
3802
3803 2008-03-23  Sebastian Dröge  <slomo@circular-chaos.org>
3804
3805         * ext/gio/gstgio.c: (gst_gio_get_supported_protocols):
3806         Correctly set the supported URI schemes and don't leave
3807         some schemes in the middle or at the start at NULL.
3808
3809 2008-03-23  Tim-Philipp Müller  <tim at centricular dot net>
3810
3811         * tests/check/elements/gdpdepay.c:
3812           Make test compile without unused function/variable warnings on PPC.
3813  
3814 2008-03-22  Sebastian Dröge  <slomo@circular-chaos.org>
3815
3816         * configure.ac:
3817         * ext/alsa/gstalsamixerelement.c:
3818         (gst_alsa_mixer_element_class_init):
3819         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init):
3820         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init):
3821         * ext/cdparanoia/gstcdparanoiasrc.c:
3822         (gst_cd_paranoia_src_class_init):
3823         * ext/gio/gstgiosink.c: (gst_gio_sink_class_init):
3824         * ext/gio/gstgiosrc.c: (gst_gio_src_class_init):
3825         * ext/gio/gstgiostreamsink.c: (gst_gio_stream_sink_class_init):
3826         * ext/gio/gstgiostreamsrc.c: (gst_gio_stream_src_class_init):
3827         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
3828         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init):
3829         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init):
3830         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init):
3831         * ext/pango/gsttextrender.c: (gst_text_render_class_init):
3832         * ext/theora/theoradec.c: (gst_theora_dec_class_init):
3833         * ext/theora/theoraenc.c: (gst_theora_enc_class_init):
3834         * ext/theora/theoraparse.c: (gst_theora_parse_class_init):
3835         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_class_init):
3836         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
3837         (gst_audio_filter_template_class_init):
3838         * gst-libs/gst/audio/gstbaseaudiosink.c:
3839         (gst_base_audio_sink_class_init):
3840         * gst-libs/gst/audio/gstbaseaudiosrc.c:
3841         (gst_base_audio_src_class_init):
3842         * gst-libs/gst/cdda/gstcddabasesrc.c:
3843         (gst_cdda_base_src_class_init):
3844         * gst-libs/gst/interfaces/mixertrack.c:
3845         (gst_mixer_track_class_init):
3846         * gst-libs/gst/rtp/gstbasertpdepayload.c:
3847         (gst_base_rtp_depayload_class_init):
3848         * gst-libs/gst/rtp/gstbasertppayload.c:
3849         (gst_basertppayload_class_init):
3850         * gst/audioconvert/gstaudioconvert.c:
3851         (gst_audio_convert_class_init):
3852         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_class_init):
3853         * gst/audioresample/gstaudioresample.c:
3854         (gst_audioresample_class_init):
3855         * gst/audiotestsrc/gstaudiotestsrc.c:
3856         (gst_audio_test_src_class_init):
3857         * gst/gdp/gstgdppay.c: (gst_gdp_pay_class_init):
3858         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init):
3859         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
3860         (preroll_unlinked):
3861         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
3862         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init):
3863         * gst/playback/gstplaysink.c: (gst_play_sink_class_init):
3864         * gst/playback/gstqueue2.c: (gst_queue_class_init):
3865         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init):
3866         * gst/playback/gststreamselector.c: (gst_selector_pad_class_init),
3867         (gst_stream_selector_class_init):
3868         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_class_init):
3869         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
3870         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
3871         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
3872         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_class_init):
3873         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_class_init):
3874         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_class_init):
3875         * gst/videorate/gstvideorate.c: (gst_video_rate_class_init):
3876         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init):
3877         * gst/videotestsrc/gstvideotestsrc.c:
3878         (gst_video_test_src_class_init):
3879         * gst/volume/gstvolume.c: (gst_volume_class_init):
3880         * sys/v4l/gstv4lelement.c: (gst_v4lelement_class_init):
3881         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
3882         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
3883         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init):
3884         * sys/ximage/ximagesink.c: (gst_ximagesink_class_init):
3885         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_class_init):
3886         Use G_PARAM_STATIC_STRINGS everywhere for GParamSpecs that use
3887         static strings (i.e. all). This gives us less memory usage,
3888         fewer allocations and thus less memory defragmentation. Depend
3889         on core CVS for this. Fixes bug #523806.
3890
3891 2008-03-22  Sebastian Dröge  <slomo@circular-chaos.org>
3892
3893         * ext/gio/gstgio.c: (gst_gio_get_supported_protocols):
3894         Filter http and https protocols. GIO/GVfs handles them but it's
3895         impossible to implement iradio/icecast with it. Better use
3896         souphttpsrc or something else for this.
3897
3898         * ext/gio/gstgiobasesrc.c: (gst_gio_base_src_get_size):
3899         If getting the file informations by a query fails try it with the
3900         seek-to-end trick too.
3901
3902 2008-03-21  Sebastian Dröge  <slomo@circular-chaos.org>
3903
3904         * gst/volume/gstvolume.c: (gst_volume_interface_supported),
3905         (gst_volume_base_init), (gst_volume_class_init),
3906         (volume_process_double), (volume_process_float),
3907         (volume_transform_ip), (plugin_init):
3908         memset buffers to zero if we get a GAP buffer. We usually see a
3909         buffer as one unit so let's handle it as one and don't care about
3910         volume changes while processing one buffer.
3911         Also clean up some stuff a bit.
3912
3913 2008-03-21  Sebastian Dröge  <slomo@circular-chaos.org>
3914
3915         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
3916         (gst_audio_convert_create_silence_buffer),
3917         (gst_audio_convert_transform):
3918         Make audioconvert GAP-aware by outputting silence buffers when the
3919         input has the GAP flag set. This is up to 8x faster.
3920         Based on a patch by Stefan Kost. Fixes bug #517813.
3921
3922 2008-03-21  Sebastian Dröge  <slomo@circular-chaos.org>
3923
3924         * gst/volume/gstvolume.c: (volume_process_double):
3925         Use oil_scalarmultiply_f64_ns() for double processing when it's
3926         available at compile time.
3927
3928 2008-03-21  Sebastian Dröge  <slomo@circular-chaos.org>
3929
3930         * configure.ac:
3931         Fix lrint/lrintf checks to actually work. These functions are
3932         in libm on Linux at least so try to link to it.
3933
3934 2008-03-21  Jan Schmidt  <jan.schmidt@sun.com>
3935
3936         * configure.ac:
3937         Back to development - 0.10.18.1
3938
3939 === release 0.10.18 ===
3940
3941 2008-03-20  Jan Schmidt <jan.schmidt@sun.com>
3942
3943         * configure.ac:
3944           releasing 0.10.18, "I will follow"
3945
3946 2008-03-18  Jan Schmidt  <jan.schmidt@sun.com>
3947
3948         * configure.ac:
3949         * win32/common/config.h:
3950         0.10.17.4 pre-release
3951
3952 2008-03-18  Wim Taymans  <wim.taymans@collabora.co.uk>
3953
3954         * gst-libs/gst/sdp/gstsdpmessage.c: (gst_sdp_message_dump):
3955         Use GST_STR_NULL when trying to print strings that could be NULL because
3956         this might crash on some platforms. See #520808.
3957
3958 2008-03-18  Wim Taymans  <wim.taymans@collabora.co.uk>
3959
3960         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
3961
3962         * gst-libs/gst/rtsp/gstrtspconnection.c:
3963         (gst_rtsp_connection_connect), (gst_rtsp_connection_write),
3964         (read_line), (gst_rtsp_connection_read_internal):
3965         Generic Windows fixes that makes libgstrtsp work on Windows when
3966         coupled with the new GstPoll API. See #520808.
3967
3968 2008-03-17  Sebastian Dröge  <slomo@circular-chaos.org>
3969
3970         Patch by: Milosz Derezynski <internalerror at gmail dot com>
3971
3972         * ext/gio/gstgiobasesrc.c: (gst_gio_base_src_create):
3973           If seeking to a new position succeeds don't simply return from
3974           create() without creating a buffer. Do this only in the case
3975           seeking to the new position fails. Fixes bug #523054.
3976
3977 2008-03-17  Tim-Philipp Müller  <tim at centricular dot net>
3978
3979         * gst-libs/gst/video/video.c: (gst_video_format_parse_caps),
3980           (gst_video_format_from_rgba32_masks):
3981           Fix gst_video_format_parse_caps() for RGB caps with alpha channel
3982           (#522635).
3983
3984         * tests/check/libs/video.c: (test_parse_caps_rgb), (video_suite):
3985           Add unit test for the RGB caps parsing and creation, checking for
3986           internal consistency of the new API and consistency of the API with
3987           the old GST_VIDEO_CAPS_* defines.
3988
3989 2008-03-14  David Schleef  <ds@schleef.org>
3990
3991         * gst/videotestsrc/videotestsrc.c:  Oops, revert last change
3992           because -base is in freeze.
3993
3994 2008-03-14  David Schleef  <ds@schleef.org>
3995
3996         Patch by: William M. Brack
3997
3998         * gst/videotestsrc/videotestsrc.c: Fix Bayer pattern generation.
3999
4000 2008-03-14  Wim Taymans  <wim.taymans@collabora.co.uk>
4001
4002         * gst/playback/gststreamselector.c: (gst_selector_pad_event),
4003         (gst_selector_pad_chain):
4004         * gst/playback/gststreamselector.h:
4005         Revert change that caused regression until a real fix is found.
4006         Fixes #522203.
4007
4008 2008-03-12  Michael Smith <msmith@fluendo.com>
4009
4010         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps):
4011         * gst-libs/gst/audio/gstringbuffer.h:
4012           Rename recently added buffer types to make more sense.
4013         * ext/alsa/gstalsasink.c: (alsasink_parse_spec),
4014         (gst_alsasink_write):
4015           Adapt for above API changes.
4016           Fixes bug #520523.
4017
4018 2008-03-11  Sebastian Dröge  <slomo@circular-chaos.org>
4019
4020         * win32/common/libgstnetbuffer.def:
4021         Add new symbol gst_netaddress_equal. Fixes bug #521743.
4022
4023 2008-03-11  Jan Schmidt  <jan.schmidt@sun.com>
4024
4025         * configure.ac:
4026         * win32/common/config.h:
4027         0.10.17.3 pre-release
4028
4029 2008-03-10  Wim Taymans  <wim.taymans@collabora.co.uk>
4030
4031         * gst-libs/gst/audio/gstbaseaudiosrc.c:
4032         (gst_base_audio_src_create):
4033         Fix duration when no clock was provided. Fixes #520300.
4034
4035 2008-03-07  Wim Taymans  <wim.taymans@collabora.co.uk>
4036
4037         Patch by: Olivier Crete  <tester at tester ca>
4038
4039         * docs/libs/gst-plugins-base-libs-sections.txt:
4040         * gst-libs/gst/netbuffer/gstnetbuffer.c: (gst_netaddress_equal):
4041         * gst-libs/gst/netbuffer/gstnetbuffer.h:
4042         Add trivial function to compare GstNetAddress. See #520626.
4043         API: GstNetBuffer::gst_netaddress_equal
4044
4045 2008-03-07  Wim Taymans  <wim.taymans@collabora.co.uk>
4046
4047         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
4048         Update mode property docs, it's deprecated now.
4049
4050 2008-03-07  Wim Taymans  <wim.taymans@collabora.co.uk>
4051
4052         * gst-libs/gst/rtsp/gstrtspconnection.c:
4053         (gst_rtsp_connection_create):
4054         * gst/tcp/gstmultifdsink.c: (gst_fdset_mode_get_type),
4055         (gst_multi_fd_sink_class_init), (gst_multi_fd_sink_start):
4056         * gst/tcp/gstmultifdsink.h:
4057         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_start):
4058         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_start):
4059         Remove GstPollMode from gstpoll constructor.
4060
4061 2008-03-04  Jan Schmidt  <jan.schmidt@sun.com>
4062
4063         * configure.ac:
4064         * win32/common/config.h:
4065         0.10.17.2 pre-release
4066
4067 2008-03-03  Jan Schmidt  <jan.schmidt@sun.com>
4068
4069         * gst/Makefile.am:
4070         GST_PLUGINS_ALL correctly lists subparse and tcp now, don't distclean
4071         them twice
4072
4073         * win32/common/libgstinterfaces.def:
4074         * win32/common/libgstrtp.def:
4075         Add new API to the defs
4076
4077 2008-03-03  Peter Kjellerstedt  <pkj@axis.com>
4078
4079         Patch by: Mersad Jelacic  <mersad at axis dot com>
4080
4081         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
4082         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
4083         API: add gst_base_rtp_audio_payload_set_samplebits_options() to make it
4084         possible to specify the sample size in bits. (#509637)
4085
4086 2008-03-03  Tim-Philipp Müller  <tim at centricular dot net>
4087
4088         * tests/check/libs/mixer.c:
4089           Add a few simple checks for the new message types.
4090
4091 2008-03-03  Tim-Philipp Müller  <tim at centricular dot net>
4092
4093         * docs/libs/gst-plugins-base-libs-sections.txt:
4094         * gst-libs/gst/interfaces/mixer.c: (gst_mixer_option_changed),
4095           (gst_mixer_options_list_changed), (gst_mixer_mixer_changed),
4096           (gst_mixer_message_get_type),
4097           (gst_mixer_message_parse_option_changed),
4098           (gst_mixer_message_parse_options_list_changed):
4099         * gst-libs/gst/interfaces/mixer.h: (GstMixerType),
4100           (GST_MIXER_MESSAGE_OPTION_CHANGED),
4101           (GST_MIXER_MESSAGE_OPTIONS_LIST_CHANGED),
4102           (GST_MIXER_MESSAGE_MIXER_CHANGED):
4103           API: add gst_mixer_options_list_changed(), gst_mixer_mixer_changed()
4104           and gst_mixer_message_parse_options_list_changed(). Fixes #519916.
4105
4106 2008-03-03  Tim-Philipp Müller  <tim at centricular dot net>
4107
4108         * gst-libs/gst/interfaces/mixeroptions.c: (gst_mixer_options_init),
4109           (gst_mixer_options_get_values):
4110         * gst-libs/gst/interfaces/mixeroptions.h:
4111           (GST_MIXER_OPTIONS_GET_CLASS), (GstMixerOptionsClass),
4112           (_GstMixerOptions), (_GstMixerOptionsClass):
4113           API: add GstMixerOptions::get_values vfunc (#519906)
4114
4115 2008-03-03  Peter Kjellerstedt  <pkj@axis.com>
4116
4117         * configure.ac:
4118         Use AG_GST_CHECK_PLUGIN and AG_GST_DISABLE_PLUGIN to simplify which
4119         plug-ins are included/excluded. (#498222)
4120
4121 2008-03-03  Sebastian Dröge  <slomo@circular-chaos.org>
4122
4123         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
4124         Add typefinder for IMelody files, using audio/x-imelody.
4125         See bug #519516.
4126
4127 2008-03-03  Sebastian Dröge  <slomo@circular-chaos.org>
4128
4129         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_get_type):
4130         * ext/alsa/gstalsasink.c: (set_hwparams):
4131         * ext/alsa/gstalsasrc.c: (set_hwparams):
4132         * ext/gio/gstgio.c: (gst_gio_uri_handler_get_uri):
4133         * ext/ogg/gstoggmux.h:
4134         * ext/ogg/gstogmparse.c:
4135         * gst-libs/gst/audio/audio.c:
4136         * gst-libs/gst/fft/kiss_fft_f64.c: (kiss_fft_f64_alloc):
4137         * gst-libs/gst/pbutils/missing-plugins.c:
4138         (gst_missing_uri_sink_message_new),
4139         (gst_missing_element_message_new),
4140         (gst_missing_decoder_message_new),
4141         (gst_missing_encoder_message_new):
4142         * gst-libs/gst/rtp/gstbasertppayload.c:
4143         * gst-libs/gst/rtp/gstrtcpbuffer.c:
4144         (gst_rtcp_packet_bye_get_reason):
4145         * gst/audioconvert/gstaudioconvert.c:
4146         * gst/audioresample/gstaudioresample.c:
4147         * gst/ffmpegcolorspace/imgconvert.c:
4148         * gst/playback/test.c: (gen_video_element), (gen_audio_element):
4149         * gst/typefind/gsttypefindfunctions.c:
4150         * gst/videoscale/vs_4tap.c:
4151         * gst/videoscale/vs_4tap.h:
4152         * sys/v4l/gstv4lelement.c:
4153         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_any_caps):
4154         * sys/v4l/v4l_calls.c:
4155         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init),
4156         (gst_v4lsrc_try_capture):
4157         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
4158         (gst_ximagesink_ximage_new):
4159         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
4160         (gst_xvimagesink_xvimage_new):
4161         * tests/check/elements/audioconvert.c:
4162         * tests/check/elements/audioresample.c:
4163         (fail_unless_perfect_stream):
4164         * tests/check/elements/audiotestsrc.c: (setup_audiotestsrc):
4165         * tests/check/elements/decodebin.c:
4166         * tests/check/elements/gdpdepay.c: (setup_gdpdepay),
4167         (setup_gdpdepay_streamheader):
4168         * tests/check/elements/gdppay.c: (setup_gdppay), (GST_START_TEST),
4169         (setup_gdppay_streamheader):
4170         * tests/check/elements/gnomevfssink.c: (setup_gnomevfssink):
4171         * tests/check/elements/multifdsink.c: (setup_multifdsink):
4172         * tests/check/elements/textoverlay.c:
4173         * tests/check/elements/videorate.c: (setup_videorate):
4174         * tests/check/elements/videotestsrc.c: (setup_videotestsrc):
4175         * tests/check/elements/volume.c: (setup_volume):
4176         * tests/check/elements/vorbisdec.c: (setup_vorbisdec):
4177         * tests/check/elements/vorbistag.c:
4178         * tests/check/generic/clock-selection.c:
4179         * tests/check/generic/states.c: (setup), (teardown):
4180         * tests/check/libs/cddabasesrc.c:
4181         * tests/check/libs/video.c:
4182         * tests/check/pipelines/gio.c:
4183         * tests/check/pipelines/oggmux.c:
4184         * tests/check/pipelines/simple-launch-lines.c:
4185         (simple_launch_lines_suite):
4186         * tests/check/pipelines/streamheader.c:
4187         * tests/check/pipelines/theoraenc.c:
4188         * tests/check/pipelines/vorbisdec.c:
4189         * tests/check/pipelines/vorbisenc.c:
4190         * tests/examples/seek/scrubby.c:
4191         * tests/examples/seek/seek.c: (query_positions_elems),
4192         (query_positions_pads):
4193         * tests/icles/stress-xoverlay.c: (myclock):
4194         Correct all relevant warnings found by the sparse semantic code
4195         analyzer. This include marking several symbols static, using
4196         NULL instead of 0 for pointers and using "foo (void)" instead
4197         of "foo ()" for declarations.
4198
4199         * win32/common/libgstrtp.def:
4200         Add gst_rtp_buffer_set_extension_data to the symbol definition file.
4201
4202 2008-03-02  Tim-Philipp Müller  <tim at centricular dot net>
4203
4204         Patch by: José Alburquerque <jaalburqu svn gnome org>
4205
4206         * gst/playback/gstplaybin2.c:
4207           Make the function signature of the _get_*_tags() functions match
4208           the signature of the vfuncs they implement, ie. return a
4209           GstTagList rather than a GstStructure, which is more correct,
4210           even if one is typedef'ed to the other (#518940).
4211
4212 2008-03-02  Tim-Philipp Müller  <tim at centricular dot net>
4213
4214         * gst-libs/gst/rtsp/gstrtspconnection.c:
4215           Don't include unix headers unconditionally (fixes #518037).
4216
4217 2008-03-02  Tim-Philipp Müller  <tim at centricular dot net>
4218
4219         * tests/check/libs/video.c: (paintinfo), (paintinfo_struct),
4220           (fourcc_list_struct), (fourcc_list), (fourcc_get_size),
4221           (paint_setup_I420), (paint_setup_YV12), (paint_setup_AYUV),
4222           (paint_setup_YUY2), (paint_setup_UYVY), (paint_setup_YVYU),
4223           (paint_setup_IYU2), (paint_setup_Y41B), (paint_setup_Y42B),
4224           (paint_setup_Y800), (paint_setup_YVU9), (paint_setup_YUV9),
4225           (gst_video_format_is_packed), (video_format_is_packed):
4226           Add unit test that makes sure that the strides, offsets and
4227           sizes returned for the various YUV formats by the new video API
4228           match the old reference implementation in videotestsrc.
4229
4230 2008-03-02  Tim-Philipp Müller  <tim at centricular dot net>
4231
4232         * gst-libs/gst/video/video.c: (gst_video_calculate_display_ratio),
4233           (gst_video_format_from_fourcc), (gst_video_format_to_fourcc),
4234           (gst_video_format_is_rgb), (gst_video_format_is_yuv),
4235           (gst_video_format_has_alpha), (gst_video_format_get_row_stride),
4236           (gst_video_format_get_pixel_stride),
4237           (gst_video_format_get_component_width),
4238           (gst_video_format_get_component_height),
4239           (gst_video_format_get_component_offset), (gst_video_format_get_size):
4240         * gst-libs/gst/video/video.h: (GST_VIDEO_FORMAT_Y41B),
4241           (GST_VIDEO_FORMAT_Y42B):
4242           API: add GST_VIDEO_FORMAT_Y41B and GST_VIDEO_FORMAT_Y42B.
4243
4244 2008-03-02  Tim-Philipp Müller  <tim at centricular dot net>
4245
4246         * gst-libs/gst/video/video.c: (gst_video_format_get_component_offset):
4247           YV12 is I420 with swapped components 1 and 2, so the offset of
4248           component 1 for I420 should be the offset for component 2 for YV12
4249           and vice versa.
4250
4251 2008-02-29  Rene Stadler  <mail@renestadler.de>
4252
4253         * sys/v4l/gstv4lelement.c:
4254         Add missing semicolon to fix indentation.
4255
4256 2008-02-29  Julien Moutte  <julien@fluendo.com>
4257
4258         * ext/alsa/gstalsa.c: (gst_alsa_open_iec958_pcm),
4259         (gst_alsa_probe_supported_formats): Probe for IEC958 pcm to detect
4260         if we can do SPDIF output.
4261         * ext/alsa/gstalsa.h:
4262         * ext/alsa/gstalsasink.c: (set_hwparams), (alsasink_parse_spec),
4263         (gst_alsasink_prepare), (gst_alsasink_close), (gst_alsasink_write):
4264         * ext/alsa/gstalsasink.h: Initial support for SPDIF.
4265         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps):
4266         * gst-libs/gst/audio/gstringbuffer.h: Add non linear buffer types
4267         to support AC3, EC3 and IEC958 buffers.
4268
4269 2008-02-29  Tim-Philipp Müller  <tim at centricular dot net>
4270
4271         * gst-libs/gst/interfaces/mixer.c: (GST_MIXER_MESSAGE_HAS_TYPE),
4272           (gst_mixer_message_parse_mute_toggled),
4273           (gst_mixer_message_parse_record_toggled),
4274           (gst_mixer_message_parse_volume_changed),
4275           (gst_mixer_message_parse_option_changed):
4276           De-cruft and fix message type assertions (NULL is not a really
4277           valid mixer message type string).
4278
4279 2008-02-29  Wim Taymans  <wim.taymans@collabora.co.uk>
4280
4281         * ext/libvisual/visual.c: (gst_vis_src_negotiate):
4282         When negotiating, actually start from a format that we can support
4283         instead of from the too generic template.
4284
4285 2008-02-29  Wim Taymans  <wim.taymans@collabora.co.uk>
4286
4287         * gst/playback/gstplaybin2.c: (gst_play_bin_set_property):
4288         Enable vis setting.
4289
4290         * gst/playback/gstplaysink.c: (gst_play_sink_init),
4291         (gst_play_sink_dispose), (gst_play_sink_vis_unblocked),
4292         (gst_play_sink_vis_blocked), (gst_play_sink_set_vis_plugin),
4293         (gen_vis_chain):
4294         Implement vis switching while playing.
4295
4296 2008-02-28  David Schleef  <ds@schleef.org>
4297
4298         * gst-libs/gst/riff/riff-media.c: Add Dirac mapping
4299
4300 2008-02-28  Wim Taymans  <wim.taymans@collabora.co.uk>
4301
4302         Patch by: Peter Kjellerstedt  <pkj at axis com>
4303
4304         * gst/tcp/Makefile.am:
4305         * gst/tcp/fdsetstress.c:
4306         * gst/tcp/gstfdset.c:
4307         * gst/tcp/gstfdset.h:
4308         Removed fdset and stress test, they are now known as GstPoll in
4309         core. 
4310
4311         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
4312         (gst_multi_fd_sink_add_full), (gst_multi_fd_sink_remove),
4313         (gst_multi_fd_sink_clear), (gst_multi_fd_sink_remove_client_link),
4314         (gst_multi_fd_sink_handle_client_write),
4315         (gst_multi_fd_sink_queue_buffer),
4316         (gst_multi_fd_sink_handle_clients), (gst_multi_fd_sink_start),
4317         (gst_multi_fd_sink_stop):
4318         * gst/tcp/gstmultifdsink.h:
4319         * gst/tcp/gsttcp.c: (gst_tcp_socket_read), (gst_tcp_socket_close),
4320         (gst_tcp_read_buffer), (gst_tcp_gdp_read_buffer),
4321         (gst_tcp_gdp_read_caps):
4322         * gst/tcp/gsttcp.h:
4323         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_init),
4324         (gst_tcp_client_sink_setcaps), (gst_tcp_client_sink_render),
4325         (gst_tcp_client_sink_start), (gst_tcp_client_sink_stop):
4326         * gst/tcp/gsttcpclientsink.h:
4327         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_init),
4328         (gst_tcp_client_src_create), (gst_tcp_client_src_start),
4329         (gst_tcp_client_src_stop), (gst_tcp_client_src_unlock):
4330         * gst/tcp/gsttcpclientsrc.h:
4331         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_handle_wait),
4332         (gst_tcp_server_sink_init_send), (gst_tcp_server_sink_close):
4333         * gst/tcp/gsttcpserversink.h:
4334         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_init),
4335         (gst_tcp_server_src_create), (gst_tcp_server_src_start),
4336         (gst_tcp_server_src_stop), (gst_tcp_server_src_unlock):
4337         * gst/tcp/gsttcpserversrc.h:
4338         Port to GstPoll. See #505417.
4339
4340 2008-02-28  Wim Taymans  <wim.taymans@collabora.co.uk>
4341
4342         Patch by: Peter Kjellerstedt  <pkj at axis com>
4343
4344         * gst-libs/gst/rtsp/gstrtspconnection.c:
4345         (gst_rtsp_connection_create), (gst_rtsp_connection_connect),
4346         (gst_rtsp_connection_write), (gst_rtsp_connection_read_internal),
4347         (gst_rtsp_connection_receive), (gst_rtsp_connection_close),
4348         (gst_rtsp_connection_free), (gst_rtsp_connection_poll),
4349         (gst_rtsp_connection_flush):
4350         * gst-libs/gst/rtsp/gstrtspconnection.h:
4351         Use GstPoll for the rtsp connection. See #505417.
4352
4353 2008-02-27  Wim Taymans  <wim.taymans@collabora.co.uk>
4354
4355         * tests/examples/seek/seek.c: (vis_toggle_cb), (filter_features),
4356         (init_visualization_features), (vis_combo_cb), (shot_cb), (main):
4357         Add combo box for visualisations, populate it with a factory list
4358         of all visualisation plugins, configure vis plugin instance in
4359         playbin2. 
4360
4361 2008-02-27  Wim Taymans  <wim.taymans@collabora.co.uk>
4362
4363         * tests/check/libs/rtp.c: (GST_START_TEST):
4364         Add check for RTP buffer defaults, padding and marker bit API.
4365
4366 2008-02-27  Sebastian Dröge  <slomo@circular-chaos.org>
4367
4368         * gst-libs/gst/cdda/sha1.c: (sha_transform):
4369         Use memcpy() instead of upcasting a byte array to long *. This
4370         fixes an unaligned memory access, resulting in SIGBUS on IA64.
4371         This should be ported to GCheckSum once we can use GLib 2.16.
4372         Partially fixes bug #500833.
4373
4374 2008-02-27  Tim-Philipp Müller  <tim at centricular dot net>
4375
4376         * gst-libs/gst/tag/gsttagdemux.c: (gst_tag_demux_chain):
4377           Push tag event after the newsegment event. Log the pointer of
4378           the buffer we're actually going to push rather than the buffer
4379           we're feeding to _make_metadata_writable().
4380
4381 2008-02-25  Sebastian Dröge  <slomo@circular-chaos.org>
4382
4383         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
4384         Comment smoke typefinder for now. The smokedec plugin needs one
4385         frame per buffer but we have no parser yet, thus it simply crashes
4386         in most situations.
4387
4388 2008-02-25  Sebastian Dröge  <slomo@circular-chaos.org>
4389
4390         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
4391         Add typefinder for the smoke video codec. Copied from the jpeg plugin.
4392
4393 2008-02-25  Sebastian Dröge  <slomo@circular-chaos.org>
4394
4395         * gst/typefind/gsttypefindfunctions.c: (mid_type_find),
4396         (plugin_init):
4397         Add midi typefinder, copied from the timidity plugin.
4398
4399 2008-02-23  Tim-Philipp Müller  <tim at centricular dot net>
4400
4401         Based on patch by: Tomasz Sałaciński <tsalacinski gmail com>
4402
4403         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
4404         * tests/check/elements/subparse.c: (test_microdvd_with_italics),
4405           (subparse_suite):
4406           Forward slashes at the beginning and end of a line also signify
4407           italics (Fixes: #518162).
4408
4409 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
4410
4411         * tests/check/gst-plugins-base.supp:
4412         Add a suppression for a cached value in GIO that wasn't moved
4413         while moving gio from -bad to -base.
4414
4415 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
4416
4417         Patch by: Brian Cameron <brian dot cameron at sun dot com>
4418
4419         * configure.ac:
4420         Don't hardcode -Wall and -Werror for configure checks, this fails
4421         with non-GCC compilers. Fixes bug #517991.
4422
4423 2008-02-21  Stefan Kost  <ensonic@users.sf.net>
4424
4425         * gst/audioconvert/gstaudioconvert.c:
4426         * gst/audioconvert/gstaudioquantize.c:
4427         * gst/audioconvert/gstaudioquantize.h:
4428           Make audioconvert gap aware. If noiseshaping is used, wait for
4429           noiseshaping to converge before marking as GAP. Fixes #517813.
4430
4431 2008-02-21  Stefan Kost  <ensonic@users.sf.net>
4432
4433         * gst/audiotestsrc/gstaudiotestsrc.c:
4434           Mark buffers as GAP,if volume is 0.0 and fix the previous logic.
4435
4436 2008-02-20  Sebastian Dröge  <slomo@circular-chaos.org>
4437
4438         * ext/gnomevfs/gstgnomevfssink.c:
4439         (gst_gnome_vfs_sink_handle_event):
4440         Return FALSE when seeking for a new segment fails instead
4441         of silently ignoring the failure and appending every buffer
4442         that comes for the new segment.
4443
4444 2008-02-20  Wim Taymans  <wim.taymans@collabora.co.uk>
4445
4446         * gst/playback/gstplaysink.c: (find_property),
4447         (gst_play_sink_find_property), (gen_video_chain),
4448         (gst_play_sink_reconfigure), (gst_play_sink_get_last_frame):
4449         Recursively search the sink element for a last-frame property so that we
4450         can also find the property in autovideosink and friends that don't
4451         always proxy the internal sink properties.
4452
4453 2008-02-19  Tim-Philipp Müller  <tim at centricular dot net>
4454
4455         * gst-libs/gst/audio/multichannel.c:
4456           (GST_AUDIO_CHANNEL_POSITIONS_FIELD_NAME),
4457           (gst_audio_get_channel_positions), (gst_audio_set_channel_positions),
4458           (gst_audio_set_structure_channel_positions_list),
4459           (add_list_to_struct), (gst_audio_set_caps_channel_positions_list),
4460           (gst_audio_fixate_channel_positions):
4461           Fix confusing terminology in docs and code: structure fields are
4462           'fields' and not 'properties'.
4463
4464 2008-02-19  Tim-Philipp Müller  <tim at centricular dot net>
4465
4466         * gst-libs/gst/audio/multichannel.c:
4467           (gst_audio_check_channel_positions), (add_list_to_struct):
4468           Give more useful warning messages if one of the channel
4469           layout enums passed to us is invalid and if the "channels"
4470           field in the caps has a GType we don't expect.
4471
4472 2008-02-19  Tim-Philipp Müller  <tim at centricular dot net>
4473
4474         * gst-libs/gst/audio/multichannel.c:
4475           Fix typo in docs blurb.
4476
4477 2008-02-19  Julien Moutte  <julien@fluendo.com>
4478
4479         Patch by: Josep Torra Valles <josep@fluendo.com>
4480
4481         * gst/typefind/gsttypefindfunctions.c: Increase the MPEG PS
4482         typefind lookup to fix typefinding on HD clips.
4483
4484 2008-02-19  Tim-Philipp Müller  <tim at centricular dot net>
4485
4486         * gst/playback/gstscreenshot.c:
4487         * gst/playback/gstscreenshot.h:
4488           Fix up copyright (I rewrote the GStreamer-0.10 code for
4489           this from scratch back in the days).
4490
4491 2008-02-19  Wim Taymans  <wim.taymans@collabora.co.uk>
4492
4493         * gst/playback/Makefile.am:
4494         * gst/playback/gstscreenshot.c: (feed_fakesrc), (save_result),
4495         (create_element), (gst_play_frame_conv_convert):
4496         * gst/playback/gstscreenshot.h:
4497         Add screenshot conversion code from totem.
4498
4499         * gst/playback/gstplay-marshal.list:
4500         * gst/playback/gstplaybin2.c: (gst_play_marshal_BUFFER__BOXED),
4501         (gst_play_bin_class_init), (gst_play_bin_convert_frame),
4502         (gst_play_bin_get_property), (no_more_pads_cb), (activate_group):
4503         Implement frame property to get a color-unconverted snapshot.
4504         Implement convert-frame action signal to get a converted snapshot image.
4505         Configure connection speed in uridecodebin.
4506         Document some more properties.
4507
4508         * gst/playback/gstplaysink.c: (gst_play_sink_class_init),
4509         (gen_video_chain), (gen_audio_chain), (gst_play_sink_reconfigure),
4510         (gst_play_sink_get_last_frame):
4511         * gst/playback/gstplaysink.h:
4512         Use last-buffer property of the video sink to get a video snapshot.
4513
4514         * tests/examples/seek/seek.c: (shot_cb), (main):
4515         Add snapshot button for playbin2 and use the frame property to save the
4516         frame as a png in the current directory.
4517
4518 2008-02-19  Sebastian Dröge  <slomo@circular-chaos.org>
4519
4520         Patch by: Josep Torra Valles <josep at fluendo dot com>
4521
4522         * gst/typefind/gsttypefindfunctions.c: (h264_video_type_find),
4523         (plugin_init):
4524         Add typefinding support for h264 elementary streams.
4525         Fixes bug #517420.
4526
4527 2008-02-18  Stefan Kost  <ensonic@users.sf.net>
4528
4529         * configure.ac:
4530           Require CVS of core for new API in collectpads.
4531
4532         * gst/adder/gstadder.c:
4533           Use new API to make adder sparse stream aware.
4534
4535 2008-02-18  Wim Taymans  <wim.taymans@collabora.co.uk>
4536
4537         * gst/playback/gstplaybin2.c: (pad_added_cb), (pad_removed_cb),
4538         (no_more_pads_cb):
4539         Get the object data correct so that we can remove our channels
4540         correctly.
4541
4542         * gst/playback/gstplaysink.c: (gen_video_chain), (gen_audio_chain),
4543         (gen_vis_chain), (gst_play_sink_reconfigure),
4544         (gst_play_sink_request_pad):
4545         Add option to disable async behaviour in the sinks when possible. This
4546         makes it possible to avoid an audio queue when dealing with
4547         visualisations.
4548         Add option to add a queue for the audio path.
4549
4550         * tests/examples/seek/seek.c: (clear_streams), (update_streams),
4551         (main):
4552         Disable the vis checkbox to match the defaults of playbin2.
4553         Only get the stream info when we need to.
4554
4555 2008-02-17  Sebastian Dröge  <slomo@circular-chaos.org>
4556
4557         * ext/gio/gstgiobasesink.c: (gst_gio_base_sink_stop),
4558         (gst_gio_base_sink_set_stream):
4559         * ext/gio/gstgiobasesrc.c: (gst_gio_base_src_stop),
4560         (gst_gio_base_src_set_stream):
4561         * ext/gio/gstgiosink.c: (gst_gio_sink_start):
4562         * ext/gio/gstgiosrc.c: (gst_gio_src_start):
4563         Don't use async operations as they require a running main loop.
4564         This makes us block again when closing streams and unable
4565         to mount the enclosing volume of an URI if it isn't yet.
4566
4567 2008-02-15  Wim Taymans  <wim.taymans@collabora.co.uk>
4568
4569         * gst/playback/gstplaysink.c: (gst_play_sink_set_mute),
4570         (gst_play_sink_get_mute), (gen_video_chain), (gen_audio_chain),
4571         (gen_vis_chain), (gst_play_sink_reconfigure),
4572         (gst_play_sink_request_pad):
4573         Move tee in front of the audio and vis pipelines.
4574         Add queue for audio for now.
4575         Add visualisation support.
4576
4577         * tests/examples/seek/seek.c: (main):
4578         Visualisation is by default disabled.
4579
4580 2008-02-15  Sebastian Dröge  <slomo@circular-chaos.org>
4581
4582         * ext/gio/gstgiobasesink.c: (close_stream_cb):
4583         * ext/gio/gstgiobasesrc.c: (close_stream_cb):
4584         Improve debugging a bit.
4585
4586         * ext/gio/gstgiosink.c: (mount_cb), (gst_gio_sink_start):
4587         * ext/gio/gstgiosink.h:
4588         * ext/gio/gstgiosrc.c: (mount_cb), (gst_gio_src_start):
4589         * ext/gio/gstgiosrc.h:
4590         Try to mount the enclosing volume of a GFile if it isn't mounted
4591         yet. This requires us to wait for an async operation to finish, done
4592         with an nested GMainLoop. Authentication is not supported yet, will
4593         come later.
4594
4595 2008-02-14  Wim Taymans  <wim.taymans@collabora.co.uk>
4596
4597         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
4598         (gst_play_bin_set_property), (gst_play_bin_get_property),
4599         (pad_added_cb), (pad_removed_cb), (no_more_pads_cb):
4600         * gst/playback/gstplaysink.c: (gst_play_sink_set_mute),
4601         (gst_play_sink_get_mute), (gen_audio_chain):
4602         * gst/playback/gstplaysink.h:
4603         Add mute property.
4604
4605         * gst/playback/gststreamselector.c: (gst_selector_pad_event),
4606         (gst_selector_pad_chain):
4607         * gst/playback/gststreamselector.h:
4608         Make sure we forward the event only once.
4609
4610         * tests/examples/seek/seek.c: (stop_cb), (mute_toggle_cb), (main):
4611         Add and implement the mute button for playbin2.
4612
4613 2008-02-13  Wim Taymans  <wim.taymans@collabora.co.uk>
4614
4615         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
4616
4617         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_delay):
4618         Add some more debug info.
4619         Make sure we never return a negative delay. Fixes #516246.
4620
4621 2008-02-12  Tim-Philipp Müller  <tim at centricular dot net>
4622
4623         * ext/alsa/gstalsasink.c: (gst_alsasink_delay):
4624           Revert patch that makes the sink hold the object lock when
4625           calling snd_pcm_delay(), since it breaks playback for me.
4626
4627 2008-02-12  Julien Moutte  <julien@fluendo.com>
4628
4629         * tests/examples/seek/seek.c: (rate_spinbutton_changed_cb): Add
4630         some seek flags when changing rate.
4631
4632 2008-02-12  Wim Taymans  <wim.taymans@collabora.co.uk>
4633
4634         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
4635         (gst_base_rtp_audio_payload_handle_frame_based_buffer),
4636         (gst_base_rtp_audio_payload_handle_sample_based_buffer):
4637         Fix potential leaks.
4638
4639         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_chain):
4640         Fix leak when there is no function configured.
4641
4642 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
4643
4644         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_buffer_class_init),
4645         (gst_v4lsrc_buffer_finalize):
4646         Correctly chain up the finalize method.
4647
4648 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
4649
4650         * ext/gio/gstgiostreamsink.c:
4651         * ext/gio/gstgiostreamsrc.c:
4652         Add documentation and example code for giostreamsink/giostreamsrc.
4653
4654         * tests/check/pipelines/gio.c: (GST_START_TEST):
4655         Ask the GMemoryOutputStream for the data instead of assuming that
4656         the pointer to the data stayed the same. It could've been realloc'ed.
4657
4658 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
4659
4660         * ext/gio/gstgiosink.c:
4661         * ext/gio/gstgiosrc.c:
4662         Make the documentation of giosink/giosrc complete, large parts
4663         are based on the gnomevfssink/gnomevfssrc docs.
4664
4665 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
4666
4667         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
4668         * docs/plugins/gst-plugins-base-plugins-sections.txt:
4669         * docs/plugins/gst-plugins-base-plugins.args:
4670         * docs/plugins/gst-plugins-base-plugins.hierarchy:
4671         * docs/plugins/gst-plugins-base-plugins.interfaces:
4672         * docs/plugins/gst-plugins-base-plugins.prerequisites:
4673         * docs/plugins/gst-plugins-base-plugins.signals:
4674         * docs/plugins/inspect/plugin-adder.xml:
4675         * docs/plugins/inspect/plugin-audioconvert.xml:
4676         * docs/plugins/inspect/plugin-audiorate.xml:
4677         * docs/plugins/inspect/plugin-audioresample.xml:
4678         * docs/plugins/inspect/plugin-decodebin.xml:
4679         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
4680         * docs/plugins/inspect/plugin-gdp.xml:
4681         * docs/plugins/inspect/plugin-gio.xml:
4682         * docs/plugins/inspect/plugin-gnomevfs.xml:
4683         * docs/plugins/inspect/plugin-libvisual.xml:
4684         * docs/plugins/inspect/plugin-ogg.xml:
4685         * docs/plugins/inspect/plugin-pango.xml:
4686         * docs/plugins/inspect/plugin-playback.xml:
4687         * docs/plugins/inspect/plugin-queue2.xml:
4688         * docs/plugins/inspect/plugin-subparse.xml:
4689         * docs/plugins/inspect/plugin-theora.xml:
4690         * docs/plugins/inspect/plugin-uridecodebin.xml:
4691         * docs/plugins/inspect/plugin-videorate.xml:
4692         * docs/plugins/inspect/plugin-videoscale.xml:
4693         * docs/plugins/inspect/plugin-volume.xml:
4694         * docs/plugins/inspect/plugin-vorbis.xml:
4695         Add the GIO documentation again and while at that run make update.
4696
4697 2008-02-11  Tim-Philipp Müller  <tim at centricular dot net>
4698
4699         * ext/alsa/gstalsa.h: (GST_CHECK_ALSA_VERSION):
4700         * ext/alsa/gstalsasink.c: (set_swparams):
4701         * ext/alsa/gstalsasrc.c: (set_swparams), (gst_alsasrc_open):
4702           Don't use snd_pcm_sw_params_set_xfer_align() if we're compiling
4703           against libasound >= 1.0.16, since it's been deprecated in
4704           0.10.16, and alignment is always 1 then, apparently. (#512899)
4705
4706 2008-02-11  Tim-Philipp Müller  <tim at centricular dot net>
4707
4708         * gst/playback/gstplaybin.c: (gen_audio_element):
4709         * gst/playback/gstplaysink.c: (gen_audio_chain):
4710           Handle case where we can't create the volume element a bit
4711           better (#514307).
4712
4713 2008-02-11  Tim-Philipp Müller  <tim at centricular dot net>
4714
4715         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_check_get_range):
4716         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
4717           Add support for https protocol. Fixes #510229.
4718
4719 2008-02-11  Julien Moutte  <julien@fluendo.com>
4720         
4721         Patch by: Alan Peevers <peeves@pacbell.net>
4722
4723         * ext/alsa/gstalsasink.c: (gst_alsasink_delay): Take appropriate
4724         lock when calling alsa methods.
4725
4726 2008-02-11  Tim-Philipp Müller  <tim at centricular dot net>
4727
4728         * gst/typefind/gsttypefindfunctions.c:
4729           Bump rank of jpeg and png typefinders, which will return maximum
4730           probability in the most common cases (thus short-circuiting more
4731           expensive typefinders like the mp3 one for these two quite common
4732           image types).
4733
4734 2008-02-11  Sebastian Dröge  <slomo@circular-chaos.org>
4735
4736         * ext/theora/theoraparse.c:
4737         Fix long description of the theora parser to be more verbose than just
4738         the type name.
4739
4740 2008-02-11  Sebastian Dröge  <slomo@circular-chaos.org>
4741
4742         Patch by: Branko Čibej <brane at xbc dot nu>
4743
4744         * sys/xvimage/xvimagesink.c:
4745         Fix build of xvimagesink if we don't have XShm, e.g. on Mac OS X.
4746         Fixes bug #515654.
4747
4748 2008-02-09  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4749
4750         * gst/playback/gstplaybasebin.c:
4751         Set is_dynamic as True if there are elements with both request
4752         and sometimes src pad templates instead of breaking out when it
4753         finds the first pad template that is a src.
4754
4755 2008-02-08  Wim Taymans  <wim.taymans@collabora.co.uk>
4756
4757         * tests/examples/seek/seek.c: (stop_cb), (clear_streams),
4758         (update_streams), (video_combo_cb), (audio_combo_cb),
4759         (text_combo_cb), (volume_spinbutton_changed_cb), (main):
4760         Add some stream switching and volume gui for playbin2.
4761
4762 2008-02-08  Wim Taymans  <wim.taymans@collabora.co.uk>
4763
4764         * gst/playback/gstplay-marshal.list:
4765         Added marshal for streamselector Tags.
4766
4767         * gst/playback/gstplaybasebin.c: (set_active_source):
4768         Streamselector now selects pads based on the pad object instead of its
4769         name.
4770
4771         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
4772         (init_group), (gst_play_bin_init), (get_group), (get_tags),
4773         (gst_play_bin_get_video_tags), (gst_play_bin_get_audio_tags),
4774         (gst_play_bin_get_text_tags),
4775         (gst_play_bin_set_current_video_stream),
4776         (gst_play_bin_set_current_audio_stream),
4777         (gst_play_bin_set_current_text_stream),
4778         (gst_play_bin_set_property), (gst_play_bin_get_property),
4779         (pad_added_cb), (pad_removed_cb), (autoplug_select_cb):
4780         Remove option to mute streams with the current-a/v/t property, we have
4781         this functionality in the flags.
4782         Add signals to notify when the number of A/V/T channels changed.
4783         Add action signals to get tags for the A/V/T streams.
4784         Implement setting the current A/V/T stream.
4785         Rearrange some things to simplify stream selection.
4786         Implement volume.
4787
4788         * gst/playback/gstplaysink.c: (gst_play_sink_set_volume),
4789         (gst_play_sink_get_volume), (gst_play_sink_set_property),
4790         (gst_play_sink_get_property), (gen_video_chain), (gen_audio_chain),
4791         (activate_vis), (gst_play_sink_reconfigure):
4792         * gst/playback/gstplaysink.h:
4793         Add and implement volume setting methods.
4794
4795         * gst/playback/gststreamselector.c: (gst_selector_pad_class_init),
4796         (gst_selector_pad_finalize), (gst_selector_pad_get_property),
4797         (gst_selector_pad_event), (gst_stream_selector_class_init),
4798         (gst_stream_selector_init), (gst_stream_selector_finalize),
4799         (gst_stream_selector_set_property),
4800         (gst_stream_selector_get_property),
4801         (gst_stream_selector_get_linked_pad),
4802         (gst_stream_selector_request_new_pad):
4803         * gst/playback/gststreamselector.h:
4804         Add pad properties for tags and status of pads.
4805         Keep tags on pads.
4806         Make active pad selection based on pad object instead of name.
4807
4808 2008-02-08  Stefan Kost  <ensonic@users.sf.net>
4809
4810         * configure.ac:
4811           Revert last change as we now check in gtk-doc.m4 for sed.
4812
4813 2008-02-08  Jan Schmidt  <Jan.Schmidt@sun.com>
4814
4815         * configure.ac:
4816         Find and subst SED when building the docs.
4817
4818 2008-02-08  Julien Moutte  <julien@fluendo.com>
4819
4820         * tests/examples/seek/seek.c: (stop_cb), (connect_bus_signals),
4821         (main): Make sure bus signals are reconnected when pressing STOP
4822         and then PLAY again for a parse launch pipeline. Fix a ref leak
4823         on the bus.
4824         * win32/common/config.h: Updated.
4825
4826 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
4827
4828         * configure.ac:
4829         Make DISABLE_DEPRECATED defined *only* during CVS, not during
4830         pre-releases or releases.
4831
4832 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
4833
4834         * configure.ac:
4835         * ext/gio/Makefile.am:
4836         Subst GIO_LDFLAGS to avoid undefined Makefile var error Zaheer is
4837         reporting
4838
4839 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
4840
4841         * docs/plugins/Makefile.am:
4842         Add the headers which need scanning for the GIO plugin. The rest of
4843         the docs still need migrating.
4844
4845 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
4846
4847         * ext/Makefile.am:
4848         * tests/check/Makefile.am:
4849         * tests/check/pipelines/.cvsignore:
4850         Add gio in a few more places.
4851
4852 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
4853
4854         * configure.ac:
4855         * ext/Makefile.am:
4856         * tests/check/Makefile.am:
4857         Move gio plugin from -bad and mark as experimental.
4858
4859 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
4860
4861         * gst-libs/gst/interfaces/mixeroptions.c:
4862         * gst-libs/gst/interfaces/mixertrack.c:
4863         Comment out a couple of other things which break the build when
4864         GST_DISABLE_DEPRECATED isn't on but -Werror is.
4865
4866 2008-02-07  Tim-Philipp Müller  <tim at centricular dot net>
4867
4868         * docs/libs/gst-plugins-base-libs-sections.txt:
4869           Fix pbutils header.
4870
4871 2008-02-07  Wim Taymans  <wim.taymans@collabora.co.uk>
4872
4873         * gst-libs/gst/rtsp/gstrtspmessage.c: (gst_rtsp_message_unset):
4874         Fix compiler warning.
4875
4876 2008-02-07  Wim Taymans  <wim.taymans@collabora.co.uk>
4877
4878         Patch by: Peter Kjellerstedt  <pkj at axis com>
4879
4880         * gst-libs/gst/sdp/gstsdpmessage.c: (is_multicast_address):
4881         Clear the addrinfo struct using memset. Fixes #514937.
4882
4883 2008-02-06  Wim Taymans  <wim.taymans@collabora.co.uk>
4884
4885         * gst/tcp/gstfdset.h:
4886         Remove unused field to same some memory.
4887
4888         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
4889         Mark action signals as such.
4890
4891 2008-02-06  Michael Smith <msmith@fluendo.com>
4892
4893         * ext/theora/theoradec.c: (_theora_granule_frame),
4894         (_inc_granulepos):
4895           Increment granulepos for new-bitstream versions appropriately.
4896           Fixes #514623.
4897
4898 2008-02-04  Wim Taymans  <wim.taymans@collabora.co.uk>
4899
4900         * tests/examples/seek/seek.c: (do_seek),
4901         (rate_spinbutton_changed_cb), (update_streams), (main):
4902         Remove obsolete stream_time reset after flushing seek, core does that
4903         automatically now.
4904         Improve accuracy of speed spinbutton.
4905         Only do playbin2 stuff when we actually use it.
4906
4907 2008-02-02  Tim-Philipp Müller  <tim at centricular dot net>
4908
4909         * tests/check/Makefile.am:
4910           Revert previous change of the test environment's GST_PLUGIN_PATH.
4911           The problem is not with the plugins, but with element factories
4912           and only occurs if elements are split out from existing plugins
4913           or if plugins change name (see #512740).
4914
4915 2008-02-02  Tim-Philipp Müller  <tim at centricular dot net>
4916
4917         * tests/check/Makefile.am:
4918           Fix the tests environment's GST_PLUGIN_PATH: we want the directory
4919           with the core's plugins first and our local build directories last,
4920           since we might be building against an installed core, and that
4921           core's plugin directory may contain older or other versions of
4922           our own -base plugins, but we really do want to test our local
4923           ones (if there are multiple plugins or element factories with the
4924           same name, those inspected last will trump those read in earlier).
4925           Fixes #512740 for the most part.
4926
4927 2008-02-02  Sebastian Dröge  <slomo@circular-chaos.org>
4928
4929         * configure.ac:
4930         * gst-libs/gst/rtsp/gstrtspconnection.c: (add_date_header):
4931         Use gmtime_r if available as gmtime is not MT-safe.
4932         Fixes bug #511810.
4933
4934 2008-02-02  Sebastian Dröge  <slomo@circular-chaos.org>
4935
4936         * gst-libs/gst/rtsp/gstrtspconnection.c: (add_date_header):
4937         Cast glong to time_t as time_t might have a different type on
4938         other platforms, like FreeBSD, and we get a compiler warning
4939         otherwise. Fixes bug #511825.
4940
4941 2008-02-01  Wim Taymans  <wim.taymans@collabora.co.uk>
4942
4943         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
4944         (get_group), (get_n_pads), (gst_play_bin_get_property),
4945         (pad_added_cb), (no_more_pads_cb), (perform_eos),
4946         (autoplug_select_cb), (deactivate_group):
4947         Remove stream-info, we going for something easier.
4948         Refactor getting the current group.
4949         Implement getting the number of audio/video/text streams.
4950
4951         * gst/playback/gststreamselector.c:
4952         (gst_stream_selector_class_init), (gst_stream_selector_init),
4953         (gst_stream_selector_get_property),
4954         (gst_stream_selector_request_new_pad),
4955         (gst_stream_selector_release_pad):
4956         * gst/playback/gststreamselector.h:
4957         Add property for number of pads.
4958
4959         * tests/examples/seek/seek.c: (set_scale), (update_flag),
4960         (vis_toggle_cb), (audio_toggle_cb), (video_toggle_cb),
4961         (text_toggle_cb), (update_streams), (msg_async_done),
4962         (msg_state_changed), (main):
4963         Block slider callback when updating the slider position.
4964         Add gui elements for controlling playbin2.
4965         Add callback for async_done that updates position/duration.
4966
4967 2008-02-01  Stefan Kost  <ensonic@users.sf.net>
4968
4969         * docs/plugins/Makefile.am:
4970         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
4971         * docs/plugins/gst-plugins-base-plugins-sections.txt:
4972         * docs/plugins/gst-plugins-base-plugins.hierarchy:
4973         * docs/plugins/gst-plugins-base-plugins.interfaces:
4974         * docs/plugins/gst-plugins-base-plugins.prerequisites:
4975           First round of plugin docs cleansups.
4976
4977         * docs/plugins/inspect/plugin-adder.xml:
4978         * docs/plugins/inspect/plugin-alsa.xml:
4979         * docs/plugins/inspect/plugin-audioconvert.xml:
4980         * docs/plugins/inspect/plugin-audiorate.xml:
4981         * docs/plugins/inspect/plugin-audioresample.xml:
4982         * docs/plugins/inspect/plugin-audiotestsrc.xml:
4983         * docs/plugins/inspect/plugin-cdparanoia.xml:
4984         * docs/plugins/inspect/plugin-decodebin.xml:
4985         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
4986         * docs/plugins/inspect/plugin-gdp.xml:
4987         * docs/plugins/inspect/plugin-gnomevfs.xml:
4988         * docs/plugins/inspect/plugin-libvisual.xml:
4989         * docs/plugins/inspect/plugin-ogg.xml:
4990         * docs/plugins/inspect/plugin-pango.xml:
4991         * docs/plugins/inspect/plugin-subparse.xml:
4992         * docs/plugins/inspect/plugin-tcp.xml:
4993         * docs/plugins/inspect/plugin-theora.xml:
4994         * docs/plugins/inspect/plugin-typefindfunctions.xml:
4995         * docs/plugins/inspect/plugin-video4linux.xml:
4996         * docs/plugins/inspect/plugin-videorate.xml:
4997         * docs/plugins/inspect/plugin-videoscale.xml:
4998         * docs/plugins/inspect/plugin-videotestsrc.xml:
4999         * docs/plugins/inspect/plugin-volume.xml:
5000         * docs/plugins/inspect/plugin-vorbis.xml:
5001         * docs/plugins/inspect/plugin-ximagesink.xml:
5002         * docs/plugins/inspect/plugin-xvimagesink.xml:
5003           Regenerate.
5004
5005         * ext/ogg/Makefile.am:
5006         * ext/ogg/gstoggmux.c:
5007         * ext/ogg/gstoggmux.h:
5008           Add header for oggmux. the c-file needs a doc blob still.
5009
5010 2008-02-01  Wim Taymans  <wim.taymans@collabora.co.uk>
5011
5012         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
5013
5014         * gst-libs/gst/rtp/gstrtpbuffer.c:
5015         (gst_rtp_buffer_set_extension_data):
5016         * gst-libs/gst/rtp/gstrtpbuffer.h:
5017         * tests/check/libs/rtp.c: (GST_START_TEST), (rtp_suite):
5018         Add gst_rtp_buffer_set_extension_data() 
5019         Add a unit test for this addition. Fixes #511478.
5020         API: GstRTPBuffer:gst_rtp_buffer_set_extension_data()
5021
5022 2008-01-30  Jan Schmidt  <jan.schmidt@sun.com>
5023
5024         * configure.ac:
5025         Back to CVS
5026
5027 === release 0.10.17 ===
5028
5029 2008-01-30  Jan Schmidt <jan.schmidt@sun.com>
5030
5031         * configure.ac:
5032           releasing 0.10.17, "Peanut Butter and Jelly"
5033
5034 2008-01-30  Jan Schmidt  <jan.schmidt@sun.com>
5035
5036         * gst-libs/gst/interfaces/mixeroptions.c:
5037         * gst-libs/gst/interfaces/mixertrack.c:
5038         Also remove the conditional registration of the signals
5039         that disappeared with the ABI change in 0.10.14
5040
5041 2008-01-30  Jan Schmidt  <jan.schmidt@sun.com>
5042
5043         * gst-libs/gst/rtsp/gstrtspconnection.c:
5044         Revert patch to gstrtspconnection.c for brown paper bag
5045         release of -base. Re-opens: #511825
5046
5047 2008-01-30  Jan Schmidt  <jan.schmidt@sun.com>
5048
5049         * gst-libs/gst/interfaces/mixeroptions.h:
5050         * gst-libs/gst/interfaces/mixertrack.h:
5051         Change the way these deprecated function pointers are removed
5052         so that the compiled ABI is unconditionally smaller. This 
5053         sets in stone an ABI break that actually occurred when the
5054         things were deprecated in 0.10.14, which seems to be the best
5055         fix as the only known users are oss-mixer and sunaudio-mixer in 
5056         gst-plugins-good.
5057         Fixes: #513018
5058
5059 2008-01-30  Tim-Philipp Müller  <tim at centricular dot net>
5060
5061         * win32/common/libgstpbutils.def:
5062           Export the two new _get_type() functions which are needed
5063           by the python bindings.
5064
5065 2008-01-29  Sebastian Dröge  <slomo@circular-chaos.org>
5066
5067         * gst-libs/gst/rtsp/gstrtspconnection.c: (add_date_header):
5068         Cast glong to time_t as time_t might have a different type on
5069         other platforms, like FreeBSD, and we get a compiler warning
5070         otherwise. Fixes bug #511825.
5071
5072 2008-01-29  Sebastian Dröge  <slomo@circular-chaos.org>
5073
5074         * gst-libs/gst/audio/gstaudiofilter.c:
5075         (gst_audio_filter_class_init):
5076         Initialize the GstRingerBuffer class to get it's debug category
5077         initialized. gst_ring_buffer_parse_caps() uses the ringbuffer debug
5078         category and otherwise we get some g_critical(). Fixes bug #512334.
5079
5080 2008-01-28  Jan Schmidt  <jan.schmidt@sun.com>
5081
5082         * configure.ac:
5083         Back to CVS
5084
5085 === release 0.10.16 ===
5086
5087 2008-01-28  Jan Schmidt <jan.schmidt@sun.com>
5088
5089         * configure.ac:
5090           releasing 0.10.16, "Scheduled Interruption"
5091
5092 2008-01-22  Wim Taymans  <wim.taymans@collabora.co.uk>
5093
5094         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
5095
5096         * gst-libs/gst/rtp/gstrtpbuffer.c:
5097         (gst_rtp_buffer_get_extension_data):
5098         Fix typos and wrong extension check. Fixes #511274.
5099
5100 2008-01-18  Jan Schmidt  <jan.schmidt@sun.com>
5101
5102         * po/sk.po:
5103         Oops - add new sk.po mentioned in the LINGUAS I just committed
5104
5105 2008-01-17  Jan Schmidt  <jan.schmidt@sun.com>
5106
5107         * po/LINGUAS:
5108         Add ca translation to the disted list.
5109
5110         * win32/vs6/libgstsdp.dsp:
5111         Convert line endings to CRLF
5112
5113 2008-01-17  Sebastien Moutte <sebastien@moutte.net>
5114
5115         * win32/MANIFEST:
5116         Add win32/vs6/libgstrtsp.dsp to MANIFEST
5117
5118 2008-01-14  Jan Schmidt  <jan.schmidt@sun.com>
5119
5120         * win32/common/libgstsdp.def:
5121         * win32/common/libgstvideo.def:
5122         Add new API declarations
5123
5124 2008-01-14  Jan Schmidt  <jan.schmidt@sun.com>
5125
5126         * ext/theora/gsttheoradec.h:
5127         * ext/theora/gsttheoraparse.h:
5128         * ext/theora/theoradec.c:
5129         * ext/theora/theoraparse.c:
5130         Take a 2nd stab at handling libtheora granulepos changes in the decoder
5131         and parser by inspecting the bitstream version of the incoming data.
5132
5133 2008-01-14  Sebastian Dröge  <slomo@circular-chaos.org>
5134
5135         * configure.ac:
5136         * pkgconfig/Makefile.am:
5137         * pkgconfig/gstreamer-audio-uninstalled.pc.in:
5138         * pkgconfig/gstreamer-audio.pc.in:
5139         * pkgconfig/gstreamer-cdda-uninstalled.pc.in:
5140         * pkgconfig/gstreamer-cdda.pc.in:
5141         * pkgconfig/gstreamer-fft-uninstalled.pc.in:
5142         * pkgconfig/gstreamer-fft.pc.in:
5143         * pkgconfig/gstreamer-floatcast-uninstalled.pc.in:
5144         * pkgconfig/gstreamer-floatcast.pc.in:
5145         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
5146         * pkgconfig/gstreamer-interfaces.pc.in:
5147         * pkgconfig/gstreamer-netbuffer-uninstalled.pc.in:
5148         * pkgconfig/gstreamer-netbuffer.pc.in:
5149         * pkgconfig/gstreamer-pbutils-uninstalled.pc.in:
5150         * pkgconfig/gstreamer-pbutils.pc.in:
5151         * pkgconfig/gstreamer-riff-uninstalled.pc.in:
5152         * pkgconfig/gstreamer-riff.pc.in:
5153         * pkgconfig/gstreamer-rtp-uninstalled.pc.in:
5154         * pkgconfig/gstreamer-rtp.pc.in:
5155         * pkgconfig/gstreamer-rtsp-uninstalled.pc.in:
5156         * pkgconfig/gstreamer-rtsp.pc.in:
5157         * pkgconfig/gstreamer-sdp-uninstalled.pc.in:
5158         * pkgconfig/gstreamer-sdp.pc.in:
5159         * pkgconfig/gstreamer-tag-uninstalled.pc.in:
5160         * pkgconfig/gstreamer-tag.pc.in:
5161         * pkgconfig/gstreamer-video-uninstalled.pc.in:
5162         * pkgconfig/gstreamer-video.pc.in:
5163         Provide one pkg-config file for every gst-plugins-base library.
5164         This makes linking to those libraries much more intuitive and
5165         provides standard pkg-config behaviour for them. Fixes bug #499697.
5166
5167 2008-01-13  David Schleef  <ds@schleef.org>
5168
5169         * gst/videoscale/vs_4tap.c:
5170           Fix valgrind error on 4tap scaling method.
5171
5172 2008-01-13  Sebastien Moutte  <sebastien@moutte.net>
5173
5174         * gst-libs/gst/sdp/gstsdpmessage.c: (is_multicast_address):
5175         Include Winsock2.h for VS6 and use a different way initialize
5176         hints structure so it can build with VS6.
5177         * win32/MANIFEST:
5178         * win32/vs6/libgstsdp.dsp:
5179         * win32/common/libgstsdp.def:
5180         Add new files for libgstsdp.
5181         * win32/vs6/grammar.dsp:
5182         Copy pbutils-enumtypes* from win32/common to pbutils sources folder.
5183         * win32/vs6/gst_plugins_base.dsw:
5184         * win32/vs6/libgstdecodebin.dsp:
5185         * win32/vs6/libgstdecodebin2.dsp:
5186         * win32/vs6/libgstplaybin.dsp:
5187         * win32/vs6/libgstvolume.dsp:
5188         Add new dependencies to the link list.
5189
5190 2008-01-13  Julien Moutte  <julien@fluendo.com>
5191
5192         * win32/common/config.h:
5193         * win32/common/gstrtsp-enumtypes.c: (gst_rtsp_result_get_type),
5194         (gst_rtsp_event_get_type), (gst_rtsp_family_get_type),
5195         (gst_rtsp_state_get_type), (gst_rtsp_version_get_type),
5196         (gst_rtsp_method_get_type), (gst_rtsp_auth_method_get_type),
5197         (gst_rtsp_header_field_get_type), (gst_rtsp_status_code_get_type):
5198         * win32/common/interfaces-enumtypes.c:
5199         (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
5200         (gst_mixer_message_type_get_type), (gst_mixer_flags_get_type),
5201         (gst_mixer_track_flags_get_type),
5202         (gst_tuner_channel_flags_get_type):
5203         * win32/common/multichannel-enumtypes.c:
5204         (gst_audio_channel_position_get_type):
5205         * win32/common/pbutils-enumtypes.c:
5206         (gst_install_plugins_return_get_type):
5207         * win32/common/pbutils-enumtypes.h: Update/Add generated files
5208         in the win32 build directory.
5209
5210 2008-01-12  Jan Schmidt  <Jan.Schmidt@sun.com>
5211
5212         * tests/check/Makefile.am:
5213         Fix CFLAGS to also pull in the gstcheck cflags from AM_CFLAGS.
5214
5215         * tests/check/elements/audiorate.c: (do_perfect_stream_test):
5216         * tests/check/elements/playbin.c:
5217         * tests/check/libs/mixer.c: (test_element_interface_supported),
5218         (gst_implements_interface_init):
5219         * tests/check/libs/rtp.c: (GST_START_TEST):
5220         Fix various assignment type mismatches.
5221
5222 2008-01-12  Jan Schmidt  <Jan.Schmidt@sun.com>
5223
5224         * configure.ac:
5225         * gst-libs/gst/rtsp/Makefile.am:
5226         Add test to see if hstrerror is available or if we need libresolv
5227         (Solaris) for it, then use it in libgstrtsp.
5228
5229 2008-01-12  Jan Schmidt  <Jan.Schmidt@sun.com>
5230
5231         * gst-libs/gst/tag/Makefile.am:
5232         Fix include path order
5233
5234 2008-01-11  Edward Hervey  <edward.hervey@collabora.co.uk>
5235
5236         * gst-libs/gst/pbutils/install-plugins.c:
5237         (gst_install_plugins_context_copy),
5238         (gst_install_plugins_context_get_type):
5239         * gst-libs/gst/pbutils/install-plugins.h:
5240         Add GBoxed GType for GstInstallPluginsContext, this eases the wrapping
5241         for bindings.
5242
5243 2008-01-11  Michael Smith <msmith@fluendo.com>
5244
5245         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
5246         (_theora_granule_frame), (_theora_granule_start_time),
5247         (theora_dec_sink_convert), (theora_dec_decode_buffer):
5248           Adapt for post-alpha meaning of granulepos, when we
5249           have a newer version of libtheora.
5250         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
5251         (theora_enc_get_ogg_packet_end_time), (theora_enc_sink_event),
5252         (theora_enc_is_discontinuous), (theora_enc_chain):
5253           Likewise.
5254         * tests/check/Makefile.am:
5255           Link libtheora into theoraenc test so we can check which version of
5256           libtheora we're testing against.
5257         * tests/check/pipelines/theoraenc.c: (check_libtheora),
5258         (check_buffer_granulepos),
5259         (check_buffer_granulepos_from_starttime), (GST_START_TEST),
5260         (theoraenc_suite):
5261           Adapt tests to check the values that are now defined for theora; make
5262           the tests backwards-adapt the passed values if we're running against an
5263           old libtheora.
5264           Fixes #497964
5265
5266 2008-01-10  Tim-Philipp Müller  <tim at centricular dot net>
5267
5268         * gst-libs/gst/audio/gstbaseaudiosink.c:
5269           (gst_base_audio_sink_class_init):
5270         * gst-libs/gst/audio/gstbaseaudiosrc.c:
5271           (gst_base_audio_src_class_init):
5272           Ref audio clock class from a thread-safe context to make sure
5273           we're not bit by GObjects lack of thread-safety here (#349410),
5274            however unlikely that may be in practice.
5275
5276 2008-01-10  Sebastian Dröge  <slomo@circular-chaos.org>
5277
5278         * autogen.sh:
5279           Add -Wno-portability to the automake parameters to stop warnings
5280           about GNU make extensions being used. We require GNU make in almost
5281           every Makefile anyway.
5282           
5283         * configure.ac:
5284           Use AM_PROG_CC_C_O as a compiler that accepts both -c and -o
5285           at the same time is required for per target flags.
5286
5287 2008-01-08  Tim-Philipp Müller  <tim at centricular dot net>
5288
5289         * gst-libs/gst/tag/gsttagdemux.c: (gst_tag_demux_pull_start_tag):
5290           Post an error message if we can't pull as many bytes as we need
5291           for the tag. This makes sure the user gets to see a proper error
5292           message if a file with a partial ID3 tag is fed to decodebin, and
5293           not a 'no ID3 tag demuxer' error, which would be confusing
5294           (see #508138).
5295
5296 2008-01-08  Tim-Philipp Müller  <tim at centricular dot net>
5297
5298         * gst-libs/gst/pbutils/descriptions.c: (formats):
5299           Add description strings for ID3, APE, and ICY tags.
5300
5301 2008-01-08  Tim-Philipp Müller  <tim at centricular dot net>
5302
5303         * gst/playback/gstdecodebin.c: (try_to_link_1):
5304           Make sure we error out correctly if we can't activate one of
5305           the elements we've added.  Fixes #508138.
5306           
5307 2008-01-07  Tim-Philipp Müller  <tim at centricular dot net>
5308
5309         Patch by: Bastien Nocera <hadess at hadess net>
5310
5311         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume),
5312           (check_if_volumes_are_the_same), (gst_alsa_mixer_set_volume):
5313           Use snd_mixer_selem_set_{playback|capture}_volume_all() if
5314           the volume is the same for all channels. This works around
5315           some problem in alsa that leaves us with inconsistent state
5316           for some reason (#486840).
5317
5318 2008-01-07  Tim-Philipp Müller  <tim at centricular dot net>
5319
5320         Patch by: Jerone Young <jerone at gmail com>
5321
5322         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_find_master_mixer):
5323           If there's no mixer track by the name of 'Master' or 'Front',
5324           check if there's one called 'PCM' before trying the generic
5325           fallback logic (fixes #506928, where we pick 'Mic' as master
5326           track for the AD1984 card in a Thinkpad T61/X61 laptop).
5327
5328 2008-01-07  Wim Taymans  <wim.taymans@collabora.co.uk>
5329
5330         * gst/playback/gstplay-enum.c:
5331         (register_gst_autoplug_select_result),
5332         (gst_autoplug_select_result_get_type), (register_gst_play_flags),
5333         (gst_play_flags_get_type):
5334         * gst/playback/gstplay-enum.h:
5335         Add enums for configuration flags.
5336
5337         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
5338         (init_group), (gst_play_bin_init), (gst_play_bin_set_property),
5339         (gst_play_bin_get_property), (no_more_pads_cb),
5340         (autoplug_select_cb), (gst_play_bin_change_state):
5341         Merge mode with flags.
5342         Add more property getters/setters, defaults and docs.
5343         Add properties to get number of audio/video/text streams.
5344         Create sink object in _init so that we can always rely on it being
5345         there.
5346
5347         * gst/playback/gstplaysink.c: (gst_play_sink_init),
5348         (gen_video_chain), (gen_audio_chain), (gen_vis_chain),
5349         (activate_vis), (gst_play_sink_reconfigure),
5350         (gst_play_sink_set_flags), (gst_play_sink_get_flags),
5351         (gst_play_sink_change_state):
5352         * gst/playback/gstplaysink.h:
5353         Use flags to configure the sink pipelines.
5354         Add tee before audio pipeline so that we can use it for visualisations.
5355         Start working on integrating visualisations.
5356         Remove mode, we can do everything with the flags now.
5357         Add method to configue the sink pipeline.
5358
5359 2008-01-06  Tim-Philipp Müller  <tim at centricular dot net>
5360
5361         * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
5362           (check_buffer_timestamp), (check_buffer_duration):
5363           Turn these functions into macros so we can see right away
5364           where the failure occured.
5365
5366 2008-01-05  Julien Moutte  <julien@fluendo.com>
5367
5368         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new): Add
5369         debugging information to understand how X calculates the stride
5370         for XvImages.
5371
5372 2008-01-03  Sebastian Dröge  <slomo@circular-chaos.org>
5373
5374         * gst/volume/Makefile.am:
5375         * gst/volume/gstvolume.c: (volume_choose_func),
5376         (gst_volume_base_init), (gst_volume_class_init), (gst_volume_init),
5377         (volume_setup):
5378         * gst/volume/gstvolume.h:
5379         Use GstAudioFilter as base class for the volume element instead of
5380         plain GstBaseTransform.
5381
5382 2008-01-03  Sebastian Dröge  <slomo@circular-chaos.org>
5383
5384         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type):
5385         Don't set element details for the abstract GstAudioFilter class.
5386
5387 2008-01-02  Sebastian Dröge  <slomo@circular-chaos.org>
5388
5389         * gst-libs/gst/audio/gstaudiofilter.c:
5390         (gst_audio_filter_class_init), (gst_audio_filter_get_unit_size):
5391         Implement get_unit_size() vmethod of GstBaseTransform.
5392
5393 2008-01-01  Edward Hervey  <edward.hervey@collabora.co.uk>
5394
5395         * gst-libs/gst/pbutils/Makefile.am:
5396         * gst-libs/gst/pbutils/pbutils.h:
5397         Use glib-enum generator to have a proper enum GType for
5398         GST_TYPE_INSTALL_PLUGINS_RETURN so we can easily wrap it in bindings.
5399
5400 2007-12-31  David Schleef  <ds@schleef.org>
5401
5402         * tests/check/Makefile.am:
5403         * tests/check/pipelines/theoraenc.c:
5404           Reenable theoraenc test, which fails on the buildbot but
5405           not locally.
5406
5407 2007-12-31  David Schleef  <ds@schleef.org>
5408
5409         * docs/libs/.cvsignore:
5410         * docs/plugins/.cvsignore:
5411           Add *-undeclared.txt to fix buildbot.
5412
5413 2007-12-31  David Schleef  <ds@schleef.org>
5414
5415         * tests/check/Makefile.am:
5416           Second attempt at disabling theoraenc test long enough to
5417           get buildbot to compile -base.
5418
5419 2007-12-31  David Schleef  <ds@schleef.org>
5420
5421         * tests/check/pipelines/theoraenc.c:
5422           Disable theoraenc test long enough to get the buildbot to
5423           compile a recent -base.
5424
5425 2007-12-31  Wim Taymans  <wim.taymans@collabora.co.uk>
5426
5427         * tests/examples/seek/seek.c: (stop_cb):
5428         Make sure we reset the slider value to 0.0 without racing against a
5429         possible g_idle that sets it to something else.
5430
5431 2007-12-31  Thijs Vermeir  <thijsvermeir@gmail.com>
5432
5433         * sys/ximage/ximagesink.c:
5434         fix typo
5435
5436 2007-12-30  Wim Taymans  <wim.taymans@collabora.co.uk>
5437
5438         * gst-libs/gst/rtsp/gstrtspdefs.c: (rtsp_init_status):
5439         * gst-libs/gst/rtsp/gstrtspdefs.h:
5440         Add Location header so that we can start implementing redirects.
5441         See #506025.
5442
5443 2007-12-29  Thijs Vermeir  <thijsvermeir@gmail.com>
5444
5445         * gst/subparse/gstssaparse.c:
5446         combine if's
5447
5448 2007-12-29  Thijs Vermeir  <thijsvermeir@gmail.com>
5449
5450         * gst/subparse/gstssaparse.c:
5451         remove duplicate log message
5452
5453 2007-12-29  Sebastian Dröge  <slomo@circular-chaos.org>
5454
5455         * ext/libvisual/visual.c: (gst_visual_chain):
5456         Fix 'xyz may be used uninitialized' compiler warnings caused
5457         by broken g_assert_not_reached() macro in GLib-2.15.x and don't
5458         abort() in any case but properly report the error.
5459
5460 2007-12-28  Wim Taymans  <wim.taymans@collabora.co.uk>
5461
5462         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
5463         (gst_play_bin_finalize), (gst_play_bin_set_uri),
5464         (gst_play_bin_set_suburi), (gst_play_bin_set_property),
5465         (gst_play_bin_get_property), (pad_removed_cb), (drained_cb),
5466         (autoplug_select_cb), (activate_group), (deactivate_group),
5467         (setup_next_source), (save_current_group),
5468         (gst_play_bin_change_state):
5469         Code cleanups.
5470         Remove next-uri, we can use the uri property just fine.
5471         Fix some crasher.
5472         Unref uridecodebin when switching.
5473         Fix going to READY.
5474
5475         * gst/playback/gstplaysink.c: (gst_play_sink_class_init),
5476         (gst_play_sink_init), (gst_play_sink_dispose),
5477         (gst_play_sink_finalize), (gst_play_sink_vis_unblocked),
5478         (gst_play_sink_vis_blocked), (gst_play_sink_set_video_sink),
5479         (gst_play_sink_set_audio_sink), (gst_play_sink_set_vis_plugin),
5480         (gst_play_sink_set_property), (gst_play_sink_get_property),
5481         (gen_video_chain), (gen_text_element), (gen_audio_chain),
5482         (gen_vis_element), (gst_play_sink_get_mode),
5483         (gst_play_sink_set_mode), (gst_play_sink_set_flags),
5484         (gst_play_sink_get_flags), (gst_play_sink_request_pad),
5485         (gst_play_sink_release_pad), (gst_play_sink_send_event_to_sink),
5486         (gst_play_sink_change_state):
5487         * gst/playback/gstplaysink.h:
5488         Add some locking to make things threadsafe.
5489
5490         * gst/playback/test7.c: (about_to_finish_cb):
5491         Fix test.
5492
5493 2007-12-22  Tim-Philipp Müller  <tim at centricular dot net>
5494
5495         * gst/videoscale/gstvideoscale.c: (gst_video_scale_set_property),
5496           (gst_video_scale_get_property), (gst_video_scale_transform_caps),
5497           (gst_video_scale_transform):
5498           Don't claim to be able to handle/transform caps that can't really
5499           be handled by the currently selected scaling method (here: RGB or
5500           packed YUV with 4-tap method). Also add locking to method property.
5501
5502         * tests/check/pipelines/simple-launch-lines.c: (setup_pipeline),
5503           (test_basetransform_based):
5504           Some test pipelines for the above (not entirely valgrind clean yet
5505           apparently).
5506
5507 2007-12-21  David Schleef  <ds@schleef.org>
5508
5509         * gst-libs/gst/video/video.c:
5510         * gst-libs/gst/video/video.h:
5511           Add additional RGBA and RGB-24 video formats.
5512
5513 2007-12-21  Tim-Philipp Müller  <tim at centricular dot net>
5514
5515         * tests/check/elements/playbin.c: (test_sink_usage_video_only_stream),
5516           (test_suburi_error_unknowntype), (test_suburi_error_invalidfile),
5517           (test_suburi_error_wrongproto), (test_missing_primary_decoder):
5518         * tests/check/libs/cddabasesrc.c: (GST_START_TEST), (GST_START_TEST),
5519           (cddabasesrc_suite):
5520           Don't use GST_PLUGIN_DEFINE_STATIC, it's not portable and will be
5521           deprecated in the future (see #498924).
5522
5523 2007-12-21  Tim-Philipp Müller  <tim at centricular dot net>
5524
5525         * gst/playback/gststreamselector.c: (gst_selector_pad_event):
5526           Don't leak event.
5527
5528 2007-12-20  Thijs Vermeir <thijsvermeir@gmail.com>
5529
5530         * gst-libs/gst/riff/riff-read.c:
5531         Use GST_ROUND_UP_2 macro
5532
5533 2007-12-20  Tim-Philipp Müller  <tim at centricular dot net>
5534
5535         * gst/playback/.cvsignore:
5536           Ignore more.
5537
5538 2007-12-20  Tim-Philipp Müller  <tim at centricular dot net>
5539
5540         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init):
5541         * gst/playback/gstplaybasebin.c: (set_subtitles_visible),
5542           (set_active_source):
5543         * gst/playback/gstplaybasebin.h:
5544         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
5545           (setup_sinks), (playbin_set_subtitles_visible):
5546           Make switching off of subtitles work. To avoid all kind of
5547           problems with unlinking of the subtitle input, we just keep
5548           the subtitle inputs linked as they are and tell textoverlay
5549           not to render them. Fixes #373011.
5550           Other subtitle switching issues (esp. when there are both
5551           external and in-stream subtitles) remain. They'll be solved
5552           in playbin2.
5553
5554 2007-12-18  Wim Taymans  <wim.taymans@collabora.co.uk>
5555
5556         * gst/playback/gststreamselector.c: (gst_selector_pad_init):
5557         Init the pad segment too.
5558
5559 2007-12-18  Wim Taymans  <wim.taymans@collabora.co.uk>
5560
5561         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func),
5562         (gst_audioringbuffer_open_device),
5563         (gst_audioringbuffer_close_device), (gst_audioringbuffer_acquire),
5564         (gst_audioringbuffer_release), (gst_audioringbuffer_start),
5565         (gst_audioringbuffer_pause), (gst_audioringbuffer_stop),
5566         (gst_audio_sink_create_ringbuffer):
5567         Improve debug output.
5568
5569         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_start),
5570         (gst_ring_buffer_pause), (gst_ring_buffer_delay):
5571         Prevent some functions from doing things and failing when the
5572         ringbuffer is not yet acquired.
5573
5574 2007-12-18  Sebastian Dröge  <slomo@circular-chaos.org>
5575
5576         * gst-libs/gst/interfaces/interfaces.h:
5577           Also remove interfaces.h from CVS as it is not needed anymore.
5578
5579 2007-12-18  Sebastian Dröge  <slomo@circular-chaos.org>
5580
5581         * gst-libs/gst/interfaces/Makefile.am:
5582           interfaces.h is not used anymore so remove it from the build
5583           process.
5584
5585 2007-12-17  David Schleef  <ds@schleef.org>
5586
5587         * gst/videotestsrc/gstvideotestsrc.c:
5588         * gst/videotestsrc/gstvideotestsrc.h:
5589           Add a "blink" pattern.  Turn on the pain.  Apologies.  It's useful
5590           for testing vertical refresh synchronization.
5591
5592 2007-12-17  David Schleef  <ds@schleef.org>
5593
5594         * docs/libs/gst-plugins-base-libs-sections.txt:
5595         * gst-libs/gst/video/video.c:
5596         * gst-libs/gst/video/video.h:
5597           Add new GstVideFormat enum and write a bunch of helper functions
5598           based around it.
5599
5600 2007-12-17  Tim-Philipp Müller  <tim at centricular dot net>
5601
5602         * Makefile.am:
5603           Use new common/win32.mak.
5604
5605 2007-12-17  Wim Taymans  <wim.taymans@collabora.co.uk>
5606
5607         * gst-libs/gst/audio/gstbaseaudiosrc.c:
5608         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
5609         Add debug info.
5610         When going from PLAYING to PAUSED, pause the ringbuffer before calling
5611         the parent state change function, just like the audiosink, because the
5612         parent waits for the element to finish its processing before completing
5613         the state change. This makes going to PAUSED a lot snappier.
5614         When going from READY to PAUSED, don't allow the ringbuffer to start
5615         yet.
5616
5617 2007-12-17  Edward Hervey  <edward.hervey@collabora.co.uk>
5618
5619         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
5620         Yet another fix for broken software that produce files with an empty
5621         blockalign field. Instead of completely failing, make a second attempt
5622         at guessing the width/depth by looking at strf->size.
5623
5624 2007-12-16  Tim-Philipp Müller  <tim at centricular dot net>
5625
5626         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_do_seek),
5627           (gst_cdda_base_src_handle_track_seek), (gst_cdda_base_src_create):
5628         * gst-libs/gst/pbutils/install-plugins.c:
5629           (gst_install_plugins_spawn_child), (gst_install_plugins_supported):
5630         * gst-libs/gst/pbutils/missing-plugins.c:
5631           (gst_missing_plugin_message_get_installer_detail),
5632           (gst_missing_encoder_installer_detail_new):
5633         * gst-libs/gst/rtsp/gstrtspconnection.c: (gst_rtsp_connection_send):
5634         * gst-libs/gst/rtsp/gstrtspmessage.c: (gst_rtsp_message_unset):
5635           Turn a few g_assert_not_reached() into g_return_val_if_reached() to
5636           avoid compiler warnings (#503930).
5637
5638 2007-12-17  Edward Hervey  <edward.hervey@collabora.co.uk>
5639
5640         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
5641         Be apologetic of software that use the 'jpeg' instead of 'JPEG' FOURCC
5642         for jpeg video streams.
5643         Add the 'avc1'/'AVC1' fourcc mapping for h264, same software-comment as
5644         for the above modification.
5645
5646 2007-12-15  Tim-Philipp Müller  <tim at centricular dot net>
5647
5648         * gst-libs/gst/interfaces/xoverlay.c: (gst_x_overlay_expose),
5649           (gst_x_overlay_handle_events):
5650           More guards (we don't want klass to end up being NULL).
5651
5652 2007-12-14  Sebastian Dröge  <slomo@circular-chaos.org>
5653
5654         * configure.ac:
5655         * gst/volume/gstvolume.c: (gst_volume_init):
5656           Use new gst_base_transform_set_gap_aware() function as volume
5657           correctly handles GST_BUFFER_FLAG_GAP. Require core 0.10.15.1 
5658           for this.
5659
5660 2007-12-14  Wim Taymans  <wim.taymans@collabora.co.uk>
5661
5662         * tests/examples/seek/seek.c: (msg_segment_done), (main):
5663         Don't go to READY on EOS as this avoids testing of seeking and
5664         restarting after EOS, use the stop button when you want to READY.
5665         Don't try to do a flushing seek in segment-done, it does not make
5666         sense to use this for gapless playback and is not needed.
5667
5668 2007-12-14  Wim Taymans  <wim.taymans@collabora.co.uk>
5669
5670         * gst/playback/gstqueue2.c: (gst_queue_init), (gst_queue_finalize),
5671         (reset_rate_timer), (update_in_rates), (update_out_rates),
5672         (gst_queue_locked_enqueue), (gst_queue_locked_dequeue),
5673         (gst_queue_chain), (gst_queue_loop):
5674         Use separate timers for input and output rates.
5675         Pause measuring the output rate when we block for more data.
5676         See #503262.
5677
5678 2007-12-14  Wim Taymans  <wim.taymans@collabora.co.uk>
5679
5680         * gst/playback/gstqueue2.c: (gst_queue_chain):
5681         Pause the timer to measure the input rate when we block because the
5682         queue is filled. See #503262.
5683
5684 2007-12-13  Wim Taymans  <wim.taymans@collabora.co.uk>
5685
5686         Patch by: Peter Kjellerstedt  <pkj at axis com>
5687
5688         * gst-libs/gst/rtsp/gstrtspconnection.c:
5689         (gst_rtsp_connection_free):
5690         Close control sockets. Fixes #503440.
5691
5692 2007-12-13  Wim Taymans  <wim.taymans@collabora.co.uk>
5693
5694         * gst/playback/gstdecodebin2.c: (analyze_new_pad), (connect_pad):
5695         Expose the right pad in the right place with the right element.
5696
5697 2007-12-13  Tim-Philipp Müller  <tim at centricular dot net>
5698
5699         * gst-libs/gst/pbutils/descriptions.c: (formats):
5700           Add description for 'private' dts caps (who come up with that name?).
5701
5702 2007-12-13  Tim-Philipp Müller  <tim at centricular dot net>
5703
5704         * Makefile.am:
5705           Add check-exports target and run it with 'make check'.
5706
5707         * configure.ac:
5708           Be stricter about what we export in our libraries: change regexp so that
5709           we only export _gst_foo(), but not __gst_foo().
5710
5711         * gst-libs/gst/cdda/base64.h: (rfc822_binary):
5712         * gst-libs/gst/cdda/sha1.h: (sha_init), (sha_update), (sha_final):
5713           Change internal functions to __gst_foo so they dont' get exported.
5714
5715         * win32/common/libgstaudio.def:
5716           Add missing symbols.
5717
5718 2007-12-11  David Schleef  <ds@schleef.org>
5719
5720         * ChangeLog: remove conflict markers
5721
5722 2007-12-11  Tim-Philipp Müller  <tim at centricular dot net>
5723
5724         * ext/gnomevfs/Makefile.am:
5725         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_unicodify):
5726           Use gst_tag_freeform_string_to_utf8() here, which also takes
5727           into account any character sets specified by the user via
5728           environment variables.
5729
5730 2007-12-10  Wim Taymans  <wim.taymans@gmail.com>
5731
5732         * gst/audioconvert/Makefile.am:
5733         Also link to libm.
5734
5735 2007-12-10  Wim Taymans  <wim.taymans@gmail.com>
5736
5737         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
5738         No need for floating point operations here. avoids having to link
5739         against the math library too.
5740
5741 2007-12-10  Tim-Philipp Müller  <tim at centricular dot net>
5742
5743         * gst-libs/gst/pbutils/descriptions.c: (formats),
5744           (format_info_get_desc):
5745         * tests/check/libs/pbutils.c: (GST_START_TEST), (caps_strings),
5746           (GST_START_TEST):
5747           Add one or two missing formats.  Generate ADPCM description
5748           dynamically depending on layout/format.
5749
5750 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
5751
5752         * configure.ac:
5753           Don't define GST_DISABLE_DEPRECATED for releases. Fixes #498181.
5754
5755 2007-12-08  Tim-Philipp Müller  <tim at centricular dot net>
5756
5757         Patch by: Robin Stocker <robin dot stocker at gmx dot ch>
5758
5759         * gst/subparse/gstsubparse.c: (gst_sub_parse_data_format_autodetect):
5760           Some .srt files start with chunk number 0 and not chunk number 1,
5761           recognise and accept those as well (fixes #502497).
5762
5763         * tests/check/elements/subparse.c: (srt_input), (srt_input0),
5764           (test_src):
5765           Add unit test for the above.
5766
5767 2007-12-06  Wim Taymans  <wim.taymans@gmail.com>
5768
5769         * gst/playback/gstplay-enum.c:
5770         (register_gst_autoplug_select_result),
5771         (gst_autoplug_select_result_get_type):
5772         * gst/playback/gstplay-enum.h:
5773         Add missing files.
5774
5775 2007-12-05  Wim Taymans  <wim.taymans@gmail.com>
5776
5777         * gst/playback/Makefile.am:
5778         Group decodebin2 and uridecodebin into the same plugin so that they
5779         can share the GEnumType.
5780
5781         * gst/playback/gstdecodebin2.c: (_gst_array_accumulator),
5782         (_gst_select_accumulator), (gst_decode_bin_class_init),
5783         (gst_decode_bin_init), (gst_decode_bin_autoplug_sort),
5784         (gst_decode_bin_autoplug_select), (gst_decode_bin_autoplug_add),
5785         (analyze_new_pad), (connect_pad), (gst_decode_bin_plugin_init):
5786         Add signal to sort factories instead of the more awkward autoplug-select
5787         signal.
5788         Modify autoplug_select so that we can try, skip or expose the
5789         autopluggin of an element on a pad.
5790
5791         * gst/playback/gstfactorylists.c: (compare_ranks),
5792         (decoders_filter), (sinks_filter), (gst_factory_list_is_type),
5793         (element_filter), (gst_factory_list_get_elements),
5794         (gst_factory_list_debug), (gst_factory_list_filter):
5795         * gst/playback/gstfactorylists.h:
5796         Simplify the API, allow getting elements based on mask.
5797
5798         * gst/playback/gstplay-marshal.list:
5799         Add some more marshallers.
5800
5801         * gst/playback/gstplaybin2.c: (init_group), (gst_play_bin_init),
5802         (gst_play_bin_finalize), (pad_removed_cb), (autoplug_factories_cb),
5803         (autoplug_select_cb), (activate_group):
5804         Add support for managing non-raw sinks by providing a custom element and
5805         sink list to decodebin2.
5806         Try to plug non-raw sinks when decodebin2 using autoplug-select of
5807         decodebin2.
5808
5809         * gst/playback/gstplaysink.c: (gen_video_chain), (gen_audio_chain),
5810         (gst_play_sink_set_mode), (gst_play_sink_request_pad):
5811         * gst/playback/gstplaysink.h:
5812         Add support for raw and non-raw sinks. 
5813         Add support to force sinks selected by playbin2.
5814         Don't plug raw converters for non-raw sinks.
5815
5816         * gst/playback/gsturidecodebin.c: (_gst_array_accumulator),
5817         (_gst_select_accumulator), (gst_uri_decode_bin_class_init),
5818         (proxy_autoplug_select_signal), (gst_uri_decode_bin_plugin_init),
5819         (plugin_init):
5820         Use right accumulators.
5821         Proxy new signal.
5822
5823 2007-12-03  Wim Taymans  <wim.taymans@gmail.com>
5824
5825         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
5826         Use runnning time as the base time instead of the timestamp.
5827         Spotted by Saur on IRC.
5828
5829 2007-12-03  Edward Hervey  <bilboed@bilboed.com>
5830
5831         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
5832         Add 'WVC1' codec mapping for Windows Media VC-1 video codec.
5833
5834 2007-12-03  Wim Taymans  <wim.taymans@gmail.com>
5835
5836         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_bisect_forward_serialno),
5837         (gst_ogg_demux_read_chain):
5838         If we find a new serial number but it does not contain a BOS page, make
5839         sure we initialize the chain to NULL because else we will try to scan it
5840         and crash. Fixes #500763
5841
5842 2007-11-30  Wim Taymans  <wim.taymans@gmail.com>
5843
5844         * gst/playback/Makefile.am:
5845         * gst/playback/gstfactorylists.c: (compare_ranks), (print_feature),
5846         (get_feature_array), (decoders_filter), (sinks_filter),
5847         (gst_factory_list_get_decoders), (gst_factory_list_get_sinks),
5848         (gst_factory_list_filter):
5849         * gst/playback/gstfactorylists.h:
5850         Refactor some common code to filter factories and check caps compat.
5851
5852         * gst/playback/gstdecodebin.c:
5853         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init),
5854         (gst_decode_bin_init), (gst_decode_bin_dispose),
5855         (gst_decode_bin_autoplug_continue),
5856         (gst_decode_bin_autoplug_factories),
5857         (gst_decode_bin_autoplug_select), (analyze_new_pad),
5858         (find_compatibles):
5859         * gst/playback/gstplaybin.c:
5860         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
5861         (gst_play_bin_init), (gst_play_bin_finalize),
5862         (autoplug_factories_cb), (activate_group):
5863         * gst/playback/gstqueue2.c:
5864         * gst/playback/gsturidecodebin.c: (proxy_unknown_type_signal),
5865         (proxy_autoplug_continue_signal),
5866         (proxy_autoplug_factories_signal), (proxy_autoplug_select_signal),
5867         (proxy_drained_signal):
5868         Add some more debug info and use factor filtering code.
5869
5870 2007-11-26  Stefan Kost  <ensonic@users.sf.net>
5871
5872         * gst/audiotestsrc/gstaudiotestsrc.c:
5873         * gst/volume/gstvolume.c:
5874         * gst/volume/gstvolume.h:
5875           Add GAP-flag support.
5876
5877 2007-11-24  Julien MOUTTE  <julien@moutte.net>
5878
5879         * tests/examples/seek/seek.c: (main): Increase the range of the
5880         rate selector as I would like to test QOS behavior at higher
5881         forward and reverse playback speed like say 64x.
5882
5883 2007-11-23  Sebastian Dröge  <slomo@circular-chaos.org>
5884
5885         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
5886         (audioresample_query), (audioresample_query_type),
5887         (gst_audioresample_set_property):
5888         Implement latency query.
5889
5890 2007-11-21  Wim Taymans  <wim.taymans@gmail.com>
5891
5892         * gst-libs/gst/audio/gstbaseaudiosink.c:
5893         (gst_base_audio_sink_drain):
5894         Our EOS time contains the base_time, _wait_eos() expects a running_time
5895         so we have to subtract the base_time again before calling the function.
5896         This fixes an EOS regression where the base_time was added twice and EOS
5897         took longer and longer in certain situations.
5898         Fixes #498767.
5899
5900 2007-11-21  Wim Taymans  <wim.taymans@gmail.com>
5901
5902         * docs/libs/gst-plugins-base-libs-sections.txt:
5903         * gst-libs/gst/audio/gstbaseaudiosink.c: (slave_method_get_type),
5904         (gst_base_audio_sink_set_provide_clock),
5905         (gst_base_audio_sink_get_provide_clock),
5906         (gst_base_audio_sink_set_slave_method),
5907         (gst_base_audio_sink_get_slave_method),
5908         (gst_base_audio_sink_set_property),
5909         (gst_base_audio_sink_get_property), (gst_base_audio_sink_drain),
5910         (gst_base_audio_sink_none_slaving),
5911         (gst_base_audio_sink_handle_slaving):
5912         * gst-libs/gst/audio/gstbaseaudiosink.h:
5913         Expose methods for some object properties so that subclasses can more
5914         easily configure them.
5915         Added slave method none, that completely disables slaving to the
5916         internal clock.
5917         API: gst_base_audio_sink_set_provide_clock()
5918         API: gst_base_audio_sink_get_provide_clock()
5919         API: gst_base_audio_sink_set_slave_method()
5920         API: gst_base_audio_sink_get_slave_method()
5921
5922         * gst-libs/gst/audio/gstbaseaudiosrc.c:
5923         (gst_base_audio_src_set_provide_clock),
5924         (gst_base_audio_src_get_provide_clock),
5925         (gst_base_audio_src_set_property),
5926         (gst_base_audio_src_get_property), (gst_base_audio_src_create):
5927         * gst-libs/gst/audio/gstbaseaudiosrc.h:
5928         Expose methods for some object properties so that subclasses can more
5929         easily configure them.
5930         API: gst_base_audio_src_set_provide_clock()
5931         API: gst_base_audio_src_get_provide_clock()
5932
5933 2007-11-20  Wim Taymans  <wim.taymans@gmail.com>
5934
5935         Patch by: Joe Peterson <lavajoe at gentoo dot org>
5936
5937         * gst-libs/gst/sdp/gstsdpmessage.c:
5938         Fix compilation on FreeBSD (Gentoo). Fixes #498228.
5939
5940 2007-11-19  Sebastian Dröge  <slomo@circular-chaos.org>
5941
5942         * tests/check/libs/fft.c: (GST_START_TEST):
5943         Fix scaling to really have dB instead of something else.
5944
5945 2007-11-19  Julien MOUTTE  <julien@moutte.net>
5946
5947         * tests/examples/seek/seek.c: (main): There's a nice macro to check
5948         GTK version, use it.
5949
5950 2007-11-19  Julien MOUTTE  <julien@moutte.net>
5951
5952         * tests/examples/seek/seek.c: (main): Try to support stable version
5953         of GTK.
5954
5955 2007-11-17  Stefan Kost  <ensonic@users.sf.net>
5956
5957         * gst/playback/README:
5958         * gst/playback/test7.c:
5959           Fix the build + little README update.
5960
5961 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
5962
5963         * tests/examples/seek/seek.c: (make_playerbin2_pipeline), (main):
5964         Add playbin2 seek pipeline.
5965
5966 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
5967
5968         * gst/playback/Makefile.am:
5969         * gst/playback/gstplayback.c: (plugin_init):
5970         * gst/playback/test7.c: (update_scale), (warning_cb), (error_cb),
5971         (eos_cb), (about_to_finish_cb), (main):
5972         Add playbin2.
5973         Added gapless playback example.
5974
5975         * gst/playback/gstplaybasebin.c:
5976         * gst/playback/gstplaybasebin.h:
5977         * gst/playback/gstplaybin.c: (gst_play_bin_plugin_init):
5978         * gst/playback/gstqueue2.c:
5979         * gst/playback/test.c:
5980         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_class_init),
5981         (pad_removed_cb):
5982         * gst/playback/gststreaminfo.h:
5983         Change email.
5984
5985         * gst/playback/gstplaybin2.c: (gst_play_bin_get_type),
5986         (gst_play_bin_class_init), (init_group), (gst_play_bin_init),
5987         (gst_play_bin_dispose), (gst_play_bin_set_uri),
5988         (gst_play_bin_set_suburi), (gst_play_bin_set_property),
5989         (gst_play_bin_get_property), (gst_play_bin_handle_message),
5990         (pad_added_cb), (pad_removed_cb), (no_more_pads_cb), (perform_eos),
5991         (drained_cb), (unlink_group), (activate_group),
5992         (setup_next_source), (gst_play_bin_change_state),
5993         (gst_play_bin2_plugin_init):
5994         Added raw first version of playbin2. Does chained oggs and gapless
5995         playback fine. No support for raw sinks yet. No visualisations or
5996         subtitles yet.
5997
5998         * gst/playback/gstplaysink.c: (gst_play_sink_get_type),
5999         (gst_play_sink_class_init), (gst_play_sink_init),
6000         (gst_play_sink_dispose), (gst_play_sink_vis_unblocked),
6001         (gst_play_sink_vis_blocked), (gst_play_sink_set_video_sink),
6002         (gst_play_sink_set_audio_sink), (gst_play_sink_set_vis_plugin),
6003         (gst_play_sink_set_property), (gst_play_sink_get_property),
6004         (post_missing_element_message), (free_chain), (add_chain),
6005         (activate_chain), (gen_video_chain), (gen_text_element),
6006         (gen_audio_chain), (gen_vis_element), (gst_play_sink_get_mode),
6007         (gst_play_sink_set_mode), (gst_play_sink_request_pad),
6008         (gst_play_sink_release_pad), (gst_play_sink_send_event_to_sink),
6009         (gst_play_sink_send_event), (gst_play_sink_change_state):
6010         * gst/playback/gstplaysink.h:
6011         Added Element that abstracts the sinks and their pipelines for playbin2.
6012
6013 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
6014
6015         * gst/playback/gststreamselector.c: (gst_selector_pad_get_type),
6016         (gst_selector_pad_class_init), (gst_selector_pad_init),
6017         (gst_selector_pad_finalize), (gst_selector_pad_reset),
6018         (gst_selector_pad_get_linked_pads), (gst_selector_pad_event),
6019         (gst_selector_pad_getcaps), (gst_selector_pad_bufferalloc),
6020         (gst_selector_pad_chain), (gst_stream_selector_get_type),
6021         (gst_stream_selector_base_init), (gst_stream_selector_class_init),
6022         (gst_stream_selector_init), (gst_stream_selector_set_property),
6023         (gst_stream_selector_get_linked_pad),
6024         (gst_stream_selector_getcaps),
6025         (gst_stream_selector_is_active_sinkpad),
6026         (gst_stream_selector_activate_sinkpad),
6027         (gst_stream_selector_get_linked_pads),
6028         (gst_stream_selector_request_new_pad),
6029         (gst_stream_selector_release_pad):
6030         * gst/playback/gststreamselector.h:
6031         Improve streamselector, make it select and unselect the current pad more
6032         intelligently. 
6033         Subclass GstPad for the sinkpads of the selector.
6034         Handle segments more correctly.
6035         Fix caps negotiation.
6036         Implement release_pad.
6037
6038 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
6039
6040         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init),
6041         (gst_decode_group_check_if_drained), (source_pad_event_probe),
6042         (remove_fakesink):
6043         Add drained signal fired when decodebin finishes decoding the data.
6044         Remove deprecated STATE_DIRTY message.
6045
6046         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_class_init),
6047         (unknown_type_cb), (new_decoded_pad_cb), (pad_removed_cb),
6048         (analyse_source), (proxy_drained_signal), (make_decoder),
6049         (source_new_pad), (value_list_append_structure_list),
6050         (handle_redirect_message), (handle_message):
6051         Proxy the new drained signal.
6052         Handle pad removed from decodebin.
6053         Handle redirect messages by sorting multiple redirections based on the
6054         connection speed.
6055
6056 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
6057
6058         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
6059
6060         * gst-libs/gst/rtsp/gstrtspmessage.c: (gst_rtsp_message_unset):
6061         Fix leaking headers. Fixes #496761.
6062
6063 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
6064
6065         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
6066
6067         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
6068         (gst_ximagesink_change_state):
6069         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get):
6070         Don't leak the PAR on errors. Fixes #496731.
6071
6072 2007-11-16  Tim-Philipp Müller  <tim at centricular dot net>
6073
6074         * gst-libs/gst/tag/gstid3tag.c: (user_tag_matches),
6075           (gst_tag_from_id3_user_tag):
6076           Add mapping for audio cd discid tags, so we can extract
6077           them from tags as well (see #347848). Also compare identifiers
6078           in ID3v2 TXXX frames in a case-insensitive way to increase
6079           compatibility when reading tags (discid vs. DiscID vs. DiscId).
6080
6081 2007-11-16  Jan Schmidt  <jan.schmidt@sun.com>
6082
6083         * gst-plugins-base.doap:
6084         Oops, fix the release name.
6085
6086 2007-11-16  Jan Schmidt  <jan.schmidt@sun.com>
6087
6088         * gst-plugins-base.doap:
6089         Add 0.10.15 release
6090
6091 2007-11-16  Jan Schmidt  <jan.schmidt@sun.com>
6092
6093         * configure.ac:
6094         Back to CVS
6095
6096 === release 0.10.15 ===
6097
6098 2007-11-15  Jan Schmidt <jan.schmidt@sun.com>
6099
6100         * configure.ac:
6101           releasing 0.10.15, "No need to argue"
6102
6103 2007-11-15  Jan Schmidt  <jan.schmidt@sun.com>
6104
6105         * win32/vs6/libgstfft.dsp:
6106         Convert line endings to DOS.
6107
6108 2007-11-15  Sebastien Moutte <sebastien@moutte.net>
6109
6110         * win32/vs6/gst_plugins_base.dsw:
6111         * win32/vs6/libgstfft.dsp:
6112         * win32/MANIFEST:
6113         Add a project file for fft plugin and remove socket
6114         based plugin which don't build from the workspace.
6115         * win32/vs6/libgstaudio.dsp:
6116         * win32/vs6/libgstrtp.dsp:
6117         * win32/vs6/libgsttag.dsp:
6118         Convert line endings back to DOS.
6119         Fixes #496724
6120
6121 2007-11-14  Jan Schmidt  <jan.schmidt@sun.com>
6122
6123         * win32/vs6/libgstinterfaces.dsp:
6124         * win32/vs6/libgstrtsp.dsp:
6125         Convert line endings back to DOS
6126
6127 2007-11-14  Jan Schmidt  <jan.schmidt@sun.com>
6128
6129         * gst-libs/gst/fft/kiss_fft_f32.h:
6130         * gst-libs/gst/fft/kiss_fft_f64.h:
6131         * gst-libs/gst/fft/kiss_fft_s16.h:
6132         * gst-libs/gst/fft/kiss_fft_s32.h:
6133         Don't include malloc.h which doesn't exist on Mac OSX.
6134         Instead, pull in glib.h and use g_malloc/g_free for 
6135         consistency. Fixes: #496548
6136
6137 2007-11-09  Stefan Kost  <ensonic@users.sf.net>
6138
6139         * gst/playback/gstdecodebin2.c:
6140           Dont leak ghostpad. Fixes #475451.
6141
6142 2007-11-09  Wim Taymans  <wim.taymans@gmail.com>
6143
6144         * docs/design/design-decodebin.txt:
6145         * gst/playback/gstdecodebin2.c: (analyze_new_pad):
6146         Update some more docs and comments.
6147
6148 2007-11-06  Tim-Philipp Müller  <tim at centricular dot net>
6149
6150         Patch by: Sebastien Moutte  <sebastien moutte net>
6151
6152         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_ntp_to_unix),
6153           (gst_rtcp_unix_to_ntp):
6154         * gst-libs/gst/rtp/gstrtppayloads.c: (gst_rtp_payload_info_for_name):
6155           Fix some C99-isms and and a missing function that some versions of
6156           MSVC don't like too much (#494346).
6157
6158         * win32/vs6/gst_plugins_base.dsw:
6159         * win32/vs6/libgstaudio.dsp:
6160         * win32/vs6/libgstrtp.dsp:
6161         * win32/vs6/libgsttag.dsp:
6162           Update vs6 projects files (#494346).
6163
6164 2007-11-06  Tim-Philipp Müller  <tim at centricular dot net>
6165
6166         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
6167
6168         * win32/common/libgstaudio.def:
6169         * win32/common/libgstcdda.def:
6170         * win32/common/libgstinterfaces.def:
6171         * win32/common/libgstnetbuffer.def:
6172         * win32/common/libgstpbutils.def:
6173         * win32/common/libgstrtp.def:
6174         * win32/common/libgstrtsp.def:
6175         * win32/common/libgsttag.def:
6176         * win32/common/libgstvideo.def:
6177           More missing symbols to export (fixes #493986).
6178
6179 2007-11-06  Sebastian Dröge  <slomo@circular-chaos.org>
6180
6181         * docs/libs/gst-plugins-base-libs-sections.txt:
6182         * gst-libs/gst/fft/gstfftf32.c:
6183         * gst-libs/gst/fft/gstfftf32.h:
6184         * gst-libs/gst/fft/gstfftf64.c:
6185         * gst-libs/gst/fft/gstfftf64.h:
6186         * gst-libs/gst/fft/gstffts16.c:
6187         * gst-libs/gst/fft/gstffts16.h:
6188         * gst-libs/gst/fft/gstffts32.c:
6189         * gst-libs/gst/fft/gstffts32.h:
6190         * tests/check/libs/fft.c: (GST_START_TEST):
6191         Remove the magnitude and phase calculation functions as these have
6192         very special use cases and can't even be used for the spectrum
6193         element. Also adjust the docs to mention some properties of the used
6194         FFT implemention, i.e. how the values are scaled. Fixes #492098.
6195
6196 2007-11-06  Tim-Philipp Müller  <tim at centricular dot net>
6197
6198         * gst/playback/gstplaybasebin.c: (queue_threshold_reached),
6199           (finish_source):
6200           Avoid crash when there are external subtitles (fixes #491722).
6201
6202 2007-11-03  Tim-Philipp Müller  <tim at centricular dot net>
6203
6204         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
6205         * ext/alsa/gstalsasrc.c: (gst_alsasrc_open):
6206           'Could not open resource for writing' is not an acceptable
6207           error message when we can't open the audio device (see #492334),
6208           even less so when we're trying to open it to record something.
6209
6210 2007-11-02  Tim-Philipp Müller  <tim at centricular dot net>
6211
6212         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
6213
6214         * win32/common/libgstrtp.def:
6215           Add some more missing symbols (#492813).
6216
6217 2007-11-02  Tim-Philipp Müller  <tim at centricular dot net>
6218
6219         Patch by: Thijs Vermeir <thijsvermeir@gmail.com>
6220
6221         * tests/check/elements/audioconvert.c: (verify_convert):
6222           Add check to make sure that the out caps have a channel layout
6223           set on them where they should have one.
6224
6225 2007-11-01  Tim-Philipp Müller  <tim at centricular dot net>
6226
6227         Patch by: Vincent Torri <vtorri at univ-evry dot fr>
6228
6229         * gst-libs/gst/fft/kiss_fft_s16.h: (KISS_FFT_S16_MALLOC):
6230         * gst-libs/gst/fft/kiss_fft_s32.h: (KISS_FFT_S32_MALLOC):
6231           Include our own _stdint.h instead of sys/types.h, makes MingW happy
6232           (#492306).
6233
6234         * gst-libs/gst/rtsp/gstrtspconnection.c: (gst_rtsp_connection_create):
6235           Use _pipe directly, GLib doesn't have a pipe() macro any longer
6236           (it disappeared in GLib 2.14.0) (#492306).
6237
6238         * gst-libs/gst/sdp/Makefile.am:
6239         * gst-libs/gst/sdp/gstsdpmessage.c:
6240           Fix includes and LIBS for win32/Mingw (#492306).
6241
6242         * tests/examples/dynamic/addstream.c (pause_play_stream):
6243           Use more portable g_usleep() instead of sleep() (#492306).
6244
6245 2007-11-01  Tim-Philipp Müller  <tim at centricular dot net>
6246
6247         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
6248
6249         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
6250           (gst_ring_buffer_parse_caps):
6251           Return NULL instead of an enum that happens to be 0, fixes warning
6252           on MSVC (#492114).
6253
6254         * gst-libs/gst/audio/gstringbuffer.h:
6255           No trailing commas in enum list (for gcc-2.9x).
6256
6257         * gst/videotestsrc/videotestsrc.c: (random_char):
6258           Make information loss explicit instead of implicitly truncating to
6259           eight bits via the return value.  Fixes runtime error on MSVC when
6260           using the debug CRT (#492114).
6261
6262         * win32/common/config.h.in:
6263           Fix a bunch of '#undef FOO bar', which MSVC doesn't like (#492114).
6264
6265         * win32/common/libgstinterfaces.def:
6266         * win32/common/libgstrtp.def:
6267           Export a few more symbols (#492114).
6268
6269 2007-11-01  Stefan Kost  <ensonic@users.sf.net>
6270
6271         * gst-libs/gst/audio/audio.c:
6272         * gst-libs/gst/audio/audio.h:
6273           Readd the deprecation guards, but preserve compilability.
6274
6275 2007-10-31  Tim-Philipp Müller  <tim at centricular dot net>
6276
6277         * gst/audioconvert/gstaudioconvert.c: (find_suitable_channel_layout),
6278           (gst_audio_convert_fixate_channels), (gst_audio_convert_fixate_caps):
6279           Preserve channel layout when fixating the number of channels in the
6280           output caps, or make sure there's a suitable channel position layout
6281           set on the caps if required. Fixes #430677.
6282
6283 2007-10-31  Tim-Philipp Müller  <tim at centricular dot net>
6284
6285         * tests/check/elements/decodebin.c: (test_text_plain_streams):
6286           Make sure the pipeline really operates in push mode as it should
6287           in this case.
6288
6289 2007-10-31  Tim-Philipp Müller  <tim at centricular dot net>
6290
6291         * gst-libs/gst/audio/audio.h:
6292           Don't guard deprecated enum with #ifndef DISABLE_DEPRECATED, or
6293           compilation with DISABLE_DEPRECATED and without REMOVE_DEPRECATED
6294           (ie. normal cvs builds) will fail.
6295
6296 2007-10-31  Stefan Kost  <ensonic@users.sf.net>
6297
6298         * docs/libs/Makefile.am:
6299         * gst-libs/gst/audio/audio.c:
6300         * gst-libs/gst/audio/audio.h:
6301         * gst-libs/gst/interfaces/mixer.c:
6302           tell gtk-doc about the deprecation guard. Apply more doc fixes.
6303
6304 2007-10-31  Tim-Philipp Müller  <tim at centricular dot net>
6305
6306         * tests/check/libs/audio.c: (init_value_to_channel_layout),
6307           (test_channel_layout_value_intersect), (audio_suite):
6308           Add simple unit test to make sure GstValue intersection
6309           of channel layouts works the way I think it does.
6310
6311 2007-10-30  Stefan Kost  <ensonic@users.sf.net>
6312
6313         * docs/libs/gst-plugins-base-libs-sections.txt:
6314         * gst-libs/gst/audio/gstaudiofilter.h:
6315         * gst-libs/gst/interfaces/mixer.h:
6316         * gst-libs/gst/rtp/gstbasertpdepayload.c:
6317         * gst-libs/gst/rtp/gstbasertpdepayload.h:
6318         * gst-libs/gst/sdp/gstsdpmessage.c:
6319           Fix the docs according to what gtk-doc complained about.
6320
6321 2007-10-30  Stefan Kost  <ensonic@users.sf.net>
6322
6323         * tests/icles/stress-playbin.c:
6324           Fix the build.
6325
6326 2007-10-30  Tim-Philipp Müller  <tim at centricular dot net>
6327
6328         * gst/playback/gstdecodebin.c: (close_pad_link), (type_found):
6329         * gst/playback/gstdecodebin2.c: (analyze_new_pad):
6330           Post nice/more useful error message if we don't have a decoder for
6331           the primary type.
6332
6333 2007-10-30  Wim Taymans  <wim.taymans@gmail.com>
6334
6335         * gst/playback/gstdecodebin2.c: (gst_decode_group_expose):
6336         Be a bit more useful, unblock the pads after we fired the no-more-pads
6337         signal so that we can use the signal to inspect and connect all pads
6338         without having to keep extra state outside of decodebin.
6339
6340 2007-10-30  Wim Taymans  <wim.taymans@gmail.com>
6341
6342         * gst/playback/gsturidecodebin.c:
6343         (gst_uri_decode_bin_autoplug_continue),
6344         (gst_uri_decode_bin_class_init), (no_more_pads_full):
6345         Implement default signal handler so that we return TRUE when nothing is
6346         connected.
6347
6348 2007-10-28  Sebastian Dröge  <slomo@circular-chaos.org>
6349
6350         * gst-libs/gst/riff/riff-media.c:
6351         (gst_riff_wavext_add_channel_layout),
6352         (gst_riff_wave_add_default_channel_layout),
6353         (gst_riff_wavext_get_default_channel_mask),
6354         (gst_riff_create_audio_caps):
6355         Use the ALSA channel layout as default for wav files without channel
6356         layout information. This fixes playback of chan-id.wav on 5.1 systems
6357         for example. Also refactor the channel layout setting a bit and add
6358         more default channel orders. Fixes #489010.
6359
6360 2007-10-26  Tim-Philipp Müller  <tim at centricular dot net>
6361
6362         * tests/check/libs/tag.c: (test_musicbrainz_tag_registration):
6363           GST_TAG_MUSICBRAINZ_SORTNAME is deprecated and we compile with
6364           -DGST_DISABLE_DEPRECATED, so use new GST_TAG_ARTIST_SORTNAME
6365           instead.
6366
6367 2007-10-25  Wim Taymans  <wim.taymans@gmail.com>
6368
6369         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init),
6370         (gst_decode_bin_dispose), (gst_decode_bin_set_caps),
6371         (gst_decode_bin_set_subs_encoding),
6372         (gst_decode_bin_get_subs_encoding), (gst_decode_bin_set_property),
6373         (gst_decode_bin_get_property), (analyze_new_pad):
6374         Move subtitle encoding property to decodebin2 so that it can set the
6375         property value on all elements that it autoplugs and that require it.
6376         Make caps refcounting more consistent in get/set.
6377
6378         * gst/playback/gsturidecodebin.c: (_gst_boolean_accumulator),
6379         (gst_uri_decode_bin_class_init), (gst_uri_decode_bin_init),
6380         (gst_uri_decode_bin_finalize), (gst_uri_decode_bin_set_property),
6381         (gst_uri_decode_bin_get_property), (proxy_unknown_type_signal),
6382         (proxy_autoplug_continue_signal),
6383         (proxy_autoplug_factories_signal), (proxy_autoplug_select_signal),
6384         (make_decoder):
6385         Proxy properties and relevant signals from the internal decodebin.
6386         Make properties MT safe.
6387
6388 2007-10-25  Tim-Philipp Müller  <tim at centricular dot net>
6389
6390         * gst-libs/gst/tag/tag.h: (GST_TAG_MUSICBRAINZ_SORTNAME):
6391         * gst-libs/gst/tag/tags.c:
6392           Deprecate GST_TAG_MUSICBRAINZ_SORTNAME, replaced by the newly-added
6393           GST_TAG_ARTIST_SORTNAME (in an API and ABI compatible way).
6394
6395         * gst-libs/gst/tag/gstid3tag.c: (tag_matches):
6396           Map ID3v2 TSOP, TSOA and TSOT frames to new SORTNAME tags (#414539).
6397
6398         * gst-libs/gst/tag/gstvorbistag.c: (tag_matches),
6399           (gst_tag_to_vorbis_comments):
6400           Map new SORTNAME tags (these tags aren't even semi-official, so I'm
6401           just mapping everything I found in the wild) (#414539).
6402
6403 2007-10-24  Wim Taymans  <wim.taymans@gmail.com>
6404
6405         Inspired by patch of: René Stadler <mail at renestadler dot de>
6406
6407         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init),
6408         (gst_decode_bin_autoplug_continue),
6409         (gst_decode_bin_autoplug_factories),
6410         (gst_decode_bin_autoplug_select), (analyze_new_pad), (connect_pad),
6411         (find_compatibles):
6412         * gst/playback/gstplay-marshal.list:
6413         Remove the autoplug-sort signal and replace it with a binding friendly
6414         autoplug-select signal.
6415         Add an autoplug-factories signal that can be used to generate a list of
6416         factories to try to autoplug.
6417         Add the GstPad to the autoplugging signal args as it might be needed to
6418         make a good factory selection.
6419         Fix up the marshallers for this. Fixes #407282.
6420
6421 2007-10-23  Tim-Philipp Müller  <tim at centricular dot net>
6422
6423         * gst-libs/gst/tag/gsttagdemux.c:
6424           Don't abort with an assertion if we receive a seek event with
6425           a start type of NONE (see launchpad bug #155878).
6426
6427 2007-10-22  Wim Taymans  <wim.taymans@gmail.com>
6428
6429         * sys/ximage/ximagesink.c: (gst_ximagesink_event_thread),
6430         (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
6431         (gst_ximagesink_change_state), (gst_ximagesink_reset):
6432         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_event_thread),
6433         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_xcontext_clear),
6434         (gst_xvimagesink_change_state), (gst_xvimagesink_reset):
6435         Make sure that before we clean up the X resources, we shutdown and join
6436         the event thread.
6437         Also make sure the event thread does not shut down immediatly after
6438         startup because the running variable is not yet correctly set.
6439         Fixes #378770. 
6440
6441 2007-10-16  Wim Taymans  <wim.taymans@gmail.com>
6442
6443         * gst/playback/gstdecodebin.c: (new_pad), (type_found):
6444         Make the window for a race in typefind and shutting down smaller until
6445         we figure out the right locking here. Avoids #485753 usually.
6446
6447         * gst/playback/gstdecodebin2.c: (type_found), (pad_added_group_cb):
6448         Remove unneeded lock causing a race in typefind and shutting down.
6449         Fixes #485753.
6450
6451         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
6452         Also remove sinks when going to NULL because we might not complete the
6453         state change to PAUSED, causing the PAUSED->READY state change not to
6454         happen.
6455
6456 2007-10-16  Wim Taymans  <wim.taymans@gmail.com>
6457
6458         * gst-libs/gst/audio/gstbaseaudiosink.c:
6459         (gst_base_audio_sink_drain), (gst_base_audio_sink_change_state):
6460         Also explicitly release the ringbuffer when going to NULL because it
6461         is required in the setcaps function, before the state change to PAUSED
6462         completes.
6463
6464 2007-10-16  Tim-Philipp Müller  <tim at centricular dot net>
6465
6466         * tests/icles/.cvsignore:
6467         * tests/icles/Makefile.am:
6468         * tests/icles/stress-playbin.c:
6469           Does what it says on the tin.
6470
6471 2007-10-15  Wim Taymans  <wim.taymans@gmail.com>
6472
6473         * gst/playback/gstqueue2.c: (gst_queue_init), (gst_queue_push_one):
6474         Fix queue negotiation. See #486758.
6475
6476 2007-10-12  Jan Schmidt  <Jan.Schmidt@sun.com>
6477
6478         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
6479         (gst_xvimagesink_xwindow_new),
6480         (gst_xvimagesink_update_colorbalance),
6481         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_xcontext_get):
6482
6483         Fix handling of some of the X atoms. If the last parameter is True,
6484         XInternAtom won't create the atom if it doesn't exist, and therefore
6485         might return None. This causes X errors on Xv implementations that
6486         don't provide the colour balance attributes.
6487
6488 2007-10-11  Tim-Philipp Müller  <tim at centricular dot net>
6489
6490         * gst-libs/gst/tag/gstvorbistag.c:
6491         * tests/check/libs/tag.c:
6492           Extract vorbis comment LICENSE tags correctly.
6493
6494 2007-10-11  Tim-Philipp Müller  <tim at centricular dot net>
6495
6496         Patch by: Jason Kivlighn  <jkivlighn gmail com>
6497
6498         * gst-libs/gst/tag/gstid3tag.c:
6499         * tests/check/libs/tag.c:
6500           Map ID3v2 WCOP frame to GST_TAG_COPYRIGHT_URI (#447000).
6501
6502 2007-10-10  Tim-Philipp Müller  <tim at centricular dot net>
6503
6504         * gst-libs/gst/tag/gsttagdemux.c:
6505           Don't error out when a buggy downstream element doesn't
6506           handle the newsegment event we send properly (especially
6507           not without posting a meaningful error message on the
6508           bus). See bug #471370 and launchpad bug #136264.
6509
6510 2007-10-10  Wim Taymans  <wim.taymans@gmail.com>
6511
6512         * gst-libs/gst/audio/gstbaseaudiosink.c:
6513         (gst_base_audio_sink_drain):
6514         Use new basesink method to make our EOS drain interruptable.
6515
6516 2007-10-10  Jan Schmidt  <Jan.Schmidt@sun.com>
6517
6518         * gst-libs/gst/rtp/gstrtppayloads.c:
6519         Fix silly search-replace oversight.
6520
6521 2007-10-09  Wim Taymans  <wim.taymans@gmail.com>
6522
6523         Patch by: Laurent Glayal <spglegle at yahoo dot fr>
6524
6525         * gst-libs/gst/rtp/gstbasertppayload.c: (copy_fixed),
6526         (gst_basertppayload_set_outcaps):
6527         Fix caps memleak. Fixes #484989.
6528
6529
6530 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
6531
6532         * gst-libs/gst/rtp/gstbasertpdepayload.c:
6533         (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain):
6534         Fix debug output.
6535
6536 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
6537
6538         * gst-libs/gst/audio/gstbaseaudiosrc.c:
6539         (gst_base_audio_src_create):
6540         Also handle the case where there is no clock set on the audio source,
6541         like in the unit tests.
6542
6543 2007-10-08  Jan Schmidt  <Jan.Schmidt@sun.com>
6544
6545         * gst-libs/gst/rtp/gstrtppayloads.c:
6546         Use unsigned G_MAXUINT8 instead of -1 to initialise a guint8
6547         to avoid compiler warnings
6548
6549 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
6550
6551         * gst/playback/gstdecodebin.c: (type_found),
6552         (gst_decode_bin_change_state):
6553         * gst/playback/gstdecodebin2.c: (type_found),
6554         (gst_decode_bin_change_state):
6555         Don't disconnect the have_type signal because we never reconnect it
6556         later on. Instead keep a variable to see if we already detected a type.
6557
6558 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
6559
6560         * gst/playback/gstdecodebin.c: (add_fakesink), (type_found):
6561         * gst/playback/gstdecodebin2.c: (gst_decode_bin_init),
6562         (type_found):
6563         Unlink the signal handler when we found the type, we're not going to do
6564         anything sensible with more type_found signals anyway.
6565
6566 2007-10-06  Tim-Philipp Müller  <tim at centricular dot net>
6567
6568         * gst-libs/gst/tag/gsttagdemux.c:
6569           Don't leak caps.
6570
6571 2007-10-06  Tim-Philipp Müller  <tim at centricular dot net>
6572
6573         * gst-libs/gst/tag/Makefile.am:
6574         * gst-libs/gst/tag/gsttagdemux.c:
6575         * gst-libs/gst/tag/gsttagdemux.h:
6576           API: add GstTagDemux base class for simple tag demuxers.
6577
6578         * docs/libs/gst-plugins-base-libs-docs.sgml:
6579         * docs/libs/gst-plugins-base-libs-sections.txt:
6580           Add GstTagDemux to docs.
6581
6582 2007-10-05  Sebastian Dröge  <slomo@circular-chaos.org>
6583
6584         * gst-libs/gst/rtp/gstrtpbuffer.c:
6585         (gst_rtp_buffer_get_payload_subbuffer):
6586         Fix bug introduced with last commit which inverted the logic and
6587         caused all buffers to be dropped. Fixes #483620.
6588         Thanks to Laurent Glayal <spglegle at yahoo dot fr> for noticing.
6589
6590 2007-10-04  Stefan Kost  <ensonic@users.sf.net>
6591
6592         * gst-libs/gst/rtp/gstrtpbuffer.c:
6593           Replace g_return_if_val (as it could be disabled), with regular return
6594           and warning.
6595
6596 2007-10-03  Stefan Kost  <ensonic@users.sf.net>
6597
6598         * tests/check/pipelines/simple-launch-lines.c:
6599           Print message name and not just number.
6600
6601 2007-10-02  Wim Taymans  <wim.taymans@gmail.com>
6602
6603         * gst-libs/gst/audio/gstbaseaudiosink.c:
6604         (gst_base_audio_sink_async_play):
6605         When slaved to the clock, don't try to align a sample with the previous
6606         one when going to PLAYING again.
6607
6608 2007-10-02  Stefan Kost  <ensonic@users.sf.net>
6609
6610         * tests/examples/snapshot/snapshot.c:
6611           Fix the build.
6612
6613 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
6614
6615         * gst-libs/gst/sdp/gstsdpmessage.h:
6616         Add RFC 3556 bandwidth modifiers.
6617
6618 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
6619
6620         * docs/libs/gst-plugins-base-libs-docs.sgml:
6621         * docs/libs/gst-plugins-base-libs-sections.txt:
6622         * gst-libs/gst/rtp/gstrtppayloads.c:
6623         Update documentation.
6624
6625 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
6626
6627         * gst-libs/gst/rtp/Makefile.am:
6628         * gst-libs/gst/rtp/gstrtppayloads.c: (gst_rtp_payload_info_for_pt),
6629         (gst_rtp_payload_info_for_name):
6630         * gst-libs/gst/rtp/gstrtppayloads.h:
6631         Added new file and header to deal with payload info.
6632
6633         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data),
6634         (gst_rtp_buffer_default_clock_rate):
6635         * gst-libs/gst/rtp/gstrtpbuffer.h:
6636         Payload specific stuff is move to new headers.
6637         Implement _default_clock rate using the new payload function.
6638
6639         * gst-libs/gst/sdp/gstsdpmessage.c: (is_multicast_address),
6640         (gst_sdp_parse_line):
6641         * gst-libs/gst/sdp/gstsdpmessage.h:
6642         Add some more comments.
6643
6644 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
6645
6646         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
6647         (sdp_check_header), (sdp_type_find), (plugin_init):
6648         Add typefind function for application/sdp.
6649         Remove some old dirac typefind code that was ifdeffed out.
6650
6651 2007-09-29  Sebastien Moutte <sebastien@moutte.net>
6652
6653         * win32/common/libgstaudio.def:
6654         Add new exported functions.
6655         * win32/vs6/grammar.dsp:
6656         Add autogeneration and copy of some autegenerated files from win32/common
6657         for rtsp library.
6658         * win32/vs6/libgstaudioconvert.dsp:
6659         Add gstaudioquantize.c to the build.
6660         * win32/vs6/libgstinterfaces.dsp:
6661         Add videoorientation.c to the build.
6662         * win32/vs6/libgstriff.dsp:
6663         Add libgsttag to the link libraries list.
6664         * win32/vs6/libgstvolume.dsp:
6665         Add liboil to the link.
6666         * win32/vs6/gst_plugins_base.dsw:
6667         * win32/vs6/libgstrtsp.dsp:
6668         * win32/common/libgstrtsp.def:
6669         Add files to build libgstrtsp library.
6670         
6671 2007-09-26  Wim Taymans  <wim.taymans@gmail.com>
6672
6673         * tests/examples/snapshot/snapshot.c: (main):
6674         Print error when pipeline failed to construct.
6675
6676 2007-09-25  Tim-Philipp Müller  <tim at centricular dot net>
6677
6678         * configure.ac:
6679         * gst-libs/gst/tag/gstid3tag.c:
6680         * gst-libs/gst/tag/gstvorbistag.c:
6681           Add mappings for the new GST_TAG_COMPOSER for vorbis comments
6682           and ID3v2 tags.
6683
6684 2007-09-25  Tim-Philipp Müller  <tim at centricular dot net>
6685
6686         * gst-libs/gst/floatcast/floatcast.h:
6687           Don't include config.h in an installed public header, this
6688           might break compilation of applications that don't have such
6689           a header and doesn't necessarily do what it's supposed to do
6690           anyway (ie. check for the lrint/lrintf defines) (#442065).
6691           Add docs for the various macros and document how this header
6692           has to be used (link against libm, etc.); add a few FIXMEs;
6693           include math.h for non-c99 code path.  Based on patch by
6694           Jan Schmidt.
6695           
6696 2007-09-25  Sebastian Dröge  <slomo@circular-chaos.org>
6697
6698         * configure.ac:
6699         Use AG_GST_ARG_WITH_PLUGINS and AG_GST_ARG_ENABLE_EXTERNAL instead
6700         of duplicating these macros in configure.ac.
6701
6702 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
6703
6704         * po/hu.po:
6705         * po/sv.po:
6706         * po/uk.po:
6707           Updated translations to 0.10.14
6708
6709 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
6710
6711         translated by: Jakub Bogusz <qboosh@pld-linux.org>
6712
6713         * po/pl.po:
6714           Added Polish translation.
6715
6716 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
6717
6718         translated by: Ilkka Tuohela <hile@iki.fi>
6719
6720         * po/fi.po:
6721           Added Finnish translation.
6722
6723 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
6724
6725         translated by: Jorge González González <aloriel@gmail.com>
6726
6727         * po/es.po:
6728           Added Spanish translation.
6729
6730 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
6731
6732         translated by: Mogens Jaeger <mogens@jaeger.tf>
6733
6734         * po/da.po:
6735           Added Danish translation.
6736
6737 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
6738
6739         translated by: Funda Wang <fundawang@linux.net.cn>
6740
6741         * po/zh_CN.po:
6742           Added Chinese (simplified) translation.
6743
6744 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
6745
6746         translated by: Alexander Shopov <ash@contact.bg>
6747
6748         * po/bg.po:
6749           Added Bulgarian translation.
6750
6751 2007-09-21  Wim Taymans  <wim.taymans@gmail.com>
6752
6753         * gst/playback/gstqueue2.c: (gst_queue_push_one):
6754         Fix compilation wrt printf arguments.
6755
6756 2007-09-20  Wim Taymans  <wim.taymans@gmail.com>
6757
6758         * configure.ac:
6759         * tests/examples/Makefile.am:
6760         * tests/examples/snapshot/.cvsignore:
6761         * tests/examples/snapshot/Makefile.am:
6762         * tests/examples/snapshot/snapshot.c: (main):
6763         Add simple snapshot example program using appsink.
6764
6765 2007-09-20  Stefan Kost  <ensonic@users.sf.net>
6766
6767         * tests/check/generic/states.c:
6768           Improved state change unit test.
6769
6770 2007-09-19  Stefan Kost  <ensonic@users.sf.net>
6771
6772         * docs/plugins/.cvsignore:
6773         * tests/check/.cvsignore:
6774           Ignore registries in any format.
6775
6776 2007-09-19  Wim Taymans  <wim.taymans@gmail.com>
6777
6778         * gst-libs/gst/rtp/gstbasertpdepayload.c:
6779         (gst_base_rtp_depayload_chain),
6780         (gst_base_rtp_depayload_set_gst_timestamp):
6781         Only copy timestamp on outgoing packets if the depayloader did not set
6782         one.
6783         Also copy duration on outgoing packets.
6784
6785 2007-09-19  Wim Taymans  <wim.taymans@gmail.com>
6786
6787         * gst-libs/gst/rtp/gstbasertppayload.c: (copy_fixed),
6788         (gst_basertppayload_set_outcaps):
6789         Fix compilation because of missing %d in printf.
6790         When fixating caps, fixate what we can and throw away all remaining
6791         unfixed caps, subclasses should do something smart if they need to.
6792
6793 2007-09-19  Stefan Kost  <ensonic@users.sf.net>
6794
6795         * ext/gnomevfs/gstgnomevfssrc.c:
6796           Improve debug logs a bit and be more verbose if things go wrong.
6797
6798 2007-09-17  Jan Schmidt  <Jan.Schmidt@sun.com>
6799
6800         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
6801         (gst_text_overlay_set_property):
6802         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
6803         * gst-libs/gst/audio/gstbaseaudiosink.c:
6804         (gst_base_audio_sink_render):
6805         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_ntp_to_unix),
6806         (gst_rtcp_unix_to_ntp):
6807         * gst-libs/gst/rtsp/gstrtspmessage.c: (gst_rtsp_message_get_type):
6808         * gst/playback/gstqueue2.c:
6809         * tests/examples/seek/seek.c: (set_scale):
6810         Fix a bunch of compile warnings shown with Forte.
6811
6812         * gst/audiorate/gstaudiorate.c:
6813         Always pull in config.h before including any system headers.
6814
6815 2007-09-17  Wim Taymans  <wim.taymans@gmail.com>
6816
6817         * gst/playback/gstqueue2.c: (update_buffering),
6818         (gst_queue_locked_flush), (gst_queue_locked_enqueue),
6819         (gst_queue_handle_sink_event), (gst_queue_chain),
6820         (gst_queue_push_one), (gst_queue_sink_activate_push),
6821         (gst_queue_src_activate_push), (gst_queue_src_activate_pull):
6822         Also fix #476514 for queue2.
6823
6824 2007-09-16  Wim Taymans  <wim.taymans@gmail.com>
6825
6826         * gst-libs/gst/rtp/gstbasertpdepayload.c:
6827         (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_setcaps),
6828         (gst_base_rtp_depayload_chain),
6829         (gst_base_rtp_depayload_handle_sink_event),
6830         (gst_base_rtp_depayload_push_full),
6831         (gst_base_rtp_depayload_set_gst_timestamp),
6832         (gst_base_rtp_depayload_change_state):
6833         Remove code to deal with RTP to GST time conversion, we now just copy
6834         the GST timestamp we receive to the outgoing buffers.
6835         Handle segment and flushes correctly.
6836
6837         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
6838         When we have no valid input timestamp, use the previous rtp timestamp on
6839         the outgoing RTP packet instead of the RTP base time.
6840
6841 2007-09-15  David Schleef  <ds@schleef.org>
6842
6843         * ext/alsa/gstalsa.c:
6844         * ext/alsa/gstalsadeviceprobe.c:
6845         * ext/alsa/gstalsamixer.c:
6846         * ext/alsa/gstalsasink.c:
6847         * ext/alsa/gstalsasrc.c:
6848           Change alsa alloca's to malloc to fix warnings on gcc-4.2.
6849
6850 2007-09-15  Wim Taymans  <wim.taymans@gmail.com>
6851
6852         * gst-libs/gst/rtp/gstbasertppayload.c:
6853         (gst_basertppayload_set_outcaps), (gst_basertppayload_push):
6854         Add some debug info when negotiating caps.
6855
6856 2007-09-14  Wim Taymans  <wim.taymans@gmail.com>
6857
6858         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data):
6859         A buffer with an empty payload is also a valid buffer.
6860
6861 2007-09-14  Wim Taymans  <wim.taymans@gmail.com>
6862
6863         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_event),
6864         (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
6865         (gst_basertppayload_change_state):
6866         Make sure we start our RTP timestamp from the random base RTP
6867         timestamp even if the buffer timestamp starts from some random value.
6868
6869 2007-09-14  Wim Taymans  <wim.taymans@gmail.com>
6870
6871         * configure.ac:
6872         * tests/examples/Makefile.am:
6873         * tests/examples/dynamic/.cvsignore:
6874         * tests/examples/dynamic/Makefile.am:
6875         * tests/examples/dynamic/addstream.c: (create_stream),
6876         (pause_play_stream), (message_received), (eos_message_received),
6877         (perform_step), (main):
6878         Add simple exmple app to demonstrate starting and pausing live and
6879         non-live bins in a PLAYING pipeline.
6880
6881 2007-09-14  Julien MOUTTE  <julien@moutte.net>
6882
6883         * gst/typefind/gsttypefindfunctions.c: (plugin_init): Add some
6884         typefind for QCP files (RFC #3625)
6885
6886 2007-09-13  Wim Taymans  <wim.taymans@gmail.com>
6887
6888         * gst-libs/gst/audio/gstbaseaudiosink.c:
6889         (gst_base_audio_sink_init):
6890         Disable pull mode scheduling, we're not ready for it yet and it subtly
6891         breaks a lot of things.
6892
6893 2007-09-12  Tim-Philipp Müller  <tim at centricular dot net>
6894
6895         * tests/check/elements/libvisual.c:
6896           Test all libvisual plugins, not just the first one; this reproduces
6897           bug #450336 quite easily.  Looks like a problem with the 'jess'
6898           visualisation.
6899
6900 2007-09-12  Tim-Philipp Müller  <tim at centricular dot net>
6901
6902         * tests/check/Makefile.am:
6903         * tests/check/elements/.cvsignore:
6904         * tests/check/elements/libvisual.c:
6905           Add basic libvisual test case in an attempt to reproduce bug #450336.
6906           Doesn't reproduce that bug, but some other crasher instead (invalid
6907           free), at least with make elements/libvisual.forever and the bumscope
6908           plugin on x86-64/gutsy. Leaving test disabled for now.
6909
6910 2007-09-11  Wim Taymans  <wim.taymans@gmail.com>
6911
6912         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
6913
6914         * gst-libs/gst/rtsp/gstrtspconnection.c:
6915         (gst_rtsp_connection_read_internal), (gst_rtsp_connection_read),
6916         (read_body), (gst_rtsp_connection_receive):
6917         Make sure we can not cancel in the middle of receiving a message.
6918         Fixes #475731.
6919
6920 2007-09-11  Tim-Philipp Müller  <tim at centricular dot net>
6921
6922         Patch by: Josep Torra Valles <josep@fluendo.com>
6923
6924         * gst/playback/gstplaybasebin.c:
6925           Increase upper limit for audio queue a bit; fixes preroll problem
6926           with playbin and decodebin2 when playing a quicktime trailer with
6927           multichannel audio via http (#464666).
6928
6929 2007-09-10  Wim Taymans  <wim.taymans@gmail.com>
6930
6931         * gst-libs/gst/audio/gstbaseaudiosrc.c:
6932         (gst_base_audio_src_class_init), (gst_base_audio_src_init),
6933         (gst_base_audio_src_provide_clock),
6934         (gst_base_audio_src_set_property),
6935         (gst_base_audio_src_get_property), (gst_base_audio_src_create):
6936         * gst-libs/gst/audio/gstbaseaudiosrc.h:
6937         Allow othe clocks than the internal clock to be used for the pipeline.
6938         Add property to disable clock provide.
6939         API: GstBaseAudioSrc::provide-clock
6940
6941 2007-09-10  Stefan Kost  <ensonic@users.sf.net>
6942
6943         * gst/playback/gstdecodebin2.c:
6944           Don't leak request pads. Fixes #475395.
6945
6946 2007-09-09  Sebastian Dröge  <slomo@circular-chaos.org>
6947
6948         Patch by: René Stadler <mail at renestadler dot de>
6949
6950         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
6951         (gst_ximage_buffer_class_init):
6952         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
6953         (gst_xvimage_buffer_class_init):
6954         Correctly chain up finalize with the parent class to prevent
6955         memory leaks. Fixes #474880.
6956
6957 2007-09-09  Sebastian Dröge  <slomo@circular-chaos.org>
6958
6959         * gst/volume/gstvolume.c: (volume_choose_func):
6960         * tests/check/elements/volume.c: (GST_START_TEST):
6961         Revert the latest change: floating point samples are allowed to
6962         have any value, not only values in the range [-1,1]. Thanks to Andy
6963         Wingo for noticing.
6964         Also fix processing of int32 samples with volumes > 4 by making the
6965         unity value smaller which prevents overflows.
6966
6967 2007-09-07  Tim-Philipp Müller  <tim at centricular dot net>
6968
6969         * gst-libs/gst/rtp/gstrtpbuffer.c:
6970         * tests/check/libs/rtp.c:
6971           Fix gst_rtp_buffer_set_csrc() and enable csrc-related unit test checks.
6972
6973 2007-09-07  Tim-Philipp Müller  <tim at centricular dot net>
6974
6975         Based on patch by: Haakon Sporsheim  <haakon.sporsheim at tandberg com>
6976
6977         * gst-libs/gst/rtp/gstrtpbuffer.c:
6978           Fix up GstRTPHeader helper struct so that compilers will not under
6979           any circumstances add padding in between our fields, as currently
6980           happens with MSVC on win32, because that would lead to us sending
6981           out RTP payloads with broken RTP headers (#471194).
6982           Fix assertion guards for gst_rtp_buffer_get_csrc() and _set_csrc().
6983           
6984         * tests/check/Makefile.am:
6985         * tests/check/libs/.cvsignore:
6986         * tests/check/libs/rtp.c:
6987           Add some simple unit tests for GstRTPBuffer. Some are disabled
6988           because the code tested still needs fixing (set_csrc() does not work).
6989
6990 2007-09-07  Tim-Philipp Müller  <tim at centricular dot net>
6991
6992         * win32/MANIFEST:
6993         * win32/common/gstrtsp-enumtypes.c:
6994         * win32/common/gstrtsp-enumtypes.h:
6995         * win32/common/interfaces-enumtypes.c:
6996         * win32/common/interfaces-enumtypes.h:
6997         * win32/common/multichannel-enumtypes.c:
6998           Add rtsp enumtypes (#474384) and update others.
6999
7000 2007-09-06  Stefan Kost  <ensonic@users.sf.net>
7001
7002         * configure.ac:
7003           Fix configure check for HAVE_LIBXML_HTML.
7004
7005 2007-09-06  Tim-Philipp Müller  <tim at centricular dot net>
7006
7007         * tests/check/libs/.cvsignore:
7008           Ignore more, in case the build bots work again one day.
7009
7010 2007-09-06  Sebastian Dröge  <slomo@circular-chaos.org>
7011
7012         Reviewed by:  Stefan Kost  <ensonic@users.sf.net>
7013
7014         * configure.ac:
7015         * gst-libs/gst/Makefile.am:
7016         * gst-libs/gst/fft/Makefile.am:
7017         * gst-libs/gst/fft/_kiss_fft_guts_f32.h:
7018         * gst-libs/gst/fft/_kiss_fft_guts_f64.h:
7019         * gst-libs/gst/fft/_kiss_fft_guts_s16.h:
7020         * gst-libs/gst/fft/_kiss_fft_guts_s32.h:
7021         * gst-libs/gst/fft/gstfft.c: (gst_fft_next_fast_length):
7022         * gst-libs/gst/fft/gstfft.h:
7023         * gst-libs/gst/fft/gstfftf32.c: (gst_fft_f32_new),
7024         (gst_fft_f32_fft), (gst_fft_f32_inverse_fft), (gst_fft_f32_free),
7025         (gst_fft_f32_window), (gst_fft_f32_magnitude), (gst_fft_f32_phase):
7026         * gst-libs/gst/fft/gstfftf32.h:
7027         * gst-libs/gst/fft/gstfftf64.c: (gst_fft_f64_new),
7028         (gst_fft_f64_fft), (gst_fft_f64_inverse_fft), (gst_fft_f64_free),
7029         (gst_fft_f64_window), (gst_fft_f64_magnitude), (gst_fft_f64_phase):
7030         * gst-libs/gst/fft/gstfftf64.h:
7031         * gst-libs/gst/fft/gstffts16.c: (gst_fft_s16_new),
7032         (gst_fft_s16_fft), (gst_fft_s16_inverse_fft), (gst_fft_s16_free),
7033         (gst_fft_s16_window), (gst_fft_s16_magnitude), (gst_fft_s16_phase):
7034         * gst-libs/gst/fft/gstffts16.h:
7035         * gst-libs/gst/fft/gstffts32.c: (gst_fft_s32_new),
7036         (gst_fft_s32_fft), (gst_fft_s32_inverse_fft), (gst_fft_s32_free),
7037         (gst_fft_s32_window), (gst_fft_s32_magnitude), (gst_fft_s32_phase):
7038         * gst-libs/gst/fft/gstffts32.h:
7039         * gst-libs/gst/fft/kiss_fft_f32.c: (kf_bfly2), (kf_bfly4),
7040         (kf_bfly3), (kf_bfly5), (kf_bfly_generic), (kf_work), (kf_factor),
7041         (kiss_fft_f32_alloc), (kiss_fft_f32_stride), (kiss_fft_f32),
7042         (kiss_fft_f32_cleanup), (kiss_fft_f32_next_fast_size):
7043         * gst-libs/gst/fft/kiss_fft_f32.h:
7044         * gst-libs/gst/fft/kiss_fft_f64.c: (kf_bfly2), (kf_bfly4),
7045         (kf_bfly3), (kf_bfly5), (kf_bfly_generic), (kf_work), (kf_factor),
7046         (kiss_fft_f64_alloc), (kiss_fft_f64_stride), (kiss_fft_f64),
7047         (kiss_fft_f64_cleanup), (kiss_fft_f64_next_fast_size):
7048         * gst-libs/gst/fft/kiss_fft_f64.h:
7049         * gst-libs/gst/fft/kiss_fft_s16.c: (kf_bfly2), (kf_bfly4),
7050         (kf_bfly3), (kf_bfly5), (kf_bfly_generic), (kf_work), (kf_factor),
7051         (kiss_fft_s16_alloc), (kiss_fft_s16_stride), (kiss_fft_s16),
7052         (kiss_fft_s16_cleanup), (kiss_fft_s16_next_fast_size):
7053         * gst-libs/gst/fft/kiss_fft_s16.h:
7054         * gst-libs/gst/fft/kiss_fft_s32.c: (kf_bfly2), (kf_bfly4),
7055         (kf_bfly3), (kf_bfly5), (kf_bfly_generic), (kf_work), (kf_factor),
7056         (kiss_fft_s32_alloc), (kiss_fft_s32_stride), (kiss_fft_s32),
7057         (kiss_fft_s32_cleanup), (kiss_fft_s32_next_fast_size):
7058         * gst-libs/gst/fft/kiss_fft_s32.h:
7059         * gst-libs/gst/fft/kiss_fftr_f32.c: (kiss_fftr_f32_alloc),
7060         (kiss_fftr_f32), (kiss_fftri_f32):
7061         * gst-libs/gst/fft/kiss_fftr_f32.h:
7062         * gst-libs/gst/fft/kiss_fftr_f64.c: (kiss_fftr_f64_alloc),
7063         (kiss_fftr_f64), (kiss_fftri_f64):
7064         * gst-libs/gst/fft/kiss_fftr_f64.h:
7065         * gst-libs/gst/fft/kiss_fftr_s16.c: (kiss_fftr_s16_alloc),
7066         (kiss_fftr_s16), (kiss_fftri_s16):
7067         * gst-libs/gst/fft/kiss_fftr_s16.h:
7068         * gst-libs/gst/fft/kiss_fftr_s32.c: (kiss_fftr_s32_alloc),
7069         (kiss_fftr_s32), (kiss_fftri_s32):
7070         * gst-libs/gst/fft/kiss_fftr_s32.h:
7071         * gst-libs/gst/fft/kiss_version:
7072         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
7073         * pkgconfig/gstreamer-plugins-base.pc.in:
7074         Add libgstfft, a FFT library based on Kiss FFT which is
7075         BSD licensed. Supported sample formats are int16, int32,
7076         float and double. For those formats a real FFT and IFFT
7077         can be done, different windowing functions can be applied
7078         and functions for extracting the magnitude and phase exist.
7079         Fixes #468619.
7080
7081         * docs/libs/Makefile.am:
7082         * docs/libs/gst-plugins-base-libs-docs.sgml:
7083         * docs/libs/gst-plugins-base-libs-sections.txt:
7084         Integrate libgstfft into the docs.
7085
7086         * tests/check/Makefile.am:
7087         * tests/check/libs/fft.c: (GST_START_TEST), (fft_suite), (main):
7088         Add unit tests for libgstfft, currently only testing the FFT.
7089         Unit tests for IFFT will follow soon.
7090
7091 2007-09-05  Wim Taymans  <wim.taymans@gmail.com>
7092
7093         Patch by: Peter Kjellerstedt  <pkj at axis com>
7094
7095         * gst-libs/gst/sdp/gstsdpmessage.c: (gst_sdp_time_init),
7096         (gst_sdp_message_init), (gst_sdp_message_uninit),
7097         (is_multicast_address), (gst_sdp_message_as_text),
7098         (gst_sdp_message_get_origin), (gst_sdp_message_set_connection),
7099         (gst_sdp_message_get_connection), (gst_sdp_message_add_bandwidth),
7100         (gst_sdp_message_add_time), (gst_sdp_message_add_zone),
7101         (gst_sdp_message_get_key), (gst_sdp_message_get_attribute_val_n),
7102         (gst_sdp_message_get_attribute_val), (gst_sdp_message_add_media),
7103         (gst_sdp_media_init), (gst_sdp_media_uninit),
7104         (gst_sdp_media_as_text), (gst_sdp_media_set_port_info),
7105         (gst_sdp_media_connections_len), (gst_sdp_media_add_connection),
7106         (gst_sdp_media_bandwidths_len), (gst_sdp_media_get_bandwidth),
7107         (gst_sdp_media_add_bandwidth), (gst_sdp_media_attributes_len),
7108         (gst_sdp_parse_line), (print_media), (gst_sdp_message_dump):
7109         * gst-libs/gst/sdp/gstsdpmessage.h:
7110         Separate INIT_ARRAY() and related macros into two versions, one for
7111         structures and one for pointers (e.g., INIT_ARRAY() and
7112         INIT_PTR_ARRAY()). This fixes a segmentation error on freeing the
7113         lists of emails and phone numbers.
7114         Add missing const as appropriate.
7115         Change all gint to guint since they all actually represent unsigned
7116         values.
7117         Do not use time as a variable name as it shadows the global time().
7118         Add gst_sdp_message_as_text() and gst_sdp_media_as_text().
7119         Actually implement gst_sdp_message_add_time().
7120         Make gst_sdp_message_add_time() take repeat times as an argument.
7121         Store repeat times in GstSDPTime as a GArray rather than as gchar**.
7122         Corrected the definition of gst_sdp_media_get_bandwidth() (was
7123         misspelled as badwidth).
7124         gst-indented and a little clean up. Fixes #471067.
7125
7126 2007-09-05  Sebastian Dröge  <slomo@circular-chaos.org>
7127
7128         * gst/volume/gstvolume.c: (volume_choose_func),
7129         (volume_process_double), (volume_process_double_clamp),
7130         (volume_process_float_clamp):
7131         Correctly clamp float/double samples in the [-1.0,1.0] range to
7132         prevent weird effects.
7133         * tests/check/elements/volume.c: (GST_START_TEST), (volume_suite):
7134         Add unit tests for all samples types that had none before.
7135
7136 2007-09-05  Tim-Philipp Müller  <tim at centricular dot net>
7137
7138         * gst-libs/gst/rtp/gstrtpbuffer.c:
7139           Need to include stdlib.h for abs() here too.
7140
7141 2007-09-05  Tim-Philipp Müller  <tim at centricular dot net>
7142
7143         * gst/playback/gststreaminfo.c:
7144           Fix build.
7145
7146 2007-09-05  Stefan Kost  <ensonic@users.sf.net>
7147
7148         * gst/playback/gststreaminfo.c:
7149           Clean up some half-disabled code and comment.
7150
7151 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
7152
7153         Patch by: Laurent Glayal <spglegle at yahoo dot fr>
7154
7155         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
7156         (gst_base_rtp_payload_audio_handle_event):
7157         Return FALSE from the event handler to let the parent class handle the
7158         event. Fixes #446766.
7159
7160         * gst-libs/gst/rtp/gstbasertpdepayload.c:
7161         (gst_base_rtp_depayload_chain), (gst_base_rtp_depayload_push_full):
7162         Mark outgoing buffers as DISCONT if the incomming buffer was DISCONT.
7163
7164         * gst-libs/gst/rtp/gstbasertppayload.c:
7165         Bump the MTU to 1400.
7166
7167 2007-09-03  Johan Dahlin  <jdahlin@async.com.br>
7168
7169         * gst/typefind/gsttypefindfunctions.c (plugin_init): 
7170         Add an audio/x-nsf typefind function for the nsfdec element.
7171
7172 2007-09-03  Renato Filho  <renato.filho@indt.org.br>
7173         * gst/playback/gstplaybasebin.c:
7174         Included "myth://" on stream_uris list for enable buffering to mythtv files
7175
7176 2007-09-03  Wim Taymans  <wim.taymans@gmail.com>
7177
7178         * docs/libs/gst-plugins-base-libs-sections.txt:
7179         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_packet_get_rb),
7180         (gst_rtcp_packet_sdes_copy_entry), (gst_rtcp_ntp_to_unix),
7181         (gst_rtcp_unix_to_ntp):
7182         * gst-libs/gst/rtp/gstrtcpbuffer.h:
7183         Fix parsing of RB blocks.
7184         Fix docs.
7185         Added helper functions to convert to/from UNIX and NTP time.
7186         API: gst_rtcp_ntp_to_unix()
7187         API: gst_rtcp_unix_to_ntp()
7188
7189         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data),
7190         (gst_rtp_buffer_get_header_len),
7191         (gst_rtp_buffer_get_extension_data),
7192         (gst_rtp_buffer_get_payload_subbuffer),
7193         (gst_rtp_buffer_get_payload_len), (gst_rtp_buffer_get_payload),
7194         (gst_rtp_buffer_ext_timestamp):
7195         * gst-libs/gst/rtp/gstrtpbuffer.h:
7196         Fix some more docs.
7197         Implement handling of packets with extensions.
7198         Fix padding check in _validate().
7199         Added function to get extension data.
7200         API: gst_rtp_buffer_get_header_len()
7201         API: gst_rtp_buffer_get_extension_data()
7202
7203 2007-09-03  Wim Taymans  <wim.taymans@gmail.com>
7204
7205         * gst-libs/gst/rtp/gstbasertpdepayload.c:
7206         (gst_base_rtp_depayload_class_init),
7207         (gst_base_rtp_depayload_set_gst_timestamp):
7208         Add some more docs for the queue-delay property and fix a typo in a
7209         comment.
7210
7211         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
7212         Fix typo.
7213
7214 2007-09-03  Wim Taymans  <wim.taymans@gmail.com>
7215
7216         * gst-libs/gst/audio/gstbaseaudiosink.c:
7217         (gst_base_audio_sink_skew_slaving), (gst_base_audio_sink_render),
7218         (gst_base_audio_sink_change_state):
7219         When skew slaving, try to hover around the middle of a segment so that
7220         we at most drift by half a segment.
7221         If we are aligning in the oposite direction of the clock skew, we don't
7222         have to resync.
7223
7224 2007-08-31  Wim Taymans  <wim.taymans@gmail.com>
7225
7226         * gst-libs/gst/rtp/gstbasertpdepayload.c:
7227         (gst_base_rtp_depayload_setcaps),
7228         (gst_base_rtp_depayload_set_gst_timestamp):
7229         Be less silly with the segment start, just apply the clock-base to the
7230         timestamp.
7231
7232 2007-08-31  Wim Taymans  <wim.taymans@gmail.com>
7233
7234         * gst-libs/gst/rtp/gstbasertpdepayload.c:
7235         (gst_base_rtp_depayload_class_init),
7236         (gst_base_rtp_depayload_finalize),
7237         (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain),
7238         (gst_base_rtp_depayload_handle_sink_event),
7239         (gst_base_rtp_depayload_set_gst_timestamp),
7240         (gst_base_rtp_depayload_change_state):
7241         * gst-libs/gst/rtp/gstbasertpdepayload.h:
7242         Deprecate the queue handling thread thing and remove the code.
7243         Use new method to calculate the extended timestamp.
7244
7245 2007-08-31  Wim Taymans  <wim.taymans@gmail.com>
7246
7247         * gst-libs/gst/rtp/gstrtcpbuffer.c:
7248         (gst_rtcp_packet_sdes_copy_entry):
7249         Use g_strndup which does exactly what we want.
7250
7251         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_compare_seqnum),
7252         (gst_rtp_buffer_ext_timestamp):
7253         * gst-libs/gst/rtp/gstrtpbuffer.h:
7254         Add helper function to compare seqnums.
7255         Add helper function to calculate extended timestamps.
7256         API: gst_rtp_buffer_compare_seqnum()
7257         API: gst_rtp_buffer_ext_timestamp()
7258
7259 2007-08-30  Wim Taymans  <wim.taymans@gmail.com>
7260
7261         * gst-libs/gst/rtp/gstrtcpbuffer.c:
7262         (gst_rtcp_packet_sdes_get_entry),
7263         (gst_rtcp_packet_sdes_copy_entry):
7264         * gst-libs/gst/rtp/gstrtcpbuffer.h:
7265         Fix and document SDES item data function.
7266         Add new function that makes a proper copy of SDES item data.
7267         API: gst_rtcp_packet_sdes_copy_entry()
7268
7269 2007-08-30  Stefan Kost  <ensonic@users.sf.net>
7270
7271         * configure.ac:
7272         * gst/Makefile.am:
7273           The tcp and subparse plugins are under gst, but not totaly free of
7274           dependencies. Handle selection inconfigure.ac, so that they show up
7275           on the final list of what is build and what is not. Maybe they should
7276           better be moved to ext.
7277
7278 2007-08-30  Stefan Kost  <ensonic@users.sf.net>
7279
7280         Patch by: Daniel Díaz  <yosoy@danieldiaz.org>
7281
7282         * configure.ac:
7283         * gst/Makefile.am:
7284           Check if libxml provides HTML parser which subparse needs.
7285           Fixes #451970.
7286
7287 2007-08-29  Tim-Philipp Müller  <tim at centricular dot net>
7288
7289         * ext/alsa/gstalsa.c:
7290           Fix typo and compilation on big endian systems.
7291
7292 2007-08-29  Tim-Philipp Müller  <tim at centricular dot net>
7293
7294         * gst/subparse/gstssaparse.c:
7295           Convert SSA newline codes into actual newline characters (#470766).
7296
7297 2007-08-28  Tim-Philipp Müller  <tim at centricular dot net>
7298
7299         * docs/libs/gst-plugins-base-libs-sections.txt:
7300         * gst-libs/gst/pbutils/install-plugins.c:
7301         * gst-libs/gst/pbutils/install-plugins.h:
7302         * tests/check/libs/pbutils.c:
7303           API: also add gst_install_plugins_supported() while we're at it
7304           (see #470456).
7305
7306 2007-08-28  Tim-Philipp Müller  <tim at centricular dot net>
7307
7308         * docs/libs/gst-plugins-base-libs-sections.txt:
7309         * gst-libs/gst/pbutils/missing-plugins.c:
7310         * gst-libs/gst/pbutils/missing-plugins.h:
7311         * tests/check/libs/pbutils.c:
7312           API: add gst_missing_*_installer_detail_new() convenience API so
7313           that applications that know exactly what they're missing can request
7314           installer detail strings for those items directly instead of having
7315           to first create a dummy missing-plugin message and then get the
7316           installer detail string from that.  Fixes #470456.
7317
7318 2007-08-27  Jan Schmidt  <thaytan@mad.scientist.com>
7319
7320         * gst/playback/gstdecodebin.c: (close_pad_link):
7321         We need to set up delayed-linking whenever the caps are non-fixed,
7322         not just when there are multiple types - use gst_pad_is_fixed()
7323         to test.
7324
7325 2007-08-26  Tim-Philipp Müller  <tim at centricular dot net>
7326
7327         * gst-libs/gst/pbutils/missing-plugins.c:
7328           (gst_missing_plugin_message_get_installer_detail):
7329           Add missing separator in PID fallback case.
7330
7331 2007-08-24  Jan Schmidt  <thaytan@mad.scientist.com>
7332
7333         * ext/alsa/Makefile.am:
7334         There is no GST_PLUGINS_BASE_LIBS defined.
7335         
7336         * ext/alsa/gstalsa.c:
7337         * ext/alsa/gstalsasink.c: (gst_alsasink_delay):
7338         * ext/alsa/gstalsasrc.c: (gst_alsasrc_delay):
7339         Add support for ALSA 24-bit formats.
7340         snd_pcm_delay can return an error code, especially
7341         during XRUNS. In that case, the best we can do is assume
7342         delay = 0.
7343
7344         * gst/audioconvert/Makefile.am:
7345         Add flags from -base before any more-remote dependencies.
7346
7347 2007-08-23  Sebastian Dröge  <slomo@circular-chaos.org>
7348
7349         Based on a patch by: Davyd Madeley <davyd at madeley dot id dot au>
7350
7351         * gst/volume/gstvolume.c: (volume_choose_func),
7352         (volume_update_real_volume), (gst_volume_set_volume),
7353         (gst_volume_init), (volume_process_int32),
7354         (volume_process_int32_clamp), (volume_process_int24),
7355         (volume_process_int24_clamp), (volume_process_int16),
7356         (volume_process_int16_clamp), (volume_process_int8),
7357         (volume_process_int8_clamp), (volume_update_volume), (plugin_init):
7358         * gst/volume/gstvolume.h:
7359         Add support for int32, int24 and int8 to the volume element.
7360         Fixes #445529.
7361
7362 2007-08-23  Tim-Philipp Müller  <tim at centricular dot net>
7363
7364         * tests/examples/Makefile.am:
7365           Fix even more.
7366
7367 2007-08-23  Stefan Kost  <ensonic@users.sf.net>
7368
7369         * configure.ac:
7370         * docs/libs/Makefile.am:
7371         * docs/libs/gst-plugins-base-libs-docs.sgml:
7372         * docs/libs/gst-plugins-base-libs-sections.txt:
7373         * ext/gnomevfs/gstgnomevfssrc.c:
7374         * ext/gnomevfs/gstgnomevfssrc.h:
7375         * gst-libs/gst/Makefile.am:
7376         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
7377         * pkgconfig/gstreamer-plugins-base.pc.in:
7378         * sys/v4l/v4lsrc_calls.c:
7379         * tests/examples/Makefile.am:
7380         * win32/common/config.h:
7381           Revert unwanted commit. many thanks to moap. I want a fix for 
7382           https://thomas.apestaart.org/moap/trac/ticket/239
7383
7384 2007-08-23  Stefan Kost  <ensonic@users.sf.net>
7385
7386         * gst/volume/gstvolume.c:
7387           Move passthrough below gst_object_sync_values(). Fixes #442654.
7388
7389 2007-08-22  Wim Taymans  <wim.taymans@gmail.com>
7390
7391         * gst-libs/gst/audio/audio.c:
7392         Clarify the docs a little.
7393
7394 2007-08-22  Stefan Kost  <ensonic@users.sf.net>
7395
7396         * gst/volume/gstvolume.c:
7397           Enable liboil for float and add more details about problems with
7398           int16.
7399
7400 2007-08-21  Wim Taymans  <wim.taymans@gmail.com>
7401
7402         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps):
7403         Fix RGB24 masks as spotted by _ke (Daniel G. Siegel) on IRC.
7404
7405 2007-08-21  Wim Taymans  <wim.taymans@gmail.com>
7406
7407         * ext/vorbis/vorbisdec.c: (vorbis_dec_push_forward):
7408         When calculating the first timestamp of the buffers, don't go below 0
7409         and clip the samples because the offset was on the eos page.
7410         Fixes #466717.
7411
7412 2007-08-21  Wim Taymans  <wim.taymans@gmail.com>
7413
7414         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_read_chain),
7415         (gst_ogg_demux_collect_chain_info):
7416         Also submit the eos page when trying to find the first timestamp.
7417         See #466717.
7418
7419 2007-08-17  Sebastian Dröge  <slomo@circular-chaos.org>
7420
7421         * gst-libs/gst/audio/audio.h:
7422         Use gst_util_uint64_scale() instead of doing the math
7423         with double for GST_FRAMES_TO_CLOCK_TIME() and
7424         GST_CLOCK_TIME_TO_FRAMES(). For large timestamps this
7425         prevents rounding errors. Fixes #467667.
7426
7427 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
7428
7429         * gst-libs/gst/rtsp/gstrtspconnection.c:
7430         (gst_rtsp_connection_connect), (gst_rtsp_connection_write),
7431         (gst_rtsp_connection_read), (gst_rtsp_connection_poll):
7432         * gst-libs/gst/rtsp/gstrtspconnection.h:
7433         Small cleanups.
7434         On shutdown, don't read the control socket yet.
7435         Set timeout value correctly in all cases.
7436         Add function to check if the server accepts reads or writes.
7437         API: gst_rtsp_connection_poll()
7438
7439         * gst-libs/gst/rtsp/gstrtspdefs.h:
7440         Fix compilation with -pedantic.
7441         Add enum for _poll.
7442
7443 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
7444
7445         Patch by: Olivier Crete  <tester at tester ca>
7446
7447         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
7448         (gst_basertppayload_getcaps):
7449         * gst-libs/gst/rtp/gstbasertppayload.h:
7450         Add getcaps vfunc to basertppayload. See #465146.
7451
7452 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
7453
7454         * gst/playback/gstplaybasebin.c: (queue_threshold_reached):
7455         Only post buffering messages when we are a stream.
7456
7457 2007-08-15  Tim-Philipp Müller  <tim at centricular dot net>
7458
7459         * gst-libs/gst/pbutils/install-plugins.c:
7460         * gst-libs/gst/pbutils/missing-plugins.c:
7461           Small docs fix and addition.
7462
7463 2007-08-13  Tim-Philipp Müller  <tim at centricular dot net>
7464
7465         * tests/icles/.cvsignore:
7466         * tests/icles/Makefile.am:
7467         * tests/icles/test-textoverlay.c:
7468           Add a dumb little test for textoverlay alignments.
7469
7470 2007-08-13  Tim-Philipp Müller  <tim at centricular dot net>
7471
7472         Patch by: Dan Williams  <dcbw redhat com>
7473
7474         * ext/pango/gsttextoverlay.c:
7475         * ext/pango/gsttextoverlay.h:
7476           API: add "line-alignment" property (#459334). Add gtk-doc blurb for
7477           "silent" property so there's a Since tag in the API reference.
7478
7479 2007-08-12  Wim Taymans  <wim.taymans@gmail.com>
7480
7481         * gst-libs/gst/rtp/gstbasertppayload.c:
7482         (gst_basertppayload_set_outcaps):
7483         * gst-libs/gst/rtp/gstbasertppayload.h:
7484         Improve caps negotiation so that downstream elements can confiure
7485         certain RTP properties by fixing them on the caps. See #465146.
7486         Add docs.
7487
7488 2007-08-11  Tim-Philipp Müller  <tim at centricular dot net>
7489
7490         * docs/libs/gst-plugins-base-libs-sections.txt:
7491         * gst-libs/gst/rtp/gstbasertpdepayload.c:
7492         * gst-libs/gst/rtp/gstbasertpdepayload.h:
7493           Mark as deprecated some macros which were presumably meant to be
7494           private API and accidentally exposed in the public header file.
7495           Also actually _init() lock (only works at the moment because the
7496           struct is zeroed out when created and the initial values in the
7497           mutex struct are zeroes too). (#459585)
7498
7499 2007-08-10  Stefan Kost  <ensonic@users.sf.net>
7500
7501         * docs/libs/Makefile.am:
7502           Remove cruft and do some cleanups.
7503
7504         * docs/libs/gst-plugins-base-libs-docs.sgml:
7505           Prepare for comming gtkdoc features (rebase against online docs).
7506
7507 2007-08-10  Michael Smith <msmith@fluendo.com>
7508
7509         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
7510           Debug output fixes.
7511         * tests/check/elements/audiorate.c: (do_perfect_stream_test),
7512         (GST_START_TEST):
7513           Change the number of buffers used; 500 is too many and leads to
7514           timeouts.
7515
7516 2007-08-10  Tim-Philipp Müller  <tim at centricular dot net>
7517
7518         * gst/playback/gstqueue2.c:
7519         * gst/videorate/gstvideorate.c:
7520           Printf format fixes (#465028).
7521
7522 2007-08-09  Michael Smith <msmith@fluendo.com>
7523
7524         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
7525           If we have a large (> 1 second) discontinuity, push a series of
7526           smaller buffers rather than a single very large buffer. Avoids
7527           unreasonably large single buffer allocations when encountering a
7528           large gap.
7529         * tests/check/elements/audiorate.c: (GST_START_TEST),
7530         (audiorate_suite):
7531           Add a test for this.
7532
7533 2007-08-09  Jan Schmidt  <thaytan@mad.scientist.com>
7534
7535         * gst/playback/gstplaybasebin.c: (group_commit),
7536         (queue_remove_probe), (queue_threshold_reached):
7537
7538         Patch by: Josep Torra Valles <josep@fluendo.com>
7539         Fixes: #465015
7540         Make sure we remove the check_queues buffer probe from the 
7541         correct queue to avoid racily going back to "buffering 99%" when
7542         buffering is actually complete.
7543
7544         Also, fix the spelling of Josep's surname in the ChangeLog.
7545
7546 2007-08-09  Stefan Kost  <ensonic@users.sf.net>
7547
7548         * ext/ogg/gstoggmux.c:
7549           Do not leak oggmux instance.
7550         
7551         * ext/vorbis/vorbisenc.c:
7552           Also log values.
7553
7554 2007-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
7555
7556         * po/hu.po:
7557         * po/it.po:
7558         * po/nl.po:
7559         * po/uk.po:
7560         * po/vi.po:
7561           Updated translations.
7562
7563 2007-08-08  Stefan Kost  <ensonic@users.sf.net>
7564
7565         patch by: Yang Hong <hongyang@redflag-linux.com>
7566
7567         * ext/pango/gsttextoverlay.c:
7568         * ext/pango/gsttextoverlay.h:
7569           Add 'silent' property to GstTimeOverlay. Fixes #462979
7570
7571 2007-08-08  Wim Taymans  <wim.taymans@gmail.com>
7572
7573         Patch by: Josep Torra Valles <josep@fluendo.com>
7574
7575         * docs/plugins/gst-plugins-base-plugins.args:
7576         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_class_init),
7577         (gst_uri_decode_bin_init), (gst_uri_decode_bin_set_property),
7578         (gst_uri_decode_bin_get_property), (gen_source_element):
7579         Add connection-speed property. Fixes #464690.
7580
7581 2007-08-07  Wim Taymans  <wim.taymans@gmail.com>
7582
7583         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
7584
7585         * configure.ac:
7586         * gst-libs/gst/rtsp/Makefile.am:
7587         * gst-libs/gst/rtsp/gstrtspconnection.c:
7588         (gst_rtsp_connection_connect):
7589         Fix compilation on windows. Fixes #464320.
7590
7591 2007-08-07  Wim Taymans  <wim.taymans@gmail.com>
7592
7593         Patch by: Josep Torra Valles <josep@fluendo.com>
7594
7595         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
7596         (gst_play_base_bin_init), (queue_threshold_reached),
7597         (gen_source_element), (setup_substreams),
7598         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
7599         (gst_play_base_bin_get_streaminfo_value_array):
7600         * gst/playback/gstplaybasebin.h:
7601         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
7602         (gst_play_bin_set_property), (gst_play_bin_get_property),
7603         (gst_play_bin_handle_redirect_message):
7604         Move connection-speed property from playbin to playbasebin so that we
7605         can also configure it in source elements that have the connection-speed
7606         property. Fixes #464028.
7607         Add some debug info here and there.
7608
7609 2007-08-06  Sebastian Dröge  <slomo@circular-chaos.org>
7610
7611         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_query):
7612         Properly respond to conversion queries. Fixes #464079.
7613
7614 2007-08-03  Sebastian Dröge  <slomo@circular-chaos.org>
7615
7616         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_init),
7617         (gst_audio_test_src_src_fixate), (gst_audio_test_src_setcaps),
7618         (gst_audio_test_src_init_sine_table),
7619         (gst_audio_test_src_change_wave), (gst_audio_test_src_create):
7620         * gst/audiotestsrc/gstaudiotestsrc.h:
7621         Add float/double and int32 support to audiotestsrc. Fixes #460422.
7622         Also set the default volume to the default value specified in the
7623         GParamSpec.
7624
7625 2007-08-03  Sebastian Dröge  <slomo@circular-chaos.org>
7626
7627         Patch by: Jens Granseuer <jensgr at gmx dot net>
7628
7629         * gst/audioconvert/gstaudioquantize.c:
7630         Fix C89 incompatibilities and spelling of explanations. Fixes #463215.
7631
7632 2007-08-03  Wim Taymans  <wim.taymans@gmail.com>
7633
7634         * gst-libs/gst/rtsp/gstrtsptransport.c: (gst_rtsp_transport_parse):
7635         Add rdt manager for rdt transport.
7636         Fix parsing of RDT transport.
7637
7638 2007-08-03  Jan Schmidt  <thaytan@mad.scientist.com>
7639
7640         * configure.ac:
7641         Back to CVS
7642
7643 === release 0.10.14 ===
7644
7645 2007-08-03  Jan Schmidt <thaytan@mad.scientist.com>
7646
7647         * configure.ac:
7648           releasing 0.10.14, "Light Years Ahead"
7649
7650 2007-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
7651
7652         * tests/check/libs/audio.c: (GST_START_TEST):
7653         Fix the test to reflect the behaviour of gst_audio_clip_buffer.
7654
7655 2007-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
7656
7657         * gst-libs/gst/audio/audio.c:
7658         When clipping a buffer with no timestamp, assume it is
7659         within the segment without warnings.
7660
7661         Fixes: #460978
7662
7663 2007-07-27  Wim Taymans  <wim.taymans@gmail.com>
7664
7665         * gst-libs/gst/rtsp/gstrtspextension.c: (gst_rtsp_extension_send):
7666         Fire the signal on the object, not the interface.
7667
7668 2007-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
7669
7670         * gst-libs/gst/rtsp/.cvsignore:
7671         Ber. Don't include the full path, idiot.
7672
7673 2007-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
7674
7675         * gst-libs/gst/rtsp/.cvsignore:
7676         Ignore generated files.
7677
7678 2007-07-26  Jan Schmidt  <thaytan@mad.scientist.com>
7679
7680         * gst-libs/gst/interfaces/Makefile.am:
7681         * gst-libs/gst/interfaces/interfaces-marshal.list:
7682         * gst-libs/gst/interfaces/rtspextension.c:
7683         * gst-libs/gst/interfaces/rtspextension.h:
7684         * gst-libs/gst/rtsp/Makefile.am:
7685         * gst-libs/gst/rtsp/gstrtsp.h:
7686         * gst-libs/gst/rtsp/gstrtspextension.c:
7687         (gst_rtsp_extension_get_type), (gst_rtsp_extension_iface_init),
7688         (gst_rtsp_extension_detect_server),
7689         (gst_rtsp_extension_before_send), (gst_rtsp_extension_after_send),
7690         (gst_rtsp_extension_parse_sdp), (gst_rtsp_extension_setup_media),
7691         (gst_rtsp_extension_configure_stream),
7692         (gst_rtsp_extension_get_transports),
7693         (gst_rtsp_extension_stream_select), (gst_rtsp_extension_send):
7694         * gst-libs/gst/rtsp/gstrtspextension.h:
7695         * gst-libs/gst/rtsp/rtsp-marshal.list:
7696         Move the rtspextension.h interface into gstrtspextension.h
7697         as part of libgstrtsp instead of libgstinterfaces, because it's
7698         only for use within plugins, not applications. 
7699         Add stuff to do the enum & marshal generation needed in libgstrtsp now.
7700         Use the GST_TYPE_RTSP_RESULT enum type for the return value of the 
7701         signal that the GstRTSPExtension interface emits, since G_TYPE_ENUM
7702         is abstract.
7703
7704 2007-07-26  Wim Taymans  <wim.taymans@gmail.com>
7705
7706         * gst-libs/gst/interfaces/Makefile.am:
7707         * gst-libs/gst/interfaces/interfaces-marshal.list:
7708         * gst-libs/gst/interfaces/rtspextension.c:
7709         (gst_rtsp_extension_iface_init),
7710         (gst_rtsp_extension_stream_select), (gst_rtsp_extension_send):
7711         * gst-libs/gst/interfaces/rtspextension.h:
7712         Fix marshaller for the send signal.
7713         Add URL to stream selection interface method.
7714
7715 2007-07-26  Jan Schmidt  <thaytan@mad.scientist.com>
7716
7717         * gst-libs/gst/riff/Makefile.am:
7718         Pull in our dependencies from -base before those from outside.
7719
7720 2007-07-26  Wim Taymans  <wim.taymans@gmail.com>
7721
7722         * docs/libs/gst-plugins-base-libs-sections.txt:
7723         * gst-libs/gst/rtsp/gstrtspbase64.c: (gst_rtsp_base64_decode_ip):
7724         * gst-libs/gst/rtsp/gstrtspbase64.h:
7725         API: gst_rtsp_base64_decode_ip()
7726         Added function to decode Base64 in-place.
7727
7728 2007-07-26  Jan Schmidt  <thaytan@mad.scientist.com>
7729
7730         * tests/check/libs/.cvsignore:
7731         Ignore the mixer test binary.
7732
7733 2007-07-26  Jan Schmidt  <thaytan@mad.scientist.com>
7734
7735         * ext/vorbis/vorbisdec.c: (vorbis_dec_push_forward):
7736         Gratuitous comment change to trigger a rebuild on the buildbots.
7737
7738 2007-07-25  Wim Taymans  <wim.taymans@gmail.com>
7739
7740         * gst-libs/gst/sdp/gstsdpmessage.c: (gst_sdp_media_get_media),
7741         (gst_sdp_media_get_port), (gst_sdp_media_get_num_ports),
7742         (gst_sdp_media_get_proto), (gst_sdp_media_formats_len),
7743         (gst_sdp_media_get_format), (gst_sdp_media_get_information),
7744         (gst_sdp_media_connections_len), (gst_sdp_media_get_connection),
7745         (gst_sdp_media_bandwidths_len), (gst_sdp_media_get_badwidth),
7746         (gst_sdp_media_get_key), (gst_sdp_media_attributes_len),
7747         (gst_sdp_media_get_attribute), (gst_sdp_media_get_attribute_val_n),
7748         (gst_sdp_media_get_attribute_val):
7749         * gst-libs/gst/sdp/gstsdpmessage.h:
7750         Constify args where we can.
7751
7752 2007-07-25  Wim Taymans  <wim.taymans@gmail.com>
7753
7754         * gst-libs/gst/interfaces/Makefile.am:
7755         * gst-libs/gst/interfaces/rtspextension.c:
7756         (gst_rtsp_extension_get_type), (gst_rtsp_extension_iface_init),
7757         (gst_rtsp_extension_detect_server),
7758         (gst_rtsp_extension_before_send), (gst_rtsp_extension_after_send),
7759         (gst_rtsp_extension_parse_sdp), (gst_rtsp_extension_setup_media),
7760         (gst_rtsp_extension_configure_stream),
7761         (gst_rtsp_extension_get_transports),
7762         (gst_rtsp_extension_stream_select), (gst_rtsp_extension_send):
7763         * gst-libs/gst/interfaces/rtspextension.h:
7764         Move interface for RTSP extensions from -good to here.
7765         Added helper methods to invoke interface methods.
7766
7767 2007-07-25  Wim Taymans  <wim.taymans@gmail.com>
7768
7769         * docs/libs/gst-plugins-base-libs-sections.txt:
7770         * gst-libs/gst/rtsp/gstrtspdefs.h:
7771         * gst-libs/gst/rtsp/gstrtspmessage.c: (key_value_foreach),
7772         (gst_rtsp_message_get_type), (gst_rtsp_message_parse_request),
7773         (gst_rtsp_message_init_response),
7774         (gst_rtsp_message_parse_response), (gst_rtsp_message_new_data),
7775         (gst_rtsp_message_parse_data), (gst_rtsp_message_add_header),
7776         (gst_rtsp_message_remove_header), (gst_rtsp_message_get_header),
7777         (gst_rtsp_message_append_headers), (gst_rtsp_message_set_body),
7778         (gst_rtsp_message_get_body), (dump_key_value):
7779         * gst-libs/gst/rtsp/gstrtspmessage.h:
7780         * gst-libs/gst/rtsp/gstrtsprange.c: (parse_npt_time),
7781         (parse_npt_range), (parse_clock_range), (parse_smpte_range),
7782         (gst_rtsp_range_parse):
7783         * gst-libs/gst/rtsp/gstrtsprange.h:
7784         * gst-libs/gst/rtsp/gstrtsptransport.c:
7785         * gst-libs/gst/rtsp/gstrtspurl.c:
7786         Fix some more RTSP docs.
7787         Add some missing methods for dealing with messages.
7788
7789 2007-07-24  Wim Taymans  <wim.taymans@gmail.com>
7790
7791         * docs/libs/gst-plugins-base-libs-docs.sgml:
7792         * docs/libs/gst-plugins-base-libs-sections.txt:
7793         * gst-libs/gst/rtsp/gstrtspbase64.c: (gst_rtsp_base64_encode):
7794         * gst-libs/gst/rtsp/gstrtspbase64.h:
7795         * gst-libs/gst/rtsp/gstrtspconnection.c:
7796         (gst_rtsp_connection_connect), (add_auth_header),
7797         (gst_rtsp_connection_write), (gst_rtsp_connection_send),
7798         (read_body), (gst_rtsp_connection_receive),
7799         (gst_rtsp_connection_next_timeout),
7800         (gst_rtsp_connection_reset_timeout),
7801         (gst_rtsp_connection_set_auth):
7802         * gst-libs/gst/rtsp/gstrtspconnection.h:
7803         * gst-libs/gst/rtsp/gstrtspdefs.c: (rtsp_init_status):
7804         * gst-libs/gst/rtsp/gstrtspdefs.h:
7805         * gst-libs/gst/rtsp/gstrtspmessage.h:
7806         * gst-libs/gst/rtsp/gstrtsprange.c: (parse_npt_time),
7807         (parse_npt_range), (parse_clock_range), (parse_smpte_range),
7808         (gst_rtsp_range_parse):
7809         * gst-libs/gst/rtsp/gstrtspurl.h:
7810         Added beginnings of RTSP documentation.
7811
7812 2007-07-24  Wim Taymans  <wim.taymans@gmail.com>
7813
7814         * docs/libs/Makefile.am:
7815         * docs/libs/gst-plugins-base-libs-docs.sgml:
7816         * docs/libs/gst-plugins-base-libs-sections.txt:
7817         * gst-libs/gst/sdp/gstsdp.h:
7818         * gst-libs/gst/sdp/gstsdpmessage.c: (gst_sdp_message_set_origin),
7819         (gst_sdp_message_set_connection), (gst_sdp_message_add_bandwidth),
7820         (gst_sdp_message_add_time), (gst_sdp_message_add_zone),
7821         (gst_sdp_message_set_key), (gst_sdp_message_get_attribute_val_n),
7822         (gst_sdp_message_get_attribute_val),
7823         (gst_sdp_message_add_attribute), (gst_sdp_media_new),
7824         (gst_sdp_media_init), (gst_sdp_media_uninit), (gst_sdp_media_free),
7825         (gst_sdp_media_get_media), (gst_sdp_media_set_media),
7826         (gst_sdp_media_get_port), (gst_sdp_media_get_num_ports),
7827         (gst_sdp_media_set_port_info), (gst_sdp_media_get_proto),
7828         (gst_sdp_media_set_proto), (gst_sdp_media_formats_len),
7829         (gst_sdp_media_get_format), (gst_sdp_media_add_format),
7830         (gst_sdp_media_get_information), (gst_sdp_media_set_information),
7831         (gst_sdp_media_connections_len), (gst_sdp_media_get_connection),
7832         (gst_sdp_media_add_connection), (gst_sdp_media_bandwidths_len),
7833         (gst_sdp_media_get_badwidth), (gst_sdp_media_add_bandwidth),
7834         (gst_sdp_media_set_key), (gst_sdp_media_get_key),
7835         (gst_sdp_media_attributes_len), (gst_sdp_media_add_attribute),
7836         (gst_sdp_media_get_attribute_val_n),
7837         (gst_sdp_media_get_attribute_val), (gst_sdp_message_parse_buffer),
7838         (print_media), (gst_sdp_message_dump):
7839         * gst-libs/gst/sdp/gstsdpmessage.h:
7840         Document the SDP library.
7841         Add some of the missing SDPMedia methods.
7842
7843 2007-07-24  Wim Taymans  <wim.taymans@gmail.com>
7844
7845         * configure.ac:
7846         * gst-libs/gst/Makefile.am:
7847         * gst-libs/gst/rtsp/Makefile.am:
7848         * gst-libs/gst/rtsp/gstrtspbase64.c: (gst_rtsp_base64_encode):
7849         * gst-libs/gst/rtsp/gstrtspbase64.h:
7850         * gst-libs/gst/rtsp/gstrtspconnection.c: (inet_aton),
7851         (gst_rtsp_connection_create), (gst_rtsp_connection_connect),
7852         (add_auth_header), (add_date_header), (gst_rtsp_connection_write),
7853         (gst_rtsp_connection_send), (read_line), (read_string), (read_key),
7854         (parse_response_status), (parse_request_line), (parse_line),
7855         (gst_rtsp_connection_read), (read_body),
7856         (gst_rtsp_connection_receive), (gst_rtsp_connection_close),
7857         (gst_rtsp_connection_free), (gst_rtsp_connection_next_timeout),
7858         (gst_rtsp_connection_reset_timeout), (gst_rtsp_connection_flush),
7859         (gst_rtsp_connection_set_auth):
7860         * gst-libs/gst/rtsp/gstrtspconnection.h:
7861         * gst-libs/gst/rtsp/gstrtspdefs.c: (rtsp_init_status),
7862         (gst_rtsp_strresult), (gst_rtsp_method_as_text),
7863         (gst_rtsp_version_as_text), (gst_rtsp_header_as_text),
7864         (gst_rtsp_status_as_text), (gst_rtsp_find_header_field),
7865         (gst_rtsp_find_method):
7866         * gst-libs/gst/rtsp/gstrtspdefs.h:
7867         * gst-libs/gst/rtsp/gstrtspmessage.c: (key_value_foreach),
7868         (gst_rtsp_message_new), (gst_rtsp_message_init),
7869         (gst_rtsp_message_new_request), (gst_rtsp_message_init_request),
7870         (gst_rtsp_message_new_response), (gst_rtsp_message_init_response),
7871         (gst_rtsp_message_init_data), (gst_rtsp_message_unset),
7872         (gst_rtsp_message_free), (gst_rtsp_message_add_header),
7873         (gst_rtsp_message_remove_header), (gst_rtsp_message_get_header),
7874         (gst_rtsp_message_append_headers), (gst_rtsp_message_set_body),
7875         (gst_rtsp_message_take_body), (gst_rtsp_message_get_body),
7876         (gst_rtsp_message_steal_body), (dump_mem), (dump_key_value),
7877         (gst_rtsp_message_dump):
7878         * gst-libs/gst/rtsp/gstrtspmessage.h:
7879         * gst-libs/gst/rtsp/gstrtsprange.c: (parse_npt_time),
7880         (parse_npt_range), (parse_clock_range), (parse_smpte_range),
7881         (gst_rtsp_range_parse), (gst_rtsp_range_free):
7882         * gst-libs/gst/rtsp/gstrtsprange.h:
7883         * gst-libs/gst/rtsp/gstrtsptransport.c: (gst_rtsp_transport_new),
7884         (gst_rtsp_transport_init), (gst_rtsp_transport_get_mime),
7885         (gst_rtsp_transport_get_manager), (parse_mode), (parse_range),
7886         (range_as_text), (rtsp_transport_mode_as_text),
7887         (rtsp_transport_profile_as_text), (rtsp_transport_ltrans_as_text),
7888         (gst_rtsp_transport_parse), (gst_rtsp_transport_as_text),
7889         (gst_rtsp_transport_free):
7890         * gst-libs/gst/rtsp/gstrtsptransport.h:
7891         * gst-libs/gst/rtsp/gstrtspurl.c: (gst_rtsp_url_parse),
7892         (gst_rtsp_url_free), (gst_rtsp_url_set_port),
7893         (gst_rtsp_url_get_port), (gst_rtsp_url_get_request_uri):
7894         * gst-libs/gst/rtsp/gstrtspurl.h:
7895         * gst-libs/gst/sdp/Makefile.am:
7896         * gst-libs/gst/sdp/gstsdp.h:
7897         * gst-libs/gst/sdp/gstsdpmessage.c: (gst_sdp_origin_init),
7898         (gst_sdp_connection_init), (gst_sdp_bandwidth_init),
7899         (gst_sdp_time_init), (gst_sdp_zone_init), (gst_sdp_key_init),
7900         (gst_sdp_attribute_init), (gst_sdp_message_new),
7901         (gst_sdp_message_init), (gst_sdp_message_uninit),
7902         (gst_sdp_message_free), (gst_sdp_media_new), (gst_sdp_media_init),
7903         (gst_sdp_media_uninit), (gst_sdp_media_free),
7904         (gst_sdp_message_set_origin), (gst_sdp_message_get_origin),
7905         (gst_sdp_message_set_connection), (gst_sdp_message_get_connection),
7906         (gst_sdp_message_add_bandwidth), (gst_sdp_message_add_time),
7907         (gst_sdp_message_add_zone), (gst_sdp_message_set_key),
7908         (gst_sdp_message_get_key), (gst_sdp_message_get_attribute_val_n),
7909         (gst_sdp_message_get_attribute_val),
7910         (gst_sdp_message_add_attribute), (gst_sdp_message_add_media),
7911         (gst_sdp_media_add_attribute), (gst_sdp_media_add_bandwidth),
7912         (gst_sdp_media_add_format), (gst_sdp_media_get_attribute),
7913         (gst_sdp_media_get_attribute_val_n),
7914         (gst_sdp_media_get_attribute_val), (gst_sdp_media_get_format),
7915         (read_string), (read_string_del), (gst_sdp_parse_line),
7916         (gst_sdp_message_parse_buffer), (print_media),
7917         (gst_sdp_message_dump):
7918         * gst-libs/gst/sdp/gstsdpmessage.h:
7919         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
7920         Move SDP and RTSP from helper objects in -good to a reusable library.
7921         Use a proper gst_ namespace.
7922
7923 2007-07-23  Sebastian Dröge  <slomo@circular-chaos.org>
7924
7925         * ext/vorbis/vorbisdec.c: (vorbis_dec_push_forward),
7926         (vorbis_dec_flush_decode):
7927         Use the new buffer clipping function from gstaudio here.
7928
7929 2007-07-23  Sebastian Dröge  <slomo@circular-chaos.org>
7930
7931         * docs/libs/gst-plugins-base-libs-sections.txt:
7932         * gst-libs/gst/audio/audio.c: (gst_audio_buffer_clip):
7933         * gst-libs/gst/audio/audio.h:
7934         * tests/check/libs/audio.c: (GST_START_TEST), (audio_suite):
7935         API: Add buffer clipping function for raw audio buffers. Fixes #456656.
7936         Also add deprecation guards for gst_audio_structure_set_int() to the
7937         header.
7938
7939 2007-07-23  Stefan Kost  <ensonic@users.sf.net>
7940
7941         * docs/libs/gst-plugins-base-libs-sections.txt:
7942           Cleanup the docs.
7943
7944 2007-07-23  Wim Taymans  <wim.taymans@gmail.com>
7945
7946         Patch by: Dan Williams <dcbw at redhat dot com>
7947
7948         * gst/playback/gstplaybasebin.c:
7949         (gst_play_base_bin_get_streaminfo_value_array):
7950         Don't return NULL when querying the stream info value array but instead
7951         return an empty array. Fixes #459204.
7952
7953 2007-07-23  Tim-Philipp Müller  <tim at centricular dot net>
7954
7955         * gst/playback/gsturidecodebin.c:
7956           Init debug category before using it.
7957
7958 2007-07-21  Jan Schmidt  <thaytan@noraisin.net>
7959
7960         * gst-libs/gst/interfaces/mixer.h:
7961         Add padding vars in place of the signal pointers
7962         when building with DISABLE_DEPRECATED so that the
7963         interface structure doesn't change size.
7964
7965 2007-07-20  Jan Schmidt  <thaytan@noraisin.net>
7966
7967         * docs/libs/gst-plugins-base-libs-sections.txt:
7968         * ext/alsa/gstalsamixer.c:
7969         * ext/alsa/gstalsamixer.h:
7970         * ext/alsa/gstalsamixerelement.c:
7971         * ext/alsa/gstalsamixertrack.c:
7972         * gst-libs/gst/interfaces/mixer.c:
7973         * gst-libs/gst/interfaces/mixer.h:
7974         * gst-libs/gst/interfaces/mixeroptions.c:
7975         * gst-libs/gst/interfaces/mixeroptions.h:
7976         * gst-libs/gst/interfaces/mixertrack.c:
7977         * gst-libs/gst/interfaces/mixertrack.h:
7978         * tests/check/Makefile.am:
7979         * tests/check/libs/mixer.c:
7980
7981         Patch By: Marc-Andre Lureau <marcandre.lureau@gmail.com>
7982         Fixes: #152864 
7983
7984         Add support for notifying mixer changes on the message bus, and
7985         implement it in alsamixer.
7986
7987         API: gst_mixer_get_mixer_flags
7988         API: gst_mixer_message_parse_mute_toggled
7989         API: gst_mixer_message_parse_record_toggled
7990         API: gst_mixer_message_parse_volume_changed
7991         API: gst_mixer_message_parse_option_changed
7992         API: GstMixerMessageType
7993         API: GstMixerFlags
7994
7995 2007-07-20  Michael Smith <msmith@fluendo.com>
7996
7997         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
7998         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_setcaps):
7999           xcontext->im_format is only for testing XShm support (as the header
8000           file comments document). Use xvimage->im_format for everything else.
8001           Avoids spurious warnings on buffer allocation before setcaps.
8002
8003 2007-07-20  Stefan Kost  <ensonic@users.sf.net>
8004
8005         * tests/examples/volume/Makefile.am:
8006         * tests/icles/Makefile.am:
8007           We should use $(LIBM).
8008
8009 2007-07-20  Stefan Kost  <ensonic@users.sf.net>
8010
8011         * tests/icles/Makefile.am:
8012           This needs -lm.
8013
8014 2007-07-16  Wim Taymans  <wim.taymans@gmail.com>
8015
8016         * gst-libs/gst/rtp/gstbasertppayload.c:
8017         (gst_basertppayload_class_init), (gst_basertppayload_init),
8018         (gst_basertppayload_set_property),
8019         (gst_basertppayload_get_property):
8020         Don't break ABI, restore previous ranges. Keep the default random
8021         selection of timestamp and seqnum offset but as soon as the app sets a
8022         specific value, use that one.
8023
8024 2007-07-14  Wim Taymans  <wim.taymans@gmail.com>
8025
8026         Patch by: Bastien Nocera <hadess at hadess dot net>
8027
8028         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
8029         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
8030         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
8031         * sys/xvimage/xvimagesink.h:
8032         Add option to turn off double-buffering for debugging purposes.
8033         Fixes #437169.
8034
8035 2007-07-14  Wim Taymans  <wim.taymans@gmail.com>
8036
8037         Patch by: Jorn Baayen <jorn at openedhand dot com>
8038
8039         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
8040         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
8041         (gst_ximagesink_init), (gst_ximagesink_class_init):
8042         * sys/ximage/ximagesink.h:
8043         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents),
8044         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
8045         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
8046         * sys/xvimage/xvimagesink.h:
8047         add 'handle-expose' property. Useful for video widgets which may want to
8048         be in control of Expose behaviour. Fixes #380625
8049
8050 2007-07-14  Wim Taymans  <wim.taymans@gmail.com>
8051
8052         * gst-libs/gst/rtp/gstbasertppayload.c:
8053         (gst_basertppayload_class_init), (gst_basertppayload_init),
8054         (gst_basertppayload_event), (gst_basertppayload_push),
8055         (gst_basertppayload_set_property),
8056         (gst_basertppayload_get_property),
8057         (gst_basertppayload_change_state):
8058         * gst-libs/gst/rtp/gstbasertppayload.h:
8059         Fix ranges of rtp payloader properties so that the full range can be
8060         used in addition to -1 (random).
8061         Fix wrong seqnum reporting in caps.
8062         Fixes #420326.
8063
8064 2007-07-13  Wim Taymans  <wim.taymans@gmail.com>
8065
8066         * gst/videorate/gstvideorate.c: (gst_video_rate_init),
8067         (gst_video_rate_query):
8068         Use boilerplate.
8069         Add latency query, might not be perfect yet but already works a lot
8070         better. Fixes #442557.
8071
8072 2007-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
8073
8074         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
8075         (gst_xvimagesink_setcaps):
8076         * sys/xvimage/xvimagesink.h:
8077         After a caps change, redraw our borders to avoid garbage left there
8078         when the image format changes to a smaller size, like 16:9 -> 4:3
8079         Also, hold the flow_lock a bit longer in the set_caps while we're
8080         fiddling with the xcontext.
8081
8082 2007-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
8083
8084         * Makefile.am:
8085         * configure.ac:
8086         * tests/Makefile.am:
8087         Remove bogus check for libcheck, since we check for
8088         gstreamer-check and it pulls in the required info from there, and we
8089         weren't actually _using_ the information for libcheck ourselves
8090         anyway.
8091
8092 2007-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
8093
8094         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
8095         (gst_ffmpeg_caps_to_pixfmt):
8096         Fix the r_mask test for RGBA32 on little-endian.
8097         Fix a stupid typo that would have obviously broken 
8098         compilation on big-endian, if anyone was testing.
8099
8100 2007-07-12  Wim Taymans  <wim.taymans@gmail.com>
8101
8102         * gst/videotestsrc/videotestsrc.c: (paint_hline_AYUV),
8103         (paint_hline_str4):
8104         * gst/videotestsrc/videotestsrc.h:
8105         Add alpha to the color struct.
8106         Use a default alpha value of 255 instead of 128.
8107
8108 2007-07-12  Wim Taymans  <wim.taymans@gmail.com>
8109
8110         * gst/playback/gstplaybasebin.c: (no_more_pads_full),
8111         (setup_source):
8112         Clear the dynamic pads counter when starting a new uri. This makes
8113         reusing playbin work again.
8114         Fixes #454264.
8115
8116 2007-07-12  Stefan Kost  <ensonic@users.sf.net>
8117
8118         * configure.ac:
8119           Use pkg-config to locate check.
8120
8121 2007-07-12  Tim-Philipp Müller  <tim at centricular dot net>
8122
8123         * configure.ac:
8124         * tests/check/elements/volume.c: (GST_START_TEST):
8125           Fix 'make check' build against core CVS.
8126
8127 2007-07-10  Stefan Kost  <ensonic@users.sf.net>
8128
8129         * gst-libs/gst/interfaces/propertyprobe.c:
8130         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
8131         * gst-libs/gst/tag/gstvorbistag.c:
8132           Make gtk-doc happy.
8133
8134 2007-07-08  Tim-Philipp Müller  <tim at centricular dot net>
8135
8136         * gst-libs/gst/audio/gstbaseaudiosink.c:
8137         (gst_base_audio_sink_callback):
8138           Quick hack to make audiosinks stop at EOS when operating in
8139           pull-mode; needs to be fixed properly some day.
8140
8141 2007-07-06  Stefan Kost  <ensonic@users.sf.net>
8142
8143         * docs/libs/gst-plugins-base-libs-sections.txt:
8144           Fix location of includes in the docs.
8145
8146 2007-07-06  Jan Schmidt  <thaytan@mad.scientist.com>
8147
8148         * gst/ffmpegcolorspace/avcodec.h:
8149         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
8150         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
8151         (gst_ffmpegcsp_avpicture_fill):
8152         * gst/ffmpegcolorspace/imgconvert.c: (img_convert),
8153         (img_get_alpha_info):
8154         Add 2 new pixel formats - ABGR32 and ARGB32, which are reflections
8155         of the existing BGRA32 and RGBA32 formats with the alpha at the other
8156         end of the word. Partially fixes #451908
8157
8158 2007-07-05  Stefan Kost  <ensonic@users.sf.net>
8159
8160         * docs/libs/Makefile.am:
8161         * docs/plugins/Makefile.am:
8162           Simplify --extra-dir as gtkdoc scans recursively.
8163
8164 2007-07-03  Wim Taymans  <wim.taymans@gmail.com>
8165
8166         * gst/adder/gstadder.c: (gst_adder_sink_getcaps),
8167         (gst_adder_request_new_pad):
8168         Make getcaps more robust by not using the proxycaps function. This makes
8169         sure that we don't end up recursively calling getcaps upstream.
8170         See #316248.
8171
8172 2007-06-29  Wim Taymans  <wim.taymans@gmail.com>
8173
8174         * gst/audioconvert/audioconvert.c:
8175         Include math.h to fix compilation.
8176
8177 2007-06-29  Jan Schmidt  <thaytan@mad.scientist.com>
8178
8179         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
8180         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
8181         Add a mapping for YUV format "IYU1", which is a 4:1:1 packed pixel
8182         format, as produced by some dc1394 cameras like the iSight.
8183         See http://www.fourcc.org/yuv.php#IYU1
8184
8185 2007-06-28  Sebastian Dröge  <slomo@circular-chaos.org>
8186
8187         * gst/audioconvert/Makefile.am:
8188         * gst/audioconvert/audioconvert.c: (audio_convert_get_func_index),
8189         (check_default), (audio_convert_prepare_context),
8190         (audio_convert_clean_context), (audio_convert_convert):
8191         * gst/audioconvert/audioconvert.h:
8192         * gst/audioconvert/gstaudioconvert.c:
8193         (gst_audio_convert_dithering_get_type),
8194         (gst_audio_convert_ns_get_type), (gst_audio_convert_class_init),
8195         (gst_audio_convert_init), (gst_audio_convert_set_caps),
8196         (gst_audio_convert_set_property), (gst_audio_convert_get_property):
8197         * gst/audioconvert/gstaudioconvert.h:
8198         * gst/audioconvert/gstaudioquantize.c:
8199         (gst_audio_quantize_setup_noise_shaping),
8200         (gst_audio_quantize_free_noise_shaping),
8201         (gst_audio_quantize_setup_dither),
8202         (gst_audio_quantize_free_dither),
8203         (gst_audio_quantize_setup_quantize_func),
8204         (gst_audio_quantize_setup), (gst_audio_quantize_free):
8205         * gst/audioconvert/gstaudioquantize.h:
8206         Implement dithering and noise shaping in audioconvert. By default now
8207         TPDF dithering (and no noise shaping) will be used when converting
8208         from a higher bit depth to 20 bit depth or smaller, otherwise
8209         everything will be as it is now.
8210         For the last audioconvert in a pipeline it would make sense to
8211         use some kind of noise shaping, enabling it by default for all
8212         conversions would give undesired results though. Fixes #360246.
8213         * tests/check/elements/audioconvert.c: (setup_audioconvert),
8214         (GST_START_TEST):
8215         Adjust unit test for the new audioconvert.
8216
8217 2007-06-28  Wim Taymans  <wim@fluendo.com>
8218
8219         * gst/playback/gstqueue2.c: (apply_segment), (update_buffering):
8220         Use other metrics as well when estimating the buffer level.
8221
8222 2007-06-28  Wim Taymans  <wim@fluendo.com>
8223
8224         * gst/playback/gstplaybasebin.c: (make_decoder), (setup_source):
8225         Small debug improvement.
8226
8227         * gst/playback/gstqueue2.c: (apply_segment), (update_buffering),
8228         (plugin_init):
8229         Tweak the rate estimation period.
8230         When calculating the buffer filledness in rate estimation mode, don't
8231         mix it with other metrics.
8232
8233 2007-06-28  Wim Taymans  <wim@fluendo.com>
8234
8235         * gst/playback/gstdecodebin2.c: (gst_decode_group_new),
8236         (gst_decode_group_expose), (gst_decode_group_free), (add_fakesink):
8237         When creating the groups, allow for a 5 second, unlimited buffers
8238         preroll phase after which we expose the group.
8239         When the group is exposed, use a small number of buffers up to a 2
8240         second limit. Also disconnect the overrun signal from multiqueue when we
8241         exposed the group because it is not needed anymore.
8242
8243 2007-06-27  Tim-Philipp Müller  <tim at centricular dot net>
8244
8245         * gst-libs/gst/tag/tags.c: (gst_tag_freeform_string_to_utf8):
8246           Don't pass trailing zeroes in fixed-size string arrays in ID3v1 tags
8247           to utf8-validate; fixes recognition of ID3v1 tags in UTF-8 encoding
8248           (#451707); also, output some debugging info when dealing with
8249           freeform strings.
8250
8251         * tests/check/libs/tag.c: (GST_START_TEST), (tag_suite):
8252           Add unit test for the above.
8253
8254 2007-06-27  Tim-Philipp Müller  <tim at centricular dot net>
8255
8256         * gst-libs/gst/pbutils/descriptions.c: (caps_are_rtp_caps):
8257           Add description for Windows Media RTP caps.
8258
8259         * gst-libs/gst/pbutils/missing-plugins.c: (copy_and_clean_caps):
8260           Remove RTP fields that don't define the format from caps.
8261
8262 2007-06-27  Tim-Philipp Müller  <tim at centricular dot net>
8263
8264         * ext/vorbis/vorbisdec.c: (vorbis_dec_decode_buffer):
8265           Skip empty buffers, but not empty header buffers. That way the original
8266           vorbisdec unit test still passes (#451145); also, take into account
8267           that those empty packets might carry a granulepos.
8268
8269         * tests/check/Makefile.am:
8270         * tests/check/elements/vorbisdec.c:
8271         (_create_codebook_header_buffer), (_create_audio_buffer),
8272         (GST_START_TEST), (vorbisdec_suite):
8273           Add unit test that sends an empty packet.
8274
8275 2007-06-27  Wim Taymans  <wim@fluendo.com>
8276
8277         * ext/vorbis/vorbisdec.c: (vorbis_dec_decode_buffer):
8278         Don't error out on 0-sized packets, just emit a warning because this is
8279         not a fatal error. Fixes #451145.
8280
8281 2007-06-25  Stefan Kost  <ensonic@users.sf.net>
8282
8283         * docs/plugins/gst-plugins-base-plugins.args:
8284         * docs/plugins/gst-plugins-base-plugins.signals:
8285         * docs/plugins/inspect/plugin-adder.xml:
8286         * docs/plugins/inspect/plugin-alsa.xml:
8287         * docs/plugins/inspect/plugin-audioconvert.xml:
8288         * docs/plugins/inspect/plugin-audiorate.xml:
8289         * docs/plugins/inspect/plugin-audioresample.xml:
8290         * docs/plugins/inspect/plugin-audiotestsrc.xml:
8291         * docs/plugins/inspect/plugin-cdparanoia.xml:
8292         * docs/plugins/inspect/plugin-decodebin.xml:
8293         * docs/plugins/inspect/plugin-decodebin2.xml:
8294         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
8295         * docs/plugins/inspect/plugin-gdp.xml:
8296         * docs/plugins/inspect/plugin-gnomevfs.xml:
8297         * docs/plugins/inspect/plugin-libvisual.xml:
8298         * docs/plugins/inspect/plugin-ogg.xml:
8299         * docs/plugins/inspect/plugin-pango.xml:
8300         * docs/plugins/inspect/plugin-playbin.xml:
8301         * docs/plugins/inspect/plugin-subparse.xml:
8302         * docs/plugins/inspect/plugin-tcp.xml:
8303         * docs/plugins/inspect/plugin-theora.xml:
8304         * docs/plugins/inspect/plugin-typefindfunctions.xml:
8305         * docs/plugins/inspect/plugin-video4linux.xml:
8306         * docs/plugins/inspect/plugin-videorate.xml:
8307         * docs/plugins/inspect/plugin-videoscale.xml:
8308         * docs/plugins/inspect/plugin-videotestsrc.xml:
8309         * docs/plugins/inspect/plugin-volume.xml:
8310         * docs/plugins/inspect/plugin-vorbis.xml:
8311         * docs/plugins/inspect/plugin-ximagesink.xml:
8312         * docs/plugins/inspect/plugin-xvimagesink.xml:
8313           Update docs with caps info.
8314
8315 2007-06-25  Tim-Philipp Müller  <tim at centricular dot net>
8316
8317         * po/POTFILES.in:
8318           Add more files with translatable strings (#450875).
8319
8320 2007-06-23  Edward Hervey  <edward@fluendo.com>
8321
8322         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_find_chains):
8323         The chain should be freed if we error out here, else it will leak.
8324         * gst/playback/gstdecodebin.c: (disconnect_unlinked_signals),
8325         (cleanup_decodebin):
8326         Don't forget to *properly* remove the signals, else it will leak.
8327
8328 2007-06-22  Jan Schmidt  <thaytan@noraisin.net>
8329
8330         * MAINTAINERS:
8331         Updating all the maintainers files
8332
8333 2007-06-21  Stefan Kost  <ensonic@users.sf.net>
8334
8335         * tests/examples/seek/seek.c: (update_scale), (play_cb), (stop_cb),
8336         (main):
8337           Destroy and recreate parse-launch based pipeline after stop to be able
8338           to play again. Reorder some code and add more comments.
8339
8340 2007-06-20  Jan Schmidt  <thaytan@mad.scientist.com>
8341
8342         * gst/playback/gstdecodebin2.c: (analyze_new_pad):
8343         When handling a delayed-caps notification case, mark
8344         the group as dynamic so that the nbdynamic count is
8345         incremented and decremented correctly. Fixes: #449156
8346         Patch by: Wim Taymans <wim@fluendo.com>
8347
8348 2007-06-19  Andy Wingo  <wingo@pobox.com>
8349
8350         * gst-libs/gst/audio/gstbaseaudiosink.c
8351         (gst_base_audio_sink_init): Enable pull-mode operation.
8352
8353 2007-06-19  Michael Smith <msmith@fluendo.com>
8354
8355         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
8356           Change minimum rate back to 1000 to allow low-sample-rate wav files
8357           to play back.
8358
8359 2007-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
8360
8361         * po/vi.po:
8362           Update translations.
8363
8364 2007-06-15  David Schleef  <ds@schleef.org>
8365
8366         * gst/playback/gstqueue2.c:
8367           Fix compile error from ignored return value.
8368
8369 2007-06-15  Michael Smith <msmith@fluendo.com>
8370
8371         * gst/videoscale/vs_4tap.c: (vs_image_scale_4tap_Y):
8372           Update tmpbuf for all neccesary rows, not just one, as is required
8373           when downscaling.
8374           Fixes #402076.
8375
8376 2007-06-15  Michael Smith <msmith@fluendo.com>
8377
8378         * tests/check/pipelines/oggmux.c: (validate_ogg_page), (is_video),
8379         (eos_buffer_probe):
8380           Add a test that ensures we set DELTA_UNIT on all non-header,
8381           non-video buffers, if we have a video stream.
8382         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
8383         (gst_ogg_mux_process_best_pad):
8384           Move setting delta_pad to earlier, where we inspect all pads, so
8385           that leading audio pages don't get DELTA_UNIT unset if they come
8386           before the first DELTA_UNIT from video pages. Fixes the newly-added
8387           test. Fixes #385527.
8388
8389 2007-06-14  Tim-Philipp Müller  <tim at centricular dot net>
8390
8391         * tests/check/pipelines/streamheader.c: (streamheader_suite):
8392           Disable test_multifdsink_gdp_vorbisenc() on ppc64 since it
8393           fails on the p5-ppc64 build bot and the failure looks like it is due
8394           to the same issue as #348114, ie. a compiler bug.
8395
8396 2007-06-13  Edward Hervey  <edward@fluendo.com>
8397
8398         * gst/playback/gstqueue2.c: (gst_queue_create_read):
8399         Fix build on MacOSX.
8400
8401 2007-06-13  Wim Taymans  <wim@fluendo.com>
8402
8403         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
8404         (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain):
8405         Fix compilation on mingw. Fixes #446972.
8406
8407 2007-06-12  Wim Taymans  <wim@fluendo.com>
8408
8409         Patches by: Thiago Sousa Santos <thiagossantos at gmail dot com>
8410
8411         * gst/playback/gstqueue2.c: (update_buffering),
8412         (gst_queue_locked_enqueue):
8413         Fix a division by zero when the max percent is <= 0. Fixes #446572.
8414         also update the buffering status when receiving events. Fixes #446551.
8415
8416 2007-06-11  Wim Taymans  <wim@fluendo.com>
8417
8418         Based on patch by: Thiago Sousa Santos <thiagossantos at gmail dot com>
8419
8420         * gst/playback/gstqueue2.c: (gst_queue_peer_query),
8421         (gst_queue_handle_src_query):
8422         Wait for preroll before attempting to forward a duration query upstream.
8423         Fixes #445505.
8424
8425 2007-06-07  Sebastien Moutte  <sebastien@moutte.net>
8426
8427         * gst-libs/gst/rtp/gstbasertpdepayload.c: 
8428         (gst_base_rtp_depayload_set_gst_timestamp):
8429         Use G_GINT64_CONSTANT macro for int64 constant.
8430         * win32/common/libgstinterfaces.def:
8431         * win32/common/libgsttag.def:
8432         Add new exported functions.
8433
8434 2007-06-07  Tim-Philipp Müller  <tim at centricular dot net>
8435
8436         * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers):
8437           The BOS page of the first Dirac video stream needs to come before
8438           the BOS page of any Vorbis streams or other audio streams, just like
8439           it is with Theora.
8440
8441 2007-06-07  Wim Taymans  <wim@fluendo.com>
8442
8443         * gst/playback/gstqueue2.c: (gst_queue_get_range):
8444         Fix compilation.
8445
8446 2007-06-06  Wim Taymans  <wim@fluendo.com>
8447
8448         Patch by: Thiago Sousa Santos <thiagossantos at gmail dot com>
8449
8450         * gst/playback/gstqueue2.c: (gst_queue_init),
8451         (gst_queue_handle_sink_event), (gst_queue_chain),
8452         (gst_queue_get_range), (gst_queue_src_checkgetrange_function),
8453         (gst_queue_sink_activate_push), (gst_queue_src_activate_push),
8454         (gst_queue_src_activate_pull):
8455         Add pull based scheduling and fix some deadlocks. Fixes #444523.
8456         Does not yet completely work because duration queries upstream won't
8457         block yet.
8458
8459 2007-06-06  Wim Taymans  <wim@fluendo.com>
8460
8461         * configure.ac:
8462         * gst/playback/gstqueue2.c: (gst_queue_create_read):
8463         Some more fseeko checks.
8464
8465 2007-06-06  Wim Taymans  <wim@fluendo.com>
8466
8467         * configure.ac:
8468         check for large file support.
8469
8470 2007-06-05  Sebastian Dröge  <slomo@circular-chaos.org>
8471
8472         Based on a patch by Sven Arvidsson <sa at whiz dot se>:
8473
8474         * gst/subparse/gstsubparse.c: (parse_subrip),
8475         (subviewer_unescape_newlines), (parse_subviewer),
8476         (gst_sub_parse_data_format_autodetect),
8477         (gst_sub_parse_format_autodetect), (gst_subparse_type_find):
8478         * gst/subparse/gstsubparse.h:
8479         Add support for SubViewer version 1 and 2 subtitles. Fixes #394061.
8480         * tests/check/elements/subparse.c: (GST_START_TEST),
8481         (subparse_suite):
8482         Add a unit test for both SubViewer formats.
8483
8484 2007-06-01  Michael Smith <msmith@fluendo.com>
8485
8486         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_do_seek):
8487           Don't overflow intermediate values when seeking to large time values
8488           in audiotestsrc.
8489
8490 2007-06-05  Wim Taymans  <wim@fluendo.com>
8491
8492         * gst/playback/gstqueue2.c: (gst_queue_have_data),
8493         (gst_queue_create_read), (gst_queue_read_item_from_file),
8494         (gst_queue_open_temp_location_file), (gst_queue_locked_enqueue):
8495         Include stdio to define fseeko.
8496
8497 2007-06-05  Wim Taymans  <wim@fluendo.com>
8498
8499         Patch by: Edward Hervey  <edward@fluendo.com>
8500
8501         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_fixate),
8502         (gst_v4lsrc_query):
8503         Make v4lsrc output segments in GST_FORMAT_TIME. Fixes #442553.
8504
8505 2007-06-05  Tim-Philipp Müller  <tim at centricular dot net>
8506
8507         * gst-libs/gst/riff/Makefile.am:
8508         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_info):
8509           Use gst_tag_utf8_from_freeform_string() from libgsttag instead of
8510           our own implementation.
8511
8512 2007-06-05  Wim Taymans  <wim@fluendo.com>
8513
8514         * gst-libs/gst/rtp/gstbasertpdepayload.c:
8515         (gst_base_rtp_depayload_setcaps),
8516         (gst_base_rtp_depayload_set_gst_timestamp),
8517         (gst_base_rtp_depayload_change_state):
8518         Handle timestamp wraparound.
8519
8520 2007-06-05  Wim Taymans  <wim@fluendo.com>
8521
8522         * gst/playback/gsturidecodebin.c: (no_more_pads_full),
8523         (new_decoded_pad), (remove_pads), (make_decoder), (setup_source),
8524         (gst_uri_decode_bin_change_state):
8525         Make sure we name srcpads uniquely even when using different internal
8526         decodebins.
8527         Signal no-more-pads when no more dynamic elements exist.
8528         Remove pads on cleanup.
8529
8530 2007-06-05  Wim Taymans  <wim@fluendo.com>
8531
8532         Based on patch by: Thiago Sousa Santos <thiagossantos at gmail dot com>
8533
8534         * gst/playback/gstqueue2.c: (gst_queue_class_init),
8535         (gst_queue_init), (gst_queue_finalize),
8536         (gst_queue_write_buffer_to_file), (gst_queue_have_data),
8537         (gst_queue_create_read), (gst_queue_read_item_from_file),
8538         (gst_queue_open_temp_location_file),
8539         (gst_queue_close_temp_location_file), (gst_queue_locked_flush),
8540         (gst_queue_locked_enqueue), (gst_queue_locked_dequeue),
8541         (gst_queue_is_empty), (gst_queue_is_filled),
8542         (gst_queue_change_state), (gst_queue_set_temp_location),
8543         (gst_queue_set_property):
8544         Add support for filebased buffering. Fixes #441264.
8545
8546 2007-06-05  Wim Taymans  <wim@fluendo.com>
8547
8548         * gst/playback/gstdecodebin2.c: (gst_decode_bin_factory_filter),
8549         (analyze_new_pad), (connect_pad), (expose_pad), (caps_notify_cb),
8550         (caps_notify_group_cb), (gst_decode_group_new),
8551         (gst_decode_group_free):
8552         Add support for delayed caps fixation when autoplugging.
8553         Optimize cases where a multiqueue is not needed/wanted, like right after
8554         anything that is not a demuxer.
8555
8556 2007-06-05  Wim Taymans  <wim@fluendo.com>
8557
8558         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_parse_skeleton_fisbone),
8559         (gst_ogg_pad_submit_packet), (gst_ogg_demux_perform_seek),
8560         (gst_ogg_demux_read_chain), (gst_ogg_demux_collect_chain_info):
8561         consideratly speedup ogg chain detection by not trying to find a base
8562         timestamp for skeleton streams. 
8563
8564 2007-06-05  Wim Taymans  <wim@fluendo.com>
8565
8566         * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type),
8567         (gst_multi_fd_sink_class_init), (gst_multi_fd_sink_add_full),
8568         (gst_multi_fd_sink_remove_flush),
8569         (gst_multi_fd_sink_remove_client_link),
8570         (gst_multi_fd_sink_handle_client_write),
8571         (gst_multi_fd_sink_handle_clients):
8572         * gst/tcp/gstmultifdsink.h:
8573         Add support for remove_flush.
8574
8575 2007-06-05  Wim Taymans  <wim@fluendo.com>
8576
8577         * docs/design/draft-keyframe-force.txt:
8578         * ext/theora/theoraenc.c: (theora_enc_sink_event),
8579         (theora_enc_chain):
8580         Add draft design for forcing keyframes in encoders and implement in
8581         theoraenc.
8582
8583 2007-06-05  Jan Schmidt  <thaytan@mad.scientist.com>
8584
8585         * configure.ac:
8586           Back to CVS
8587
8588 === release 0.10.13 ===
8589
8590 2007-06-05  Jan Schmidt <thaytan@mad.scientist.com>
8591
8592         * configure.ac:
8593           releasing 0.10.13, "What's Going on?"
8594
8595 2007-05-31  Jan Schmidt  <thaytan@mad.scientist.com>
8596
8597         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
8598         In riff, the depth is stored in the size field but it just means that
8599         the least significant bits are cleared. We can therefore just play
8600         the sample as if it had a depth == width. Fixes: #440997
8601
8602         Patch by: Wim Taymans <wim@fluendo.com> 
8603         Patch by: Sebastian Dröge  <slomo@circular-chaos.org>
8604
8605 2007-05-31  Jan Schmidt  <thaytan@mad.scientist.com>
8606
8607         * gst-libs/gst/floatcast/floatcast.h:
8608         Define inline when needed on win32 builds. Fixes: #441295
8609         Patch by: Sebastien Moutte  <sebastien@moutte.net>
8610
8611 2007-05-29  Wim Taymans  <wim@fluendo.com>
8612
8613         * gst/playback/gstplaybasebin.c: (queue_overrun),
8614         (no_more_pads_full):
8615         Stop buffering when the group is commited because the queues filled up.
8616         Fixes #442024.
8617
8618 2007-05-25  Jan Schmidt  <thaytan@mad.scientist.com>
8619
8620         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_ensure_track_list),
8621         (gst_alsa_mixer_free), (gst_alsa_mixer_update),
8622         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
8623         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
8624         (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
8625         * ext/alsa/gstalsamixer.h:
8626         * ext/alsa/gstalsamixerelement.c:
8627         (gst_alsa_mixer_element_interface_supported),
8628         (gst_alsa_mixer_element_finalize), (gst_alsa_mixer_element_init),
8629         (gst_alsa_mixer_element_set_property),
8630         (gst_alsa_mixer_element_get_property),
8631         (gst_alsa_mixer_element_change_state):
8632         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_update):
8633         * gst-libs/gst/interfaces/mixer.c: (gst_mixer_volume_changed),
8634         (gst_mixer_option_changed):
8635         * gst-libs/gst/interfaces/mixer.h:
8636         Revert commits towards #152864 made so far. We'll pick it up again
8637         after the 0.10.13 release.
8638
8639 2007-05-24  Wim Taymans  <wim@fluendo.com>
8640
8641         * gst-libs/gst/audio/gstbaseaudiosink.c:
8642         (gst_base_audio_sink_render):
8643         After an interrupt (PAUSED/flush) assume that the next sample should not
8644         be aligned to the previous sample. Fixes #417992.
8645
8646 2007-05-24  Tim-Philipp Müller  <tim at centricular dot net>
8647
8648         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
8649           Don't add channels and rate fields to the template caps for
8650           audio/x-dts, as wavparse might not always be able to set them,
8651           which would then lead to 'caps are not a real subset of the
8652           template caps' warnings.
8653
8654 2007-05-24  Jan Schmidt  <thaytan@mad.scientist.com>
8655
8656         * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
8657         Handle unknown or invalid pads without crashing, as might occur if
8658         a media file like an mp3 is specified as a subtitle file.
8659         Fixes: #410039
8660
8661 2007-05-24  Jan Schmidt  <thaytan@mad.scientist.com>
8662
8663         * gst/playback/gstplaybin.c: (add_sink), (dummy_blocked_cb),
8664         (setup_sinks):
8665         Block the subtitle bin output queue before ghosting it and linking,
8666         then unblock after. This avoids spurious not-linked errors caused 
8667         by the queue starting up (because it gets linked when it is ghosted). 
8668         Fixes: #350299
8669
8670 2007-05-23  Jan Schmidt  <thaytan@mad.scientist.com>
8671
8672         * tests/check/elements/playbin.c: (test_suburi_error_unknowntype):
8673         Use /dev/zero instead of /dev/urandom to produce an invalid subtitle
8674         file. Avoids flukes where the input gets typefound to some valid but
8675         useless type.
8676
8677 2007-05-22  Tim-Philipp Müller  <tim at centricular dot net>
8678
8679         * tests/check/Makefile.am:
8680         * tests/check/elements/.cvsignore:
8681         * tests/check/elements/gnomevfssink.c: (setup_gnomevfssink),
8682         (cleanup_gnomevfssink), (GST_START_TEST), (gnomevfssink_suite):
8683           Add unit test for gnomevfssink seeking and position reporting for
8684           file:// URIs.
8685
8686 2007-05-22  Tim-Philipp Müller  <tim at centricular dot net>
8687
8688         Patch by: Mark Nauwelaerts <manauw at skynet be>
8689
8690         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_init),
8691         (gst_gnome_vfs_sink_open_file), (gst_gnome_vfs_sink_handle_event),
8692         (gst_gnome_vfs_sink_query), (gst_gnome_vfs_sink_render):
8693         * ext/gnomevfs/gstgnomevfssink.h:
8694           Fix position reporting, especially after a seek (from upstream),
8695           see #412648.
8696
8697 2007-05-22  Tim-Philipp Müller  <tim at centricular dot net>
8698
8699         * ext/cdparanoia/gstcdparanoiasrc.c:
8700           Repair umlaut.
8701
8702 2007-05-22  Jan Schmidt  <thaytan@mad.scientist.com>
8703
8704         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
8705         Specify the full valid range for MP3 samplerates. Fixes a regression
8706         caused by extra header checks since the last release.
8707
8708 2007-05-21  Jan Schmidt  <thaytan@mad.scientist.com>
8709
8710         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
8711         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
8712         Fix a locking-order bug I introduced with my changes the other day.
8713         Patch by Mike Smith.
8714
8715 2007-05-21  Michael Smith <msmith@fluendo.com>
8716
8717         * ext/theora/theoradec.c: (theora_handle_data_packet):
8718           Don't look inside 0-length packets (which indicate duplicated
8719           frames)
8720
8721 2007-05-21  Wim Taymans  <wim@fluendo.com>
8722
8723         * ext/cdparanoia/gstcdparanoiasrc.c:
8724         (gst_cd_paranoia_src_read_sector):
8725         * gst-libs/gst/audio/gstbaseaudiosrc.c:
8726         (gst_base_audio_src_create):
8727         Small cleanups.
8728
8729         * ext/theora/theoradec.c: (theora_dec_sink_event):
8730         Fix typo.
8731
8732         * gst-libs/gst/rtp/gstbasertpdepayload.c:
8733         (gst_base_rtp_depayload_set_gst_timestamp):
8734         Add some FIXME
8735
8736         * gst/playback/gstdecodebin.c: (queue_underrun_cb):
8737         And some debug info when a FIXME path is hit.
8738
8739 2007-05-21  Wim Taymans  <wim@fluendo.com>
8740
8741         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
8742         (gst_base_rtp_audio_payload_class_init),
8743         (gst_base_rtp_audio_payload_init),
8744         (gst_base_rtp_audio_payload_finalize),
8745         (gst_base_rtp_audio_payload_handle_frame_based_buffer),
8746         (gst_base_rtp_audio_payload_handle_sample_based_buffer),
8747         (gst_base_rtp_payload_audio_handle_event):
8748         Some cleanups, remove minptime property as it is now in the parent
8749         class.
8750         Override parent class event function.
8751
8752         * gst-libs/gst/rtp/gstbasertppayload.c:
8753         (gst_basertppayload_class_init), (gst_basertppayload_init),
8754         (gst_basertppayload_event), (gst_basertppayload_set_property),
8755         (gst_basertppayload_get_property):
8756         * gst-libs/gst/rtp/gstbasertppayload.h:
8757         Add min-ptime property.
8758         Add handle-event vmethod. Fixes #415001.
8759
8760 2007-05-18  Stefan Kost  <ensonic@users.sf.net>
8761
8762         * gst-libs/gst/audio/gstbaseaudiosink.c
8763           (gst_base_audio_sink_change_state):
8764           Fix typo in comment.
8765
8766         * gst/playback/gstdecodebin.c (gst_decode_bin_class_init,
8767           free_dynamics, pad_probe, close_pad_link, try_to_link_1,
8768           get_our_ghost_pad, remove_element_chain, queue_underrun_cb,
8769           close_link):
8770         * gst/playback/gstplaybin.c (gst_play_bin_set_property,
8771           gen_audio_element, remove_sinks, gst_play_bin_send_event_to_sink):
8772           Remove trailing whitespaces in comments.
8773
8774         * gst/volume/Makefile.am:
8775           Fix tabs.
8776
8777 2007-05-18  Stefan Kost  <ensonic@users.sf.net>
8778
8779         patch by: Marc-Andre Lureau <marcandre.lureau@gmail.com>
8780
8781         * gst-libs/gst/interfaces/mixer.h (mixer_type, option_changed,
8782           set_option, get_option, _gst_reserved):
8783           Revert reordering functions (keep ABI).
8784
8785 2007-05-17  Jan Schmidt  <thaytan@mad.scientist.com>
8786
8787         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
8788         (gst_ximagesink_xwindow_new), (gst_ximagesink_handle_xevents),
8789         (gst_ximagesink_show_frame):
8790         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
8791         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_handle_xevents),
8792         (gst_xvimagesink_show_frame):
8793         When we create our own window, indicate that we handle the 
8794         WM_DELETE client message from the window manager, so that it won't 
8795         kill our window (and our app) along with it. Handle ClientMessage,
8796         post an error on the bus, and close the window. Further buffers
8797         arriving will result in a FlowError because the window has been
8798         destroyed.
8799
8800         Fixes: #393975
8801
8802         Clean up the X event handling loop and make them the same for
8803         both xvimagesink and ximagesink while I'm at it.
8804
8805 2007-05-17  Wim Taymans  <wim@fluendo.com>
8806
8807         * gst/playback/gstdecodebin2.c: (gst_decode_bin_factory_filter):
8808         Make decodebin2 autoplug depayloaders too.
8809
8810         * gst/playback/gsturidecodebin.c: (source_new_pad):
8811         Set the newly created decoder in a usable state when autoplugging a
8812         dynamic source such as RTSP.
8813
8814 2007-05-17  Tim-Philipp Müller  <tim at centricular dot net>
8815
8816         * gst/playback/gststreaminfo.c: (cb_probe):
8817           Ignore video-codec tag for audio streams and ignore audio-codec tags
8818           for video streams. Should make codec name collection a bit more
8819           robust against sloppy demuxers that send tag events containing both
8820           tags down each pad.
8821
8822 2007-05-17  Wim Taymans  <wim@fluendo.com>
8823
8824         * gst/playback/gstqueue2.c: (update_rates):
8825         Tweak the buffering thresholds a little.
8826         Update the buffer size with the previously calculate rate instead of
8827         only when we calculate a new rate so that we get smoother buffering
8828         updates.
8829
8830         * gst/playback/Makefile.am:
8831         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_base_init),
8832         (gst_uri_decode_bin_class_init), (gst_uri_decode_bin_init),
8833         (gst_uri_decode_bin_finalize), (gst_uri_decode_bin_set_property),
8834         (gst_uri_decode_bin_get_property), (unknown_type),
8835         (add_element_stream), (no_more_pads_full), (no_more_pads),
8836         (source_no_more_pads), (new_decoded_pad), (array_has_value),
8837         (gen_source_element), (has_all_raw_caps), (analyse_source),
8838         (remove_decoders), (make_decoder), (remove_source),
8839         (source_new_pad), (setup_source), (decoder_query_init),
8840         (decoder_query_duration_fold), (decoder_query_duration_done),
8841         (decoder_query_position_fold), (decoder_query_position_done),
8842         (decoder_query_latency_fold), (decoder_query_latency_done),
8843         (decoder_query_seeking_fold), (decoder_query_seeking_done),
8844         (decoder_query_generic_fold), (gst_uri_decode_bin_query),
8845         (gst_uri_decode_bin_change_state), (plugin_init):
8846         New element that intergrates a source, optional buffering element and
8847         decodebin.
8848
8849 2007-05-17  Tim-Philipp Müller  <tim at centricular dot net>
8850
8851         * configure.ac:
8852           Bump libtheora requirement to 1.0alpha5 for the pixformat check
8853           (also has a .pc file, so we don't need the fallback check any
8854           longer). Fixes #438840.
8855
8856 2007-05-17  Wim Taymans  <wim@fluendo.com>
8857
8858         * gst/playback/gstqueue2.c: (gst_queue_get_type),
8859         (gst_queue_class_init), (gst_queue_finalize), (update_time_level),
8860         (apply_segment), (apply_buffer), (update_buffering),
8861         (reset_rate_timer), (update_rates), (gst_queue_locked_flush),
8862         (gst_queue_locked_enqueue), (gst_queue_locked_dequeue),
8863         (gst_queue_handle_sink_event), (gst_queue_is_filled),
8864         (gst_queue_chain), (gst_queue_push_one), (gst_queue_loop),
8865         (plugin_init):
8866         fix build.
8867
8868 2007-05-17  Wim Taymans  <wim@fluendo.com>
8869
8870         * gst/playback/Makefile.am:
8871         * gst/playback/gstqueue2.c: (gst_queue_get_type),
8872         (gst_queue_class_init), (gst_queue_init), (gst_queue_finalize),
8873         (gst_queue_getcaps), (gst_queue_bufferalloc),
8874         (gst_queue_acceptcaps), (update_time_level), (apply_segment),
8875         (apply_buffer), (update_buffering), (reset_rate_timer),
8876         (update_rates), (gst_queue_locked_flush),
8877         (gst_queue_locked_enqueue), (gst_queue_locked_dequeue),
8878         (gst_queue_handle_sink_event), (gst_queue_is_empty),
8879         (gst_queue_is_filled), (gst_queue_chain), (gst_queue_push_one),
8880         (gst_queue_loop), (gst_queue_handle_src_event),
8881         (gst_queue_handle_src_query), (gst_queue_sink_activate_push),
8882         (gst_queue_src_activate_push), (gst_queue_change_state),
8883         (gst_queue_set_property), (gst_queue_get_property), (plugin_init):
8884         On our way to playbin2 this is the new network queue that does buffering
8885         all by itself using high and low watermarks. It can also measure up and
8886         downstream bandwidth to optimally size the queue.
8887
8888 2007-05-17  Michael Smith <msmith@fluendo.com>
8889
8890         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_do_seek):
8891         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_do_seek):
8892           Use the segment->last_stop value to calculate the next timestamp to
8893           generate after a seek; not the segment->start value.
8894
8895 2007-05-15  David Schleef  <ds@schleef.org>
8896
8897         * docs/Makefile.am: Install docs even when --disable-gtk-doc
8898           is disabled.  This matches the behavior of gtk+.  Fixes #349099.
8899
8900 2007-05-15  Wim Taymans  <wim@fluendo.com>
8901
8902         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
8903         (gst_ogg_demux_perform_seek), (gst_ogg_demux_handle_page):
8904         Some more chained streaming ogg timestamp fixes.
8905
8906 2007-05-15  Wim Taymans  <wim@fluendo.com>
8907
8908         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
8909         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
8910         (gst_ogg_demux_handle_page):
8911         Add some FIXMEs.
8912         Fix chain start/stop segment handling based on patch by
8913         <ahalda at cs dot mcgill dot ca> see #320984.
8914
8915 2007-05-15  Michael Smith <msmith@fluendo.com>
8916
8917         * configure.ac:
8918           We don't require a C++ compiler. So don't require one.
8919
8920 2007-05-15  Stefan Kost  <ensonic@users.sf.net>
8921
8922         * ext/alsa/gstalsamixer.c (source, n_poll_fds, poll_fds,
8923           gst_alsa_mixer_check, gst_alsa_mixer_dispatch,
8924           gst_alsa_mixer_finalize, gst_alsa_mixer_handle_source_callback,
8925           gst_alsa_mixer_handle_callback, gst_alsa_mixer_elem_handle_callback,
8926           gst_alsa_mixer_ensure_track_list, gst_alsa_mixer_update_option,
8927           gst_alsa_mixer_update_track):
8928           Apply some of the cleanup Tim suggested in #152864 afterwards.
8929
8930 2007-05-15  Stefan Kost  <ensonic@users.sf.net>
8931
8932         patch by: Marc-Andre Lureau <marcandre.lureau@gmail.com>
8933
8934         * ext/alsa/gstalsamixer.c (main_context, GstAlsaMixerWatch,
8935           _GstAlsaMixerWatch, source, n_poll_fds, poll_fds,
8936           gst_alsa_mixer_watch_funcs, gst_alsa_mixer_prepare,
8937           gst_alsa_mixer_check, gst_alsa_mixer_dispatch,
8938           gst_alsa_mixer_finalize, gst_alsa_mixer_find_master_mixer,
8939           gst_alsa_mixer_handle_source_callback,
8940           gst_alsa_mixer_handle_callback, gst_alsa_mixer_elem_handle_callback,
8941           gst_alsa_mixer_ensure_track_list, gst_alsa_mixer_free,
8942           gst_alsa_mixer_get_volume, gst_alsa_mixer_set_volume,
8943           gst_alsa_mixer_set_mute, gst_alsa_mixer_set_record,
8944           gst_alsa_mixer_get_option, gst_alsa_mixer_update_option,
8945           gst_alsa_mixer_update_track, _gst_alsa_mixer_set_interface):
8946         * ext/alsa/gstalsamixer.h (handle_source, interface, dir):
8947         * ext/alsa/gstalsamixerelement.c (gst_alsa_mixer_element_details,
8948           gst_alsa_mixer_element_interface_supported,
8949           gst_alsa_mixer_element_finalize, gst_alsa_mixer_element_init,
8950           gst_alsa_mixer_element_set_property,
8951           gst_alsa_mixer_element_get_property,
8952           gst_alsa_mixer_element_change_state):
8953         * ext/alsa/gstalsamixertrack.c (gst_alsa_mixer_track_update):
8954         * gst-libs/gst/interfaces/mixer.c (gst_mixer_volume_changed,
8955           gst_mixer_option_changed):
8956         * gst-libs/gst/interfaces/mixer.h (set_option, get_option,
8957           volume_changed, option_changed, _gst_reserved):
8958           Implement notification for alsamixer. Fixes #152864
8959
8960 2007-05-14  David Schleef  <ds@schleef.org>
8961
8962         * gst/videotestsrc/videotestsrc.c:
8963         * gst/videotestsrc/videotestsrc.h:
8964           Add support for video/x-raw-bayer.
8965
8966 2007-05-12  David Schleef  <ds@schleef.org>
8967
8968         * sys/xvimage/xvimagesink.c:
8969           Add some sanity checking for the XVImage size returned by X.
8970           Related to #377400.
8971
8972 2007-05-12  Wim Taymans  <wim@fluendo.com>
8973
8974         * gst-libs/gst/rtp/gstbasertpdepayload.c:
8975         (gst_base_rtp_depayload_setcaps),
8976         (gst_base_rtp_depayload_set_gst_timestamp):
8977         Parse and use additional caps fields as described in updated
8978         application/x-rtp caps spec.
8979
8980 2007-05-12  Wim Taymans  <wim@fluendo.com>
8981
8982         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
8983         (gst_ogg_demux_collect_chain_info):
8984         If there is a stream in a chain without any data packets, ignore the
8985         stream in the total length calculations. Might be related to #436820.
8986
8987 2007-05-11  Jan Schmidt  <thaytan@mad.scientist.com>
8988
8989         * gst/typefind/gsttypefindfunctions.c: (mpeg_sys_is_valid_pack),
8990         (mpeg_sys_is_valid_pes), (mpeg_sys_is_valid_sys),
8991         (mpeg_sys_type_find), (mpeg_ts_type_find), (mpeg4_video_type_find),
8992         (mpeg_video_type_find), (mpeg_video_stream_type_find),
8993         (plugin_init):
8994
8995         Consolidate and re-work our mpeg system stream detection to probe
8996         more packets and produce a higher confidence result. Fixes a
8997         regression caused by lowering the typefind probability last year
8998         - related to bug #397810. Remove the redundant MPEG-1 specific 
8999         typefind function, as the new one detects both MPEG-1 & MPEG-2
9000         happily.
9001
9002         Also cleanup the MPEG elementary and MPEG-TS detection functions a
9003         little. 
9004
9005         Tested against my media test directory, with some improvements and
9006         no regressions.
9007
9008 2007-05-10  Wim Taymans  <wim@fluendo.com>
9009
9010         * gst/playback/gstplaybasebin.c: (fill_buffer), (check_queue),
9011         (queue_out_of_data):
9012         Connect to the new queue "pushing" signal instead of the broken
9013         "running" one.
9014
9015 2007-05-09  Sebastien Moutte  <sebastien@moutte.net>
9016
9017         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
9018         (gst_base_rtp_audio_payload_handle_frame_based_buffer):
9019         Move variable declaration before the first instruction.
9020         * gst/videotestsrc/videotestsrc.c:
9021         Define M_PI if it's not defined yet.
9022         * win32/common/libgstrtp.def:
9023         Add new exported functions.
9024
9025 2007-05-09  Michael Smith <msmith@fluendo.com>
9026
9027         * ext/theora/theoradec.c: (theora_handle_type_packet):
9028           gst_pad_push_event() does not return a GstFlowReturn!
9029
9030 2007-05-09  Wim Taymans  <wim@fluendo.com>
9031
9032         * tests/examples/seek/scrubby.c: (stop_cb), (main):
9033         * tests/examples/seek/seek.c: (do_seek):
9034         Some small cosmetic changes.
9035
9036 2007-05-08  Stefan Kost  <ensonic@users.sf.net>
9037
9038         * gst/adder/gstadder.c (gst_adder_src_event, gst_adder_collected,
9039           gst_adder_change_state):
9040         * gst/adder/gstadder.h (bps, offset, collect_event, segment,
9041           segment_pending, segment_position, segment_rate):
9042           Handle playback-rate on adder.
9043
9044 2007-05-07  Michael Smith <msmith@fluendo.com>
9045
9046         * ext/theora/gsttheoradec.h:
9047         * ext/theora/theoradec.c: (gst_theora_dec_reset),
9048         (theora_dec_sink_event), (theora_handle_comment_packet),
9049         (theora_handle_type_packet), (theora_dec_change_state):
9050           Don't push events (newsegment, tags) before initialising the
9051           decoder.
9052           This is neccesary for seeking to work correctly in gnonlin.
9053
9054 2007-05-04  Stefan Kost  <ensonic@users.sf.net>
9055
9056         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
9057         * gst/adder/gstadder.c:
9058         * gst/audiotestsrc/gstaudiotestsrc.c
9059           (gst_audio_test_src_create_white_noise):
9060         * gst/videotestsrc/gstvideotestsrc.c:
9061         * gst/volume/gstvolume.c (VOLUME_UNITY_INT16,
9062           VOLUME_UNITY_INT16_BIT_SHIFT, VOLUME_MAX_DOUBLE,
9063           volume_sink_template, volume_src_template, gst_volume_init,
9064           volume_process_double, volume_process_int16,
9065           volume_process_int16_clamp):
9066           Doc fixes and formatting.
9067
9068 2007-05-04  Tim-Philipp Müller  <tim at centricular dot net>
9069
9070         * tests/check/Makefile.am:
9071         * tests/check/elements/volume.c: (GST_START_TEST), (volume_suite):
9072           Minimal check for volume's GstController usability; also another
9073           test for #422295.
9074
9075 2007-05-04  Tim-Philipp Müller  <tim at centricular dot net>
9076
9077         * gst-libs/gst/cdda/gstcddabasesrc.c:
9078         (gst_cdda_base_src_add_track):
9079           Fix it so that it (a) makes sense and (b) doesn't break
9080           everything cdda-related including the unit test.
9081
9082 2007-05-04  Stefan Kost  <ensonic@users.sf.net>
9083
9084         * gst-libs/gst/cdda/gstcddabasesrc.c:
9085         (gst_cdda_base_src_add_track):
9086           Fix build when disabling asserts.
9087
9088 2007-05-03  Tim-Philipp Müller  <tim at centricular dot net>
9089
9090         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
9091           When XShm is not available, we might get row strides that are not
9092           rounded up to multiples of four; this is bad, because virtually
9093           every RGB-processing element in GStreamer assumes rowstrides are
9094           rounded up to multiples of four, so let's allocate at least enough
9095           memory to avoid crashes in this case. The image will still be
9096           displayed distorted though if this happens, so that still needs
9097           fixing (maybe by allocating a bigger image with an 'even' width
9098           and then clipping it appropriately when rendering - something for
9099           Xlib aficionados in any case).
9100
9101 2007-05-03  Michael Smith <msmith@fluendo.com>
9102
9103         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
9104           If a buffer doesn't have a timestamp, assume it's contiguous with
9105           the previous buffer, and synthesise timestamps appropriately.
9106
9107 2007-05-03  Edward Hervey  <edward@fluendo.com>
9108
9109         * tests/check/elements/videorate.c: (GST_START_TEST):
9110         Set buffer timestamp to a valid value in order to test the buffer
9111         really does stay in videorate.
9112
9113 2007-05-03  Edward Hervey  <edward@fluendo.com>
9114
9115         * gst/videorate/gstvideorate.c: (gst_video_rate_chain):
9116         There is no sensible way to handle incoming buffers which don't have a
9117         valid timestamp. We therefore discard them and wait for the next one.
9118
9119 2007-05-01  Tim-Philipp Müller  <tim at centricular dot net>
9120
9121         * gst/playback/gstdecodebin.c: (type_found), (plugin_init):
9122         * gst/playback/gstdecodebin2.c: (plugin_init):
9123           Better error message for text files.
9124
9125 2007-04-29  Wim Taymans  <wim@fluendo.com>
9126
9127         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_packet_add_rb):
9128         Fix offset bug in generation RR packets.
9129
9130 2007-04-27  Julien MOUTTE  <julien@moutte.net>
9131
9132         * ext/theora/theoradec.c: (_theora_granule_time),
9133         (theora_dec_push_forward), (theora_handle_data_packet),
9134         (theora_dec_decode_buffer): Calculate buffer duration correctly
9135         to generate a perfect stream (#433888).
9136         * gst/audioresample/gstaudioresample.c:
9137         (audioresample_check_discont): Glib provides ABS.
9138
9139 2007-04-27  Wim Taymans  <wim@fluendo.com>
9140
9141         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_packet_get_rb),
9142         (gst_rtcp_packet_add_rb), (gst_rtcp_packet_sdes_add_item),
9143         (gst_rtcp_packet_sdes_add_entry), (gst_rtcp_packet_bye_add_ssrc),
9144         (gst_rtcp_packet_bye_add_ssrcs), (get_reason_offset),
9145         (gst_rtcp_packet_bye_set_reason):
9146         * gst-libs/gst/rtp/gstrtcpbuffer.h:
9147         Fix RB block parsing and writing.
9148         Add support for constructing BYE packets.
9149
9150 2007-04-25  Tim-Philipp Müller  <tim at centricular dot net>
9151
9152         * gst-libs/gst/audio/gstbaseaudiosrc.c: (_do_init),
9153         (gst_base_audio_src_create):
9154         * po/POTFILES.in:
9155           When posting a warning message because samples were dropped, post
9156           something more intelligible than he default error message for clock
9157           errors which is just confusing in this context (#432984).
9158
9159 2007-04-25  Wim Taymans  <wim@fluendo.com>
9160
9161         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_buffer_new),
9162         (gst_rtcp_buffer_end), (gst_rtcp_buffer_get_packet_count),
9163         (read_packet_header), (gst_rtcp_packet_move_to_next),
9164         (gst_rtcp_buffer_add_packet), (gst_rtcp_packet_sr_set_sender_info),
9165         (gst_rtcp_packet_rr_set_ssrc), (gst_rtcp_packet_add_rb),
9166         (gst_rtcp_packet_sdes_get_item_count),
9167         (gst_rtcp_packet_sdes_first_item),
9168         (gst_rtcp_packet_sdes_next_item), (gst_rtcp_packet_sdes_get_ssrc),
9169         (gst_rtcp_packet_sdes_first_entry),
9170         (gst_rtcp_packet_sdes_next_entry),
9171         (gst_rtcp_packet_sdes_get_entry), (gst_rtcp_packet_sdes_add_item),
9172         (gst_rtcp_packet_sdes_add_entry):
9173         * gst-libs/gst/rtp/gstrtcpbuffer.h:
9174         Implement code to write SR, RR and SDES packets.
9175
9176 2007-04-24  Tim-Philipp Müller  <tim at centricular dot net>
9177
9178         Patch by: Christian Kirbach <Christian dot Kirbach at googlemail com>
9179
9180         * sys/ximage/ximagesink.c:
9181           Fix build if XShm is not available (#432362).
9182
9183 2007-04-24  Sebastian Dröge  <slomo@circular-chaos.org>
9184
9185         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init):
9186         Initalize the AudioConvertCtx with zeroes, otherwise it will contain
9187         pointers to random memory which are passed to g_free() when
9188         audio_convert_prepare_context() is called the first time.
9189
9190 2007-04-24  Tim-Philipp Müller  <tim at centricular dot net>
9191
9192         Patch by: Dan Williams <dcbw redhat com>
9193
9194         * gst/videorate/gstvideorate.c: (gst_video_rate_chain):
9195           Don't leak incoming buffer if gst_pad_push() returns a
9196           non-OK flow. Fixes #432755.
9197          
9198         * tests/check/elements/videorate.c: (GST_START_TEST),
9199         (videorate_suite):
9200           Unit test for the above by Yours Truly.
9201
9202 2007-04-23  Stefan Kost  <ensonic@users.sf.net>
9203
9204         * gst/adder/gstadder.c: (gst_adder_setcaps), (gst_adder_src_event),
9205         (gst_adder_sink_event), (gst_adder_collected):
9206           Fix non-flushing segmented seeks, Fixes #340060 for me
9207
9208 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
9209
9210         Patch by: Olivier Crete  <tester at tester ca>
9211
9212         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
9213         (gst_base_rtp_audio_payload_class_init),
9214         (gst_base_rtp_audio_payload_init),
9215         (gst_base_rtp_audio_payload_dispose):
9216           Chain up to parent class in dispose function; get rid of
9217           unnecessary 'diposed' flag in private structure (#415001).
9218
9219 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
9220
9221         * docs/libs/gst-plugins-base-libs.types:
9222         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
9223         (gst_base_rtp_audio_payload_class_init):
9224         * gst-libs/gst/rtp/gstbasertpdepayload.c:
9225         * gst-libs/gst/rtp/gstbasertppayload.c:
9226           Some minor docs fixes and additions; also add missing 'Since' bits.
9227
9228 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
9229
9230         Patch by: Zeeshan Ali  <zeenix gmail com>
9231
9232         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
9233         (gst_base_rtp_audio_payload_handle_frame_based_buffer),
9234         (gst_base_rtp_audio_payload_handle_sample_based_buffer),
9235         (gst_base_rtp_audio_payload_push):
9236         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
9237           The recently-added gst_base_rtp_audio_payload_push() should take an
9238           object of type GstBaseRTPAudioPayload as first argument (#431672).
9239
9240 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
9241
9242         * gst/audioresample/gstaudioresample.c:
9243           Make more functions static, just because we can.
9244
9245 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
9246
9247         * tests/check/elements/audioresample.c:
9248           Add unit test for audioresample shutdown crasher (#420106).
9249
9250 2007-04-20  Stefan Kost  <ensonic@users.sf.net>
9251
9252         * gst/subparse/gstsubparse.c:
9253         * gst/subparse/samiparse.c:
9254           Use GST_DISABLE_XML here
9255
9256         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
9257         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_get_xv_support),
9258         (gst_xvimagesink_buffer_alloc),
9259         (gst_xvimagesink_navigation_send_event):
9260         * sys/xvimage/xvimagesink.h:
9261           Include stdlib.h when using atoi.
9262           
9263         * tests/check/elements/playbin.c: (playbin_suite):
9264           Use GST_DISABLE_REGISTRY here
9265
9266 2007-04-19  Michael Smith  <msmith@fluendo.com>
9267
9268         * ext/theora/gsttheoraenc.h:
9269         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
9270         (theora_enc_sink_event), (theora_enc_change_state):
9271           Track initialisation state; don't try to use encoder state if we're
9272           not initialised (it'll segfault).
9273
9274 2007-04-18  Stefan Kost  <ensonic@users.sf.net>
9275
9276         * tests/check/pipelines/.cvsignore:
9277         Fix build.
9278
9279 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
9280
9281         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
9282         Allow random depths between 1 and 32 instead of only multiplies of 8.
9283
9284 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
9285
9286         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
9287         Set the maximum number of channels for PCM and float in the correct
9288         place to have it also used when creating the template caps.
9289
9290 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
9291
9292         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
9293         Correctly support 4, 6 and 8 channels with normal PCM and float
9294         wav files.
9295
9296         Fix the depth and signedness calculation in extensible wav files and
9297         also handle 1, 2, 4, 6, 8 channels here when a file without channel
9298         mask is found.
9299
9300         Add support for float, alaw and mulaw in extensible wav files.
9301
9302         This allows correct playback of all but 5 files from
9303         http://www-mmsp.ece.mcgill.ca/Documents/AudioFormats/WAVE/Samples.html
9304         
9305         (gst_riff_create_audio_template_caps):
9306         Add voxware and float formats to the template caps.     
9307
9308 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
9309
9310         Patch by: Vincent Torri <vtorri at univ-evry dot fr>
9311
9312         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_render_time):
9313         Fix unused variable warning if HAVE_LOCALTIME_R is undefinied
9314
9315         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
9316         * gst/audioresample/gstaudioresample.c: (audioresample_do_output):
9317         Use the correct format strings for integer formats.
9318
9319 2007-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
9320
9321         * ext/theora/theoraenc.c (theora_buffer_from_packet, theora_enc_chain):
9322           Don't use pad_alloc_buffer_and_set_caps to create a small header
9323           packet, or, worse, to create a big temporary video buffer using the
9324           src pad.
9325
9326 2007-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
9327
9328         * gst/gdp/gstgdppay.c (gst_gdp_pay_chain):
9329         * tests/check/pipelines/streamheader.c (tag_event_probe_cb,
9330           GST_START_TEST, buffer_probe_cb, GST_START_TEST):
9331           Fix a bug where serialized IN_CAPS buffers needed to be set IN_CAPS.
9332
9333 2007-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
9334
9335         * tests/check/pipelines/streamheader.c (tag_event_probe_cb,
9336           GST_START_TEST, n_in_caps, buffer_probe_cb, GST_START_TEST,
9337           streamheader_suite):
9338           Add another test set up for failure
9339
9340 2007-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
9341
9342         * tests/check/Makefile.am:
9343         * tests/check/pipelines/streamheader.c (n_tags, tag_event_probe_cb,
9344           GST_START_TEST, streamheader_suite, main):
9345           Add a test for the streamheader bug Wim fixed.
9346
9347 2007-04-13  Jan Schmidt  <thaytan@mad.scientist.com>
9348
9349         * ext/theora/theoradec.c: (theora_dec_sink_event):
9350         Fix misleading comment.
9351
9352 2007-04-13  Stefan Kost  <ensonic@users.sf.net>
9353
9354         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
9355           More sanity checks for the header fields.
9356
9357 2007-04-12  Tim-Philipp Müller  <tim at centricular dot net>
9358
9359         * gst-libs/gst/tag/tags.c: (gst_tag_freeform_string_to_utf8):
9360           Try encodings from all environment variables, not just those in the
9361           first environment variable that is set.
9362
9363 2007-04-12  Wim Taymans  <wim@fluendo.com>
9364
9365         * gst/videorate/gstvideorate.c: (gst_video_rate_setcaps),
9366         (gst_video_rate_chain):
9367         Add some debug.
9368
9369         * tests/check/elements/videorate.c: (GST_START_TEST),
9370         (videorate_suite):
9371         Added check for videorate changing caps handling. Closes #421834.
9372
9373 2007-04-12  Michael Smith  <msmith@fluendo.com>
9374
9375         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
9376           Use scale functions to avoid overflow when calculating duration of 
9377           vorbis buffers.
9378
9379 2007-04-12  Tim-Philipp Müller  <tim at centricular dot net>
9380
9381         * docs/libs/gst-plugins-base-libs-sections.txt:
9382         * gst-libs/gst/tag/tag.h:
9383         * gst-libs/gst/tag/tags.c: (gst_tag_freeform_string_to_utf8):
9384           API: add gst_tag_freeform_string_to_utf8() (#405072).
9385
9386         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_extract_id3v1_string):
9387           Use gst_tag_freeform_string_to_utf8() here.
9388
9389 2007-04-12  Wim Taymans  <wim@fluendo.com>
9390
9391         * gst/gdp/gstgdppay.c: (gst_gdp_pay_chain),
9392         (gst_gdp_pay_sink_event):
9393         Make sure we set the IN_CAPS flag correctly.
9394
9395         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
9396         Get the IN_CAPS flag before we call functions that mess with the flags.
9397
9398 2007-04-10  Thomas Vander Stichele  <thomas at apestaart dot org>
9399
9400         * gst/gdp/gstgdppay.c (gst_gdp_pay_reset_streamheader,
9401           gst_gdp_pay_chain, gst_gdp_pay_sink_event):
9402           Only stamp buffers with offset/offset_end right before they get
9403           pushed.  This ensures offset continuity, which was not the case
9404           before as shown by
9405           gst-launch -v -m audiotestsrc num-buffers=10 ! audioconvert ! vorbisenc ! gdppay ! identity check-imperfect-offset=TRUE ! fakesink silent=TRUE
9406
9407 2007-04-06  Wim Taymans  <wim@fluendo.com>
9408
9409         * gst/playback/gstplaybin.c: (add_sink),
9410         (gst_play_bin_change_state):
9411         Activate sync in playbin, we are ready to handle it for live streams.
9412
9413 2007-04-06  Tim-Philipp Müller  <tim at centricular dot net>
9414
9415         * tests/check/elements/playbin.c:
9416         (test_sink_usage_video_only_stream), (playbin_suite):
9417           Add small test for stream-info-value-array code paths.
9418
9419 2007-04-05  Wim Taymans  <wim@fluendo.com>
9420
9421         * gst-libs/gst/audio/gstbaseaudiosink.c:
9422         (gst_base_audio_sink_skew_slaving):
9423         Don't try to create invalid calibration parameters by making the
9424         internal time go backwards, instead make external time go forward.
9425
9426 2007-04-05  Wim Taymans  <wim@fluendo.com>
9427
9428         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
9429
9430         * gst/playback/gstplaybasebin.c: (add_stream):
9431         Fix leak in add_stream(), when g_value_set_object() increases the
9432         refcount of streaminfo object. Fixes #426250.
9433
9434 2007-04-03  David Schleef  <ds@schleef.org>
9435
9436         * gst/videotestsrc/gstvideotestsrc.c:
9437         * gst/videotestsrc/gstvideotestsrc.h:
9438         * gst/videotestsrc/videotestsrc.c:
9439         * gst/videotestsrc/videotestsrc.h:
9440           Add a test pattern called "circular", which has concentric
9441           rings with varying radial frequency.  The main purpose of this
9442           pattern is to test fidelity loss in a filter or scaler element.
9443           Notably, this pattern is scale invariant, and is optimally viewed
9444           with a width (and height) of 400.
9445
9446 2007-04-03  Wim Taymans  <wim@fluendo.com>
9447
9448         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
9449
9450         * gst/playback/gstdecodebin2.c: (connect_pad), (expose_pad),
9451         (deactivate_free_recursive):
9452         Decodebin2 doesn't unref pads it obtains in some occasions:
9453         - multiqueue src pads, when either connecting further or exposing
9454         - sink pads of new autoplugged elements
9455         - peer pads when recursively freeing elements
9456         Fixes #425455.
9457
9458 2007-03-30  Sebastian Dröge  <slomo@circular-chaos.org>
9459
9460         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
9461         Add audio/x-raw-float support, now that audioconvert support
9462         non-native endianness floats.
9463
9464 2007-03-30  Tim-Philipp Müller  <tim at centricular dot net>
9465
9466         * docs/libs/gst-plugins-base-libs-docs.sgml:
9467           gstreamer-plugins-base.pc doesn't exist, it's
9468           gstreamer-plugins-base-0.10.pc.
9469
9470 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
9471
9472         Patch by: René Stadler <mail at renestadler dot de>
9473         with some minor changes
9474
9475         * gst-libs/gst/floatcast/floatcast.h:
9476         Use more efficient float endianness conversion functions that don't
9477         involve 2 function calls per value.
9478         * gst/audioconvert/audioconvert.c: (audio_convert_get_func_index),
9479         (check_default), (audio_convert_prepare_context):
9480         * gst/audioconvert/gstaudioconvert.c:
9481         (gst_audio_convert_parse_caps), (make_lossless_changes):
9482         Support non-native endianness floats as input and output.
9483         Fixes #339838.
9484         * tests/check/elements/audioconvert.c: (verify_convert),
9485         (GST_START_TEST):
9486         Add unit tests for the non-native endianness float conversions.
9487
9488 2007-03-29  Wim Taymans  <wim@fluendo.com>
9489
9490         * gst-libs/gst/rtp/gstbasertpdepayload.c:
9491         (gst_base_rtp_depayload_base_init),
9492         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
9493         (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain),
9494         (gst_base_rtp_depayload_set_gst_timestamp),
9495         (gst_base_rtp_depayload_change_state),
9496         (gst_base_rtp_depayload_set_property),
9497         (gst_base_rtp_depayload_get_property):
9498         * gst-libs/gst/rtp/gstbasertpdepayload.h:
9499         Add Private structure.
9500         Bring element code to 2007.
9501         Parse clock-base caps param and use it when generating the
9502         newsegment.
9503         Reset variables before going to PAUSED.
9504         Fix some docs.
9505
9506 2007-03-29  Wim Taymans  <wim@fluendo.com>
9507
9508         * docs/libs/gst-plugins-base-libs-docs.sgml:
9509         * docs/libs/gst-plugins-base-libs-sections.txt:
9510         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
9511         (gst_base_rtp_audio_payload_get_adapter):
9512         Add RTCP docs.
9513         Fix some more docs.
9514
9515         * gst-libs/gst/rtp/Makefile.am:
9516         * gst-libs/gst/rtp/gstrtcpbuffer.c:
9517         (gst_rtcp_buffer_new_take_data), (gst_rtcp_buffer_new_copy_data),
9518         (gst_rtcp_buffer_validate_data), (gst_rtcp_buffer_validate),
9519         (gst_rtcp_buffer_get_packet_count), (read_packet_header),
9520         (gst_rtcp_buffer_get_first_packet), (gst_rtcp_packet_move_to_next),
9521         (gst_rtcp_buffer_add_packet), (gst_rtcp_packet_remove),
9522         (gst_rtcp_packet_get_padding), (gst_rtcp_packet_get_type),
9523         (gst_rtcp_packet_get_count), (gst_rtcp_packet_get_length),
9524         (gst_rtcp_packet_sr_get_sender_info),
9525         (gst_rtcp_packet_sr_set_sender_info),
9526         (gst_rtcp_packet_rr_get_ssrc), (gst_rtcp_packet_rr_set_ssrc),
9527         (gst_rtcp_packet_get_rb_count), (gst_rtcp_packet_get_rb),
9528         (gst_rtcp_packet_add_rb), (gst_rtcp_packet_set_rb),
9529         (gst_rtcp_packet_sdes_get_chunk_count),
9530         (gst_rtcp_packet_sdes_first_chunk),
9531         (gst_rtcp_packet_sdes_next_chunk), (gst_rtcp_packet_sdes_get_ssrc),
9532         (gst_rtcp_packet_sdes_first_item),
9533         (gst_rtcp_packet_sdes_next_item), (gst_rtcp_packet_sdes_get_item),
9534         (gst_rtcp_packet_bye_get_ssrc_count),
9535         (gst_rtcp_packet_bye_get_nth_ssrc), (gst_rtcp_packet_bye_add_ssrc),
9536         (gst_rtcp_packet_bye_add_ssrcs), (get_reason_offset),
9537         (gst_rtcp_packet_bye_get_reason_len),
9538         (gst_rtcp_packet_bye_get_reason), (gst_rtcp_packet_bye_set_reason):
9539         * gst-libs/gst/rtp/gstrtcpbuffer.h:
9540         Add new helper object for parsing and creating RTCP messages.
9541
9542 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
9543
9544         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
9545         PCM samples with width=8 must be always unsigned, no matter what
9546         depth they have.
9547
9548 2007-03-29  Andy Wingo  <wingo@pobox.com>
9549
9550         * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev): Make
9551         perfect offsets also, not just timestamps.
9552
9553         * tests/check/elements/videorate.c (test_more): Test that given
9554         any incoming offsets, that videorate produces perfect offsets.
9555
9556 2007-03-29  Wim Taymans  <wim@fluendo.com>
9557
9558         * gst-libs/gst/riff/riff-ids.h:
9559         Add some more RIFF formats.
9560
9561 2007-03-29  Wim Taymans  <wim@fluendo.com>
9562
9563         * gst-libs/gst/rtp/gstrtpbuffer.c:
9564         (gst_rtp_buffer_default_clock_rate):
9565         * gst-libs/gst/rtp/gstrtpbuffer.h:
9566         Fix fixed payload names and docs.
9567         Added method to get the default clock rates of fixed payload types.
9568         API: GstRTPBuffer::gst_rtp_buffer_default_clock_rate()
9569
9570 2007-03-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
9571
9572         * tests/check/pipelines/.cvsignore:
9573         Add new vorbisdec test to cvsignore.
9574
9575 2007-03-28  Wim Taymans  <wim@fluendo.com>
9576
9577         * gst-libs/gst/audio/gstbaseaudiosink.c: (slave_method_get_type),
9578         (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
9579         (gst_base_audio_sink_query), (gst_base_audio_sink_get_time),
9580         (gst_base_audio_sink_set_property),
9581         (gst_base_audio_sink_get_property), (gst_base_audio_sink_event),
9582         (clock_convert_external), (gst_base_audio_sink_resample_slaving),
9583         (gst_base_audio_sink_skew_slaving),
9584         (gst_base_audio_sink_handle_slaving), (gst_base_audio_sink_render),
9585         (gst_base_audio_sink_async_play):
9586         * gst-libs/gst/audio/gstbaseaudiosink.h:
9587         Store private stuff in GstBaseAudioSinkPrivate.
9588         Add configurable clock slaving modes property.
9589         API:: GstBaseAudioSink::slave-method property
9590         Some more latency reporting tweaks.
9591         Added skew based clock slaving correction and make it the default until
9592         the resampling method is more robust.
9593
9594 2007-03-27  Sebastian Dröge  <slomo@circular-chaos.org>
9595
9596         * gst/audioconvert/audioconvert.c:
9597         Add docs to the integer pack functions and implement proper
9598         rounding. Before we had rounding towards negative infinity, i.e.
9599         always the smaller number was taken. Now we use natural rounding,
9600         i.e. rounding to the nearest integer and to the one with the largest
9601         absolute value for X.5. The old rounding introduced some minor
9602         distortions. Fixes #420079
9603         * tests/check/elements/audioconvert.c: (GST_START_TEST):
9604         Fix one unit test that assumed the old rounding and added unit tests
9605         for checking signed/unsigned int16 <-> signed/unsigned int16 with
9606         depth 8, one for signed int16 <-> unsigned int16 and one for the new
9607         rounding from signed int32 to signed/unsigned int16.
9608
9609 2007-03-27  Michael Smith  <msmith@fluendo.com>
9610
9611         * gst/audioconvert/gstaudioconvert.c: (strip_width_64),
9612         (gst_audio_convert_transform_caps):
9613           Fix typo in debug line introduced recently, as pointed out on irc.
9614
9615 2007-03-27  Tim-Philipp Müller  <tim at centricular dot net>
9616
9617         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
9618         * tests/check/libs/tag.c: (GST_START_TEST):
9619           Make sure we parse floating-point numbers in vorbis comments
9620           correctly with either '.' or ',' as separator, no matter what
9621           the current locale is. Add unit test for this too.
9622
9623 2007-03-26  Tim-Philipp Müller  <tim at centricular dot net>
9624
9625         Patch by: René Stadler  <mail at renestadler de>
9626
9627         * gst-libs/gst/tag/gstvorbistag.c: (gst_tag_to_vorbis_comments):
9628           When writing out floating-point numbers to vorbis comment tags, always
9629           use the same character as separator no matter what the current locale is
9630           (fixes #423051).
9631
9632         * tests/check/libs/tag.c: (GST_START_TEST):
9633           Add unit tests for replaygain tags in vorbis comments (closes #423055).
9634
9635 2007-03-26  Thomas Vander Stichele  <thomas at apestaart dot org>
9636
9637         * ext/vorbis/vorbisdec.c (vorbis_dec_push_forward,
9638           vorbis_handle_data_packet):
9639           Correctly set DURATION to generate a timestamp-continuous stream.
9640           One bug left at the end; see
9641           ihttp://bugzilla.gnome.org/show_bug.cgi?id=423086
9642         * tests/check/Makefile.am:
9643         * tests/check/pipelines/vorbisenc.c (GST_START_TEST):
9644           Add a test to check this.  Without the above patch this test fails.
9645
9646 2007-03-26  Jan Schmidt  <thaytan@mad.scientist.com>
9647
9648         * gst-libs/gst/rtp/Makefile.am:
9649         The base audio payloader uses GstAdapter - we need GST_BASE_LIBS.
9650
9651 2007-03-23  Michael Smith  <msmith@fluendo.com>
9652
9653         * gst/videorate/gstvideorate.c: (gst_video_rate_setcaps),
9654         (gst_video_rate_reset), (gst_video_rate_chain):
9655           If videorate changes caps, we can no longer use the old buffer
9656           (which may have a different size, incompatible with our caps).
9657           So don't do that; just duplicate the new frame more times.
9658
9659 2007-03-22  Jan Schmidt  <thaytan@mad.scientist.com>
9660
9661         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
9662         Remove playbin's override of the set_clock vmethod. It's irrelevant
9663         after Wim's commit on the 19th.
9664
9665 2007-03-22  Wim Taymans  <wim@fluendo.com>
9666
9667         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_get_size),
9668         (gst_gnome_vfs_src_start), (gst_gnome_vfs_src_stop):
9669         * ext/gnomevfs/gstgnomevfssrc.h:
9670         Don't cache file sizes. Fixes #341078.
9671
9672 2007-03-21  Tim-Philipp Müller  <tim at centricular dot net>
9673
9674         * gst/playback/gstplaybin.c: (add_sink):
9675           Use GST_PTR_FORMAT to log caps. 
9676
9677 2007-03-21  Tim-Philipp Müller  <tim at centricular dot net>
9678
9679         Patch by: Young-Ho Cha <ganadist at chollian net>
9680
9681         * gst/subparse/samiparse.c: (handle_start_font):
9682           Special-case some more colour names that pango doesn't handle by
9683           default. Fixes #420578.
9684
9685 2007-03-20  Michael Smith  <msmith@fluendo.com>
9686
9687         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_chain):
9688           If we get a zero-sized input buffer, don't pass it to libvorbis, as
9689           that marks EOS internally. After that, libvorbis will buffer all
9690           input data, and encode none of it, eventually leading to memory
9691           exhaustion.
9692
9693 2007-03-19  Wim Taymans  <wim@fluendo.com>
9694
9695         * gst/playback/gstdecodebin.c: (remove_fakesink):
9696         Don't post STATE_DIRTY anymore.
9697
9698         * gst/playback/gstplaybin.c: (add_sink), (gst_play_bin_send_event),
9699         (gst_play_bin_change_state):
9700         Remove stream_time reset in seek handling, core does that now.
9701         Disable clocking for live pipelines by forcing a NULL clock to the
9702         complete pipeline, core is too smart now for our previous hack.
9703         We can always autoplug in PAUSED now.
9704
9705 2007-03-17  David Schleef  <ds@schleef.org>
9706
9707         * REQUIREMENTS:  Update this file, change the formatting to make
9708         it more consistent, plus more machine readable.
9709
9710 2007-03-16  Michael Smith  <msmith@fluendo.com>
9711
9712         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
9713         (strip_width_64), (append_with_other_format):
9714           Previous fix was too simplistic, and broke the tests. Use a better
9715           approach; only strip 64 from widths for integer audio.
9716
9717 2007-03-16  Michael Smith  <msmith@fluendo.com>
9718
9719         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
9720         (gst_audio_convert_transform_caps):
9721           We don't support 64 bit integer audio, so don't try to claim we can.
9722           Stops us producing caps don't match our template caps.
9723           Update comments.
9724
9725 2007-03-15  Michael Smith  <msmith@fluendo.com>
9726
9727         * gst/audioresample/gstaudioresample.c:
9728         (audioresample_check_discont), (audioresample_transform):
9729           Don't trigger discontinuities for very small imperfections; a filter
9730           flush will sound bad, and many plugins have rounding errors leading
9731           to these.
9732
9733 2007-03-14 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
9734
9735         Patch by: Olivier Crete <olivier.crete@collabora.co.uk>
9736
9737         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
9738         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
9739         API: add "min-ptime" property to RTP base audio payloader.
9740         API: add gst_base_rtp_audio_payload_push().
9741         API: add gst_base_rtp_audio_payload_get_adapter().
9742         Fixes #415001
9743         Indentation/whitespace/documentation fixes.
9744
9745 2007-03-14  Julien MOUTTE  <julien@moutte.net>
9746
9747         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
9748         (audioresample_transform_size), (audioresample_do_output),
9749         (audioresample_transform), (audioresample_pushthrough): Handle
9750         discontinuous streams.
9751         * gst/audioresample/gstaudioresample.h:
9752         * tests/check/elements/audioresample.c:
9753         (test_discont_stream_instance), (GST_START_TEST),
9754         (audioresample_suite): Add a test for discontinuous streams.
9755         * win32/common/config.h: Updated.
9756
9757 2007-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
9758
9759         * po/af.po:
9760         * po/az.po:
9761         * po/cs.po:
9762         * po/en_GB.po:
9763         * po/it.po:
9764         * po/nb.po:
9765         * po/nl.po:
9766         * po/or.po:
9767         * po/sq.po:
9768         * po/sr.po:
9769         * po/sv.po:
9770         * po/uk.po:
9771         * po/vi.po:
9772           Update translations from translation project.
9773
9774 2007-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
9775
9776         * gst/audioresample/debug.h:
9777         * gst/audioresample/resample.c: (resample_init):
9778           Since I really am not interested in a debug line for each sample
9779           being processed, move the library's debugging to its own category,
9780           libaudioresample
9781
9782 2007-03-13  Michael Smith  <msmith@fluendo.com>
9783
9784         * ext/theora/theoradec.c: (theora_handle_type_packet):
9785           Since the plugin doesn't support anything other than 4:2:0 right
9786           now, post an error and fail if we get something else. Won't matter
9787           until libtheora supports the other pixel formats, but hopefully
9788           that'll be soon...
9789
9790 2007-03-10  Sebastien Moutte  <sebastien@moutte.net>
9791
9792         * gst-libs/gst/audio/gstbaseaudiosink.c:(gst_base_audio_sink_render):
9793         Use gst_guint64_to_gdouble for conversion.
9794         * win32/MANIFEST:
9795         Add new files to the win32 MANIFEST.
9796         * win32/common/libgstaudio.def:
9797         * win32/common/libgstpbutils.def:
9798         Add new exported functions.
9799         * win32/vs6/gst_plugins_base.dsw:
9800         * win32/vs6/libgstdecodebin.dsp:
9801         * win32/vs6/libgstplaybin.dsp:
9802         Change the link to libgstpbutils.lib.
9803         * win32/vs6/libgstdecodebin2.dsp:
9804         Add a new project for decodebin2.
9805         * win32/vs6/libgstpbutils.dsp:
9806         Add a new project for pbutils.
9807
9808 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
9809
9810         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
9811           Also accept partial dates with only year and month,
9812           like 1999-12-00 (fixes #410396 even more).
9813
9814         * tests/check/libs/tag.c: (GST_START_TEST):
9815           Add unit test for the above.
9816
9817 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
9818
9819         * tests/check/elements/subparse.c: (GST_START_TEST),
9820         (subparse_suite):
9821           Add unit test for MPL2 subtitle format (#413799).
9822
9823 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
9824
9825         Patch by: Kamil Pawlowski  <kamilpe gmail com>
9826
9827         * gst/subparse/Makefile.am:
9828         * gst/subparse/gstsubparse.c:
9829         (gst_sub_parse_data_format_autodetect),
9830         (gst_sub_parse_format_autodetect), (gst_sub_parse_sink_event),
9831         (gst_subparse_type_find):
9832         * gst/subparse/gstsubparse.h:
9833         * gst/subparse/mpl2parse.c: (mpl2_parse_line), (parse_mpl2):
9834         * gst/subparse/mpl2parse.h:
9835           Add support for MPL2 subtitle format (#413799).
9836
9837 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
9838
9839         * configure.ac:
9840           We require core CVS for the new buffer metadata copy functions.
9841
9842 2007-03-09  Wim Taymans  <wim@fluendo.com>
9843
9844         * gst-libs/gst/tag/gstid3tag.c:
9845         Add read support for GST_TAG_MUSICBRAINZ_SORTNAME (TSOP) tag.
9846         Fixes #414496.
9847
9848         Patch by: Alex Lancaster <alexl at users sourceforge net>
9849
9850 2007-03-09  Wim Taymans  <wim@fluendo.com>
9851
9852         * ext/libvisual/visual.c: (gst_visual_sink_setcaps),
9853         (gst_vis_src_negotiate), (get_buffer), (gst_visual_chain):
9854         Improve adapter usage and comments.
9855
9856 2007-03-09  Wim Taymans  <wim@fluendo.com>
9857
9858         * ext/pango/gsttextrender.c: (gst_text_render_chain):
9859         * ext/vorbis/vorbistag.c: (gst_vorbis_tag_parse_packet):
9860         * gst-libs/gst/netbuffer/gstnetbuffer.c: (gst_netbuffer_copy):
9861         Use new metadata copy function.
9862
9863         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
9864         (gst_ffmpegcsp_transform):
9865         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform):
9866         Basetransform copied the metadata for us.
9867
9868 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
9869
9870         * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event),
9871         (gst_text_overlay_video_event):
9872           Some more logging. Only accept newsegment events in TIME format and
9873           send a WARNING message if they are not in TIME format.
9874
9875         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
9876         (gst_sub_parse_init), (gst_sub_parse_src_event), (handle_buffer),
9877         (gst_sub_parse_chain), (gst_sub_parse_sink_event):
9878         * gst/subparse/gstsubparse.h:
9879           No need to allocate GstSegment structure dynamically, just put it
9880           into the instance structure; ignore newsegment events in BYTE
9881           format and in particular don't let it overwrite our saved TIME
9882           segment from the last seek.
9883
9884 2007-03-09  Michael Smith  <msmith@fluendo.com>
9885
9886         * gst/typefind/gsttypefindfunctions.c: (ac3_type_find):
9887           Replace AC3 typefinder with one that isn't terrible, and actually
9888           works usefully.
9889
9890 2007-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
9891
9892         * gst/audioconvert/gstaudioconvert.c:
9893         (gst_audio_convert_transform):
9894           fix error category and translatable string
9895           
9896
9897 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
9898
9899         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
9900         * pkgconfig/gstreamer-plugins-base.pc.in:
9901           Fix up utils => pbutils here too.
9902
9903 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
9904
9905         * gst/subparse/gstsubparse.c: (handle_buffer):
9906           Break out of loop in chain function as soon as possible if we get
9907           a non-OK flow return.
9908
9909 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
9910
9911         * tests/check/elements/alsa.c: (GST_START_TEST):
9912         Unref the mixer if the state change fails too (if the
9913         alsa devices are inaccessible, for example)
9914
9915 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
9916
9917         * tests/check/Makefile.am:
9918         Don't test libvisual elements in the states check, because libvisual
9919         seems to leak internally.
9920
9921         Re-enable the alsa and states tests now that there's new suppressions
9922         in gst.supp.
9923
9924         * tests/check/elements/alsa.c: (GST_START_TEST):
9925         Don't leak the alsamixer we instantiated.
9926
9927 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
9928
9929         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_clear),
9930         (gst_ximagesink_change_state), (gst_ximagesink_reset),
9931         (gst_ximagesink_finalize):
9932         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state),
9933         (gst_xvimagesink_reset), (gst_xvimagesink_finalize):
9934         Move some cleanup stuff from the state change handler into a _reset()
9935         function that can be called from _finalize(). This ensures that things
9936         get freed even if (for some reason) the NULL->READY state transition
9937         fails in the parent class.
9938         Even if a parent state change fails, process our downward state change
9939         logic instead of bailing out early.
9940         Free the correct xcontext pointer in ximagesink's xcontext_clear.
9941
9942 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
9943
9944         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
9945         Extra log line.
9946
9947         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_init):
9948         * ext/pango/gsttimeoverlay.c: (gst_time_overlay_init):
9949         Use pango_font_description_set_family_static instead of 
9950         pango_font_description_set_family to save a string copy (it was
9951         leaking due to the strdup anyway)
9952
9953         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_finalize):
9954         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_finalize):
9955         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_finalize):
9956         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_finalize):
9957         Chain up in finalize.
9958
9959 2007-03-07  Tim-Philipp Müller  <tim at centricular dot net>
9960
9961         * gst-libs/gst/interfaces/mixertrack.c:
9962         (gst_mixer_track_class_init), (gst_mixer_track_get_property),
9963         (gst_mixer_track_set_property):
9964           API: add "untranslated-label" property which should be set by
9965           implementations at construct time (#414645).
9966
9967         * ext/alsa/gstalsamixeroptions.c: (gst_alsa_mixer_options_new):
9968         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
9969           Set "untranslated-label" when constructing mixer track objects.
9970
9971         * tests/check/elements/alsa.c: (GST_START_TEST), (alsa_suite):
9972           Unit test to check the above.
9973
9974 2007-03-07  Wim Taymans  <wim@fluendo.com>
9975
9976         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_read_chain):
9977         Fix confusing debug message.
9978
9979 2007-03-07  Jan Schmidt  <thaytan@mad.scientist.com>
9980
9981         * gst-plugins-base.doap:
9982         update doap file with new version
9983
9984 2007-03-07  Jan Schmidt  <thaytan@mad.scientist.com>
9985
9986         * configure.ac:
9987         Back to CVS
9988
9989 === release 0.10.12 ===
9990
9991 2007-03-07  Jan Schmidt <thaytan@mad.scientist.com>
9992
9993         * configure.ac:
9994           releasing 0.10.12, "Zombie Horde"
9995
9996 2007-03-06  Jan Schmidt  <thaytan@mad.scientist.com>
9997
9998         * configure.ac:
9999         Bump version to 0.10.11.4 pre-release
10000
10001 2007-03-06  Wim Taymans  <wim@fluendo.com>
10002
10003         * gst-libs/gst/audio/gstbaseaudiosink.c:
10004         (gst_base_audio_sink_async_play):
10005         Fix regression that made GStreamer skip the first samples of audio.
10006         Fixes #414684.
10007
10008 2007-03-05  Jan Schmidt  <thaytan@mad.scientist.com>
10009
10010         * configure.ac:
10011         Bump version to 0.10.11.3 pre-release
10012
10013 2007-03-05  Sebastian Dröge  <slomo@circular-chaos.org>
10014
10015         * po/POTFILES.in:
10016           Update paths for the rename from utils to pbutils to fix the build.
10017
10018 2007-03-05  Tim-Philipp Müller  <tim at centricular dot net>
10019
10020         * gst-libs/gst/pbutils/Makefile.am:
10021           Change directory to install headers in from gst/utils to gst/pbutils
10022           as well.
10023
10024 2007-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
10025
10026         * configure.ac:
10027         * docs/libs/gst-plugins-base-libs-docs.sgml:
10028         * docs/libs/gst-plugins-base-libs-sections.txt:
10029         * gst-libs/gst/Makefile.am:
10030         * gst-libs/gst/interfaces/mixer.c:
10031         * gst-libs/gst/pbutils/Makefile.am:
10032         * gst-libs/gst/pbutils/descriptions.c:
10033         (gst_pb_utils_get_source_description),
10034         (gst_pb_utils_get_sink_description),
10035         (gst_pb_utils_get_decoder_description),
10036         (gst_pb_utils_get_encoder_description),
10037         (gst_pb_utils_get_element_description),
10038         (gst_pb_utils_add_codec_description_to_tag_list),
10039         (gst_pb_utils_get_codec_description), (gst_pb_utils_list_all):
10040         * gst-libs/gst/pbutils/descriptions.h:
10041         * gst-libs/gst/pbutils/install-plugins.c:
10042         * gst-libs/gst/pbutils/install-plugins.h:
10043         * gst-libs/gst/pbutils/missing-plugins.c:
10044         (gst_missing_uri_source_message_new),
10045         (gst_missing_uri_sink_message_new),
10046         (gst_missing_element_message_new),
10047         (gst_missing_decoder_message_new),
10048         (gst_missing_encoder_message_new),
10049         (gst_missing_plugin_message_get_description):
10050         * gst-libs/gst/pbutils/missing-plugins.h:
10051         * gst-libs/gst/pbutils/pbutils.c: (gst_pb_utils_init):
10052         * gst-libs/gst/pbutils/pbutils.h:
10053         * gst-libs/gst/utils/Makefile.am:
10054         * gst-libs/gst/utils/base-utils.c:
10055         * gst-libs/gst/utils/base-utils.h:
10056         * gst-libs/gst/utils/descriptions.c:
10057         * gst-libs/gst/utils/descriptions.h:
10058         * gst-libs/gst/utils/install-plugins.c:
10059         * gst-libs/gst/utils/install-plugins.h:
10060         * gst-libs/gst/utils/missing-plugins.c:
10061         * gst-libs/gst/utils/missing-plugins.h:
10062         * gst-plugins-base.spec.in:
10063         * gst/playback/Makefile.am:
10064         * gst/playback/gstdecodebin.c:
10065         * gst/playback/gstdecodebin2.c:
10066         * gst/playback/gstplaybasebin.c: (setup_subtitle),
10067         (gen_source_element):
10068         * gst/playback/gstplaybin.c: (plugin_init):
10069         * tests/check/Makefile.am:
10070         * tests/check/libs/pbutils.c: (GST_START_TEST),
10071         (test_pb_utils_install_plugins_do_callout), (libgstpbutils_suite):
10072         * tests/check/libs/utils.c:
10073           rename utils to pbutils
10074
10075 2007-03-02  Jan Schmidt  <thaytan@mad.scientist.com>
10076
10077         * docs/plugins/Makefile.am:
10078         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
10079         * docs/plugins/gst-plugins-base-plugins-sections.txt:
10080         * docs/plugins/inspect/plugin-decodebin2.xml:
10081         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init):
10082         Add documentation for decodebin2 that indicates that the API
10083         is still unstable.
10084
10085 2007-03-01  Jan Schmidt  <thaytan@mad.scientist.com>
10086
10087         * configure.ac:
10088         Update to 0.10.11.2 (0.10.12 pre-release)
10089
10090 2007-03-01  Wim Taymans  <wim@fluendo.com>
10091
10092         * gst-libs/gst/audio/gstbaseaudiosink.c:
10093         (gst_base_audio_sink_async_play):
10094         base time is irrelevant here.
10095
10096 2007-03-01  Wim Taymans  <wim@fluendo.com>
10097
10098         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func):
10099         * gst-libs/gst/audio/gstaudiosrc.c: (audioringbuffer_thread_func):
10100         Improve debugging.
10101
10102         * gst-libs/gst/audio/gstbaseaudiosink.c:
10103         (gst_base_audio_sink_query), (gst_base_audio_sink_event),
10104         (gst_base_audio_sink_render), (gst_base_audio_sink_async_play):
10105         Improve latency and clock slaving calculations.
10106         Improve slave clock calibration.
10107
10108         * gst-libs/gst/audio/gstringbuffer.c:
10109         (gst_ring_buffer_commit_full):
10110         When we are asked to render N sample to 0 bytes, return N.
10111
10112 2007-03-01  Wim Taymans  <wim@fluendo.com>
10113
10114         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
10115         (gst_alsasink_write), (gst_alsasink_reset):
10116         * ext/alsa/gstalsasink.h:
10117         Remove unused dispose function.
10118         Rename lock to not interfere with alsasrc lock.
10119
10120         * ext/alsa/gstalsasrc.c: (gst_alsasrc_finalize),
10121         (gst_alsasrc_class_init), (gst_alsasrc_init), (set_swparams),
10122         (gst_alsasrc_read), (gst_alsasrc_reset):
10123         * ext/alsa/gstalsasrc.h:
10124         Implement finalize function.
10125         Use lock to protect alsa access.
10126         Implement _reset.
10127         Fine tune sw params.
10128
10129 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
10130
10131         * configure.ac:
10132           Convert to new AG_GST style.
10133
10134 2007-02-28  Wim Taymans  <wim@fluendo.com>
10135
10136         Patch by: Ed Catmur <ed at catmur dot co dot uk>
10137
10138         * gst/playback/gstplaybin.c: (gst_play_bin_vis_unblocked),
10139         (gst_play_bin_vis_blocked), (gst_play_bin_set_property):
10140         Fix race condition when rapidly switching visualisations in playbin.
10141         Fixes #401029.
10142
10143 2007-02-28  Jan Schmidt  <thaytan@mad.scientist.com>
10144
10145         * tests/check/Makefile.am:
10146         Include local stuff before system installed things in LDFLAGS and
10147         CFLAGS.
10148
10149 2007-02-28  Wim Taymans  <wim@fluendo.com>
10150
10151         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_sink_activate):
10152         Improve debugging.
10153
10154 2007-02-28  Wim Taymans  <wim@fluendo.com>
10155
10156         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
10157         (gst_v4lsrc_fixate), (gst_v4lsrc_query):
10158         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_buffer_new):
10159         Fix duration and timestamping, taking latency into account.
10160         Implement latency query.
10161
10162 2007-02-28  Wim Taymans  <wim@fluendo.com>
10163
10164         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
10165         (gst_audio_clock_new):
10166         Fix clock name.
10167
10168         * gst-libs/gst/audio/gstbaseaudiosink.c:
10169         (gst_base_audio_sink_init), (gst_base_audio_sink_query):
10170         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
10171         (gst_base_audio_src_query), (gst_base_audio_src_get_offset),
10172         (gst_base_audio_src_create):
10173         Improve latency query code.
10174         Use proper clock names.
10175
10176 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
10177
10178         * tests/check/generic/states.c: (GST_START_TEST):
10179           Copy the states.c test from core again
10180         * tests/check/Makefile.am:
10181           ignore cdio and cdparanoiasrc
10182
10183 2007-02-28  Stefan Kost  <ensonic@users.sf.net>
10184
10185         * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
10186         (double_hq), (audio_convert_get_func_index), (check_default),
10187         (audio_convert_prepare_context), (audio_convert_convert):
10188           Also make valgrind happy and avoid copying data in some cases.
10189
10190 2007-02-28  Stefan Kost  <ensonic@users.sf.net>
10191
10192         * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
10193         (double_hq), (audio_convert_get_func_index),
10194         (audio_convert_prepare_context), (audio_convert_convert):
10195         * gst/audioconvert/gstaudioconvert.c:
10196         (gst_audio_convert_class_init), (gst_audio_convert_get_unit_size),
10197         (gst_audio_convert_transform_caps):
10198         * tests/check/elements/audioconvert.c: (GST_START_TEST),
10199         (audioconvert_suite):
10200           Don't run inplace if that overwrites source data as we go. Add more
10201           tests. Fixes #339837 even more.
10202
10203 2007-02-27  Julien MOUTTE  <julien@moutte.net>
10204
10205         * tests/examples/seek/seek.c: (do_seek), (set_update_scale),
10206         (msg_segment_done): Fix various seeking bugs (Slider was not
10207         updating when doing a non flushing seek, Reverse playback 
10208         on segment seek was wrong).
10209
10210 2007-02-26  Wim Taymans  <wim@fluendo.com>
10211
10212         * tests/examples/seek/seek.c: (stop_seek):
10213         When we stop scrubbing, don't leave the pipeline PLAYING when we
10214         requested a PAUSED state.
10215
10216 2007-02-25  Tim-Philipp Müller  <tim at centricular dot net>
10217
10218         Patch by: René Stadler <mail at renestadler de>
10219
10220         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
10221           Parse date strings in vorbis comments that have an invalid (zero)
10222           month or day (#410396).
10223
10224         * tests/check/libs/tag.c: (GST_START_TEST):
10225           Test case for the above.
10226
10227 2007-02-24  Tim-Philipp Müller  <tim at centricular dot net>
10228
10229         Patch by: Loïc Minier <lool+gnome at via ecp fr>
10230
10231         * configure.ac:
10232         * ext/alsa/Makefile.am:
10233         * gst/audiotestsrc/Makefile.am:
10234           Fix compilation with LDFLAGS='-Wl,-z,defs' (#410963).
10235
10236 2007-02-23  Tim-Philipp Müller  <tim at centricular dot net>
10237
10238         * gst/playback/gstplaybin.c:
10239           Improve docs: point out that the application needs to assist playbin
10240           with buffering.
10241
10242 2007-02-23  Tim-Philipp Müller  <tim at centricular dot net>
10243
10244         * gst-libs/gst/utils/install-plugins.c:
10245         * gst-libs/gst/utils/missing-plugins.c:
10246         * tests/check/libs/utils.c: (missing_msg_check_getters):
10247           Change GStreamer marker prefix in detail string from 'gstreamer.net'
10248           to just 'gstreamer'. Document the caps string component of the
10249           decoder/encoder detail a bit better, since not everyone will be
10250           familiar with the GStreamer media type/caps system (but they better
10251           enjoy nested itemized lists).
10252
10253 2007-02-22  Tim-Philipp Müller  <tim at centricular dot net>
10254
10255         * gst-libs/gst/netbuffer/gstnetbuffer.c:
10256         (notgst_buffer_copy_fields_in_place), (gst_netbuffer_copy):
10257           Fix copying of GstNetBuffer (would crash before, or at least lead to
10258           invalid memory access, #410772), for now by copying the GstBuffer copy
10259           code from the core over here so we can copy the GstBuffer fields on a
10260           provided buffer instance (of type GstNetBuffer in this case). Would be
10261           better to fix this with some support by the core though (and in the long
10262           run change the broken GstBuffer/GstMiniObject copy semantics, #393099).
10263
10264         * tests/check/Makefile.am:
10265           Enable unit test for GstNetBuffer.
10266
10267 2007-02-22  Andy Wingo  <wingo@pobox.com>
10268
10269         * gst-libs/gst/audio/gstbaseaudiosink.c
10270         (gst_base_audio_sink_init): Disable pull-mode activation until we
10271         figure out how to make audio sinks go to PLAYING.
10272
10273 2007-02-22  Stefan Kost  <ensonic@users.sf.net>
10274
10275         * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
10276         (double_hq), (audio_convert_get_func_index),
10277         (audio_convert_prepare_context), (audio_convert_convert):
10278         * gst/audioconvert/audioconvert.h:
10279         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_setup_matrix),
10280         (gst_channel_mix_mix_int), (gst_channel_mix_mix_float):
10281         * gst/audioconvert/gstchannelmix.h:
10282         * tests/check/elements/audioconvert.c: (GST_START_TEST):
10283           Add float as an intermediate format, as well as float mixing. Enable
10284           test that was failing before. Fixes #339837
10285
10286 2007-02-21  Jan Schmidt  <thaytan@mad.scientist.com>
10287
10288         * tests/examples/seek/seek.c: (do_seek):
10289         Undo the previous commit: -1 as a stop time implies that the stop
10290         time is the end of file, clearing any previously configured segment.
10291
10292 2007-02-21  Jan Schmidt  <thaytan@mad.scientist.com>
10293
10294         * tests/examples/seek/seek.c: (do_seek):
10295         Don't SEEK_SET with a stop time of -1, use SEEK_NONE instead.
10296
10297 2007-02-21  Stefan Kost  <ensonic@users.sf.net>
10298
10299         * gst/volume/gstvolume.c: (volume_process_int16),
10300         (volume_process_int16_clamp), (volume_set_caps):
10301           Unbreak volume, value remains gint.
10302
10303 2007-02-21  Stefan Kost  <ensonic@users.sf.net>
10304
10305         * gst/volume/gstvolume.c: (volume_choose_func),
10306         (volume_update_real_volume), (gst_volume_set_volume),
10307         (gst_volume_init), (volume_process_double), (volume_process_float),
10308         (volume_process_int16), (volume_process_int16_clamp),
10309         (volume_set_caps), (volume_transform_ip), (volume_update_volume):
10310         * gst/volume/gstvolume.h:
10311           Extend float audio support (double) and some int->uint cleanups.
10312
10313 2007-02-20  Edward Hervey  <edward@fluendo.com>
10314
10315         * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose),
10316         (multi_queue_underrun_cb), (gst_decode_group_check_if_drained),
10317         (sort_end_pads), (gst_decode_group_expose),
10318         (gst_decode_group_hide):
10319         Don't free groups from the streaming threads. Just put them aside and
10320         free them in dispose.
10321
10322 2007-02-20  Edward Hervey  <edward@fluendo.com>
10323
10324         * gst/playback/gstdecodebin2.c: (connect_element),
10325         (pad_added_group_cb), (gst_decode_group_check_if_blocked),
10326         (sort_end_pads), (gst_decode_group_expose):
10327         Handle dynamic pads within groups.
10328         Sort pads before exposing them in order to make playbin happy.
10329         There still is a race with the multiqueue filling up. This should be
10330         solved separately.
10331         Fixes #398721
10332
10333 2007-02-16  Tim-Philipp Müller  <tim at centricular dot net>
10334
10335         * gst-libs/gst/utils/base-utils.c:
10336         * gst-libs/gst/utils/descriptions.c:
10337         * gst-libs/gst/utils/install-plugins.c:
10338         * gst-libs/gst/utils/missing-plugins.c:
10339           Some more docs (and descriptions for two subtitle formats).
10340
10341 2007-02-16  Tim-Philipp Müller  <tim at centricular dot net>
10342
10343         * gst-libs/gst/audio/audio.c:
10344           Fix documentation.
10345
10346 2007-02-16  Tim-Philipp Müller  <tim at centricular dot net>
10347
10348         Patch by: Yves Lefebvre  <ivanohe abacom com>
10349
10350         * gst/videorate/gstvideorate.c: (gst_video_rate_setcaps):
10351           Don't leak caps. Fixes #408278.
10352
10353 2007-02-15  Stefan Kost  <ensonic@users.sf.net>
10354
10355         * ext/cdparanoia/gstcdparanoiasrc.h:
10356         * ext/ogg/gstoggdemux.h:
10357         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size),
10358         (gst_audio_frame_length), (gst_audio_duration_from_pad_buffer),
10359         (gst_audio_is_buffer_framed), (gst_audio_structure_set_int):
10360         * gst-libs/gst/audio/audio.h:
10361         * gst-libs/gst/audio/gstaudiofilter.h:
10362         * gst-libs/gst/interfaces/videoorientation.h:
10363         * gst/adder/gstadder.h:
10364           More docs coverage and some ChangeLog surgery (add missing names)
10365
10366 2007-02-15  Wim Taymans  <wim@fluendo.com>
10367
10368         * sys/ximage/ximagesink.c:
10369         (gst_ximagesink_calculate_pixel_aspect_ratio):
10370         * sys/xvimage/xvimagesink.c:
10371         (gst_xvimagesink_calculate_pixel_aspect_ratio):
10372         Small constifications.
10373
10374 2007-02-15  Wim Taymans  <wim@fluendo.com>
10375
10376         * gst-libs/gst/audio/gstbaseaudiosink.c:
10377         (gst_base_audio_sink_class_init), (gst_base_audio_sink_query),
10378         (gst_base_audio_sink_render), (gst_base_audio_sink_callback),
10379         (gst_base_audio_sink_async_play),
10380         (gst_base_audio_sink_change_state):
10381         Answer latency query.
10382         Use configured latency when syncing.
10383         Fix clock slaving.
10384
10385         * gst-libs/gst/audio/gstbaseaudiosrc.c:
10386         (gst_base_audio_src_class_init), (gst_base_audio_src_dispose),
10387         (gst_base_audio_src_query), (gst_base_audio_src_change_state):
10388         Fix possible memleak.
10389         Implement latency query.
10390         Small cleanups.
10391
10392 2007-02-15  Wim Taymans  <wim@fluendo.com>
10393
10394         * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
10395         Ignore errors in reset, these are not fatal. They also grab the element
10396         lock which is already taking when this function is called. Fixes
10397         #405451.
10398
10399 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
10400
10401         * configure.ac:
10402           Remove 'tests/examples/xerror/Makefile' from output files again.
10403
10404 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
10405
10406         * configure.ac:
10407         * docs/plugins/Makefile.am:
10408           Also crossref against gst-plugins-base-libs.
10409
10410 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
10411
10412         * configure.ac:
10413         * docs/libs/Makefile.am:
10414         * docs/plugins/Makefile.am:
10415           Add crossreferences to glib/gobject/gstream docs.
10416
10417         * gst-libs/gst/audio/audio.h:
10418           Source formatting.
10419
10420         * gst/audiotestsrc/gstaudiotestsrc.c: (plugin_init):
10421           Add own debug category.
10422
10423 2007-02-12  Tim-Philipp Müller  <tim at centricular dot net>
10424
10425         Patch by: René Stadler <mail at renestadler de>
10426
10427         * gst-libs/gst/tag/gstvorbistag.c:
10428           Add vorbis/FLAC-tag mapping for new GST_TAG_REFERENCE_LEVEL
10429           (#403597).
10430
10431 2007-02-10  Tim-Philipp Müller  <tim at centricular dot net>
10432
10433         * gst/playback/gstplaybasebin.c: (setup_source):
10434           When we have external subtitles and wait for the subtitle decodebin
10435           to get up and running, we set up a (sync) bus handler for the
10436           subtitle decodebin, so we can stop waiting when it posts an error
10437           message. However, we should do that before we set the subtitle
10438           decodebin's state to playing, otherwise things are racy and we might
10439           miss error messages posted before we had a chance to set up the bus.
10440           This should finally fix totem hanging on .txt pseudo-subtitle files.
10441           
10442 2007-02-10  Sébastien Moutte  <sebastien at moutte dot net>
10443
10444         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:(gst_base_rtp_audio_payload_handle_frame_based_buffer):
10445           Use gst_gdouble_to_guint64 for conversions.
10446         * win32/common/config.h.in:
10447           Add a define for GST_INSTALL_PLUGINS_HELPER
10448         * win32/common/libgstaudio.def:
10449         * win32/common/libgstcdda.def:
10450         * win32/common/libgstnetbuffer.def:
10451         * win32/common/libgstrtp.def:
10452         * win32/common/libgutils.def:
10453           Add new exported functions.
10454         * win32/vs6/gst_plugins_base.dsw:
10455         * win32/vs6/libgstdecodebin.dsp:
10456         * win32/vs6/libgstnetbuffer.dsp:
10457         * win32/vs6/libgstplaybin.dsp:
10458         * win32/vs6/libgstrtp.dsp:
10459         * win32/vs6/libgstvorbis.dsp:
10460         * win32/vs6/libgstcdda.dsp:
10461         * win32/vs6/libgstgdp.dsp:
10462         * win32/vs6/libgstutils.dsp:
10463           Update and add new project files.
10464
10465 2007-02-10  Tim-Philipp Müller  <tim at centricular dot net>
10466
10467         * gst/subparse/gstsubparse.c: (subrip_remove_unhandled_tag),
10468         (subrip_remove_unhandled_tags), (parse_subrip):
10469           For SubRip (.srt) subtitles, ignore all markup tags we don't
10470           handle (like font tags, for example).
10471
10472         * tests/check/elements/subparse.c:
10473           Add test for this.
10474
10475 2007-02-09  Tim-Philipp Müller  <tim at centricular dot net>
10476
10477         * gst/playback/gstdecodebin.c: (add_fakesink),
10478         (gst_decode_bin_change_state):
10479         * gst/playback/gstdecodebin2.c: (add_fakesink),
10480         (gst_decode_bin_change_state):
10481           Don't error out if there is no fakesink in the NULL to READY state
10482           change, since when decodebin is re-used, we're only adding the
10483           fakesink element in READY to PAUSED.
10484
10485         * tests/check/elements/decodebin.c:
10486         (new_decoded_pad_plug_fakesink_cb), (GST_START_TEST),
10487         (decodebin_suite):
10488           Minimal unit test to make sure we can use the same decodebin
10489           instance twice (at least with audiotestsrc input).
10490
10491 2007-02-09  Tim-Philipp Müller  <tim at centricular dot net>
10492
10493         * ext/alsa/gstalsa.c: (gst_alsa_find_device_name):
10494           Try to get devic-name from device string first, and from handle only
10495           as fallback (seems to yield better results and is more robust
10496           against buggy probing code on the application side).
10497
10498 2007-02-08  Tim-Philipp Müller  <tim at centricular dot net>
10499
10500         Based on patch by: Julien Puydt <julien.puydt at laposte net>
10501
10502         * ext/alsa/gstalsa.c: (gst_alsa_find_device_name_no_handle),
10503         (gst_alsa_find_device_name):
10504         * ext/alsa/gstalsa.h:
10505         * ext/alsa/gstalsasink.c: (gst_alsasink_get_property):
10506         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_property):
10507           Improve device-name detection a bit, especially in the case where
10508           the device is not actually open (#405020, #405024). Move common code
10509           into gstalsa.c instead of duplicating it.
10510
10511 2007-02-07  Tim-Philipp Müller  <tim at centricular dot net>
10512
10513         * gst/audioconvert/gstaudioconvert.c:
10514           Fix up docs chunk so that gtk-doc doesn't complain, and fix typo.
10515
10516 2007-02-06  Julien MOUTTE  <julien@moutte.net>
10517
10518         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents),
10519         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_clear),
10520         (gst_xvimagesink_interface_supported),
10521         (gst_xvimagesink_probe_get_properties),
10522         (gst_xvimagesink_probe_probe_property),
10523         (gst_xvimagesink_probe_needs_probe),
10524         (gst_xvimagesink_probe_get_values),
10525         (gst_xvimagesink_property_probe_interface_init),
10526         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
10527         (gst_xvimagesink_init), (gst_xvimagesink_class_init),
10528         (gst_xvimagesink_get_type):
10529         * sys/xvimage/xvimagesink.h: Implement PropertyProbe Interface
10530         for XVAdaptors so that one can choose the adaptor to use with 
10531         gstreamer-properties.
10532
10533 2007-02-06  Stefan Kost  <ensonic@users.sf.net>
10534
10535         * gst/audioconvert/gstaudioconvert.c:
10536           Also mention that a conversion from double to float is suboptimal still.
10537
10538 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
10539
10540         * gst-libs/gst/audio/gstaudiofilter.c:
10541         (gst_audio_filter_class_init), (gst_audio_filter_change_state):
10542           Clear our formats structure and free the caps contained in it when
10543           shutting down.
10544
10545 2007-02-05  Andy Wingo  <wingo@pobox.com>
10546
10547         * gst-libs/gst/audio/gstbaseaudiosink.c
10548         (gst_base_audio_sink_callback): Update basesink->offset so that we
10549         pull monotonically increasing offsets instead of, um, seeking back
10550         to 0 each time. Fixes alsasrc ! alsasink!
10551
10552 2007-02-05  Tim-Philipp Müller  <tim at centricular dot net>
10553
10554         * gst/videoscale/gstvideoscale.c:
10555           A width and height of 1 makes us crash, so increase minimum size to
10556           2x2 pixels until someone feels like fixing this (#404512).
10557
10558 2007-02-04  Tim-Philipp Müller  <tim at centricular dot net>
10559
10560         * tests/check/pipelines/oggmux.c: (GST_START_TEST), (oggmux_suite):
10561           Add small test to make sure request pads are cleaned up properly
10562           even if oggmux never changes state out of NULL.
10563
10564 2007-02-04  Tim-Philipp Müller  <tim at centricular dot net>
10565
10566         * tests/check/libs/utils.c: (GST_START_TEST):
10567           Fix unit test. Turns out things work much better when you
10568           NULL-terminate string arrays. Should make p5 build bot happy again.
10569
10570 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
10571
10572         * gst-libs/gst/audio/Makefile.am:
10573         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
10574         (gst_audio_filter_template_base_init),
10575         (gst_audio_filter_template_class_init),
10576         (gst_audio_filter_template_init),
10577         (gst_audio_filter_template_set_property),
10578         (gst_audio_filter_template_get_property),
10579         (gst_audio_filter_template_setup),
10580         (gst_audio_filter_template_filter),
10581         (gst_audio_filter_template_filter_inplace), (plugin_init):
10582           Oops, forgot to commit fixed-up example.
10583
10584 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
10585
10586         * docs/libs/gst-plugins-base-libs-sections.txt:
10587         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
10588         (gst_audio_filter_class_init), (gst_audio_filter_init),
10589         (gst_audio_filter_set_caps),
10590         (gst_audio_filter_class_add_pad_templates):
10591         * gst-libs/gst/audio/gstaudiofilter.h:
10592           Port GstAudioFilter to 0.10. This change technically breaks
10593           API and ABI (and thus also every library developer's heart),
10594           but seems justifiable on the grounds that the base class was
10595           completely unusable before (ie. would crash immediately when
10596           actually used). Fixes #403963 (and eventually also #403572).
10597           Also document all of this a bit.
10598
10599 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
10600
10601         * gst-libs/gst/utils/install-plugins.c:
10602         (gst_install_plugins_spawn_child):
10603         * tests/check/libs/utils.c:
10604         (test_base_utils_install_plugins_do_callout):
10605           Lowering log level to see why things fail on the p5 build bot;
10606           fix some typos in unit test messages.
10607
10608 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
10609
10610         * tests/check/libs/utils.c:
10611         (test_base_utils_install_plugins_do_callout):
10612           Don't hard-code temp directory for test helper; use GLib functions
10613           to write out file and do error checking etc.
10614
10615 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
10616
10617         * gst-libs/gst/utils/Makefile.am:
10618         * gst-libs/gst/utils/base-utils.h:
10619         * gst-libs/gst/utils/install-plugins.c:
10620         (gst_install_plugins_context_set_xid),
10621         (gst_install_plugins_context_new),
10622         (gst_install_plugins_context_free),
10623         (gst_install_plugins_get_helper),
10624         (gst_install_plugins_spawn_child),
10625         (gst_install_plugins_return_from_status),
10626         (gst_install_plugins_installer_exited),
10627         (gst_install_plugins_async), (gst_install_plugins_sync),
10628         (gst_install_plugins_return_get_name),
10629         (gst_install_plugins_installation_in_progress):
10630         * gst-libs/gst/utils/install-plugins.h:
10631           API: add API for applications to initiate installation of missing
10632           plugins, ie. gst_install_plugins_async() primarily.
10633           Based on libgimme-codec by Ryan Lortie.
10634
10635         * configure.ac:
10636           Add --with-install-plugins-helper configure option so distros can specify
10637           the path of the helper script or program to call when plugin installation
10638           is requested (distros: please do any argument munging in this helper
10639           script instead of patching GStreamer to pass arguments differently
10640           to another program directly).
10641
10642         * docs/libs/gst-plugins-base-libs-docs.sgml:
10643         * docs/libs/gst-plugins-base-libs-sections.txt:
10644           Build and document new API.
10645
10646         * tests/check/libs/utils.c: (result_cb),
10647         (test_base_utils_install_plugins_do_callout), (GST_START_TEST),
10648         (libgstbaseutils_suite):
10649           Some simple checks for the new API.
10650
10651 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
10652
10653         * tests/check/elements/audioconvert.c: (test_float_conversion):
10654           Add small test for 32bit float <=> 64bit float conversion (works
10655           only one way so far, 32=>64 produces structured noise).
10656
10657 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
10658
10659         * gst/audioconvert/gstaudioconvert.c:
10660         (set_structure_widths_32_and_64), (make_lossless_changes):
10661           We don't support floats with a width of 40, 48 or 56 bits.
10662
10663 2007-02-02  Stefan Kost  <ensonic@users.sf.net>
10664
10665         * gst/audioconvert/audioconvert.c: (float), (double),
10666         (audio_convert_get_func_index):
10667         * gst/audioconvert/gstaudioconvert.c: (set_structure_widths),
10668         (make_lossless_changes):
10669           Support for 64-bit float audio in audioconvert (#339837)
10670
10671 2007-02-01  Tim-Philipp Müller  <tim at centricular dot net>
10672
10673         Patch by: Holger Wansing  <linux wansing-online de>
10674
10675         * po/LINGUAS:
10676         * po/de.po:
10677           Add German translation (#352069).
10678
10679 2007-02-01  Sebastian Dröge  <slomo@circular-chaos.org>
10680
10681         reviewed by: Wim Taymans <wim@fluendo.com>
10682
10683         * ext/ogg/gstoggmux.c: (gst_ogg_mux_ogg_pad_destroy_notify),
10684         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad):
10685         Use newly added GstCollectPads API to free the allocated resources in
10686         the GstOggPad structures (#402393).
10687
10688 2007-01-31  Jan Schmidt  <thaytan@mad.scientist.com>
10689
10690         * gst/playback/gstplaybin.c: (gen_vis_element):
10691           Add audioresample+audioconvert in front of the visualisation
10692           element, so that elements like libvisual 0.4 that don't support all
10693           samplerates can work.
10694
10695           Fixes: #402505
10696
10697 2007-01-30  Tim-Philipp Müller  <tim at centricular dot net>
10698
10699         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property),
10700         (gst_play_base_bin_get_streaminfo_value_array):
10701           Take some locks and make a copy of the streaminfo value array we
10702           maintain while holding the lock, so that the application can
10703           retrieve the stream-info as a value array in a thread-safe way.
10704
10705 2007-01-30  Wim Taymans  <wim@fluendo.com>
10706
10707         * gst/audioconvert/gstaudioconvert.c:
10708         Don't fail on 0 sized buffers. Fixes #396835.
10709
10710 2007-01-29  David Schleef  <ds@schleef.org>
10711
10712         * gst/typefind/gsttypefindfunctions.c:
10713           Detect BBCD as video/x-dirac, so we can play raw dirac
10714           streams.
10715
10716 2007-01-29  Tim-Philipp Müller  <tim at centricular dot net>
10717
10718         * ext/theora/theoraenc.c: (theora_enc_chain):
10719           Check return value of theora_encode_header(), or we might try to
10720           allocate a random number of bytes. theora_encode_header() can fail
10721           if libtheora has been compiled with encoding support disabled.
10722           Fixes #398110.
10723
10724 2007-01-29  Wim Taymans  <wim@fluendo.com>
10725
10726         * tests/check/gst/.cvsignore:
10727         Do as buildbot says.
10728
10729 2007-01-29  Wim Taymans  <wim@fluendo.com>
10730
10731         * ext/libvisual/visual.c: (gst_visual_src_setcaps):
10732         Fix strides in libvisual. Gst uses X strides.
10733         Inspired by: <ed at catmur dot co dot uk> and 
10734         <tim at centricular dot net>
10735         Fixes #401118.
10736
10737 2007-01-27  Wim Taymans  <wim@fluendo.com>
10738
10739         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_submit_buffer),
10740         (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
10741         (gst_ogg_demux_get_prev_page), (gst_ogg_demux_do_seek),
10742         (gst_ogg_demux_perform_seek),
10743         (gst_ogg_demux_bisect_forward_serialno),
10744         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
10745         (gst_ogg_demux_find_chains), (gst_ogg_demux_handle_page),
10746         (gst_ogg_demux_chain), (gst_ogg_demux_combine_flows),
10747         (gst_ogg_demux_loop_reverse), (gst_ogg_demux_loop):
10748         * ext/ogg/gstoggdemux.h:
10749         Properly propagate streaming errors when we are scanning the file for
10750         chains so that we don't crash when shut down. Might fix some crashers
10751         when quickly switching oggs in RB such as #332503 and #378436.
10752
10753 2007-01-26  Tim-Philipp Müller  <tim at centricular dot net>
10754
10755         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
10756           Map a gnome-vfs HOST_NOT_FOUND error into a GStreamer NOT_FOUND
10757           error code as well.
10758
10759 2007-01-25  Wim Taymans  <wim@fluendo.com>
10760
10761         * gst/playback/gstplaybasebin.c: (remove_source):
10762         Don't try to disconnect a signal from a finalized object.
10763
10764 2007-01-25  Tim-Philipp Müller  <tim at centricular dot net>
10765
10766         * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose):
10767           Cast lock macro parameters to make sure we're actually accessing the
10768           lock member at the right class level. Free list itself in _dispose()
10769           as well and NULL it in case dispose gets called multiple times.
10770
10771 2007-01-25  Edward Hervey  <edward@fluendo.com>
10772
10773         * gst/playback/gstdecodebin2.c:
10774         (gst_decode_bin_dispose),(gst_decode_bin_finalize):
10775         Free GstDecodeGroups no longer used.
10776         (gst_decode_group_expose):
10777         Don't unlock too many times !
10778         (deactivate_free_recursive):
10779         Free iterator once we're done with it.
10780         Fix for recursively deactivating elements (stop at ghostpads).
10781
10782 2007-01-25  Tim-Philipp Müller  <tim at centricular dot net>
10783
10784         * gst/playback/gstplaybin.c: (handoff):
10785           Fix up caps on the frame buffer before we save it and potentially
10786           make it accessible to other threads via g_object_get; also use
10787           gst_buffer_replace() instead of gst_mini_object_replace().
10788
10789 2007-01-25  Tim-Philipp Müller  <tim at centricular dot net>
10790
10791         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
10792           Make getting the current frame thread-safe.
10793
10794 2007-01-25  Edward Hervey  <edward@fluendo.com>
10795
10796         * gst/playback/gstdecodebin2.c: (gst_decode_bin_finalize),
10797         (gst_decode_group_new), (gst_decode_group_free):
10798         Set queues to bigger sizes to cope with HD contents.
10799         Fix some mutex freeing and add comment about MT safe methods.
10800
10801 2007-01-24  Tim-Philipp Müller  <tim at centricular dot net>
10802
10803         * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event),
10804         (gst_text_overlay_text_event):
10805           Don't unnecessarily ref (and then leak) upstream events if the text
10806           pad is not linked. Fixes #399948.
10807
10808         * tests/check/gst-plugins-base.supp:
10809           Add suppression for pango on edgy/x86 for textoverlay test.
10810
10811 2007-01-24  Wim Taymans  <wim@fluendo.com>
10812
10813         * gst-libs/gst/rtp/gstrtpbuffer.h:
10814         Add some more fixed payloads.
10815
10816 2007-01-23  Tim-Philipp Müller  <tim at centricular dot net>
10817
10818         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_read_chain):
10819           Error out properly if we get an error from libogg while reading the
10820           BOS page(s). Fixes crash parsing 'fuzzed' ogg file (#399340).
10821
10822 2007-01-23  Tim-Philipp Müller  <tim at centricular dot net>
10823
10824         * gst/playback/gstdecodebin2.c: (gst_decode_bin_finalize):
10825           Don't leak mutex.
10826
10827         * tests/check/elements/playbin.c:
10828         (test_sink_usage_video_only_stream),
10829         (test_suburi_error_unknowntype), (test_suburi_error_invalidfile),
10830         (test_suburi_error_wrongproto), (test_missing_urisource_handler),
10831         (test_missing_suburisource_handler),
10832         (test_missing_primary_decoder), (playbin_suite):
10833           Run all tests once with decodebin and once with decodebin2.
10834           One test does not pass yet with decodebin2.
10835
10836 2007-01-23  Edward Hervey  <edward@fluendo.com>
10837
10838         * ext/ogg/gstoggmux.c: (all_pads_eos), (gst_ogg_mux_collected):
10839         Fix the cases where oggmux doesn't properly figure out that all
10840         sinkpads have gone EOS, and therefore doesn't push out the remaining
10841         buffers and the final EOS event.
10842         Fixes #363379
10843
10844 2007-01-23  Julien MOUTTE  <julien@moutte.net>
10845
10846         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
10847         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
10848         Don't lock on navigation event push, just on keysym to string.
10849         Fixes #397673 again.
10850
10851 2007-01-22  Edward Hervey  <edward@fluendo.com>
10852
10853         * gst/playback/gstdecodebin2.c: (gst_decode_group_new),
10854         (get_current_group), (group_demuxer_event_probe),
10855         (gst_decode_group_expose), (deactivate_free_recursive),
10856         (gst_decode_group_free):
10857         Cleanups.
10858         Don't forget to emit 'no-more-pads' once a group is exposed.
10859         Cleanup elements from a DecodeGroup once we remove it.
10860         Protect call to gst_decode_group_expose() with the decodebin lock.
10861
10862 2007-01-22  Julien MOUTTE  <julien@moutte.net>
10863
10864         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
10865         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
10866         Looking at Xorg code i can't figure out if that XKeysymToString
10867         function is thread sensible or not. Lock it just in case as
10868         recommended by Radek Doulik <rodo at ximian dot com>.
10869
10870 2007-01-22  Julien MOUTTE  <julien@moutte.net>
10871
10872         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
10873         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
10874         Lock that X Call as well. Fixes #397673.
10875
10876 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
10877
10878         * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find):
10879           Don't go into an endless loop if the file starts with 00 00 01 2X,
10880           like quicktime redirect files might. Fixes #396042.
10881
10882         * tests/check/Makefile.am:
10883         * tests/check/gst/.cvsignore:
10884         * tests/check/gst/typefindfunctions.c: (GST_START_TEST),
10885         (typefindfunctions_suite):
10886           Add unit test for the above.
10887
10888 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
10889
10890         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
10891           On second thought, use "depth" field rather than "bpp" field.
10892
10893 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
10894
10895         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
10896           Camtasia caps apparently need a bpp field (#398875).
10897
10898 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
10899
10900         * gst/playback/gstplaybasebin.c: (setup_subtitle),
10901         (gen_source_element), (gst_play_base_bin_change_state):
10902           Attempt at a better error message in case we don't have the required
10903           URI handler installed; post missing-plugin message also when we're
10904           missing an URI handler for the subtitle URI; clean up properly also
10905           when an error occurs and we never made it to PAUSED state.
10906
10907         * tests/check/elements/playbin.c: (GST_START_TEST),
10908         (playbin_suite):
10909           Check that we're also getting a missing-plugin messsage for a
10910           missing subtitle URI handler (and clean up properly).
10911
10912 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
10913
10914         * gst/playback/gstplaybasebin.c: (analyse_source), (setup_source):
10915           Plug a few reference leaks.
10916
10917 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
10918
10919         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
10920           Lower probability a bit if the marker isn't right at the start,
10921           to decrease the chance of false positives.
10922
10923 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
10924
10925         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
10926           Small mpeg2 system stream typefinding improvement: make typefinder
10927           probe a bit into the stream instead of just looking for a marker
10928           at the beginning. Fixes #397810.
10929
10930 2007-01-18  Tim-Philipp Müller  <tim at centricular dot net>
10931
10932         * gst/audioconvert/gstchannelmix.c:
10933           Remove compatibility cruft for prehistoric GLib versions.
10934
10935 2007-01-17  Tim-Philipp Müller  <tim at centricular dot net>
10936
10937         * gst/playback/Makefile.am:
10938         * gst/playback/gstdecodebin.c: (close_pad_link):
10939         * gst/playback/gstdecodebin2.c: (analyze_new_pad):
10940         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
10941         (gst_play_base_bin_handle_message_func), (unknown_type):
10942           Let decodebin be the element to post missing-plugin messages for
10943           missing decoders (rather than playbin); make playbin implement
10944           GstBin::handle_message so we can suppress missing-plugin messages
10945           for types we're not handling on purpose (don't want to bring up an
10946           installer in those cases).
10947
10948 2007-01-16  Tim-Philipp Müller  <tim at centricular dot net>
10949
10950         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
10951         * gst-libs/gst/tag/gstvorbistag.c:
10952         (gst_tag_list_to_vorbiscomment_buffer):
10953         * gst/typefind/gsttypefindfunctions.c: (vorbis_type_find):
10954           Fix potentially unaligned access (#397207).
10955
10956 2007-01-16  Stefan Kost  <ensonic@users.sf.net>
10957
10958         * tests/examples/seek/seek.c: (set_scale), (update_scale),
10959         (do_seek), (stop_seek), (pause_cb), (stop_cb), (loop_toggle_cb),
10960         (rate_spinbutton_changed_cb), (msg_eos), (msg_segment_done),
10961         (main):
10962           Allow to toggle looping while it plays. Fix callback prototype. Clean
10963           up code a bit more. Add copyright header.
10964
10965 2007-01-16  Stefan Kost  <ensonic@users.sf.net>
10966
10967         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
10968           Red and blue mask was swapped (spotted by Dan Williams).
10969
10970 2007-01-15  Stefan Kost  <ensonic@users.sf.net>
10971
10972         * gst-libs/gst/tag/gstid3tag.c:
10973         * gst-libs/gst/tag/gstvorbistag.c:
10974           Use new beats-per-minute tag from core.
10975
10976 2007-01-15  Tim-Philipp Müller  <tim at centricular dot net>
10977
10978         * po/POTFILES.in:
10979           Add new files with translatable strings, so they actually make it
10980           into the template file one day.
10981
10982 2007-01-12  Andy Wingo  <wingo@pobox.com>
10983
10984         * gst-libs/gst/audio/gstbaseaudiosink.c
10985         (gst_base_audio_sink_fixate): Implement, stolen from baseaudiosrc.
10986         (gst_base_audio_sink_activate_pull): Remove the handwavey nego
10987         stuff, as the base class handles this now. Actually tell the ring
10988         buffer to start.
10989         (gst_base_audio_sink_callback): Cast the ring buffer correctly.
10990         How did this work before? Maybe I'm not as awesome a programmer as
10991         I think.
10992
10993         * gst-libs/gst/audio/gstbaseaudiosrc.c
10994         (gst_base_audio_src_fixate): Rework as a basesrc vmethod instead
10995         of a pad function.
10996
10997 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
10998
10999         * gst-libs/gst/utils/missing-plugins.c: (copy_and_clean_caps):
11000           Remove more fields so that the application can better blacklist
11001           formats that have been tried before.
11002
11003 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
11004
11005         * gst-libs/gst/audio/mixerutils.h:
11006           Add G_BEGIN_DECLS and G_END_DECLS guards so these helpers can be
11007           used when compiling with c++ compilers as well.
11008
11009 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
11010
11011         * gst/typefind/gsttypefindfunctions.c:
11012           Fix comment.
11013
11014 2007-01-11  Tim-Philipp Müller  <tim at centricular dot net>
11015
11016         * gst/playback/gstplaybin.c: (post_missing_element_message),
11017         (gen_video_element), (gen_text_element), (gen_audio_element),
11018         (gen_vis_element):
11019           Post missing-plugin messages also when we error out because
11020           converters, textoverlay or auto*sinks are missing (#161922).
11021
11022 2007-01-10  Wim Taymans  <wim@fluendo.com>
11023
11024         * gst/playback/gstdecodebin.c: (dynamic_add), (close_pad_link),
11025         (is_demuxer_element), (new_caps):
11026         * gst/playback/gstplaybasebin.c: (source_new_pad):
11027         Fix the case where we try to ref a NULL element when we delay a link
11028         because of unfixed caps.
11029         Set the state of autoplugged decodebins to PAUSED.
11030         RTSP now works in playbin, we can remove it from the blacklist.
11031
11032 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
11033
11034         * gst/playback/Makefile.am:
11035         * gst/playback/gstplaybasebin.c: (string_arr_has_str),
11036         (unknown_type), (setup_subtitle), (gen_source_element):
11037         * gst/playback/gstplaybin.c: (plugin_init):
11038           Post missing-plugin messages on the bus for missing sources and
11039           missing decoders/demuxers/depayloaders; fix error code used when
11040           we're missing an URI handler source; for media types that we are not
11041           handling on purpose at the moment, don't print "don't know how to
11042           handle xyz" messages to the terminal or post missing-plugin
11043           messages on the bus.
11044
11045         * tests/check/elements/playbin.c: (create_playbin),
11046         (GST_START_TEST), (gst_codec_src_uri_get_type),
11047         (gst_codec_src_uri_get_protocols), (gst_codec_src_uri_get_uri),
11048         (gst_codec_src_uri_set_uri), (gst_codec_src_uri_handler_init),
11049         (gst_codec_src_init_type), (gst_codec_src_base_init),
11050         (gst_codec_src_create), (gst_codec_src_class_init),
11051         (gst_codec_src_init), (plugin_init), (playbin_suite):
11052           Add some tests for the missing-plugin stuff.
11053
11054 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
11055
11056         * configure.ac:
11057         * gst-libs/gst/Makefile.am:
11058         * gst-libs/gst/utils/Makefile.am:
11059         * gst-libs/gst/utils/base-utils.c: (gst_base_utils_init):
11060         * gst-libs/gst/utils/base-utils.h:
11061         * gst-libs/gst/utils/descriptions.c: (format_info_get_desc),
11062         (find_format_info), (caps_are_rtp_caps),
11063         (gst_base_utils_get_source_description),
11064         (gst_base_utils_get_sink_description),
11065         (gst_base_utils_get_decoder_description),
11066         (gst_base_utils_get_encoder_description),
11067         (gst_base_utils_get_element_description),
11068         (gst_base_utils_add_codec_description_to_tag_list),
11069         (gst_base_utils_get_codec_description), (gst_base_utils_list_all):
11070         * gst-libs/gst/utils/descriptions.h:
11071         * gst-libs/gst/utils/missing-plugins.c:
11072         (missing_structure_get_type), (copy_and_clean_caps),
11073         (gst_missing_uri_source_message_new),
11074         (gst_missing_uri_sink_message_new),
11075         (gst_missing_element_message_new),
11076         (gst_missing_decoder_message_new),
11077         (gst_missing_encoder_message_new),
11078         (missing_structure_get_string_detail),
11079         (missing_structure_get_caps_detail),
11080         (gst_missing_plugin_message_get_installer_detail),
11081         (gst_missing_plugin_message_get_description),
11082         (gst_is_missing_plugin_message):
11083         * gst-libs/gst/utils/missing-plugins.h:
11084           API: add new libgstbaseutils library with functions
11085           - to create and parse missing-plugins messages
11086           - that provide (translated) descriptions for caps/decoders/sources/etc.
11087           Closes #392393.
11088
11089         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
11090         * pkgconfig/gstreamer-plugins-base.pc.in:
11091           Add new lib.
11092
11093         * docs/libs/gst-plugins-base-libs-docs.sgml:
11094         * docs/libs/gst-plugins-base-libs-sections.txt:
11095           Generate docs for new lib and API.
11096
11097         * tests/check/Makefile.am:
11098         * tests/check/libs/.cvsignore:
11099         * tests/check/libs/utils.c: (missing_msg_check_getters),
11100         (GST_START_TEST), (libgstbaseutils_suite):
11101           Add some basic unit tests.
11102
11103 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
11104
11105         * ext/ogg/Makefile.am:
11106           Dist gstoggdemux.h to fix 'make distcheck'.
11107
11108         * sys/v4l/Makefile.am:
11109           Fix 'make distcheck' even more.
11110
11111 2007-01-09  Wim Taymans  <wim@fluendo.com>
11112
11113         * docs/plugins/Makefile.am:
11114         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
11115         * docs/plugins/gst-plugins-base-plugins-sections.txt:
11116         * ext/ogg/gstoggdemux.c: (gst_ogg_page_copy), (gst_ogg_page_free),
11117         (gst_ogg_pad_query_types), (gst_ogg_pad_submit_page),
11118         (gst_ogg_chain_reset), (gst_ogg_chain_new_stream),
11119         (gst_ogg_demux_perform_seek):
11120         * ext/ogg/gstoggdemux.h:
11121         Added docs.
11122         Add some more comments.
11123         Small cleanups.
11124
11125 2007-01-09  Wim Taymans  <wim@fluendo.com>
11126
11127         * ext/theora/theoradec.c:
11128         * ext/vorbis/vorbisdec.c:
11129         * gst-libs/gst/audio/gstringbuffer.c:
11130         (gst_ring_buffer_commit_full):
11131         * gst-libs/gst/audio/gstringbuffer.h:
11132         * gst-libs/gst/rtp/gstrtpbuffer.c:
11133         * gst-libs/gst/tag/gstvorbistag.c:
11134         Small documentation updates/fixes
11135
11136 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
11137
11138         * configure.ac:
11139           Require core CVS HEAD for Andy's basesrc/sink API additions.
11140
11141 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
11142
11143         Patch by: Günter Thelen  <daedalus dot inc at gmx net>
11144
11145         * gst/typefind/gsttypefindfunctions.c: (flac_type_find),
11146         (plugin_init):
11147           Add typefinder for flac-in-ogg in conformance with the ogg-mapping
11148           on flac.sf.net (there appear to be other versions of the first
11149           ogg page in the wild) (#391365).
11150
11151 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
11152
11153         * configure.ac:
11154           Check if localtime_r() is available.
11155
11156         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_render_time):
11157           If localtime_r() is not available, fall back to localtime(). Should
11158           fix build on MingW (#393310).
11159
11160 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
11161
11162         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
11163         * gst/subparse/gstsubparse.h:
11164           Remove spurious 1000 subtrahend when calculating the timestamp from
11165           the frame number and the frame rate . Also, use the frames/second
11166           value specified in the first line of the file, if one is specified
11167           there. Should fix #357503.
11168
11169         * tests/check/elements/subparse.c: (do_test),
11170         (test_tmplayer_do_test), (test_microdvd_do_test), (GST_START_TEST),
11171         (subparse_suite):
11172           Add some basic unit tests for the microdvd subtitle format.
11173
11174 2007-01-07  Julien MOUTTE  <julien@moutte.net>
11175
11176         Patch by: Young-Ho Cha <ganadist at chollian dot net>
11177
11178         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
11179         (gst_xvimage_buffer_finalize), (gst_xvimagesink_xvimage_new),
11180         (gst_xvimagesink_xvimage_put), (gst_lookup_xv_port_from_adaptor),
11181         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_setcaps),
11182         (gst_xvimagesink_set_xwindow_id),
11183         (gst_xvimagesink_set_event_handling),
11184         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
11185         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
11186         Fixes: #390076.
11187         Add an adaptor property to select a specific XV adaptor.
11188         * sys/xvimage/xvimagesink.h:
11189
11190 2007-01-07  Julien MOUTTE  <julien@moutte.net>
11191
11192         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
11193         (gst_ximagesink_handle_xerror), (gst_ximagesink_ximage_new),
11194         (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
11195         (gst_ximagesink_handle_xevents), (gst_ximagesink_setcaps),
11196         (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
11197         (gst_ximagesink_expose), (gst_ximagesink_set_event_handling):
11198         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
11199         (gst_xvimage_buffer_finalize), (gst_xvimagesink_handle_xerror),
11200         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
11201         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_setcaps),
11202         (gst_xvimagesink_change_state), (gst_xvimagesink_set_xwindow_id),
11203         (gst_xvimagesink_expose), (gst_xvimagesink_set_event_handling):
11204         Use flow_lock much more to protect every access to xwindow.
11205         Try to catch erros while creating images in case some drivers are
11206         just generating an XError when the requested image is too big.
11207         Should fix : #354698, #384008, #384060.
11208         * tests/icles/stress-xoverlay.c: (cycle_window), (create_window):
11209         Implement some stress testing of setting window xid.
11210
11211 2007-01-07  Sébastien Moutte  <sebastien@moutte.net>
11212
11213         * win32/common/libgsaudio.def:
11214           Add new exported function.
11215         * win32/common/libgstogg.dsp:
11216           Add gstoggaviparse.c to the build.
11217         * win32/common/libgstvideoscale.dsp:
11218           Add vs_4tap.c to the build.
11219         * win32/common/libgstvorbis.dsp:
11220           Add vorbistag.c to the build.
11221         
11222 2007-01-06  Andy Wingo  <wingo@pobox.com>
11223
11224         * gst-libs/gst/audio/gstbaseaudiosink.c
11225         (gst_base_audio_sink_class_init)
11226         (gst_base_audio_sink_init): 
11227         (gst_base_audio_sink_activate_pull): Add an activate_pull function
11228         to baseaudiosink, and tell basesink that we can work in pull mode.
11229         This way the ring buffer thread drives the pipeline directly, if
11230         pull mode is possible. There is some lingering nastiness regarding
11231         capsnego, however.
11232         (gst_base_audio_sink_callback): Implement the callback to pull
11233         data. This interface is a bit light, though -- it should get a
11234         GstFlowReturn return value at least.
11235
11236 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
11237
11238         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_stream_out):
11239         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
11240         * gst/playback/gstdecodebin2.c:
11241         (gst_decode_group_check_if_blocked):
11242           Printf format and missing argument fixes.
11243
11244 2007-01-05  Jan Schmidt  <thaytan@mad.scientist.com>
11245
11246         * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header),
11247         (gst_ogm_parse_change_state):
11248         Activate pads before adding them to the element.
11249
11250 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
11251
11252         * tests/examples/seek/scrubby.c: (main):
11253         * tests/examples/seek/seek.c: (main):
11254           Call g_thread_init() first thing in main() (see #391278).
11255
11256 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
11257
11258         * tests/check/Makefile.am:
11259         * tests/check/libs/.cvsignore:
11260         * tests/check/libs/netbuffer.c: (GST_START_TEST),
11261         (netbuffer_suite):
11262           Add test for GstNetBuffer + gst_buffer_copy(). Disabled
11263           for the time being, since it's broken, see #393099.
11264
11265 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
11266
11267         * tests/check/Makefile.am:
11268           Update to use GST_PLUGINS_BASE_CFLAGS as well.
11269
11270 2007-01-04  Thomas Vander Stichele  <thomas at apestaart dot org>
11271
11272         * configure.ac:
11273           split out GST_CFLAGS into GST_PLUGINS_BASE_CFLAGS and GST_CFLAGS
11274           so that GST_BASE_CFLAGS can go inbetween them, making sure
11275           we use uninstalled gst-libs headers
11276         * docs/libs/Makefile.am:
11277         * ext/alsa/Makefile.am:
11278         * ext/cdparanoia/Makefile.am:
11279         * ext/gnomevfs/Makefile.am:
11280         * ext/libvisual/Makefile.am:
11281         * ext/ogg/Makefile.am:
11282         * ext/theora/Makefile.am:
11283         * ext/vorbis/Makefile.am:
11284         * gst-libs/gst/audio/Makefile.am:
11285         * gst-libs/gst/cdda/Makefile.am:
11286         * gst-libs/gst/interfaces/Makefile.am:
11287         * gst-libs/gst/riff/Makefile.am:
11288         * gst-libs/gst/rtp/Makefile.am:
11289         * gst-libs/gst/tag/Makefile.am:
11290         * gst/adder/Makefile.am:
11291         * gst/audioconvert/Makefile.am:
11292         * gst/audiorate/Makefile.am:
11293         * gst/audioresample/Makefile.am:
11294         * gst/playback/Makefile.am:
11295         * gst/tcp/Makefile.am:
11296         * gst/videoscale/Makefile.am:
11297         * gst/volume/Makefile.am:
11298         * sys/ximage/Makefile.am:
11299         * sys/xvimage/Makefile.am:
11300         * tests/icles/Makefile.am:
11301           adapt
11302
11303 2007-01-04  Julien MOUTTE  <julien@moutte.net>
11304
11305         * gst-libs/gst/interfaces/xoverlay.c:
11306         (gst_x_overlay_handle_events):
11307         * gst-libs/gst/interfaces/xoverlay.h:
11308         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
11309         (gst_ximagesink_set_xwindow_id),
11310         (gst_ximagesink_set_event_handling),
11311         (gst_ximagesink_xoverlay_init), (gst_ximagesink_set_property),
11312         (gst_ximagesink_get_property), (gst_ximagesink_init),
11313         (gst_ximagesink_class_init):
11314         * sys/ximage/ximagesink.h:
11315         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new),
11316         (gst_xvimagesink_set_xwindow_id),
11317         (gst_xvimagesink_set_event_handling),
11318         (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_set_property),
11319         (gst_xvimagesink_get_property), (gst_xvimagesink_init),
11320         (gst_xvimagesink_class_init):
11321         * sys/xvimage/xvimagesink.h:
11322         * tests/icles/stress-xoverlay.c: (toggle_events), (create_window):
11323         Add a method to the XOverlay interface to allow disabling of 
11324         event handling in x[v]imagesink elements. This will let X events
11325         propagate to parent windows which can be usefull in some cases.
11326         Be carefull that the application is then responsible of pushing
11327         navigation events and expose events to the video sink.
11328         Fixes: #387138.
11329
11330 2007-01-03  Tim-Philipp Müller  <tim at centricular dot net>
11331
11332         * gst-libs/gst/tag/gstvorbistag.c:
11333         * tests/check/libs/tag.c: (GST_START_TEST):
11334           Add vorbistag <=> GStreamer tag mapping for GST_TAG_LOCATION
11335           (fixes #392070).
11336
11337 2007-01-01  Tim-Philipp Müller  <tim at centricular dot net>
11338
11339         * configure.ac:
11340         * docs/Makefile.am:
11341         * docs/design/Makefile.am:
11342           Dist design docs.
11343
11344 2006-12-27  Julien MOUTTE  <julien@moutte.net>
11345
11346         * docs/libs/gst-plugins-base-libs-sections.txt: Fix a documentation
11347         typo. Fixes: #390063.
11348
11349 2006-12-27  Julien MOUTTE  <julien@moutte.net>
11350
11351         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
11352         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Plug a
11353         caps leak.
11354         * win32/common/config.h: Updated.
11355
11356 2006-12-22  Stefan Kost  <ensonic@users.sf.net>
11357
11358         * tests/check/elements/gdpdepay.c: (cleanup_gdpdepay),
11359         (setup_gdpdepay_streamheader):
11360         * tests/check/elements/gdppay.c: (cleanup_gdppay),
11361         (setup_gdppay_streamheader):
11362           Fix the dp tests, but activating the pads for the streamheader tests
11363           too and cleaning up conditionaly
11364
11365 2006-12-22  Jan Schmidt  <thaytan@mad.scientist.com>
11366
11367         * gst/ffmpegcolorspace/avcodec.h:
11368         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11369         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
11370         (gst_ffmpegcsp_avpicture_fill):
11371         * gst/ffmpegcolorspace/imgconvert.c: (img_convert),
11372         (img_get_alpha_info):
11373         Add 2 new caps arrangements, for 24-bit RGB and BGR in 32-bits, but at the
11374         other end of the word. Fixes: #387073.
11375
11376         Add some inconsequential branch hints in a couple of places.
11377
11378 2006-12-21  Tim-Philipp Müller  <tim at centricular dot net>
11379
11380         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11381         (gst_ffmpeg_caps_to_smpfmt):
11382           The "signed" field in raw audio caps is of boolean type, trying to
11383           extract the value with _get_int() will fail (fix to keep in sync with
11384           the copy in gst-ffmpeg)
11385
11386 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
11387
11388         * tests/check/elements/audioresample.c: (cleanup_audioresample):
11389         * tests/check/elements/audiotestsrc.c: (cleanup_audiotestsrc):
11390         * tests/check/elements/gdpdepay.c: (setup_gdpdepay),
11391         (cleanup_gdpdepay):
11392         * tests/check/elements/gdppay.c: (setup_gdppay), (cleanup_gdppay):
11393         * tests/check/elements/subparse.c: (teardown_subparse):
11394         * tests/check/elements/textoverlay.c: (cleanup_textoverlay):
11395         * tests/check/elements/videorate.c: (cleanup_videorate):
11396         * tests/check/elements/videotestsrc.c: (cleanup_videotestsrc):
11397         * tests/check/elements/volume.c: (cleanup_volume):
11398         * tests/check/elements/vorbisdec.c: (setup_vorbisdec),
11399         (cleanup_vorbisdec):
11400         * tests/check/elements/vorbistag.c: (setup_vorbistag),
11401         (cleanup_vorbistag):
11402           consistent pad (de)activation
11403
11404 2006-12-20  Tim-Philipp Müller  <tim at centricular dot net>
11405
11406         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
11407           Forgot to register the extensions.
11408
11409 2006-12-20  Tim-Philipp Müller  <tim at centricular dot net>
11410
11411         * gst/typefind/gsttypefindfunctions.c: (vivo_type_find),
11412         (plugin_init):
11413           Add typefinder for VIVO files (my christmas present to the 90s).
11414
11415 2006-12-16  Tim-Philipp Müller  <tim at centricular dot net>
11416
11417         * gst/playback/gstdecodebin.c: (type_found):
11418           Special-case the text/plain media type: we only want to recognise it
11419           as a 'raw' decoded media type if it comes from a demuxer or subtitle
11420           parser, but not if the entire stream is of text/plain type. If the
11421           entire stream is text/plain, we should just error out.
11422
11423           This fixes playback of audio files with lyrics in totem. Totem can't
11424           distinguish between text files and subtitle files and passes any
11425           .txt file with the same basename as the main file to playbin as
11426           suburi, and playbin will then throw a 'subtitle found, but no video
11427           stream' error, which isn't entirely helpful. See #380342.
11428
11429           Also, with this change we'll show a slightly more correct error
11430           message in case totem passes a playlist file to us (although a
11431           custom error message wording instead of the default text would
11432           probably not be a bad idea either).
11433
11434           Same problem also needs to be fixed for playbin+decodebin2.
11435
11436         * tests/check/Makefile.am:
11437         * tests/check/elements/decodebin.c: (src_handoff_cb),
11438         (decodebin_new_decoded_pad_cb), (GST_START_TEST),
11439         (decodebin_suite):
11440           Add simple unit test for decodebin for the above.
11441
11442 2006-12-16  Tim-Philipp Müller  <tim at centricular dot net>
11443
11444         * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
11445         * gst/playback/gstdecodebin2.c: (gst_decode_bin_change_state):
11446           Refuse to change state to READY when we failed to create any of the
11447           required elements in our instance init function.
11448
11449 2006-12-15  Tim-Philipp Müller  <tim at centricular dot net>
11450
11451         * docs/libs/gst-plugins-base-libs-sections.txt:
11452           Small docs fixes/updates.
11453
11454         * gst-libs/gst/video/gstvideosink.h:
11455           Remove nonfunctional GST_VIDEO_SINK_CLOCK macro which is a leftover
11456           from the 0.9 days (GST_BASE_SINK_CLOCK, which it points to, was
11457           removed from the base sink API between 0.9.6 and 0.9.7).
11458           API: add GST_VIDEO_SINK_CAST and use it for the height/width
11459           accessor macros, so we don't do a runtime GObject type check every
11460           time we use them.
11461
11462 2006-12-15  Thomas Vander Stichele  <thomas at apestaart dot org>
11463
11464         * Makefile.am:
11465         * gst-plugins-base.doap:
11466         * gst-plugins-base.spec.in:
11467           add doap file
11468
11469 2006-12-09  Tim-Philipp Müller  <tim at centricular dot net>
11470
11471         Patch by: Jens Granseuer <jensgr at gmx net>
11472
11473         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
11474         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
11475         (gst_base_rtp_audio_payload_handle_frame_based_buffer),
11476         (gst_base_rtp_audio_payload_handle_sample_based_buffer):
11477         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
11478           Declare variables at the beginning of a block. Fixes #383195.
11479
11480 2006-12-07  Jan Schmidt  <thaytan@mad.scientist.com>
11481
11482         * configure.ac:
11483         Bump version nano - back to CVS.
11484
11485
11486 === release 0.10.11 ===
11487
11488 2006-12-06  Jan Schmidt <thaytan@mad.scientist.com>
11489
11490         * configure.ac:
11491           releasing 0.10.11, "Dumb things"
11492
11493 2006-12-05  Jan Schmidt  <thaytan@mad.scientist.com>
11494
11495         * gst/playback/gstdecodebin.c: (find_dynamic), (dynamic_add),
11496         (close_pad_link), (elem_is_dynamic), (unlinked), (close_link):
11497         Handle the case where an element has multiple pads with 
11498         unfixed caps as well as still possibly producing more dynamic 
11499         pads by storing each case as a distinct entry in the dynamic list.
11500         Fixes #38223 again.
11501
11502 2006-12-04  Wim Taymans  <wim@fluendo.com>
11503
11504         * gst/playback/gstdecodebin.c: (close_pad_link):
11505         Fix #382223, add more dynamic caps handling.
11506
11507 2006-12-04  Wim Taymans  <wim@fluendo.com>
11508
11509         * gst-libs/gst/audio/gstringbuffer.h:
11510         * gst-libs/gst/netbuffer/gstnetbuffer.c: (gst_netbuffer_init),
11511         (gst_netaddress_set_ip4_interface),
11512         (gst_netaddress_set_ip6_interface), (gst_netaddress_set_loopback),
11513         (gst_netaddress_set_ttl), (gst_netaddress_get_ip4_interface),
11514         (gst_netaddress_get_ip6_interface), (gst_netaddress_get_loopback),
11515         (gst_netaddress_get_ttl):
11516         * gst-libs/gst/netbuffer/gstnetbuffer.h:
11517         * gst/playback/gstdecodebin.c: (close_pad_link):
11518         * tests/examples/seek/seek.c: (end_scrub), (end_seek), (do_seek),
11519         (seek_cb), (stop_seek), (rate_spinbutton_changed_cb):
11520         * win32/common/config.h:
11521
11522 2006-12-01  Michael Smith  <msmith@fluendo.com>
11523
11524         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
11525           Delete bad debug code.
11526           Fixes #381219
11527
11528 2006-12-01  Jan Schmidt  <thaytan@mad.scientist.com>
11529
11530         * gst/videoscale/vs_4tap.c:
11531         * win32/MANIFEST:
11532         * win32/common/config.h:
11533         * win32/vs8/libgstvideoscale.vcproj:
11534         Fix compilation on win32 under VS8
11535         Patch by: Sergey Scobich <sergey dot scobich at gmail dot com>
11536         Partially fixes #381175
11537
11538 2006-11-30  Michael Smith  <msmith@fluendo.com>
11539
11540         * tests/check/pipelines/theoraenc.c: (check_buffer_granulepos),
11541         (GST_START_TEST):
11542           It would be very bad if, after a discont buffer, we thought every
11543           single following buffer was also discont. So, add to the test to
11544           ensure that this isn't the case.
11545           
11546         * ext/theora/theoraenc.c: (theora_enc_is_discontinuous):
11547           ... it was the case. So fix it.
11548
11549 2006-11-28  Wim Taymans  <wim@fluendo.com>
11550
11551         * gst/playback/gstplaybasebin.c: (check_queue_event):
11552         Improve debug.
11553
11554         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps):
11555         Fix width and height range from 16 - 4096 to 1 - MAXINT, just like the
11556         padtemplate caps. Refixes #357577.
11557
11558 2006-11-28  Wim Taymans  <wim@fluendo.com>
11559
11560         * gst/playback/gstplaybasebin.c: (check_queue_event),
11561         (queue_threshold_reached), (queue_out_of_data),
11562         (gen_preroll_element):
11563         Add event probe to see when EOS is in a queue and we can disable the
11564         underrun signals. Fixes #357577.
11565
11566 2006-11-28  Edward Hervey  <edward@fluendo.com>
11567
11568         * gst/playback/Makefile.am:
11569         * gst/playback/gstdecodebin2.c: (gst_decode_bin_get_type),
11570         (_gst_boolean_accumulator), (gst_decode_bin_class_init),
11571         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
11572         (gst_decode_bin_init), (gst_decode_bin_dispose),
11573         (gst_decode_bin_finalize), (gst_decode_bin_set_property),
11574         (gst_decode_bin_get_property), (gst_decode_bin_set_caps),
11575         (gst_decode_bin_get_caps), (gst_decode_bin_autoplug_continue),
11576         (gst_decode_bin_autoplug_sort), (analyze_new_pad), (connect_pad),
11577         (connect_element), (expose_pad), (type_found),
11578         (pad_added_group_cb), (pad_removed_group_cb),
11579         (no_more_pads_group_cb), (pad_added_cb), (pad_removed_cb),
11580         (no_more_pads_cb), (find_compatibles), (is_demuxer_element),
11581         (are_raw_caps), (multi_queue_overrun_cb),
11582         (multi_queue_underrun_cb), (gst_decode_group_new),
11583         (get_current_group), (group_demuxer_event_probe),
11584         (gst_decode_group_control_demuxer_pad),
11585         (gst_decode_group_control_source_pad),
11586         (gst_decode_group_check_if_blocked),
11587         (gst_decode_group_check_if_drained), (gst_decode_group_expose),
11588         (gst_decode_group_hide), (gst_decode_group_free),
11589         (gst_decode_group_set_complete), (source_pad_blocked_cb),
11590         (source_pad_event_probe), (gst_decode_pad_new), (add_fakesink),
11591         (remove_fakesink), (find_sink_pad), (gst_decode_bin_change_state),
11592         (plugin_init):
11593         New decodebin2 element.
11594         Closes #370092
11595         * gst/playback/gstplay-marshal.list:
11596         Added marshallers for new signals in decodebin2
11597         * gst/playback/gstplaybasebin.c: (setup_subtitle), (make_decoder):
11598         Use decodebin2 if *and only if* the USE_DECODEBIN2 environment variable
11599         is set.
11600
11601 2006-11-28  Wim Taymans  <wim@fluendo.com>
11602
11603         * gst/playback/gstplaybasebin.c: (setup_source),
11604         (gst_play_base_bin_change_state):
11605         Disable rtsp:// uris for the release, it's not good enough yet.
11606         Remove unused var.
11607
11608 2006-11-26  Wim Taymans  <wim@fluendo.com>
11609
11610         * ext/theora/theoradec.c: (gst_theora_dec_reset),
11611         (theora_dec_push_forward), (theora_dec_push_reverse),
11612         (theora_handle_data_packet), (theora_dec_decode_buffer),
11613         (theora_dec_flush_decode), (theora_dec_chain_reverse),
11614         (theora_dec_chain_forward), (theora_dec_chain):
11615         Implement reverse playback.
11616
11617         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
11618         (vorbis_dec_decode_buffer), (vorbis_dec_flush_decode),
11619         (vorbis_dec_chain_forward):
11620         Clear buffers used for reverse playback in _reset.
11621         No need to set the eos flag, we clip samples using the segment.
11622
11623 2006-11-24  Wim Taymans  <wim@fluendo.com>
11624
11625         * ext/ogg/gstoggdemux.c: (gst_ogg_page_copy), (gst_ogg_page_free),
11626         (gst_ogg_pad_init), (gst_ogg_pad_dispose), (gst_ogg_pad_reset),
11627         (gst_ogg_pad_stream_out), (gst_ogg_pad_submit_page),
11628         (gst_ogg_chain_reset), (gst_ogg_demux_perform_seek):
11629         Some cleanups.
11630         Handle continued pages in reverse mode.
11631
11632 2006-11-24  Wim Taymans  <wim@fluendo.com>
11633
11634         * ext/vorbis/vorbisdec.c: (vorbis_dec_push_forward),
11635         (vorbis_handle_data_packet), (vorbis_dec_decode_buffer),
11636         (vorbis_dec_flush_decode):
11637         Small cleanups.
11638         Don't try to add invalid timestamps.
11639         Clipping will unref the buffer.
11640
11641 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
11642
11643         * gst/adder/gstadder.h:
11644         * gst/audiotestsrc/gstaudiotestsrc.h:
11645           remove obsolete _factory_init protos
11646
11647 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
11648
11649         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
11650           Fix spacing in debug message.
11651
11652 2006-11-23  Wim Taymans  <wim@fluendo.com>
11653
11654         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page),
11655         (gst_ogg_demux_chain):
11656         Don't just ignore return values from _pad_push().
11657         Small debug improvements.
11658
11659 2006-11-23  Michael Smith  <msmith@fluendo.com>
11660
11661         * ext/ogg/gstoggmux.c: (gst_ogg_mux_process_best_pad):
11662           If our incoming buffer is marked as DISCONT, then increment the page
11663           number (so that the discontinuity is marked in the final ogg
11664           bitstream) and flush the previous page.
11665
11666 2006-11-22  Michael Smith  <msmith@fluendo.com>
11667
11668         * ext/theora/gsttheoraenc.h:
11669         * ext/theora/theoraenc.c: (gst_theora_enc_init),
11670         (theora_enc_reset), (theora_enc_clear), (theora_enc_sink_setcaps),
11671         (theora_buffer_from_packet), (theora_enc_is_discontinuous),
11672         (theora_enc_chain), (theora_enc_change_state):
11673           Mark discontinuities of > 3/4 of a frame, reinit encoder.
11674
11675         * tests/check/pipelines/theoraenc.c: (check_buffer_granulepos),
11676         (GST_START_TEST), (theoraenc_suite):
11677           Enable discontinuity test, fix it.
11678
11679 2006-11-21  Tim-Philipp Müller  <tim at centricular dot net>
11680
11681         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
11682         (gst_text_overlay_text_pad_unlink), (gst_text_overlay_text_event),
11683         (gst_text_overlay_video_event), (gst_text_overlay_pop_text),
11684         (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
11685         (gst_text_overlay_change_state):
11686         * ext/pango/gsttextoverlay.h:
11687           Some textoverlay fixes: for one, in the video chain function,
11688           actually wait for a text buffer to come in if there is none at the
11689           moment and there should be one; also, deal more gracefully with
11690           incoming buffers that do not have a timestamp or duration; discard
11691           text buffer when not needed any longer. Fixes #341681.
11692
11693         * tests/check/Makefile.am:
11694         * tests/check/elements/.cvsignore:
11695         * tests/check/elements/textoverlay.c:
11696         (notgst_check_setup_src_pad2), (notgst_check_teardown_src_pad2),
11697         (setup_textoverlay), (buffer_is_all_black), (create_black_buffer),
11698         (create_text_buffer), (cleanup_textoverlay), (GST_START_TEST),
11699         (test_video_waits_for_text_send_text_newsegment_thread),
11700         (test_video_waits_for_text_shutdown_element),
11701         (test_render_continuity_push_video_buffers_thread),
11702         (textoverlay_suite):
11703           Add some unit tests for textoverlay.
11704
11705 2006-11-21  Tim-Philipp Müller  <tim at centricular dot net>
11706
11707         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
11708           Avoid integer underflow when the found probability for mp3 is
11709           smaller than the 'penalty' we subtract if there's not a clean
11710           mp3 header sync at offset 0.
11711
11712 2006-11-21  Stefan Kost  <ensonic@users.sf.net>
11713
11714         * docs/libs/gst-plugins-base-libs-sections.txt:
11715           Add some new symbols to the docs
11716
11717 2006-11-20  Tim-Philipp Müller  <tim at centricular dot net>
11718
11719         * tests/check/Makefile.am:
11720         * tests/check/elements/ffmpegcolorspace.c:
11721         (ffmpegcolorspace_suite):
11722           Enable ffmpegcolorspace test now that the RGBA32 issue is fixed
11723           (for now not for valgrinding though, since it takes too long).
11724
11725 2006-11-20  Wim Taymans  <wim@fluendo.com>
11726
11727         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11728         (gst_ffmpeg_pixfmt_to_caps):
11729         Fix RGBA32 caps. Fixes #357038.
11730
11731 2006-11-20  Tim-Philipp Müller  <tim at centricular dot net>
11732
11733         * gst-libs/gst/interfaces/mixertrack.h:
11734           Add FIXME so we can add some padding here in 0.11
11735
11736 2006-11-19  Tim-Philipp Müller  <tim at centricular dot net>
11737
11738         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
11739           Fix GstBaseRTPAudioPayload structure so the whole GObject
11740           inheritance business actually works (parent class instance structure
11741           must always come first in the derived class instance structure).
11742
11743 2006-11-16  Tim-Philipp Müller  <tim at centricular dot net>
11744
11745         * gst/videotestsrc/Makefile.am:
11746         * tests/check/Makefile.am:
11747           Make sure our checks and the videotestsrc plugin link against the
11748           local uninstalled gst libs and not any installed gst libs that
11749           might happen to exist as well.
11750
11751         * tests/check/elements/adder.c: (message_received),
11752         (test_event_message_received), (test_play_twice_message_received):
11753         * tests/check/elements/ffmpegcolorspace.c: (GST_START_TEST):
11754           Fix compiler warnings when compiling against core with disabled
11755           debugging system.
11756
11757 2006-11-16  Michael Smith  <msmith@fluendo.com>
11758
11759         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
11760         (gst_audio_rate_sink_event), (gst_audio_rate_chain):
11761           Fix audiorate, so that it accurately sets offsets and timestamps.
11762           Doesn't change the fundamental algorithmic decisions; so should be
11763           safe.
11764
11765         * tests/check/Makefile.am:
11766           Enable audiorate test now that it passes.
11767
11768 2006-11-09  Stefan Kost  <ensonic@users.sf.net>
11769
11770         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
11771           clear xv when going to NULL, remove // commented non-existant proto
11772
11773         * tests/examples/seek/seek.c: (main):
11774           add missing tooltip description for scrub and play_scrub
11775
11776 2006-11-14  David Schleef  <ds@schleef.org>
11777
11778         * configure.ac:
11779           Bump liboil requirement to 0.3.8.
11780         * gst-libs/gst/riff/riff-media.c:
11781           Add Dirac fourcc.
11782         * gst/videoscale/vs_image.h:
11783         * gst/videoscale/vs_scanline.h:
11784           Use liboil's stdint.h.
11785         * gst/videotestsrc/videotestsrc.c:
11786           Remove liboil related ifdef's, since they aren't needed now, and
11787           won't work with future versions.
11788
11789 2006-11-14  David Schleef  <ds@schleef.org>
11790
11791         * gst/videoscale/Makefile.am:
11792         * gst/videoscale/gstvideoscale.c:
11793         * gst/videoscale/gstvideoscale.h:
11794         * gst/videoscale/vs_4tap.c:
11795         * gst/videoscale/vs_4tap.h:
11796         * gst/videoscale/vs_image.c:
11797         * gst/videoscale/vs_image.h:
11798         * gst/videoscale/vs_scanline.c:
11799         * gst/videoscale/vs_scanline.h:
11800           Add a 4-tap image scaler.  Theoretically looks much prettier.
11801           The tap calculation could use some improvement.
11802
11803 2006-11-14  Wim Taymans  <wim@fluendo.com>
11804
11805         Patch by: Jan David Mol <j dot j dot d dot mol at tudelft dot nl>
11806
11807         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds),
11808         (gst_riff_parse_strf_iavs):
11809         * gst/subparse/gstsubparse.c: (convert_encoding):
11810         * gst/tcp/gstmultifdsink.c:
11811         (gst_multi_fd_sink_handle_client_write):
11812         * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
11813         (gst_tcp_read_buffer), (gst_tcp_gdp_read_caps),
11814         (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
11815         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_render):
11816         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
11817         (gst_ximagesink_ximage_new):
11818         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
11819         Various gsize and gssize printf fixes. Fixes #372507.
11820
11821 2006-11-13  Wim Taymans  <wim@fluendo.com>
11822
11823         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
11824         (vorbis_dec_push_forward), (vorbis_dec_push_reverse),
11825         (vorbis_handle_data_packet), (vorbis_dec_decode_buffer),
11826         (vorbis_dec_flush_decode), (vorbis_dec_chain_reverse),
11827         (vorbis_dec_chain_forward), (vorbis_dec_chain):
11828         * ext/vorbis/vorbisdec.h:
11829         First stab at vorbis reverse playback.
11830
11831 2006-11-13  Wim Taymans  <wim@fluendo.com>
11832
11833         * gst-libs/gst/audio/gstbaseaudiosink.c:
11834         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
11835         * gst-libs/gst/audio/gstbaseaudiosink.h:
11836         Make the clock sync code more accurate wrt resampling and playback
11837         at different rates.
11838         
11839         * gst-libs/gst/audio/gstringbuffer.c:
11840         (gst_ring_buffer_commit_full), (gst_ring_buffer_commit):
11841         * gst-libs/gst/audio/gstringbuffer.h:
11842         Use better algorithm to interpolate sample rates. 
11843
11844 2006-11-13  Michael Smith  <msmith@fluendo.com>
11845
11846         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page):
11847           Improve a debug line slightly.
11848
11849         * ext/ogg/gstogmparse.c: (gst_ogm_parse_plugin_init):
11850           Call gst_riff_init() in plugin_init, to avoid getting errors from
11851           the debug system (unrelated changes to another plugin made this turn
11852           up; not sure why).
11853
11854 2006-11-10  Tim-Philipp Müller  <tim at centricular dot net>
11855
11856         Patch by: Sergey Scobich  <sergery.scobich at gmail com>
11857
11858         * win32/common/libgsttag.def:
11859           Add missing symbol (#366492).
11860
11861 2006-11-09  Tim-Philipp Müller  <tim at centricular dot net>
11862
11863         * gst/playback/gststreamselector.c: (gst_stream_selector_dispose):
11864           Don't unref a NULL pad.
11865
11866 2006-11-09  Wim Taymans  <wim@fluendo.com>
11867
11868         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page),
11869         (gst_ogg_demux_get_prev_page), (gst_ogg_demux_perform_seek),
11870         (gst_ogg_demux_handle_page), (gst_ogg_demux_chain),
11871         (gst_ogg_demux_loop_forward), (gst_ogg_demux_loop_reverse),
11872         (gst_ogg_demux_loop):
11873         Implement first stab at reverse playback.
11874
11875 2006-11-07  Stefan Kost  <ensonic@users.sf.net>
11876
11877         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
11878         (gst_riff_create_video_template_caps):
11879           add h263/h264 variants to the caps, Fixes #363118
11880
11881 2006-11-06  Tim-Philipp Müller  <tim at centricular dot net>
11882
11883         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func):
11884         * gst-libs/gst/audio/gstaudiosrc.c: (audioringbuffer_thread_func):
11885           Use g_strerror instead of strerror so we get UTF-8.
11886
11887 2006-11-03  David Schleef  <ds@schleef.org>
11888
11889         * ext/ogg/gstoggdemux.c:
11890         * ext/ogg/gstoggmux.c:
11891           Add/remove KW-DIRAC header here, since it is ogg-specific.
11892
11893 2006-11-03  Michael Smith  <msmith@fluendo.com>
11894
11895         * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find):
11896           Recognise more mpeg4 elementary video streams.
11897
11898 2006-11-02  Edward Hervey  <edward@fluendo.com>
11899
11900         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
11901         Lower the probability of mp3 typefinding functions if we don't find a
11902         valid mp3 header at the start of the file.
11903         Closes #369482
11904
11905 2006-11-02  Wim Taymans  <wim@fluendo.com>
11906
11907         * ext/theora/gsttheoradec.h:
11908         * ext/theora/theoradec.c: (gst_theora_dec_init),
11909         (theora_dec_sink_event), (theora_dec_chain_forward),
11910         (theora_dec_flush_decode), (theora_dec_chain_reverse),
11911         (theora_dec_chain):
11912         Document and partially implement an algorithm for doing reverse playback
11913         of theora video.
11914
11915 2006-11-02  Tim-Philipp Müller  <tim at centricular dot net>
11916
11917         Patch by: Sergey Scobich  <sergey.scobich at gmail com>
11918
11919         * win32/common/config.h:
11920         * win32/common/interfaces-enumtypes.c:
11921         * win32/common/libgsttag.def:
11922         * win32/vs8/gst-plugins-base.sln:
11923         * win32/vs8/libgstaudioresample.vcproj:
11924         * win32/vs8/libgstinterfaces.vcproj:
11925         * win32/vs8/libgstogg.vcproj:
11926         * win32/vs8/libgstriff.vcproj:
11927         * win32/vs8/libgsttag.vcproj:
11928         * win32/vs8/libgsttheora.vcproj:
11929         * win32/vs8/libgstvideoscale.vcproj:
11930         * win32/vs8/libgstvorbis.vcproj:
11931           Misc. VS8 build fixes: fix syntax in config.h, add missing entries
11932           to libgsttag.def; add missing dependencies for some vs8 projects;
11933           re-arrange placement of .def files in vs8 projects (#366334).
11934
11935 2006-11-01  Tim-Philipp Müller  <tim at centricular dot net>
11936
11937         * ext/ogg/gstogg.c:
11938           Remove unused variable.
11939
11940         * ext/ogg/gstoggdemux.c:
11941           Fix Wim's surname in plugin description.
11942
11943 2006-10-31  Wim Taymans  <wim@fluendo.com>
11944
11945         * gst-plugins-base.spec.in:
11946         spec new .h file. Fixes #368310.
11947
11948 2006-10-31  Michael Smith  <msmith@fluendo.com>
11949
11950         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_add_full),
11951         (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
11952         (gst_multi_fd_sink_get_stats),
11953         (gst_multi_fd_sink_remove_client_link),
11954         (gst_multi_fd_sink_queue_buffer),
11955         (gst_multi_fd_sink_handle_clients):
11956         * gst/tcp/gstmultifdsink.h:
11957           Make using the remove or clear signals threadsafe.
11958           Make calling get-stats with an invalid fd not segfault.
11959           Fixes 368273.
11960
11961 2006-10-31  Wim Taymans  <wim@fluendo.com>
11962
11963         * gst-libs/gst/rtp/Makefile.am:
11964         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
11965         (gst_base_rtp_audio_payload_init):
11966         Fix and activate base audio payloader.
11967
11968 2006-10-28  Tim-Philipp Müller  <tim at centricular dot net>
11969
11970         * gst/typefind/gsttypefindfunctions.c: (qtif_type_find),
11971         (plugin_init):
11972           Add typefinder for QuickTime Image Files (see #366156).
11973
11974 2006-10-28  Tim-Philipp Müller  <tim at centricular dot net>
11975
11976         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init):
11977           Another typo fix (#366212).
11978
11979 2006-10-27  Wim Taymans  <wim@fluendo.com>
11980
11981         * gst/volume/gstvolume.c: (volume_transform_ip):
11982         Use stream time to synchronize volume property instead of rather random
11983         timestamps. This is needed when gnonlin does its time shifting.
11984
11985 2006-10-27  Wim Taymans  <wim@fluendo.com>
11986
11987         Patch by: Mark Nauwelaerts <manauw at skynet dot be>
11988
11989         * ext/ogg/gstoggmux.c: (gst_ogg_mux_release_pad):
11990         Remove the pad from the element in release_pad. Fixes #364812.
11991
11992 2006-10-27  Tim-Philipp Müller  <tim at centricular dot net>
11993
11994         * sys/ximage/ximagesink.c: (gst_ximagesink_get_type):
11995         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_type):
11996           Explicitly create our custom buffer classes at a thread-safe
11997           location as well, since g_type_class_ref() doesn't seem to be
11998           entirely thread-safe either (#365501; also see #349410).
11999
12000 2006-10-26  Tim-Philipp Müller  <tim at centricular dot net>
12001
12002         * gst-libs/gst/riff/riff-read.c: (freeform_string_to_utf8),
12003         (gst_riff_parse_info):
12004           If strings in INFO chunk are not UTF-8, do something similar to
12005           what we do for ID3v1 tags: check a number of environment variables
12006           (GST_AVI_TAG_ENCODING, GST_RIFF_TAG_ENCODING, GST_TAG_ENCODING) for
12007           character sets to try, otherwise try the current locale and/or fall
12008           back on ISO-8859-1. Fixes #360552.
12009
12010 2006-10-23  Tim-Philipp Müller  <tim at centricular dot net>
12011
12012         * gst/videotestsrc/gstvideotestsrc.c:
12013         (gst_video_test_src_pattern_get_type),
12014         (gst_video_test_src_set_pattern):
12015         * gst/videotestsrc/gstvideotestsrc.h:
12016         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_checkers1),
12017         (gst_video_test_src_checkers2), (gst_video_test_src_checkers4),
12018         (gst_video_test_src_checkers8):
12019         * gst/videotestsrc/videotestsrc.h:
12020           Add a bunch of exciting new checkers patterns.
12021
12022 2006-10-23  Tim-Philipp Müller  <tim at centricular dot net>
12023
12024         * gst/subparse/Makefile.am:
12025         * gst/subparse/gstsubparse.c:
12026         (gst_sub_parse_data_format_autodetect),
12027         (gst_sub_parse_format_autodetect), (handle_buffer),
12028         (gst_sub_parse_chain), (gst_subparse_type_find), (plugin_init):
12029         * gst/subparse/gstsubparse.h:
12030         * gst/subparse/tmplayerparse.c: (tmplayer_parse_line),
12031         (parse_tmplayer):
12032         * gst/subparse/tmplayerparse.h:
12033           Add support for TMPlayer-type subtitles (#362845).
12034
12035         * tests/check/elements/subparse.c: (test_tmplayer_do_test),
12036         (GST_START_TEST), (subparse_suite):
12037           Add some basic unit tests for the above.
12038
12039 2006-10-23  Tim-Philipp Müller  <tim at centricular dot net>
12040
12041         * tests/check/elements/audiorate.c: (test_injector_base_init),
12042         (test_injector_class_init), (test_injector_chain),
12043         (test_injector_init), (probe_cb), (do_perfect_stream_test),
12044         (GST_START_TEST), (audiorate_suite):
12045           More tests for audiorate: inject buffers to check behaviour when
12046           buffers overlap.
12047
12048 2006-10-21  Tim-Philipp Müller  <tim at centricular dot net>
12049
12050         * tests/check/Makefile.am:
12051         * tests/check/elements/.cvsignore:
12052         * tests/check/elements/audiorate.c: (probe_cb), (got_buf),
12053         (do_perfect_stream_test), (GST_START_TEST), (audiorate_suite):
12054           Add some basic unit tests for audiorate. Disabled at the moment
12055           since it doesn't pass yet (see bug #363119).
12056
12057 2006-10-20  Tim-Philipp Müller  <tim at centricular dot net>
12058
12059         * gst/subparse/gstsubparse.c: (subrip_fix_up_markup),
12060         (parse_subrip), (handle_buffer):
12061           Add missing closing tags for markup and fix broken markup,
12062           otherwise pango won't render anything (fixes #357531). Also,
12063           make sure the text we send out is always NUL-terminated
12064           (better safe than sorry etc.).
12065
12066         * tests/check/elements/subparse.c: (test_srt_do_test),
12067         (test_srt):
12068           Some more tests for .srt incl. tests for the above stuff.
12069
12070 2006-10-20  Julien MOUTTE  <julien@moutte.net>
12071
12072         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put):
12073         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
12074         Patch by: Stefan Kost  <ensonic@users.sf.net>
12075         Try to redraw borders only when needed. Apparently this consumes
12076         resources on small devices... :-O (#363607)
12077
12078 2006-10-20  Michael Smith  <msmith@fluendo.com>
12079
12080         * gst/tcp/gstmultifdsink.c:
12081         (gst_multi_fd_sink_client_queue_buffer):
12082           If caps change, then update the client's idea of the caps so that we
12083           don't end up re-sending streamheaders for every single buffer after
12084           the caps change.
12085
12086 2006-10-20  Michael Smith  <msmith@fluendo.com>
12087
12088         * ext/ogg/gstoggparse.c: (gst_ogg_parse_dispose),
12089         (gst_ogg_parse_append_header), (gst_ogg_parse_chain):
12090           Set caps on pushed buffers; fix up refcounting of caps objects.
12091
12092 2006-10-19  Tim-Philipp Müller  <tim at centricular dot net>
12093
12094         * gst/typefind/gsttypefindfunctions.c: (mmsh_type_find),
12095         (plugin_init):
12096           Typefind mmsh header data packet to application/x-mmsh (#362625).
12097
12098 2006-10-19  Tim-Philipp Müller  <tim at centricular dot net>
12099
12100         * tests/check/Makefile.am:
12101         * tests/check/elements/.cvsignore:
12102         * tests/check/elements/subparse.c: (buffer_from_static_string),
12103         (setup_subparse), (teardown_subparse), (test_srt_do_test),
12104         (GST_START_TEST), (subparse_suite):
12105           Add very simple unit test for subparse.
12106
12107 2006-10-19  Tim-Philipp Müller  <tim at centricular dot net>
12108
12109         * gst/subparse/gstsubparse.c: (strip_trailing_newlines),
12110         (parse_subrip):
12111           Strip trailing newlines from subtitle text output.
12112
12113 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
12114
12115         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
12116         (gst_sub_parse_change_state):
12117           Fix memleak; clear subparse->textbuf n state change function.
12118
12119 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
12120
12121         * gst/subparse/gstsubparse.c:
12122         (gst_sub_parse_data_format_autodetect):
12123           Don't require subrip (.srt) files to start with a chunk number of 1.
12124
12125 2006-10-18  Wim Taymans  <wim@fluendo.com>
12126
12127         * gst-libs/gst/audio/gstbaseaudiosink.c:
12128         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
12129         * gst-libs/gst/audio/gstbaseaudiosink.h:
12130         Extract rate from the NEWSEGMENT event.
12131         Use commit_full to also take rate adjustment into account when writing
12132         samples to the ringbuffer.
12133         
12134         * gst-libs/gst/audio/gstringbuffer.c:
12135         (gst_ring_buffer_commit_full), (gst_ring_buffer_commit),
12136         (gst_ring_buffer_read):
12137         * gst-libs/gst/audio/gstringbuffer.h:
12138         Added _commit_full() to also take rate into account.
12139         Use simple interpolation algorithm to resample audio.
12140         API: gst_ring_buffer_commit_full()
12141
12142         * tests/examples/seek/scrubby.c: (speed_cb), (do_seek):
12143         * tests/examples/seek/seek.c: (segment_done):
12144         Don't try to seek with 0.0 rate, just pause instead.
12145         Remove bogus debug line.
12146
12147 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
12148
12149         * gst/playback/gstplaybasebin.c: (subbin_startup_sync_msg),
12150         (setup_source):
12151           Catch async errors when starting up the subtitle bin, so we can
12152           stop waiting and continue with the main film instead of hanging
12153           forever. Fixes #339366.
12154
12155         * tests/check/elements/playbin.c: (playbin_suite):
12156           Enable unit test for the above.
12157
12158 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
12159
12160         * tests/check/Makefile.am:
12161         * tests/check/elements/.cvsignore:
12162         * tests/check/elements/playbin.c: (GST_START_TEST),
12163         (gst_red_video_src_uri_get_type),
12164         (gst_red_video_src_uri_get_protocols),
12165         (gst_red_video_src_uri_get_uri), (gst_red_video_src_uri_set_uri),
12166         (gst_red_video_src_uri_handler_init),
12167         (gst_red_video_src_init_type), (gst_red_video_src_base_init),
12168         (gst_red_video_src_create), (gst_red_video_src_class_init),
12169         (gst_red_video_src_init), (plugin_init), (playbin_suite):
12170           Some small and basic unit tests for playbin; not very useful yet,
12171           but at least a start.
12172
12173 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
12174
12175         * gst/playback/gstplaybin.c: (setup_sinks):
12176           The old pad activation spiel.
12177
12178 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
12179
12180         * gst/playback/gstplaybasebin.c: (setup_source):
12181           Don't hang forever if the subbin already fails to start up in 
12182           the state change to PAUSED (#339366).
12183
12184 2006-10-17  Tim-Philipp Müller  <tim at centricular dot net>
12185
12186         * gst-libs/gst/interfaces/tuner.c: (gst_tuner_list_channels),
12187         (gst_tuner_set_channel), (gst_tuner_get_channel),
12188         (gst_tuner_list_norms), (gst_tuner_set_norm), (gst_tuner_get_norm),
12189         (gst_tuner_set_frequency), (gst_tuner_get_frequency),
12190         (gst_tuner_signal_strength), (gst_tuner_find_norm_by_name),
12191         (gst_tuner_find_channel_by_name):
12192           Fix some function guards, add some more function guards.
12193
12194 2006-10-17  Jan Schmidt  <thaytan@mad.scientist.com>
12195
12196         * gst/playback/gstdecodebin.c: (get_our_ghost_pad),
12197         (remove_element_chain):
12198         Don't return a pad from get_our_ghost_pad unless it is actually the
12199         one we want.
12200         Change a cast in remove_element_chain slightly.
12201
12202 2006-10-13  Julien MOUTTE  <julien@moutte.net>
12203
12204         * tests/examples/seek/seek.c: (do_seek), (start_seek),
12205         (rate_spinbutton_changed_cb), (segment_done), (msg_state_changed):
12206         Segment seeking needs to use the rate and set stop to -1.
12207
12208 2006-10-13  Wim Taymans  <wim@fluendo.com>
12209
12210         * gst-libs/gst/audio/gstbaseaudiosink.c:
12211         (gst_base_audio_sink_setcaps):
12212         Don't crash when ringbuffer is not yet created.
12213         Patch by: Ville Syrjala <ville dot syrjala at movial dot fi>
12214         Fixes #361634.
12215
12216         * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
12217         * gst/playback/gststreamselector.c:
12218         (gst_stream_selector_request_new_pad):
12219         Activate pads befre adding them to running elements.
12220
12221 2006-10-13  Julien MOUTTE  <julien@moutte.net>
12222
12223         * tests/examples/seek/seek.c: (do_seek), (start_seek),
12224         (rate_spinbutton_changed_cb), (msg_state_changed): Stop the scale
12225         updater when we start grabing the slider. Don't wait for the
12226         pipeline to be PAUSED.
12227
12228 2006-10-13  Tim-Philipp Müller  <tim at centricular dot net>
12229
12230         * gst-libs/gst/interfaces/mixer.c: (gst_mixer_list_tracks),
12231         (gst_mixer_set_volume), (gst_mixer_get_volume),
12232         (gst_mixer_set_mute), (gst_mixer_set_option),
12233         (gst_mixer_get_option), (gst_mixer_mute_toggled),
12234         (gst_mixer_record_toggled), (gst_mixer_volume_changed),
12235         (gst_mixer_option_changed):
12236           Guard mixer interface functions against bogus arguments.
12237
12238 2006-10-12  Julien MOUTTE  <julien@moutte.net>
12239
12240         * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
12241         (play_cb), (pause_cb), (stop_cb), (rate_spinbutton_changed_cb),
12242         (msg_state_changed), (main): Use state-changed messages to trigger
12243         start/stop of scale update timer. Indeed the scale slider was
12244         jumping here and there because the update timer was activated 
12245         before seek completed. This fixes instant applying of rate changes
12246         by pressing the spinbutton like a crazy man !
12247
12248 2006-10-12  Tim-Philipp Müller  <tim at centricular dot net>
12249
12250         Patch by: Sebastien Cote  <sebas642 at yahoo.ca>
12251
12252         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
12253         (gst_basertppayload_finalize):
12254           Fix two small memory leaks (#361456).
12255
12256 2006-10-10  Julien MOUTTE  <julien@moutte.net>
12257
12258         * tests/examples/seek/seek.c: (do_seek),
12259         (rate_spinbutton_changed_cb): When changing spinbutton we try
12260         to change the rate on the fly.
12261
12262 2006-10-10  Wim Taymans  <wim@fluendo.com>
12263
12264         * gst-libs/gst/riff/riff-ids.h:
12265         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
12266         (gst_riff_create_audio_template_caps):
12267         Add WMS caps.
12268
12269 2006-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
12270
12271         Patch by: Josep Torra Valles <josep@fluendo.com>
12272
12273         * ext/gnomevfs/gstgnomevfssink.c:
12274         * ext/gnomevfs/gstgnomevfssrc.c:
12275         Fix URI interface implementation return type.
12276         * ext/pango/gsttextoverlay.c: (gst_text_overlay_set_property):
12277         Fix what looks like a copy/paste issue when assigning values.
12278         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
12279         (gst_audio_filter_template_get_type):
12280         Cast to prevent Forte warnings.
12281         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
12282         Fix URI interface implementation return type.
12283         gst_pad_query_position requires a signed integer pointer as
12284         3rd parameter, GstClockTime is unsigned.
12285         * gst/audioconvert/audioconvert.c:
12286         Fix integer overflow when treated as signed.
12287         * gst/audioresample/resample.c: (resample_add_input_data):
12288         Cast to prevent warnings on Forte.
12289         * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette):
12290         Fix integer overflow when treated as signed.
12291         * gst/ffmpegcolorspace/imgconvert_template.h:
12292         Fix integer overflow when treated as signed. RGBA_OUT shifts bits.
12293         * gst/playback/gstdecodebin.c: (queue_filled_cb),
12294         (cleanup_decodebin):
12295         Who initialises a guint to -1!
12296         Cast function pointers to prevent warnings on Forte.
12297         * gst/playback/gstplaybasebin.c: (queue_deadlock_check),
12298         (queue_threshold_reached):
12299         Cast function pointers correctly to prevent warnings on Forte.
12300         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
12301         Cast function pointers correctly to prevent warnings on Forte.
12302         * gst/subparse/gstssaparse.c: (gst_ssa_parse_setcaps):
12303         Obvious change to unsigned, 0xEF > max signed char.
12304         * gst/tcp/gstmultifdsink.c: (get_buffers_max), (count_burst_unit):
12305         GstClockTime is unsigned, initialise correctly.
12306         * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
12307         Cast so pointer arithemetic doesn't cause warnings on Forte.
12308         * gst/videorate/gstvideorate.c:
12309         Use correct return value.
12310         * tests/examples/seek/scrubby.c:
12311         GstClockTime is unsigned, initialise correctly.
12312
12313 2006-10-10  Tim-Philipp Müller  <tim at centricular dot net>
12314
12315         Patch by: Ferenc Gerlits  <fgerlits at gmail com>
12316
12317         * gst/typefind/gsttypefindfunctions.c:
12318           Recognise XML files and XML-like files shorter than 256 bytes as
12319           well (fixes #359237).
12320
12321 2006-10-09  Edgard Lima <edgard.lima@indt.org.br>
12322
12323         Patch by: Renato Filho <renato.filho@indt.org.br>
12324         
12325         * gst/typefind/gsttypefindfunctions.c:
12326         Added typefind functions to video/x-nuv media.
12327         
12328 2006-10-08  Tim-Philipp Müller  <tim at centricular dot net>
12329
12330         * gst-libs/gst/interfaces/xoverlay.c:
12331         (gst_x_overlay_set_xwindow_id), (gst_x_overlay_expose):
12332           Some more guards against invalid input.
12333
12334 2006-10-07  Julien MOUTTE  <julien@moutte.net>
12335
12336         * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event): 
12337         Useless goto.
12338         * tests/examples/seek/seek.c: (do_seek),
12339         (rate_spinbutton_changed_cb), (main): Add a rate spinbutton in
12340         seek example to experiment with rates != 1.0 (reverse playback !)
12341
12342 2006-10-06  Stefan Kost  <ensonic@users.sf.net>
12343
12344         * gst-libs/gst/interfaces/xoverlay.c:
12345           Unref message in doc-example (spotted by Robert McQueen)
12346
12347 2006-10-06  Wim Taymans  <wim@fluendo.com>
12348
12349         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
12350         (mpeg1_parse_header), (mpeg1_sys_type_find):
12351         printf fix.
12352
12353 2006-10-06  Wim Taymans  <wim@fluendo.com>
12354
12355         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
12356         (close_pad_link):
12357         * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
12358         Activate dynamic pads before adding them to the element.
12359
12360 2006-10-06  Michael Smith  <msmith@fluendo.com>
12361
12362         * gst-libs/gst/floatcast/floatcast.h:
12363           Fix obviously-bogus macros; use the correct types.
12364
12365 2006-10-06  Wim Taymans  <wim@fluendo.com>
12366
12367         * gst-libs/gst/rtp/gstbasertpdepayload.c:
12368         (gst_base_rtp_depayload_change_state):
12369         Also call parent state change function to activate pads.
12370
12371         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
12372         (mpeg1_parse_header), (mpeg1_sys_type_find):
12373         Add some more debug info in mpeg typefinding.
12374
12375 2006-10-06  Michael Smith  <msmith@fluendo.com>
12376
12377         * ext/theora/theoradec.c: (theora_dec_chain):
12378           Zero byte theora packets are valid and well-defined; don't warn on
12379           them.
12380
12381 2006-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
12382
12383         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
12384         (gst_multi_fd_sink_get_stats), (find_limits),
12385         (gst_multi_fd_sink_queue_buffer):
12386           API: add dropped_buffers to the get-stats GValueArray
12387
12388 2006-10-05  Tim-Philipp Müller  <tim at centricular dot net>
12389
12390         * ext/alsa/gstalsadeviceprobe.c:
12391         (gst_alsa_device_property_probe_get_values):
12392         * ext/alsa/gstalsasink.c: (set_hwparams):
12393         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_elem_pad),
12394         (gst_ogg_chain_new_stream), (gst_ogg_demux_read_chain):
12395         * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers),
12396         (gst_ogg_mux_process_best_pad):
12397         * ext/ogg/gstoggparse.c: (gst_ogg_parse_new_stream),
12398         (gst_ogg_parse_chain):
12399         * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header):
12400         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
12401         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_setup),
12402         (gst_vorbis_enc_buffer_check_discontinuous):
12403         * ext/vorbis/vorbisparse.c: (vorbis_parse_src_query):
12404         * gst-libs/gst/audio/gstbaseaudiosink.c:
12405         (gst_base_audio_sink_render):
12406         * gst-libs/gst/cdda/gstcddabasesrc.c:
12407         (gst_cdda_base_src_handle_track_seek):
12408         * gst-libs/gst/rtp/gstbasertpdepayload.c:
12409         (gst_base_rtp_depayload_push_full):
12410         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
12411         * gst/audioresample/resample.c: (resample_input_pushthrough):
12412         * gst/playback/gstplaybasebin.c: (queue_out_of_data):
12413         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_handle_clients):
12414         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
12415         (wavpack_type_find):
12416         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
12417         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
12418         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new):
12419         * tests/check/elements/volume.c: (GST_START_TEST):
12420           Printf format fixes.
12421
12422 2006-10-04  Thomas Vander Stichele  <thomas at apestaart dot org>
12423
12424         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_caps):
12425           Fix a simple mistake (see the docs)
12426           Fixes #359580
12427
12428 2006-10-03  Tim-Philipp Müller  <tim at centricular dot net>
12429
12430         * docs/plugins/Makefile.am:
12431         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12432         * docs/plugins/gst-plugins-base-plugins-sections.txt:
12433         * docs/plugins/gst-plugins-base-plugins.args:
12434         * docs/plugins/gst-plugins-base-plugins.hierarchy:
12435         * docs/plugins/inspect/plugin-adder.xml:
12436         * docs/plugins/inspect/plugin-alsa.xml:
12437         * docs/plugins/inspect/plugin-audioconvert.xml:
12438         * docs/plugins/inspect/plugin-audiorate.xml:
12439         * docs/plugins/inspect/plugin-audioresample.xml:
12440         * docs/plugins/inspect/plugin-audiotestsrc.xml:
12441         * docs/plugins/inspect/plugin-cdparanoia.xml:
12442         * docs/plugins/inspect/plugin-decodebin.xml:
12443         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
12444         * docs/plugins/inspect/plugin-gdp.xml:
12445         * docs/plugins/inspect/plugin-gnomevfs.xml:
12446         * docs/plugins/inspect/plugin-libvisual.xml:
12447         * docs/plugins/inspect/plugin-ogg.xml:
12448         * docs/plugins/inspect/plugin-pango.xml:
12449         * docs/plugins/inspect/plugin-playbin.xml:
12450         * docs/plugins/inspect/plugin-subparse.xml:
12451         * docs/plugins/inspect/plugin-tcp.xml:
12452         * docs/plugins/inspect/plugin-theora.xml:
12453         * docs/plugins/inspect/plugin-typefindfunctions.xml:
12454         * docs/plugins/inspect/plugin-video4linux.xml:
12455         * docs/plugins/inspect/plugin-videorate.xml:
12456         * docs/plugins/inspect/plugin-videoscale.xml:
12457         * docs/plugins/inspect/plugin-videotestsrc.xml:
12458         * docs/plugins/inspect/plugin-volume.xml:
12459         * docs/plugins/inspect/plugin-vorbis.xml:
12460         * docs/plugins/inspect/plugin-ximagesink.xml:
12461         * docs/plugins/inspect/plugin-xvimagesink.xml:
12462           Add vorbistag element to docs; update version numbers to 0.10.10.1.
12463
12464 2006-10-03  Tim-Philipp Müller  <tim at centricular dot net>
12465
12466         Patch by: James "Doc" Livingston <doclivingston at gmail com>
12467
12468         * ext/vorbis/Makefile.am:
12469         * ext/vorbis/vorbis.c: (plugin_init):
12470         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_class_init),
12471         (vorbis_parse_parse_packet), (vorbis_parse_chain):
12472         * ext/vorbis/vorbisparse.h:
12473         * ext/vorbis/vorbistag.c: (gst_vorbis_tag_base_init),
12474         (gst_vorbis_tag_class_init), (gst_vorbis_tag_init),
12475         (gst_vorbis_tag_parse_packet):
12476         * ext/vorbis/vorbistag.h:
12477           Add new vorbistag element which derives from vorbisparse
12478           and is essentially the same as well, only that it implements
12479           the GstTagSetter interface and can modify the stream's
12480           vorbiscomment on the fly (#335635).
12481
12482         * tests/check/Makefile.am:
12483         * tests/check/elements/.cvsignore:
12484         * tests/check/elements/vorbistag.c: (setup_vorbistag),
12485         (cleanup_vorbistag), (buffer_probe), (start_pipeline),
12486         (get_buffer), (stop_pipeline), (_create_codebook_header_buffer),
12487         (_create_audio_buffer), (GST_START_TEST), (vorbistag_suite):
12488           Add unit test for new vorbistag element.
12489
12490 2006-10-03  Tim-Philipp Müller  <tim at centricular dot net>
12491
12492         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init),
12493         (vorbis_parse_push_headers), (vorbis_parse_chain):
12494           Set BOS flag in packet structure to fix 'jump depends
12495           on unitialized value' errors in valgrind; various minor
12496           clean-ups.
12497
12498 2006-09-30  Jan Schmidt  <thaytan@mad.scientist.com>
12499
12500         * gst/playback/gstdecodebin.c: (close_pad_link):
12501         Fix typo in a debug statement.
12502
12503         * gst/playback/gstplaybasebin.c: (probe_triggered),
12504         (new_decoded_pad_full), (new_decoded_pad), (subs_new_decoded_pad),
12505         (gen_source_element), (source_new_pad), (analyse_source),
12506         (setup_source):
12507         When handling no_more_pads in new_decoded_pad, make sure to treat
12508         subtitle pads correctly. Fixes playback with subtitle files.
12509
12510         Move a recurring message to LOG level.
12511
12512         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
12513         The maximum value for the Xv colorkey on this Radeon is 0xFFFFFFFF,
12514         which ends up as -1 when cast to an int. Make the logic handle the
12515         max value as an unsigned mask and only change the colorkey when it's
12516         a value we recognise.
12517
12518 2006-09-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
12519
12520         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
12521         Removed empty * between paragraphs
12522
12523 2006-09-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
12524
12525         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
12526         * gst-libs/gst/rtp/README:
12527         Moved some documentation into .c file
12528
12529 2006-09-29  Wim Taymans  <wim@fluendo.com>
12530
12531         * gst/playback/gstdecodebin.c: (no_more_pads):
12532         Fix compilation.
12533
12534 2006-09-29  Wim Taymans  <wim@fluendo.com>
12535
12536         * gst/playback/gstdecodebin.c: (new_caps):
12537         Remove g_print
12538
12539         * gst/playback/gstplaybin.c:
12540         Add some docs.
12541
12542 2006-09-29  Tim-Philipp Müller  <tim at centricular dot net>
12543
12544         * tests/check/Makefile.am:
12545           Re-enable cddabasesrc test to see if it works again
12546           now.
12547
12548 2006-09-29  Wim Taymans  <wim@fluendo.com>
12549
12550         * gst/playback/gstplaybasebin.c: (setup_subtitle),
12551         (gen_source_element):
12552         Handle invalid URIs a bit more gracefully.
12553
12554 2006-09-29  Tim-Philipp Müller  <tim at centricular dot net>
12555
12556         * tests/check/pipelines/oggmux.c:
12557           Remove obsolete comment.
12558
12559 2006-09-29  Michael Smith  <msmith@fluendo.com>
12560
12561         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
12562         (gst_ogg_mux_release_pad), (gst_ogg_mux_push_buffer),
12563         (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
12564         (gst_ogg_mux_send_headers), (gst_ogg_mux_process_best_pad),
12565         (gst_ogg_mux_collected):
12566           Commit patch from James "Doc" Livingston, adds proper EOS handling
12567           in oggmux. GStreamer can, for the first time ever, create a valid
12568           Ogg file! Yay!
12569
12570         * tests/check/pipelines/oggmux.c: (check_chain_final_state),
12571         (oggmux_suite):
12572           Reenable tests now that they pass.
12573
12574 2006-09-29  Wim Taymans  <wim@fluendo.com>
12575
12576         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_handle_clients):
12577         Stop reading commands when EOF (we read 0) as well.
12578
12579 2006-09-28  Wim Taymans  <wim@fluendo.com>
12580
12581         * gst/playback/gstdecodebin.c: (dynamic_create), (dynamic_free),
12582         (close_pad_link), (dynamic_remove), (no_more_pads), (new_caps),
12583         (find_dynamic), (unlinked), (close_link):
12584         Implement delayed caps linking needed for element with a lot of
12585         different caps on the src pads that get fixed at runtime.
12586         Improve management of dynamic elements.
12587
12588         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
12589         (group_destroy), (group_commit), (check_queue), (queue_overrun),
12590         (gen_preroll_element), (remove_groups), (unknown_type),
12591         (add_element_stream), (no_more_pads_full), (no_more_pads),
12592         (sub_no_more_pads), (source_no_more_pads), (preroll_unlinked),
12593         (new_decoded_pad), (setup_subtitle), (array_has_value),
12594         (gen_source_element), (source_new_pad), (has_all_raw_caps),
12595         (analyse_source), (remove_decoders), (make_decoder),
12596         (remove_source), (setup_source), (finish_source), (prepare_output),
12597         (gst_play_base_bin_change_state):
12598         * gst/playback/gstplaybasebin.h:
12599         Use more _CAST instead of full type checking casts.
12600         Small cleanups, plug some leaks.
12601         Handle dynamic sources.
12602         Add some helper functions to create lists of strings used for
12603         blacklisting and other stuff.
12604         Refactor some code dealing with analysing the source.
12605         Re-enable sources without pads (like cd:// or other selfcontained
12606         elements).
12607
12608 2006-09-28  Wim Taymans  <wim@fluendo.com>
12609
12610         * gst-libs/gst/audio/gstbaseaudiosink.c:
12611         (gst_base_audio_sink_render):
12612         When we have a timestamp, we can still perform clipping.
12613         When we have no clock, we must play the sample ASAP.
12614
12615 2006-09-28  Wim Taymans  <wim@fluendo.com>
12616
12617         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
12618         Set caps on outgoing buffers.
12619
12620         * gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
12621         (gst_video_rate_event), (gst_video_rate_chain):
12622         * gst/videorate/gstvideorate.h:
12623         Fix videorate some more. Fixes #357977
12624
12625 2006-09-28  Tim-Philipp Müller  <tim at centricular dot net>
12626
12627         * tests/check/elements/adder.c: (adder_suite):
12628           Don't set timeout to 6 seconds when we're running
12629           in valgrind ... (and how is 6 seconds longer than
12630           the default anyway?)
12631
12632 2006-09-28  Wim Taymans  <wim@fluendo.com>
12633
12634         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
12635         (gst_audio_rate_sink_event), (gst_audio_rate_convert),
12636         (gst_audio_rate_convert_segments), (gst_audio_rate_chain):
12637         Keep sink and src segment to keep track of time and support more
12638         input formats.
12639         Fix bogus next_offset and run_time calculation, don't understand how
12640         this could have worked before. Fixes #357976.
12641         Remove some unneeded vars.
12642
12643 2006-09-28  Tim-Philipp Müller  <tim at centricular dot net>
12644
12645         * gst/playback/gstplaybin.c: (remove_sinks):
12646           Only remove visualisation from visbin if there is a visbin (or:
12647           don't throw warnings when closing totem without playing a file).
12648
12649 2006-09-27  Wim Taymans  <wim@fluendo.com>
12650
12651         * gst-libs/gst/audio/gstbaseaudiosink.c:
12652         (gst_base_audio_sink_render):
12653         Add some more info in a WARNING.
12654
12655         * gst-libs/gst/audio/gstbaseaudiosrc.c:
12656         (gst_base_audio_src_create):
12657         Handle PAUSE in create function, use new -core addition to
12658         wait for playing. Fixes pausing and resuming capture from an
12659         audiosrc.
12660
12661         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
12662         (gst_ring_buffer_read):
12663         Constify some more.
12664         Caller supports interrupted reads now.
12665
12666 2006-09-27  Tim-Philipp Müller  <tim at centricular dot net>
12667
12668         * tests/check/Makefile.am:
12669           Another attempt to make the gen64 buildbot happy.
12670
12671 2006-09-27  Stefan Kost  <ensonic@users.sf.net>
12672
12673         Patch by: Jonathan Matthew <jonathan@kaolin.wh9.net>
12674
12675         * ext/libvisual/visual.c: (gst_visual_clear_actors),
12676         (gst_visual_chain), (gst_visual_change_state):
12677           Libvisual plugin was not passing audio data to libvisual 0.4.0 
12678           correctly. Fixes #357800
12679
12680 2006-09-27  Tim-Philipp Müller  <tim at centricular dot net>
12681
12682         * tests/check/pipelines/simple-launch-lines.c: (run_pipeline):
12683           Add timeout to _get_state() so we see which pipeline it is
12684           that causes trouble on the gen64 build bot.
12685
12686 2006-09-27  Wim Taymans  <wim@fluendo.com>
12687
12688         * gst-libs/gst/rtp/gstbasertpdepayload.c:
12689         (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_push_full),
12690         (gst_base_rtp_depayload_push_ts), (gst_base_rtp_depayload_process),
12691         (gst_base_rtp_depayload_set_gst_timestamp):
12692         the source pad always uses fixed caps.
12693
12694 2006-09-27  Wim Taymans  <wim@fluendo.com>
12695
12696         * docs/libs/gst-plugins-base-libs-docs.sgml:
12697         * docs/libs/gst-plugins-base-libs-sections.txt:
12698         * gst-libs/gst/audio/gstaudioclock.c:
12699         * gst-libs/gst/audio/gstaudioclock.h:
12700         * gst-libs/gst/audio/gstaudiosink.c:
12701         * gst-libs/gst/audio/gstaudiosink.h:
12702         * gst-libs/gst/audio/gstaudiosrc.c:
12703         * gst-libs/gst/audio/gstbaseaudiosink.c:
12704         (gst_base_audio_sink_render):
12705         * gst-libs/gst/audio/gstbaseaudiosink.h:
12706         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init):
12707         * gst-libs/gst/audio/gstbaseaudiosrc.h:
12708         * gst-libs/gst/audio/gstringbuffer.h:
12709         Added docs for the audio libs.
12710
12711 2006-09-27  Tim-Philipp Müller  <tim at centricular dot net>
12712
12713         * tests/check/Makefile.am:
12714           Temporarily disable test that fails on the bots for unknown reasons.
12715
12716 2006-09-26 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
12717
12718         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
12719         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
12720         Moved AudioCodecType into priv
12721         Renamed all gst_basertpaudiopayload to gst_base_rtp_audio_payload prefixes
12722
12723 2006-09-25  Wim Taymans  <wim@fluendo.com>
12724
12725         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
12726         (add_fakesink), (remove_fakesink), (pad_probe), (close_pad_link),
12727         (is_demuxer_element), (try_to_link_1), (get_our_ghost_pad),
12728         (new_pad):
12729         Cleanups and small leak fixes.
12730         Added Depayloaders to valid list of autopluggable elements.
12731
12732 2006-09-25  Wim Taymans  <wim@fluendo.com>
12733
12734         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
12735         (gst_play_bin_vis_blocked), (gst_play_bin_set_property),
12736         (gen_video_element), (gen_text_element), (gen_audio_element),
12737         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
12738         (gst_play_bin_set_clock_func), (gst_play_bin_change_state):
12739         Detect NO_PREROLL state change returns and disable clock distribution to
12740         the sinks so that sync is disabled.
12741         Avoid some type checking and do simple casts instead.
12742         Small cleanups, fix some FIXMEs.
12743         Be more robust when linking user specified elements, catch an report
12744         errors. Fixes #357404.
12745         Fix some leaks in the error paths.
12746
12747 2006-09-25  Stefan Kost  <ensonic@users.sf.net>
12748
12749         * ChangeLog:
12750           ChangeLog surgery for missing bug-number
12751
12752 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
12753
12754         Patch by: Peter Kjellerstedt  <pkj at axis com>
12755
12756         * gst/playback/test.c:
12757           Fix compilation with uClibc and -Werror (#357591).
12758
12759 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
12760
12761         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
12762           Parse dates that are followed by a time as well (#357532).
12763
12764         * tests/check/libs/tag.c: (test_vorbis_tags):
12765           Add unit test for this.
12766
12767 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
12768
12769         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
12770         (gst_audio_convert_transform_caps):
12771         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_unicolor):
12772         * gst/videotestsrc/videotestsrc.h:
12773           A few array const-ifications.
12774
12775 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
12776
12777         * tests/check/Makefile.am:
12778           See if this makes the build bots happy.
12779
12780         * tests/check/libs/cddabasesrc.c:
12781           UTF8-ise my name.
12782
12783 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
12784
12785         Patch by: Young-Ho Cha <ganadist at chollian dot net>
12786
12787         * gst/subparse/samiparse.c: (handle_start_font),
12788         (fix_invalid_entities):
12789           More case-insensitivity for certain tags; recognise entities with
12790           decimal codes as special entities as well (#357330).
12791
12792 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
12793
12794         * gst-libs/gst/Makefile.am:
12795           Need to build tag directory before cdda.
12796
12797 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
12798
12799         * docs/libs/gst-plugins-base-libs-sections.txt:
12800         * gst-libs/gst/cdda/Makefile.am:
12801         * gst-libs/gst/cdda/gstcddabasesrc.c:
12802         (gst_cdda_base_src_base_init):
12803         * gst-libs/gst/cdda/gstcddabasesrc.h:
12804         * gst-libs/gst/tag/tag.h:
12805         * gst-libs/gst/tag/tags.c: (gst_tag_register_tags_internal),
12806         (gst_tag_register_musicbrainz_tags):
12807           Move GST_TAG_CDDA_* tags into libgsttag and make libgstcddabasesrc
12808           depend on libgsttag. This is required so we can extract/read tags like
12809           DISCID without depending on libgstcddabasesrc (which used to register
12810           them).
12811
12812         * gst-libs/gst/tag/gstvorbistag.c:
12813           Add vorbiscomment mapping for CDDB_DISCID and MUSICBRAINZ_DISCID
12814           tags (also see #347848).
12815
12816         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_metadata_set1):
12817           Log vorbis comments we are actually writing. Const-ify array.
12818
12819 2006-09-23  Wim Taymans  <wim@fluendo.com>
12820
12821         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
12822         Improve buffering a bit by avoiding a deadlock because we cannot assume
12823         the underrun is always called.
12824
12825 2006-09-23  Wim Taymans  <wim@fluendo.com>
12826
12827         Patch by: Young-Ho Cha <ganadist at chollian dot net>
12828
12829         * gst-libs/gst/riff/riff-ids.h:
12830         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
12831         (gst_riff_create_audio_template_caps):
12832         Added MPEG-4 AAC and id and caps. Fixes #357289
12833         Added WMA9 Lossless id.
12834
12835 2006-09-22  Tim-Philipp Müller  <tim at centricular dot net>
12836
12837         * ext/gnomevfs/gstgnomevfssrc.c:
12838           Fix misleading docs addition.
12839
12840         * tests/check/elements/videotestsrc.c: (check_rgb_buf):
12841           Get rid of compiler warning the right way.
12842
12843 2006-09-22  Wim Taymans  <wim@fluendo.com>
12844
12845         * gst-libs/gst/rtp/gstbasertpdepayload.c:
12846         (gst_base_rtp_depayload_finalize),
12847         (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain),
12848         (gst_base_rtp_depayload_push_full),
12849         (gst_base_rtp_depayload_push_ts), (gst_base_rtp_depayload_push),
12850         (gst_base_rtp_depayload_process),
12851         (gst_base_rtp_depayload_set_gst_timestamp),
12852         (gst_base_rtp_depayload_queue_release):
12853         * gst-libs/gst/rtp/gstbasertpdepayload.h:
12854         Small cleanups.
12855         Fix some leaks.
12856         Refactored the process method and added methods to push from the process
12857         vmethod.
12858         Use _scale functions.
12859         API: gst_base_rtp_depayload_push_ts
12860         API: gst_base_rtp_depayload_push
12861
12862         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
12863         timestamps are uint.
12864
12865 2006-09-22  Stefan Kost  <ensonic@users.sf.net>
12866
12867         * gst-libs/gst/interfaces/xoverlay.c:
12868           Remove unused statement from doc example.
12869
12870 2006-09-21  Stefan Kost  <ensonic@users.sf.net>
12871
12872         * gst-libs/gst/interfaces/videoorientation.c:
12873         (gst_video_orientation_iface_init),
12874         (gst_video_orientation_get_hflip),
12875         (gst_video_orientation_get_vflip),
12876         (gst_video_orientation_get_hcenter),
12877         (gst_video_orientation_get_vcenter),
12878         (gst_video_orientation_set_hflip),
12879         (gst_video_orientation_set_vflip),
12880         (gst_video_orientation_set_hcenter),
12881         (gst_video_orientation_set_vcenter):
12882           Add since tags to new API docs, ChangeLog surgery (forgot API keyword
12883           in ChangeLog)
12884
12885 2006-09-21  Tim-Philipp Müller  <tim at centricular dot net>
12886
12887         * tests/check/Makefile.am:
12888         * tests/check/elements/.cvsignore:
12889         * tests/check/elements/ffmpegcolorspace.c: (rgb_format_to_caps),
12890         (create_rgb_conversions), (rgb_conversion_free),
12891         (right_shift_colour), (fix_expected_colour), (check_rgb_buf),
12892         (got_buf_cb), (GST_START_TEST), (ffmpegcolorspace_suite):
12893           Add unit test for ffmpegcolorspace (RGB <=> RGB only so far),
12894           but disable for now since it doesn't pass (something wrong with
12895           RGBA somewhere).
12896
12897 2006-09-21  Wim Taymans  <wim@fluendo.com>
12898
12899         * gst/playback/gstplaybasebin.c: (group_commit),
12900         (queue_deadlock_check), (queue_overrun), (queue_threshold_reached),
12901         (queue_out_of_data), (gen_preroll_element),
12902         (preroll_remove_overrun), (probe_triggered):
12903         Refactor handling of overrun detection.
12904         Separate handling of group completion and deadlock detection when doing
12905         network buffering. This should fix some deadlocks that were not detected
12906         because the group was completed.
12907         Add more comments, improve debugging.
12908
12909 2006-09-21  Wim Taymans  <wim@fluendo.com>
12910
12911         * tests/check/elements/gdpdepay.c: (GST_START_TEST):
12912         * tests/check/libs/audio.c:
12913         Some more compilation fixes.
12914
12915 2006-09-21  Wim Taymans  <wim@fluendo.com>
12916
12917         * gst-libs/gst/audio/gstringbuffer.c:
12918         (gst_ring_buffer_samples_done), (gst_ring_buffer_commit),
12919         (gst_ring_buffer_read):
12920         Early morning compilation fix.
12921
12922 2006-09-20  Wim Taymans  <wim@fluendo.com>
12923
12924         * tests/check/elements/gdpdepay.c: (GST_START_TEST):
12925         * tests/check/elements/multifdsink.c: (GST_START_TEST):
12926         * tests/check/elements/videorate.c: (GST_START_TEST):
12927         * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
12928         * tests/check/pipelines/oggmux.c: (eos_buffer_probe):
12929         Fix some warnings.
12930
12931 2006-09-20  Stefan Kost  <ensonic@users.sf.net>
12932
12933         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
12934         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
12935         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_show_frame):
12936           Handcrafted merge to help CVS understanding what I changed and what
12937           not.
12938
12939 2006-09-20  Stefan Kost  <ensonic@users.sf.net>
12940
12941         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
12942         (gst_xvimagesink_get_times):
12943           change colorkey behaviour back according to #354773 comment 6/7
12944
12945 2006-09-19  Michael Smith  <msmith@fluendo.com>
12946
12947         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
12948         (gst_multi_fd_sink_class_init), (get_buffers_max), (find_limits),
12949         (gst_multi_fd_sink_recover_client),
12950         (gst_multi_fd_sink_queue_buffer), (gst_multi_fd_sink_set_property),
12951         (gst_multi_fd_sink_get_property):
12952         * gst/tcp/gstmultifdsink.h:
12953           Implement stubbed out properties unit-type, units-soft-max,
12954           units-max, to allow specifying maximum sizes in units other than
12955           buffers.
12956           Fixes #355935
12957
12958 2006-09-19  Wim Taymans  <wim@fluendo.com>
12959
12960         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
12961         (gst_riff_create_audio_template_caps):
12962         Reorder the audio formats a bit for clarity.
12963         Detect and create caps for MSGSM and MSN (WAV49).
12964         Fixes #356596.
12965
12966         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
12967         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
12968         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_show_frame):
12969         Small cleanups, move error handling out of normal flow for clarity.
12970
12971 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
12972
12973         * docs/libs/gst-plugins-base-libs-docs.sgml:
12974         * docs/libs/gst-plugins-base-libs.types:
12975         * gst-libs/gst/interfaces/Makefile.am:
12976         * gst-libs/gst/interfaces/videoorientation.c:
12977         (gst_video_orientation_get_type),
12978         (gst_video_orientation_iface_init),
12979         (gst_video_orientation_get_hflip),
12980         (gst_video_orientation_get_vflip),
12981         (gst_video_orientation_get_hcenter),
12982         (gst_video_orientation_get_vcenter),
12983         (gst_video_orientation_set_hflip),
12984         (gst_video_orientation_set_vflip),
12985         (gst_video_orientation_set_hcenter),
12986         (gst_video_orientation_set_vcenter):
12987         * gst-libs/gst/interfaces/videoorientation.h:
12988           API: Add new interface to control video orientation (fixes #354908)
12989
12990 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
12991
12992         * gst/videotestsrc/gstvideotestsrc.c:
12993           Use G_UNLIKELY in _create and log one more detail.
12994           
12995         (gst_video_test_src_get_times), (gst_video_test_src_create):
12996         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
12997           Use gst_util_uint64_scale_int in _get_times().
12998
12999 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
13000
13001         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support)
13002           Give better warning message (add object and detail).
13003
13004 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
13005
13006         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
13007         (gst_xvimagesink_get_times):
13008           xvimage assumed that XV_COLORKEY can be set in RGB888 format (fixes
13009           #354773), use gst_util_uint64_scale_int in _get_times()
13010
13011 2006-09-18  Michael Smith  <msmith@fluendo.com>
13012
13013         * ext/ogg/gstoggmux.c: (gst_ogg_mux_push_buffer):
13014           Timestamps are unsigned; comparision against GST_CLOCK_TIME_NONE was
13015           always true, leading to dropping all timestamps.
13016
13017 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
13018
13019         * ext/libvisual/visual.c: (gst_vis_src_negotiate),
13020         (gst_visual_chain), (gst_visual_change_state):
13021           update to work also with libvisual 0.4 API, fix double unref (#355914)
13022           
13023         * tools/gst-launch-ext.1.in:
13024         * tools/gst-visualise.1.in:
13025           remove references to old man-pages
13026
13027         * tests/examples/seek/seek.c: (main):
13028           add real meadi-buttons, add tool-tips for the seek-options, arrange
13029           seek options in a table
13030
13031 2006-09-18  Michael Smith  <msmith@fluendo.com>
13032
13033         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear),
13034         (gst_ogg_mux_push_buffer):
13035           Don't generate out-of-order timestamps from oggmux, instead clamp
13036           output timestamps to be >= the previously output ts.
13037           Fixes #355595
13038
13039 2006-09-18  Michael Smith  <msmith@fluendo.com>
13040
13041         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
13042         (gst_multi_fd_sink_class_init):
13043           Updates, fixes, and typo corrections for multifdsink. No functional
13044           changes.
13045
13046 2006-09-17  Michael Smith  <msmith@fluendo.com>
13047
13048         * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find):
13049           Don't crash on truncated files - check that we got an 8 byte buffer
13050           before trying to memcmp it.
13051
13052 2006-09-17  Tim-Philipp Müller  <tim at centricular dot net>
13053
13054         * gst/playback/gstplaybasebin.c: (get_active_source):
13055           Make stream-switching appear instant to the application
13056           (ie. make sure that a g_object_get on 'current-foo' returns
13057           the stream previously set with g_object_set(). Totem needs
13058           this to update stream-related meta-info (like audio-codec)
13059           correctly when switching streams.
13060
13061 2006-09-17  Tim-Philipp Müller  <tim at centricular dot net>
13062
13063         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_find_master_mixer),
13064         (gst_alsa_mixer_ensure_track_list):
13065           Try harder to guess which mixer track is the master mixer
13066           track (instead of just taking the first one that has a pvolume).
13067           Fixes #342228.
13068
13069 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
13070
13071         reviewed by: <delete if not using a buddy>
13072
13073         * gst-libs/gst/audio/audio.h:
13074         * gst/audiotestsrc/gstaudiotestsrc.c: (plugin_init):
13075
13076 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
13077
13078         * gst/audioconvert/gstaudioconvert.c: (set_structure_widths),
13079         (gst_audio_convert_transform_caps):
13080           Get structure-name just once.
13081
13082 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
13083
13084         * tests/check/elements/audioresample.c: (GST_START_TEST):
13085         * tests/check/elements/videotestsrc.c: (check_rgb_buf):
13086         * tests/check/elements/volume.c: (GST_START_TEST):
13087         * tests/check/elements/vorbisdec.c: (GST_START_TEST):
13088         * tests/check/pipelines/oggmux.c: (validate_ogg_page), (eos_watch),
13089         (test_pipeline), (GST_START_TEST):
13090         * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
13091         * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
13092           Fix big batch of compiler warnings.
13093
13094 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
13095
13096         * ext/gnomevfs/gstgnomevfssrc.c:
13097           Add docs about icydemux usage in connection with gnomevfssrc
13098
13099         * ext/libvisual/visual.c:
13100         * ext/ogg/gstoggaviparse.c:
13101         * ext/ogg/gstoggdemux.c:
13102         * ext/ogg/gstoggmux.c:
13103         * ext/ogg/gstoggparse.c:
13104         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
13105         * gst-libs/gst/audio/gstaudiosink.c:
13106         * gst-libs/gst/audio/gstaudiosrc.c:
13107         * gst/audiorate/gstaudiorate.c:
13108           More G_OBJECT macro fixing.
13109
13110         * gst/audiotestsrc/gstaudiotestsrc.h:
13111           Fix wrong info in header due to copy & paste
13112
13113 2006-09-15  Wim Taymans  <wim@fluendo.com>
13114
13115         * gst-libs/gst/audio/gstbaseaudiosink.c:
13116         (gst_base_audio_sink_get_time), (gst_base_audio_sink_callback):
13117         * gst-libs/gst/audio/gstbaseaudiosrc.c:
13118         (gst_base_audio_src_get_time), (gst_base_audio_src_fixate),
13119         (gst_base_audio_src_get_times), (gst_base_audio_src_get_offset),
13120         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
13121         Do the delay calculation in the source/sink base classes as this is
13122         specific for the capture/playback mode.
13123         Try to fixate a bit better, like round depth up to a multiple of 8
13124         bigger than width.
13125         Handle underruns correctly by marking DISCONT on buffers and adjusting
13126         timestamps to handle the gap.
13127         Set offset/offset_end correctly on buffers.
13128
13129         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_pause),
13130         (gst_ring_buffer_samples_done), (gst_ring_buffer_commit),
13131         (gst_ring_buffer_read):
13132         Remove resync and underrun recovery from the ringbuffer.
13133         Fix ringbuffer read code on under/overrun.
13134
13135 2006-09-15  Wim Taymans  <wim@fluendo.com>
13136
13137         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
13138         (gst_play_base_bin_init), (fill_buffer), (check_queue),
13139         (queue_threshold_reached), (gst_play_base_bin_set_property),
13140         (gst_play_base_bin_get_property):
13141         * gst/playback/gstplaybasebin.h:
13142         Don't use a 0 low watermark when buffering, it is catching starvation
13143         way too late. Instead, use a 3 second queue with 30 and 95
13144         percent low/high watermarks. 
13145         Added queue-min-threshold property to configure low watermark.
13146         Use new _buffering message API.
13147         Make queue_threshold variable big enough to store a uint64 time value.
13148         API: playbin::queue-min-threshold property.
13149
13150 2006-09-15  Wim Taymans  <wim@fluendo.com>
13151
13152         * configure.ac:
13153         We require 0.10.10.1 now because of _wait_preroll().
13154
13155         * gst-libs/gst/audio/gstbaseaudiosink.c:
13156         (gst_base_audio_sink_render):
13157         Use gst_base_sink_wait_preroll().
13158
13159 2006-09-15  Wim Taymans  <wim@fluendo.com>
13160
13161         * ext/alsa/gstalsasink.c: (xrun_recovery), (gst_alsasink_write):
13162         * ext/alsa/gstalsasrc.c: (xrun_recovery), (gst_alsasrc_read):
13163         Use DEBUG_OBJECT more.
13164
13165 === release 0.10.10 ===
13166
13167 2006-09-07  Thomas Vander Stichele  <thomas at apestaart dot org>
13168
13169         patch by: Michael Smith <msmith at fluendo dot com>
13170
13171         * gst/tcp/gstmultifdsink.c: (is_sync_frame),
13172         (gst_multi_fd_sink_client_queue_buffer),
13173         (gst_multi_fd_sink_new_client):
13174         * tests/check/elements/multifdsink.c: (GST_START_TEST),
13175         (multifdsink_suite):
13176           Fix implementation of sync-method 'next-keyframe'
13177           Closes #354594
13178
13179 2006-09-07  Thomas Vander Stichele  <thomas at apestaart dot org>
13180
13181         patch by: Wim Taymans <wim at fluendo dot com>
13182
13183         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
13184         This patch removes the RANDOM flag that was incorrectly introduced with
13185         revision 1.91.  Fixes #354590
13186
13187 2006-09-05  Tim-Philipp Müller  <tim at centricular dot net>
13188
13189         * tests/check/Makefile.am:
13190           Random variation in Makefile line to see if it makes the
13191           gen64-base-full bot any happier.
13192
13193 2006-09-04  Tim-Philipp Müller  <tim at centricular dot net>
13194
13195         * tests/check/pipelines/oggmux.c: (oggmux_suite):
13196           Disable test that fails at the moment (killed after timeout).
13197
13198 2006-09-04  Tim-Philipp Müller  <tim at centricular dot net>
13199
13200         Patch by: James Livingston  <doclivingston at gmail.com>
13201
13202         * tests/check/Makefile.am:
13203         * tests/check/pipelines/.cvsignore:
13204         * tests/check/pipelines/oggmux.c: (get_page_codec),
13205         (check_chain_final_state), (fail_if_audio), (validate_ogg_page),
13206         (eos_buffer_probe), (start_pipeline), (stop_pipeline), (eos_watch),
13207         (test_pipeline), (test_vorbis), (test_theora), (test_vorbis_theora),
13208         (test_theora_vorbis), (oggmux_suite):
13209           Add simple unit test for oggmux from #337026 with checking for the
13210           EOS flags disabled for the time being.
13211
13212 2006-09-04  Wim Taymans  <wim@fluendo.com>
13213
13214         patch by: Alessandro Dessina <alessandro nnva org>
13215
13216         * ext/ogg/gstoggmux.c:
13217         Add cmml caps to oggmux. Fixes #353912
13218
13219 2006-09-02  Tim-Philipp Müller  <tim at centricular dot net>
13220
13221         * tests/check/elements/videotestsrc.c: (check_rgb_buf):
13222           Returning a return value often helps. In this case, we
13223           don't need the return value anyway, so just get rid of it.
13224           Should make build bots much happier.
13225
13226 2006-09-02  Tim-Philipp Müller  <tim at centricular dot net>
13227
13228         * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure),
13229         (paint_get_structure), (gst_video_test_src_get_size),
13230         (gst_video_test_src_smpte), (gst_video_test_src_snow),
13231         (gst_video_test_src_unicolor), (paint_setup_AYUV),
13232         (paint_hline_AYUV), (paint_setup_ARGB8888), (paint_setup_ABGR8888),
13233         (paint_setup_RGBA8888), (paint_setup_BGRA8888), (paint_hline_str4):
13234         * gst/videotestsrc/videotestsrc.h:
13235           Add support for AYUV and the various RGBA formats. Initialise
13236           fields of paintinfo structs allocated on the stack.
13237
13238         * tests/check/elements/videotestsrc.c: (right_shift_colour),
13239         (fix_expected_colour), (check_rgb_buf), (got_buf_cb),
13240         (check_rgb_buf), (videotestsrc_suite):
13241           Add unit tests for videotestsrc's RGB output.
13242
13243 2006-09-01  Tim-Philipp Müller  <tim at centricular dot net>
13244
13245         * gst/videotestsrc/gstvideotestsrc.c:
13246         (gst_video_test_src_pattern_get_type),
13247         (gst_video_test_src_set_pattern):
13248         * gst/videotestsrc/gstvideotestsrc.h:
13249         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_unicolor),
13250         (gst_video_test_src_black), (gst_video_test_src_white),
13251         (gst_video_test_src_red), (gst_video_test_src_green),
13252         (gst_video_test_src_blue):
13253         * gst/videotestsrc/videotestsrc.h:
13254           Add more uni-colour patterns ("white", "red", "green", and "blue").
13255
13256 2006-09-01  Tim-Philipp Müller  <tim at centricular dot net>
13257
13258         * gst/videotestsrc/videotestsrc.c: (paint_setup_YVYU):
13259           Fix stride for YVYU, should be word-aligned (#353658).
13260
13261 2006-08-31  Tim-Philipp Müller  <tim at centricular dot net>
13262
13263         * gst/adder/gstadder.c: (gst_adder_src_event):
13264           Fix build.
13265
13266 2006-08-31  Edward Hervey  <edward@fluendo.com>
13267
13268         * gst/adder/gstadder.c: (forward_event_func),
13269         (gst_adder_src_event), (gst_adder_collected),
13270         (gst_adder_change_state):
13271         * gst/adder/gstadder.h:
13272         Remember the start position asked in the incoming seeks, so we can
13273         output GST_EVENT_NEW_SEGMENT with a correct position value (instead
13274         of assuming it will always be 0).
13275
13276 2006-08-31  Edward Hervey  <edward@fluendo.com>
13277
13278         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
13279         (gst_ogg_demux_finalize), (gst_ogg_demux_perform_seek),
13280         (gst_ogg_demux_loop):
13281         Send the GST_EVENT_NEW_SEGMENT from the streaming thread.
13282
13283 2006-08-30  Tim-Philipp Müller  <tim at centricular dot net>
13284
13285         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
13286         (gst_ffmpegcsp_get_unit_size):
13287           Return FALSE instead of returning a random false unit
13288           size when the format isn't known/supported (even if
13289           this shouldn't happen under normal circumstances).
13290
13291 2006-08-29  Wim Taymans  <wim@fluendo.com>
13292
13293         Patch by: Tim-Philipp Müller  <tim at centricular dot net>
13294
13295         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create),
13296         (gst_gnome_vfs_src_start):
13297         Try harder to get the size from a uri by using _info_uri() when
13298         _info_from_handle() does not give us enough info. 
13299         Also follow symlinks when getting the size.
13300         Partially Fixes #332864.
13301
13302 2006-08-29  Tim-Philipp Müller  <tim at centricular dot net>
13303
13304         Patch by: Viktor Peters  <viktor dot peters at gmail dot com>
13305
13306         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_ensure_track_list),
13307         (gst_alsa_mixer_update), (gst_alsa_mixer_get_volume),
13308         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
13309         (gst_alsa_mixer_set_record):
13310         * ext/alsa/gstalsamixertrack.c:
13311         (gst_alsa_mixer_track_update_alsa_capabilities),
13312         (alsa_track_has_cap), (gst_alsa_mixer_track_new),
13313         (gst_alsa_mixer_track_update):
13314         * ext/alsa/gstalsamixertrack.h:
13315           Improve and fix mixer track handling, in particular better handling
13316           of alsa's pvolume/pswitch/cvolume/cswitch capabilities; create
13317           separate track objects for tracks that have both capture and playback
13318           volume (and label them differently as well so they're not mistakenly
13319           assumed to be duplicates); classify mixer tracks that only affect
13320           the audible volume of something (rather than the capture volume)
13321           as playback tracks. Redefine/fix meaning of RECORD and MUTE flags
13322           for capture tracks to correspond to alsa-pswitch alsa-cswitch
13323           (following the meaning documented in the mixer interface header
13324           file); add support for alsa's exclusive cswitch groups; update/sync
13325           state/flags better if mixer settings are changed by another
13326           application. Fixes #336075.
13327
13328 2006-08-29  Tim-Philipp Müller  <tim at centricular dot net>
13329
13330         * gst/playback/gstplaybin.c:
13331           Improve docs: add section about BUFFERING messages sent by playbin.
13332
13333 2006-08-29  Michael Smith  <msmith@fluendo.com>
13334
13335         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_push_buffer),
13336         (gst_vorbis_enc_buffer_check_discontinuous),
13337         (gst_vorbis_enc_chain):
13338           Ignore explicit DISCONT marked on buffers (which is often spurious,
13339           particularly when using multiple segments), in favour of solely
13340           using the timestamps/durations.
13341
13342 2006-08-29  Edward Hervey  <edward@fluendo.com>
13343
13344         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
13345         Don't rely on incoming buffers offset anymore, since it is completely
13346         broken when using multiple segments.
13347         Instead convert the incoming buffers timestamp to running time, and
13348         then convert that value to the offsets.
13349         Also inform GstSegment of the last outputted stop position, which is
13350         needed if we received several segments with an unknown stop value.
13351
13352 2006-08-29  Thomas Vander Stichele  <thomas at apestaart dot org>
13353
13354         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_chain):
13355           fix buffer unreffing on a header push failure
13356
13357 2006-08-28  Wim Taymans  <wim@fluendo.com>
13358
13359         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_sink_event),
13360         (gst_audio_rate_chain):
13361         Make the metadata of the buffer writable before changing its
13362         flags.
13363
13364 2006-08-28  Wim Taymans  <wim@fluendo.com>
13365
13366         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
13367         (gst_audio_rate_setcaps), (gst_audio_rate_init),
13368         (gst_audio_rate_sink_event), (gst_audio_rate_src_event),
13369         (gst_audio_rate_chain), (gst_audio_rate_change_state):
13370         Fix audiorate some more.
13371         Reset and resync counters on flush and READY.
13372         Handle the DISCONT flag correctly.
13373         Use GstSegment to track position.
13374         Fail when not negotiated.
13375         Fixes #353234.
13376
13377 2006-08-25  Michael Smith  <msmith@fluendo.com>
13378
13379         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
13380           Fix spelling.
13381           Remove accidently included debug line.
13382
13383 2006-08-25  Wim Taymans  <wim@fluendo.com>
13384
13385         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
13386         Small cleanups.
13387         If a buffer is received with no caps, make the buffer metadata
13388         writable and set the caps, making sure that we don't screw up the
13389         refcounts.
13390
13391 2006-08-25  Michael Smith  <msmith@fluendo.com>
13392
13393         * gst/gdp/gstgdppay.c: (gst_gdp_pay_reset),
13394         (gst_gdp_pay_reset_streamheader), (gst_gdp_pay_chain):
13395           Fix memory leaks and misleading debug messages, add a couple of
13396           comments.
13397
13398         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_get_stats),
13399         (gst_multi_fd_sink_render):
13400           Do not use gst_buffer_make_writable() in a basesink render method,
13401           as it may incorrectly unref the buffer. Instead, use convoluted
13402           dance to avoid copying the buffer except when we need to.
13403
13404 2006-08-25  Michael Smith  <msmith@fluendo.com>
13405
13406         * ext/vorbis/vorbisenc.c:
13407         (gst_vorbis_enc_buffer_check_discontinuous):
13408           Allow very small discontinuities in the timestamps. These we can't
13409           do anything useful with anyway (because vorbis's timestamps have
13410           only sample granularity), and are commonly produced by elements with
13411           minor bugs. Allow up to 1/2 a sample out.
13412           Fixes #351742.
13413
13414 2006-08-24  Wim Taymans  <wim@fluendo.com>
13415
13416         * tests/examples/seek/seek.c: (seek_cb), (start_seek), (stop_seek),
13417         (play_scrub_toggle_cb), (main):
13418         Add a checkbox to enable play scrubbing. Makes it possible to disable
13419         normal scrubbing.
13420
13421 2006-08-23  Stefan Kost  <ensonic@users.sf.net>
13422
13423         * tests/check/elements/.cvsignore:
13424           make buildbot happy
13425
13426 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
13427
13428         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_base_init),
13429         (gst_ogm_video_parse_base_init), (gst_ogm_text_parse_base_init),
13430         (gst_ogm_parse_class_init), (gst_ogm_parse_dispose),
13431         (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
13432         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
13433         (gst_ogm_parse_stream_header), (gst_ogm_parse_comment_packet),
13434         (gst_ogm_text_parse_strip_trailing_zeroes),
13435         (gst_ogm_parse_data_packet), (gst_ogm_parse_chain),
13436         (gst_ogm_parse_sink_event), (gst_ogm_parse_change_state):
13437           Refactor ogm parse, do better input checking, misc. clean-ups.
13438           Cache incoming events and push them once the source pad has
13439           been created. Don't pass unterminated strings to sscanf().
13440           Strip trailing zeroes from subtitle text output, since they
13441           are not valid UTF-8. Don't push vorbiscomment packets on
13442           the subtitle text pad. Output perfect streams if possible.
13443
13444 2006-08-23  Wim Taymans  <wim@fluendo.com>
13445
13446         * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
13447         Waits for tasks to settle down so that we clean up correctly for 
13448         valgrind.
13449
13450 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
13451
13452         * tests/check/libs/tag.c: (GST_START_TEST), (taglists_are_equal):
13453           Unit test fixes: \377 is more likely to fit into 8 bits than \777;
13454           actually return return value in taglists_are_equal.
13455
13456 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
13457
13458         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
13459           Fix crash due to broken bitstream parsing on x86-64: can't make
13460           any assumptions about sizeof(struct) due to alignment/packing
13461           differences on different architectures. Fixes #351790.
13462
13463 2006-08-22  Wim Taymans  <wim@fluendo.com>
13464
13465         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
13466         (gst_riff_parse_chunk), (gst_riff_parse_file_header),
13467         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
13468         (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
13469         (gst_riff_parse_info):
13470         Protect public functions against bad input.
13471         Do some cleanups.
13472         Fix documentation.
13473
13474 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
13475
13476         * gst-libs/gst/riff/riff-ids.h:
13477         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
13478           Add voxware audio IDs (even if we can't play it) (#351795).
13479
13480 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
13481
13482         * gst-libs/gst/riff/riff-media.c:
13483         (gst_riff_create_video_template_caps),
13484         (gst_riff_create_audio_template_caps),
13485         (gst_riff_create_iavs_template_caps):
13486           Const-ify some arrays and use G_N_ELEMENTS instead
13487           of wasting oodles of RAM on terminator bits.
13488
13489 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
13490
13491         * gst-libs/gst/tag/gstvorbistag.c:
13492         (gst_tag_list_to_vorbiscomment_buffer):
13493         * tests/check/libs/tag.c: (GST_START_TEST):
13494           And the same for _to_vorbiscomment_buffer(): allow
13495           id_data_len == 0 for speex.
13496
13497 2006-08-21  Thomas Vander Stichele  <thomas at apestaart dot org>
13498
13499         * configure.ac:
13500         * docs/plugins/Makefile.am:
13501         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
13502         * docs/plugins/gst-plugins-base-plugins-sections.txt:
13503         * docs/plugins/inspect/plugin-gdp.xml:
13504         * gst/gdp/Makefile.am:
13505         * tests/check/Makefile.am:
13506           Move GDP plugin to -base from -bad.  Closes #347783.
13507
13508 2006-08-21  Tim-Philipp Müller  <tim at centricular dot net>
13509
13510         * gst-libs/gst/tag/gstvorbistag.c:
13511         (gst_tag_list_from_vorbiscomment_buffer):
13512           Allow id_data_len == 0 (needed for vorbis comments in Speex files).
13513           Also add some checks to make sure we don't memcmp() beyond the end of
13514           vorbiscomment buffer if the ID to check for is larger than the buffer.
13515
13516         * tests/check/libs/tag.c: (GST_START_TEST):
13517           Some more tests for gst_tag_list_from_vorbiscomment_buffer().
13518
13519 2006-08-21  Tim-Philipp Müller  <tim at centricular dot net>
13520
13521         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_metadata_set1),
13522         (gst_vorbis_enc_set_metadata):
13523           Use vorbis comment utility functions from libgsttag
13524           instead of re-inventing the wheel (partially fixes #347091).
13525
13526 2006-08-21  Jan Schmidt  <thaytan@mad.scientist.com>
13527
13528         * tests/check/elements/audioconvert.c: (GST_START_TEST):
13529         Fix leaks. Wait for state transitions that might happen ASYNC, as well
13530         as some that won't.
13531
13532 2006-08-21  Wim Taymans  <wim@fluendo.com>
13533
13534         * docs/libs/Makefile.am:
13535         * docs/libs/gst-plugins-base-libs-sections.txt:
13536         * docs/libs/gst-plugins-base-libs.types:
13537         Don't try to GObject scan the netbuffer as it's not a GObject.
13538         Fixes #351308.
13539
13540         * gst-libs/gst/netbuffer/gstnetbuffer.c:
13541         * gst-libs/gst/netbuffer/gstnetbuffer.h:
13542         Document GstNetBuffer.
13543
13544 2006-08-21  Stefan Kost  <ensonic@users.sf.net>
13545
13546         * tests/check/elements/audioconvert.c: (GST_START_TEST),
13547         (audioconvert_suite):
13548           Add testcase for caps-size-explosion
13549
13550 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
13551
13552         * gst/audioconvert/gstaudioconvert.c:
13553         (gst_audio_convert_get_unit_size), (set_structure_widths):
13554           Lower debug, use g_assert in _get_unit_size
13555
13556         * gst/audioresample/gstaudioresample.c:
13557         (audioresample_get_unit_size):
13558         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
13559         (gst_ffmpegcsp_get_unit_size):
13560         * gst/videoscale/gstvideoscale.c: (gst_video_scale_get_unit_size):
13561           use g_assert in _get_unit_size
13562
13563 2006-08-18  Wim Taymans  <wim@fluendo.com>
13564
13565         * docs/libs/gst-plugins-base-libs-sections.txt:
13566         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_set_packet_len),
13567         (gst_rtp_buffer_pad_to), (gst_rtp_buffer_get_payload_subbuffer),
13568         (gst_rtp_buffer_get_payload_buffer):
13569         * gst-libs/gst/rtp/gstrtpbuffer.h:
13570         Document GstRTPBuffer.
13571         Added function to efficiently strip payload headers.
13572         API: gst_rtp_buffer_get_payload_subbuffer()
13573
13574 2006-08-17  Tim-Philipp Müller  <tim at centricular dot net>
13575
13576         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
13577         (gst_tag_to_vorbis_comments):
13578           Serialise unknown vorbis comments into GST_TAG_EXTENDED_COMMENT
13579           tags and deserialise them properly as well (#347091).
13580           Add some more gtk-doc blurbs and also some g_return_if_fail().
13581
13582         * tests/check/libs/tag.c: (GST_START_TEST),
13583         (back_to_vorbis_comments), (taglists_are_equal), (tag_suite):
13584           More tests.
13585
13586 2006-08-17  Wim Taymans  <wim@fluendo.com>
13587
13588         * ext/ogg/Makefile.am:
13589         * ext/ogg/gstogg.c: (plugin_init):
13590         * ext/ogg/gstoggaviparse.c: (gst_ogg_avi_parse_get_type),
13591         (gst_ogg_avi_parse_base_init), (gst_ogg_avi_parse_class_init),
13592         (gst_ogg_avi_parse_init), (gst_ogg_avi_parse_finalize),
13593         (gst_ogg_avi_parse_setcaps), (gst_ogg_avi_parse_event),
13594         (gst_ogg_avi_parse_push_packet), (gst_ogg_avi_parse_chain),
13595         (gst_ogg_avi_parse_change_state), (gst_ogg_avi_parse_plugin_init):
13596         Added ogg-in-avi parser element. Fixes #140139.
13597
13598         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
13599         Fixed a bug in oggdemux debug code.
13600
13601         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
13602         (gst_riff_create_audio_template_caps):
13603         Recognise Ogg in the AVI extensible wave format.
13604
13605 2006-08-17  Tim-Philipp Müller  <tim at centricular dot net>
13606
13607         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
13608           Make buffer durations add up (duration should be next_ts-ts for
13609           perfect streams). Fixes CD ripping to Ogg/Vorbis with vorbisenc
13610           from CVS.
13611
13612         * tests/check/libs/cddabasesrc.c: (gst_cd_foo_src_close),
13613         (test_buffer_timestamps), (cddabasesrc_suite):
13614           Add unit test for the above.
13615
13616         * tests/check/Makefile.am:
13617           Don't know why cddabasesrc test was in VALGRIND_TO_FIX, remove
13618           to see what happens.
13619
13620 2006-08-16  Wim Taymans  <wim@fluendo.com>
13621
13622         * ext/alsa/gstalsasink.c: (gst_alsasink_set_property),
13623         (gst_alsasink_open):
13624         * ext/alsa/gstalsasrc.c: (gst_alsasrc_set_property),
13625         (gst_alsasrc_open):
13626         Avoid setting and using a NULL device name.
13627         Print more info when we fail to open a device.
13628
13629 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
13630
13631         * docs/libs/gst-plugins-base-libs-sections.txt:
13632         * gst-libs/gst/tag/tag.h:
13633         * gst-libs/gst/tag/tags.c: (gst_tag_parse_extended_comment):
13634           API: add gst_tag_parse_extended_comment() (#351426).
13635
13636         * tests/check/Makefile.am:
13637         * tests/check/libs/.cvsignore:
13638         * tests/check/libs/tag.c: (GST_START_TEST), (tag_suite), (main):
13639           Add unit test for gst_tag_parse_extended_comment().
13640
13641 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
13642
13643         * sys/ximage/ximagesink.c: (gst_ximagesink_get_property):
13644         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_property):
13645           Fix leak (#351502).
13646
13647 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
13648
13649         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
13650         * docs/plugins/gst-plugins-base-plugins-sections.txt:
13651         * docs/plugins/gst-plugins-base-plugins.args:
13652         * gst/playback/gstplaybin.c:
13653           Document playbin.
13654           
13655         * docs/plugins/inspect/plugin-adder.xml:
13656         * docs/plugins/inspect/plugin-alsa.xml:
13657         * docs/plugins/inspect/plugin-audioconvert.xml:
13658         * docs/plugins/inspect/plugin-audiorate.xml:
13659         * docs/plugins/inspect/plugin-audioresample.xml:
13660         * docs/plugins/inspect/plugin-audiotestsrc.xml:
13661         * docs/plugins/inspect/plugin-cdparanoia.xml:
13662         * docs/plugins/inspect/plugin-decodebin.xml:
13663         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
13664         * docs/plugins/inspect/plugin-gnomevfs.xml:
13665         * docs/plugins/inspect/plugin-ogg.xml:
13666         * docs/plugins/inspect/plugin-pango.xml:
13667         * docs/plugins/inspect/plugin-playbin.xml:
13668         * docs/plugins/inspect/plugin-subparse.xml:
13669         * docs/plugins/inspect/plugin-tcp.xml:
13670         * docs/plugins/inspect/plugin-theora.xml:
13671         * docs/plugins/inspect/plugin-typefindfunctions.xml:
13672         * docs/plugins/inspect/plugin-video4linux.xml:
13673         * docs/plugins/inspect/plugin-videorate.xml:
13674         * docs/plugins/inspect/plugin-videoscale.xml:
13675         * docs/plugins/inspect/plugin-videotestsrc.xml:
13676         * docs/plugins/inspect/plugin-volume.xml:
13677         * docs/plugins/inspect/plugin-vorbis.xml:
13678         * docs/plugins/inspect/plugin-ximagesink.xml:
13679         * docs/plugins/inspect/plugin-xvimagesink.xml:
13680           Update to CVS version.
13681
13682 2006-08-14  Tim-Philipp Müller  <tim at centricular dot net>
13683
13684         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
13685         (gst_play_bin_set_property), (gst_play_bin_get_property),
13686         (value_list_append_structure_list),
13687         (gst_play_bin_handle_redirect_message),
13688         (gst_play_bin_handle_message):
13689           API: GstPlayBin::connection-speed
13690           Add "connection-speed" property; re-order redirect messages with
13691           multiple redirect locations depending on the minimum bitrate if
13692           that information is available and a connection speed is set
13693           (#350399).
13694
13695 2006-08-14  Tim-Philipp Müller  <tim at centricular dot net>
13696
13697         * gst/playback/gstplaybin.c:
13698           Update max volume to the same value that the volume element uses.
13699
13700 2006-08-14  Wim Taymans  <wim@fluendo.com>
13701
13702         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
13703         Less uglyness..
13704
13705 2006-08-14  Wim Taymans  <wim@fluendo.com>
13706
13707         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_submit_buffer),
13708         (gst_ogg_demux_get_next_page), (gst_ogg_demux_perform_seek),
13709         (gst_ogg_demux_read_chain), (gst_ogg_demux_loop):
13710         Add some more debug info.
13711         Don't crash when a seek failed.
13712         Actually return the result of the seek instead of TRUE.
13713         Ignore multiple BOS pages with the same serial so that we don't create
13714         the same stream multiple times.
13715         Post an error when we fail to do the initial seek.
13716
13717 2006-08-13  Wim Taymans  <wim@fluendo.com>
13718
13719         * ext/alsa/gstalsa.c: (gst_alsa_detect_rates),
13720         (gst_alsa_detect_channels), (gst_alsa_probe_supported_formats):
13721         Small code cleanup.
13722
13723         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
13724         (gst_alsa_mixer_new):
13725         Remove hack that always set the device to hw:0*.
13726         Properly find the card name for whatever device was configured.
13727         Do some better debugging.
13728         Fixes #350784.
13729
13730         * ext/alsa/gstalsamixerelement.c:
13731         (gst_alsa_mixer_element_set_property),
13732         (gst_alsa_mixer_element_change_state):
13733         Cleanups.
13734         Handle setting of a NULL device name better.
13735
13736 2006-08-11  Wim Taymans  <wim@fluendo.com>
13737
13738         * gst/adder/gstadder.c:
13739         Don't clip float values. Fixes #350900.
13740
13741 2006-08-11  Andy Wingo  <wingo@pobox.com>
13742
13743         * gst/tcp/gsttcp.c: Really fix the build?
13744
13745         * gst/tcp/gsttcp.h: For now, always disable deprecation here --
13746         fixes the build.
13747
13748 2006-08-10  Tim-Philipp Müller  <tim at centricular dot net>
13749
13750         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes):
13751           Float caps shouldn't have a "signed" field.
13752
13753 2006-08-10  Tim-Philipp Müller  <tim at centricular dot net>
13754
13755         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query):
13756           Implement SEEKING query in its most basic form, so that we can
13757           at least check if we're seekable or not (#350655).
13758
13759 2006-08-09  Tim-Philipp Müller  <tim at centricular dot net>
13760
13761         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
13762           The checks here are not even close to anything that would
13763           justify MAXIMUM probability, lowering to POSSIBLE until someone
13764           fixes the checks (case at hand: quicktime redirection files
13765           might start with 00 00 01 XX and pass the checks here just
13766           fine, see #350399).
13767
13768 2006-08-08  Tim-Philipp Müller  <tim at centricular dot net>
13769
13770         Patch by: Sjoerd Simons  <sjoerd at luon net>
13771
13772         * gst/typefind/gsttypefindfunctions.c: (multipart_type_find):
13773           Better detection for multipart/x-mixed-replace: accept leading
13774           whitespaces before the boundary marker as well (as our very own
13775           multipartmux used to produce) (#349068).
13776
13777 2006-08-07  Tim-Philipp Müller  <tim at centricular dot net>
13778
13779         Patch by: Young-Ho Cha  <ganadist at chollian net>
13780
13781         * gst-libs/gst/riff/riff-ids.h:
13782         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
13783         (gst_riff_create_audio_template_caps):
13784           Detect DTS audio streams (#350157).
13785
13786 2006-08-05  Andy Wingo  <wingo@pobox.com>
13787
13788         * ext/theora/gsttheoraparse.h:
13789         * ext/theora/theoraparse.c (gst_theora_parse_class_init)
13790         (theora_parse_dispose, theora_parse_set_property)
13791         (theora_parse_get_property, theora_parse_munge_granulepos)
13792         (theora_parse_push_buffer, theora_parse_change_state):
13793         API: GstTheoraParse::synchronization-points
13794         Add a property 'synchronization-points' to fix badly synchronized oggs.
13795
13796 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
13797
13798         * tests/check/Makefile.am:
13799         * tests/check/libs/.cvsignore:
13800         * tests/check/libs/audio.c: (structure_contains_channel_positions),
13801         (fixed_caps_have_channel_positions), (GST_START_TEST),
13802         (audio_suite), (main):
13803           Add a few tests for the channel position stuff in libgstaudio.
13804
13805 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
13806
13807         * ext/alsa/gstalsa.c: (caps_add_channel_configuration),
13808         (gst_alsa_detect_channels):
13809         * ext/alsa/gstalsasink.c:
13810           Add support for cards that (only) do more than 8 channels,
13811           like the Delta 44 (#345188).
13812
13813         * gst-libs/gst/audio/multichannel.c:
13814         (gst_audio_check_channel_positions):
13815         * gst-libs/gst/audio/multichannel.h:
13816           API: add GST_AUDIO_CHANNEL_POSITION_NONE, which stands for an
13817           unspecified channel position and cannot be combined with any
13818           of the other audio channel positions; adjust position layout
13819           checks accordingly (#345188).
13820
13821 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
13822
13823         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
13824           Recognise ancient RealAudio files (see #349779).
13825
13826 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
13827
13828         Patch by: Jens Granseuer  <jensgr at gmx net>
13829
13830         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
13831           Add typefinder for Interplay's MVE format (#348973).
13832
13833 2006-08-02  Wim Taymans  <wim@fluendo.com>
13834
13835         Patch by: Marcel Moreaux <marcelm at luon dot net>
13836
13837         * gst-libs/gst/rtp/gstbasertpdepayload.c:
13838         (gst_base_rtp_depayload_add_to_queue):
13839         * gst-libs/gst/rtp/gstbasertpdepayload.h:
13840         Handle RTP sequence number rollover.
13841         Disable jitterbuffer by default.
13842
13843 2006-07-28  Jan Schmidt  <thaytan@mad.scientist.com>
13844
13845         * gst/audioresample/gstaudioresample.c: (audioresample_stop),
13846         (audioresample_set_caps):
13847         Don't leak references to the incoming caps. Clean them up when
13848         stopping.
13849
13850         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
13851         (gst_video_scale_finalize):
13852         Don't leak our temporary pixel buffer.
13853
13854         * tests/check/Makefile.am:
13855         * tests/check/pipelines/simple-launch-lines.c: (run_pipeline),
13856         (GST_START_TEST), (simple_launch_lines_suite):
13857
13858         Fix leaks and re-enable the test for valgrind checking.
13859
13860 2006-07-28  Tim-Philipp Müller  <tim at centricular dot net>
13861
13862         Patch by: Sjoerd Simons  <sjoerd at luon net>
13863
13864         * gst/typefind/gsttypefindfunctions.c: (multipart_type_find),
13865         (plugin_init):
13866           Add typefind function for multipart/x-mixed-replace (#348916).
13867
13868 2006-07-28  Wim Taymans  <wim@fluendo.com>
13869
13870         * gst/adder/gstadder.c: (gst_adder_setcaps),
13871         (gst_adder_query_duration):
13872         Fix leak in duration query.
13873         Reflow some docs and notes.
13874
13875 2006-07-28  Michael Smith  <msmith@fluendo.com>
13876
13877         * tests/check/pipelines/vorbisenc.c: (GST_START_TEST),
13878         (vorbisenc_suite):
13879           Enable Andy's extra vorbisenc test, now that it passes. Also fix one
13880           aspect of it.
13881
13882 2006-07-28  Michael Smith  <msmith@fluendo.com>
13883
13884         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_generate_sink_caps),
13885         (gst_vorbis_enc_sink_getcaps), (gst_vorbis_enc_buffer_from_packet),
13886         (gst_vorbis_enc_push_buffer),
13887         (gst_vorbis_enc_buffer_check_discontinuous),
13888         (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
13889         * ext/vorbis/vorbisenc.h:
13890           Handle discontinuities in the input vorbis stream correctly,
13891           so that the output is properly timestamped (and has good granulepos
13892           values). Needs some oggmux fixes too.
13893
13894 2006-07-27  Wim Taymans  <wim@fluendo.com>
13895
13896         patch by: Kai Vehmanen <kv2004 eca cx>
13897
13898         * gst-libs/gst/rtp/gstbasertpdepayload.c:
13899         (gst_base_rtp_depayload_chain),
13900         (gst_base_rtp_depayload_handle_sink_event),
13901         (gst_base_rtp_depayload_change_state):
13902         Don't send multiple newsegments with different formats.
13903         Fixes #348677.
13904
13905 2006-07-26  Wim Taymans  <wim@fluendo.com>
13906
13907         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
13908         (gst_ogg_demux_do_seek), (gst_ogg_demux_read_chain):
13909         Make seeking in ogg more accurate again by doing the more correct
13910         granuletime to stream time conversion.
13911
13912 2006-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
13913
13914         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_add_full),
13915         (gst_multi_fd_sink_new_client):
13916           debug a little more understandably
13917           do not use goto as a substitute for break, especially if
13918           break is also being used
13919
13920 2006-07-26  Tim-Philipp Müller  <tim at centricular dot net>
13921
13922         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
13923         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
13924           Remove GLib-2.6 compatibility cruft.
13925
13926 2006-07-24  Wim Taymans  <wim@fluendo.com>
13927
13928         * gst-libs/gst/audio/gstbaseaudiosink.c:
13929         (gst_base_audio_sink_render):
13930         Don't try to align a sample to an unknown value.
13931
13932 2006-07-24  Wim Taymans  <wim@fluendo.com>
13933
13934         * gst-libs/gst/audio/gstbaseaudiosink.c:
13935         (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
13936         When the audio clock is slaved to another clock, never try to align
13937         samples but trust the rate interpolation algorithm.
13938
13939 2006-07-24  Wim Taymans  <wim@fluendo.com>
13940
13941         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
13942         Don't try to calculate silence samples, base class does this much
13943         better now.
13944
13945         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
13946         (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps),
13947         (gst_ring_buffer_acquire):
13948         Calculate silence samples correctly.
13949
13950         * gst-libs/gst/audio/gstringbuffer.h:
13951         Add _CAST macro.
13952
13953 2006-07-22  Tim-Philipp Müller  <tim at centricular dot net>
13954
13955         * gst/typefind/gsttypefindfunctions.c: (xml_check_first_element):
13956           Limit search for the first markup tag to the first few kB of
13957           the file. If we don't find one there, it's highly unlikely that
13958           this is an XML(-ish) file.
13959
13960 2006-07-21  Andy Wingo  <wingo@pobox.com>
13961
13962         * tests/check/pipelines/theoraenc.c (test_discontinuity): Similar
13963         test to the one in vorbisenc. Also commented out.
13964
13965         * tests/check/pipelines/vorbisenc.c: 
13966         (test_discontinuity): New test, commented out until Mike lands
13967         some elite vorbisenc patches.
13968
13969         * tests/check/pipelines/theoraenc.c: Port to bufferstraw.
13970         Bufferstraw was actually factored out of these tests. Now we share
13971         code yay.
13972
13973         * configure.ac (GST_MAJORMINOR): Rev core requirements to 0.10.9.1
13974         for bufferstraw addition to gstcheck.
13975
13976 2006-07-21  Wim Taymans  <wim@fluendo.com>
13977
13978         * ext/theora/theoradec.c: (clip_buffer):
13979         Better clipping.
13980
13981 2006-07-21  Wim Taymans  <wim@fluendo.com>
13982
13983         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func),
13984         (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
13985         (gst_audioringbuffer_release), (gst_audioringbuffer_stop):
13986         Fix leak.
13987         Avoid type casting when we can.
13988
13989         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_dispose):
13990         Fix mem leak.
13991
13992 2006-07-20  Tim-Philipp Müller  <tim at centricular dot net>
13993
13994         * ext/alsa/gstalsamixerelement.c:
13995         (gst_alsa_mixer_element_change_state):
13996           Make state change fail if the specified device can't be opened
13997           for some reason.
13998
13999 2006-07-20  Wim Taymans  <wim@fluendo.com>
14000
14001         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
14002         (cb_newpad), (main):
14003         Example of a small audio/video player using decodebin.
14004
14005 2006-07-20  Stefan Kost  <ensonic@users.sf.net>
14006
14007         * gst-libs/gst/riff/riff-ids.h:
14008           Add 'fact' chunk id
14009
14010 2006-07-19  Wim Taymans  <wim@fluendo.com>
14011
14012         * gst-libs/gst/rtp/gstbasertpdepayload.c:
14013         (gst_base_rtp_depayload_chain),
14014         (gst_base_rtp_depayload_change_state):
14015         Don't assert when not negotiated but post a meaningfull 
14016         error message. Fixes #347918.
14017
14018         * gst-libs/gst/rtp/gstbasertppayload.c:
14019         Add comment about better default MTU size.
14020
14021         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data):
14022         Small cleanups, start docs.
14023
14024 2006-07-19  Tim-Philipp Müller  <tim at centricular dot net>
14025
14026         Patch by: Martin Szulecki
14027
14028         * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_property):
14029           If "device-name" is requested and the device is not
14030           open, try to temporarily open it to obtain this
14031           information (#342494).
14032
14033 2006-07-19  Tim-Philipp Müller  <tim at centricular dot net>
14034
14035         * gst-libs/gst/tag/gstid3tag.c:
14036           Add TSSE <=> GST_TAG_ENCODER mapping (see #347898).
14037
14038         * gst-libs/gst/tag/gsttageditingprivate.h:
14039         * gst-libs/gst/tag/gstvorbistag.c:
14040           Some more random const-ifications.
14041
14042 2006-07-18  Stefan Kost  <ensonic@users.sf.net>
14043
14044         * gst-libs/gst/riff/riff-ids.h:
14045         * gst-libs/gst/riff/riff-media.c:
14046         (gst_riff_create_video_template_caps):
14047           Add more FOURCCs (sort list to make stuff easier to find),
14048           add comment what those 16 bytes in struct _gst_riff_strh according to
14049           one avi-dumper are
14050
14051 2006-07-17  Tim-Philipp Müller  <tim at centricular dot net>
14052
14053         * gst-libs/gst/audio/multichannel.c:
14054         (gst_audio_check_channel_positions),
14055         (gst_audio_fixate_channel_positions):
14056           Const-ify two arrays.
14057
14058 2006-07-17  Tim-Philipp Müller  <tim at centricular dot net>
14059
14060         * ext/alsa/gstalsa.c: (caps_add_channel_configuration):
14061           Fix typo, so that alsasink also advertises 8 channels
14062           if that's supported (tags: can, worms, open, alsa, ph34r).
14063
14064 2006-07-17  Wim Taymans  <wim@fluendo.com>
14065
14066         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
14067         (gst_ogg_pad_submit_packet), (gst_ogg_demux_read_chain):
14068         *sigh*, when is the compiler going to warn when the comments
14069         are out-of-sync with the code.. Refix case of busted theora
14070         headers with 0 granule pos.
14071
14072 2006-07-14  Wim Taymans  <wim@fluendo.com>
14073
14074         * gst-libs/gst/rtp/gstbasertpdepayload.c:
14075         (gst_base_rtp_depayload_wait),
14076         (gst_base_rtp_depayload_change_state),
14077         (gst_base_rtp_depayload_set_property),
14078         (gst_base_rtp_depayload_get_property):
14079         Fix 99% cpu load by waiting for absolute times on the
14080         clock. Fixes #347300.
14081
14082 2006-07-14  Andy Wingo  <wingo@pobox.com>
14083
14084         * ext/theora/gsttheoraparse.h: 
14085         * ext/theora/theoraparse.c (theora_parse_drain_event_queue)
14086         (theora_parse_push_headers, theora_parse_clear_queue)
14087         (theora_parse_drain_queue_prematurely, )
14088         (theora_parse_sink_event, theora_parse_change_state): Queue events
14089         until we initialized our state, like in vorbisparse.
14090
14091         * ext/vorbis/vorbisparse.h: 
14092         * ext/vorbis/vorbisparse.c (vorbis_parse_drain_event_queue)
14093         (vorbis_parse_push_headers, vorbis_parse_clear_queue)
14094         (vorbis_parse_drain_queue_prematurely, )
14095         (vorbis_parse_sink_event, vorbis_parse_change_state): Queue events
14096         until we have initialized our state. Fixes seeking after an
14097         initial pad block.
14098
14099 2006-07-14  Andy Wingo  <wingo@pobox.com>
14100
14101         Patch by: Iain Holmes <iaingnome@gmail.com>
14102         
14103         * ext/ogg/gstoggdemux.c (gst_ogg_demux_finalize): Fix memleak.
14104
14105 2006-07-14  Jan Schmidt  <thaytan@mad.scientist.com>
14106
14107         * configure.ac:
14108         Bump nano back to CVS
14109
14110 === release 0.10.9 ===
14111
14112 2006-07-13  Jan Schmidt <thaytan@mad.scientist.com>
14113
14114         * configure.ac:
14115           releasing 0.10.9, "I walk the line"
14116
14117 2006-07-14  Michael Smith  <msmith@fluendo.com>
14118
14119         * tests/check/pipelines/vorbisenc.c: (stop_pipeline):
14120           Move a g_cond_signal to earlier to avoid sometimes deadlocking
14121           (commonly happens when running this test under valgrind) when trying
14122           to remove the buffer probe.
14123
14124 2006-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
14125
14126         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
14127         Fix missing g_unlock from the previous commit
14128
14129 2006-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
14130
14131         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
14132         (gst_ximagesink_change_state):
14133         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
14134         (gst_xvimagesink_change_state):
14135         Implement a locking order to ensure we always take the object lock
14136         before the x_lock and never vice-versa.
14137
14138 2006-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
14139
14140         * gst/playback/gstdecodebin.c: (find_compatibles):
14141         Fix a caps leak when linking (#347304)
14142
14143         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
14144         (gst_ximagesink_ximage_destroy), (gst_ximagesink_xcontext_clear),
14145         (gst_ximagesink_change_state):
14146         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
14147         (gst_xvimage_buffer_finalize), (gst_xvimagesink_check_xshm_calls),
14148         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
14149         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_change_state):
14150         Don't leak shared memory resources. Use the object lock to protect
14151         against the xcontext disappearing while returning a buffer from the
14152         pipeline. (#347304)
14153
14154 2006-07-12  Edward Hervey  <edward@fluendo.com>
14155
14156         * ext/vorbis/vorbisdec.c: (vorbis_dec_finalize),
14157         (vorbis_handle_comment_packet):
14158         gst_tag_list_merge() returns a new object. Take that into account when
14159         using it. This avoids memleak.
14160         Revert previous commit which is not needed.
14161
14162 2006-07-12  Edward Hervey  <edward@fluendo.com>
14163
14164         * ext/vorbis/vorbisdec.c: (vorbis_dec_finalize):
14165         Reset the decoder in finalize so that all fields get cleared.
14166
14167 2006-07-12  Wim Taymans  <wim@fluendo.com>
14168
14169         * gst-libs/gst/audio/gstbaseaudiosrc.c:
14170         (gst_base_audio_src_set_clock),
14171         (gst_base_audio_src_check_get_range), (gst_base_audio_src_create):
14172         Don't try to post an error message when setting the clock fails
14173         as this can happen when adding an element to a bin which will then
14174         deadlock. Fixes #347296.
14175
14176 2006-07-12  Edward Hervey  <edward@fluendo.com>
14177
14178         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
14179         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
14180         (vorbis_handle_type_packet):
14181         Post tag messages on the bus even if we're not initialized.
14182         If we're not initialized, we still postpone the event pushing of tags.
14183
14184 2006-07-12  Wim Taymans  <wim@fluendo.com>
14185
14186         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
14187         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
14188         (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps):
14189         Revert last two changes that broke the freeze.
14190
14191 2006-07-12  Wim Taymans  <wim@fluendo.com>
14192
14193         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
14194         basesink calculates silence sample correctly for us.
14195
14196 2006-07-12  Wim Taymans  <wim@fluendo.com>
14197
14198         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
14199         (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps):
14200         Calculate correct silence samples so we don't fill our ringbuffer
14201         with noise.
14202
14203 2006-07-12  Edward Hervey  <edward@fluendo.com>
14204
14205         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
14206         (gst_vorbis_dec_reset), (vorbis_dec_sink_event),
14207         (vorbis_handle_comment_packet), (vorbis_handle_type_packet):
14208         * ext/vorbis/vorbisdec.h:
14209         Delay sending events (newsegment, tags) until the decoder is properly
14210         initialized.
14211         Fixes #347295
14212
14213 2006-07-11  Jan Schmidt  <thaytan@mad.scientist.com>
14214
14215         * tests/check/elements/audioconvert.c: (get_float_mc_caps),
14216         (get_int_mc_caps), (GST_START_TEST), (audioconvert_suite):
14217           Patch from #347221 adding a test for audioconvert
14218           channel remappings.
14219
14220 2006-07-11  Tim-Philipp Müller  <tim at centricular dot net>
14221
14222         * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
14223         (gst_ssa_parse_parse_line):
14224           Don't include the terminating NUL in the buffer size,
14225           it's only there for extra paranoia (would add random
14226           '*' characters at the end of each subtitle since the
14227           terminator itself is not valid UTF-8 technically).
14228           Also fix indenting after boilerplate macro.
14229
14230 2006-07-10  Tim-Philipp Müller  <tim at centricular dot net>
14231
14232         * gst/playback/gstdecodebin.c: (close_pad_link):
14233           Also emit 'unknown-type' signal (which should really be
14234           called unhandled-type) if we found potential decoders/demuxers
14235           in the registry but none of them worked in the end (as in the
14236           case where the plugins don't exist any longer but are still
14237           listed in the registry). Fixes #329798.
14238
14239 2006-07-08  Andy Wingo  <wingo@pobox.com>
14240
14241         * theoraparse.c (theora_parse_push_buffer)
14242         (theora_parse_drain_queue_prematurely, theora_parse_drain_queue):
14243         Add some more debugging. Fix granulepos reconstruction in the face
14244         of discontinuities.
14245
14246 2006-07-06  Wim Taymans  <wim@fluendo.com>
14247
14248         * gst-libs/gst/audio/gstbaseaudiosink.c:
14249         (gst_base_audio_sink_class_init),
14250         (gst_base_audio_sink_provide_clock):
14251         Use gobject_class instead of G_OBJECT_CLASS (klass)
14252
14253         * gst-libs/gst/audio/gstbaseaudiosrc.c:
14254         (gst_base_audio_src_class_init), (gst_base_audio_src_init),
14255         (gst_base_audio_src_set_clock), (gst_base_audio_src_provide_clock),
14256         (gst_base_audio_src_get_time),
14257         (gst_base_audio_src_check_get_range), (gst_base_audio_src_create),
14258         (gst_base_audio_src_create_ringbuffer):
14259         Fix latency and buffer-time constants and properties ala basesink.
14260         Implement pull based scheduling. Fixes #346527.
14261         Set default blocksize in GstBaseSrc to 0, we default to pushing out
14262         one segment.
14263         Refuse slaving to another clock instead of silently not working.
14264         Only provide a clock when we are actually able to do so.
14265         Various small cleanups and compiler hints.
14266
14267 2006-07-06  Tim-Philipp Müller  <tim at centricular dot net>
14268
14269         Patch by: Lutz Mueller <lutz at topfrose de>
14270
14271         * gst/typefind/gsttypefindfunctions.c: (html_type_find),
14272         (plugin_init):
14273           Add typefinding for text/html (#346581).
14274
14275 2006-07-06  Tim-Philipp Müller  <tim at centricular dot net>
14276
14277         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
14278         (xml_check_first_element), (xml_type_find), (smil_type_find):
14279           Fix SMIL typefinding, make xml_check_first_element() more
14280           useful.
14281
14282 2006-07-06  Tim-Philipp Müller  <tim at centricular dot net>
14283
14284         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
14285         (gst_play_base_bin_finalize), (decodebin_element_added_cb),
14286         (decodebin_element_removed_cb), (gst_play_base_bin_set_property):
14287         * gst/playback/gstplaybasebin.h:
14288           Protect list of elements with a subtitle-encoding property and
14289           the subtitle encoding member itself with a lock of their own
14290           instead of using the object lock. This prevents a dead-lock in
14291           the element-remove callback in some circumstances when shutting
14292           down playbin.
14293
14294 2006-07-05  Sebastien Moutte  <sebastien@moutte.net>
14295
14296         * win32/common/libgsttag.def:
14297         Export some new functions.
14298         * win32/vs6/libgstogg.dsp:
14299         Add a link to libgsttag-0.10.lib.
14300
14301 2006-07-04  Tim-Philipp Müller  <tim at centricular dot net>
14302
14303         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
14304           Some const-ification.
14305
14306 2006-07-04  Wim Taymans  <wim@fluendo.com>
14307
14308         * gst/playback/gstplaybasebin.c: (is_stream), (gen_source_element):
14309         Improve checking if we are dealing with a stream. Added some
14310         more uris that need buffering.
14311
14312 2006-07-03  Edward Hervey  <edward@fluendo.com>
14313
14314         * ext/vorbis/vorbisdec.c: (vorbis_do_clip):
14315         Remove unused variable.
14316
14317 2006-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
14318
14319         * Makefile.am:
14320           include lcov.mak
14321         * configure.ac:
14322           add GCOV_LIBS to GST_LIBS
14323
14324 2006-07-02  Tim-Philipp Müller  <tim at centricular dot net>
14325
14326         Patch by: Michael Sheldon  <webmaster at mikeasoft com>
14327
14328         * ext/alsa/gstalsasrc.c:
14329           Add 32 bps to template caps and increase channels range
14330           from [1,2] to [1,MAX]. See #346326.
14331
14332 2006-06-30  Tim-Philipp Müller  <tim at centricular dot net>
14333
14334         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
14335           Recognise 'WMVA' video codec fourcc (#345879).
14336           
14337 2006-06-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
14338          
14339         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:     
14340           Fixed nasty memory leak
14341
14342 2006-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
14343
14344         * gst/tcp/gsttcp.c: (gst_tcp_read_buffer),
14345         (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps):
14346           fix logging
14347
14348 2006-06-23  Jan Schmidt  <thaytan@mad.scientist.com>
14349
14350         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
14351         (gst_decode_bin_init), (gst_decode_bin_finalize), (add_fakesink),
14352         (remove_fakesink), (pad_probe), (gst_decode_bin_change_state):
14353         Protect remove_fakesink using a mutex, so that we don't try and
14354         remove the fakesink simultaneously from multiple threads.
14355
14356         When going from READY to PAUSED, restore the fakesink, so that
14357         it is there when decodebin gets reused.
14358
14359 2006-06-23  Tim-Philipp Müller  <tim at centricular dot net>
14360
14361         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
14362         * gst-libs/gst/rtp/gstbasertpdepayload.c:
14363         * gst-libs/gst/rtp/gstbasertppayload.c:
14364         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14365         * gst/tcp/gstmultifdsink.c:
14366         * gst/tcp/gsttcpclientsink.c:
14367         * gst/tcp/gsttcpclientsrc.c:
14368         * gst/tcp/gsttcpserversink.c:
14369         * gst/tcp/gsttcpserversrc.c:
14370         * gst/videorate/gstvideorate.c:
14371         * gst/videotestsrc/gstvideotestsrc.c:
14372         * sys/v4l/gstv4ljpegsrc.c:
14373         * sys/v4l/gstv4lmjpegsink.c:
14374         * sys/v4l/gstv4lsrc.c:
14375         * tests/examples/seek/scrubby.c:
14376         * tests/examples/seek/seek.c:
14377           Use GST_DEBUG_CATEGORY_STATIC where possible (#342503).
14378
14379 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
14380
14381         * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum):
14382           Second field in GEnumValue shouldn't be a description,
14383           but a stringified version of the enum value.
14384
14385 2006-06-22  Wim Taymans  <wim@fluendo.com>
14386
14387         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
14388         (gst_ximage_buffer_free), (gst_ximagesink_ximage_put),
14389         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
14390         Avoid type checking in buffer casts.
14391         Avoid caps copy in buffer_alloc when we can.
14392         Use pad_peer_accept.
14393
14394 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
14395
14396         * gst-libs/gst/tag/tag.h:
14397           Oops, make that 'Since: 0.10.9'.
14398
14399 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
14400
14401         * docs/libs/gst-plugins-base-libs-sections.txt:
14402         * gst-libs/gst/tag/tag.h:
14403         * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum),
14404         (gst_tag_image_type_get_type):
14405           API: add GstTagImageType enum to describe images contained
14406           in image tags (#345641).
14407
14408 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
14409
14410         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
14411           Fix warnings with gst-inspect: "buffers-min" property
14412           should be of G_TYPE_INT and not G_TYPE_INT64. Also fix
14413           typo in property description.
14414
14415 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
14416
14417         Patch by: Cody Russell <bratsche at gnome org>
14418
14419         * gst/audioresample/gstaudioresample.c:
14420         (gst_audioresample_class_init):
14421         * gst/playback/gststreamselector.c:
14422         (gst_stream_selector_class_init):
14423         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
14424         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
14425         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
14426         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_class_init):
14427         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_class_init):
14428         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_class_init):
14429         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init):
14430         * gst/videotestsrc/gstvideotestsrc.c:
14431         (gst_video_test_src_class_init):
14432         * gst/volume/gstvolume.c: (gst_volume_class_init):
14433           Avoid unnecessary class cast check in class_init
14434           functions (#337747).
14435
14436 2006-06-21  Tim-Philipp Müller  <tim at centricular dot net>
14437
14438         * ext/pango/gsttextoverlay.c: (gst_text_overlay_make_utf8),
14439         (gst_text_overlay_video_chain):
14440           g_markup_escape_text() REALLY doesn't like non-UTF8 input
14441           and doesn't validate its input either (and neither did
14442           textoverlay it seems). Let's do that then and fix #345206.
14443
14444 2006-06-19  Wim Taymans  <wim@fluendo.com>
14445
14446         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
14447         (gst_unit_type_get_type), (gst_multi_fd_sink_class_init),
14448         (gst_multi_fd_sink_init), (gst_multi_fd_sink_add_full),
14449         (gst_multi_fd_sink_add), (gst_multi_fd_sink_handle_client_read),
14450         (find_syncframe), (find_limits), (assign_value),
14451         (count_burst_unit), (gst_multi_fd_sink_new_client),
14452         (gst_multi_fd_sink_handle_client_write),
14453         (gst_multi_fd_sink_queue_buffer), (gst_multi_fd_sink_render),
14454         (gst_multi_fd_sink_set_property), (gst_multi_fd_sink_get_property),
14455         (gst_multi_fd_sink_change_state):
14456         * gst/tcp/gstmultifdsink.h:
14457         Added shiny new burst-on-connect methods.
14458         Add properties to control the minimal amount of data queued.
14459         Small cleanups.
14460         API: bytes-min property
14461         API: time-min property
14462         API: buffers-min property
14463         API: burst-unit property
14464         API: burst-value property
14465         API: add-full signal
14466
14467         * gst/tcp/gsttcp-marshal.list:
14468         Added new marshaller code for the new signal.
14469
14470         * tests/check/elements/multifdsink.c: (GST_START_TEST),
14471         (multifdsink_suite):
14472         Added testcases for new burst methods.
14473
14474 2006-06-19  Edward Hervey  <edward@fluendo.com>
14475
14476         * ext/theora/theoradec.c: (clip_buffer), (theora_dec_push):
14477         Implement clipping for accurate seeking.
14478         Closes #345225
14479
14480 2006-06-19  Wim Taymans  <wim@fluendo.com>
14481
14482         Patch by: Philip Jaegenstedt <philip at lysator dot liu dot se>
14483
14484         * gst/videoscale/gstvideoscale.c: (gst_video_scale_prepare_size),
14485         (gst_video_scale_transform):
14486         Make videoscale support RGBA, ARGB, BGRA and ABGR. Fixes #345131
14487
14488 2006-06-17  Tim-Philipp Müller  <tim at centricular dot net>
14489
14490         * configure.ac:
14491           Fix --disable-external (can't set conditionals conditionally,
14492           #343602).
14493
14494 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
14495
14496         * tests/check/elements/audioresample.c: (test_reuse),
14497         (audioresample_suite):
14498           Add test case for bug #342789 fixed below.
14499
14500 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
14501
14502         * gst/audioresample/gstaudioresample.c:
14503         (gst_audioresample_class_init), (gst_audioresample_init),
14504         (audioresample_start), (audioresample_stop),
14505         (gst_audioresample_set_property), (gst_audioresample_get_property):
14506           Implement GstBaseTransform::start and ::stop so that audioresample
14507           can clear its internal state properly and be reused instead of
14508           causing non-negotiated errors with playbin under some circumstances
14509           (#342789).
14510
14511         * tests/check/elements/audioresample.c: (setup_audioresample),
14512         (cleanup_audioresample):
14513           Need to set element state here so that ::start and ::stop are
14514           called.
14515
14516 2006-06-16  Wim Taymans  <wim@fluendo.com>
14517
14518         Patch by: Young-Ho Cha <ganadist at chollian dot net>
14519
14520         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_vids):
14521         Parse extra data better, apparently it's right behind
14522         the normal strf header size. Fixes #343500.
14523
14524 2006-06-16  Wim Taymans  <wim@fluendo.com>
14525
14526         * ext/alsa/gstalsasink.c: (set_hwparams):
14527         If we fail to set the buffer_time and period_time alsa
14528         parameters, post a warning and leave alsa select a 
14529         default instead of failing. Fixes #342085
14530
14531 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
14532
14533         * docs/libs/gst-plugins-base-libs-sections.txt:
14534         * gst-libs/gst/cdda/gstcddabasesrc.h:
14535           Remove GST_CDDA_TAG_TRACK_TAGS again, it is #ifdef 0'ed
14536           out in the header file and shouldn't be listed in the docs.
14537
14538         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
14539           Must dereference pointer to fourcc in the debug statement.
14540
14541 2006-06-16  Stefan Kost  <ensonic@users.sf.net>
14542
14543         * docs/libs/Makefile.am:
14544         * docs/libs/gst-plugins-base-libs-docs.sgml:
14545         * docs/libs/gst-plugins-base-libs-sections.txt:
14546         * docs/libs/gst-plugins-base-libs.types:
14547         add remaining symbols into correct setions
14548         
14549         * gst-libs/gst/audio/gstringbuffer.c:
14550         fix incomplete docs
14551         
14552         * gst-libs/gst/audio/gstringbuffer.h:
14553         comment out not yet implemented function
14554         
14555         
14556         * gst-libs/gst/floatcast/floatcast.h:
14557         * gst-libs/gst/netbuffer/gstnetbuffer.c:
14558         add short descriptions
14559         
14560         
14561         * gst-libs/gst/interfaces/propertyprobe.c:
14562         fix return value docs   
14563         
14564         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
14565         simplify debug logging
14566         
14567         * gst-libs/gst/riff/riff-read.h:
14568         sync function prototype and docs
14569         
14570         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
14571         remove left over symbol
14572
14573 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
14574
14575         * autogen.sh:
14576         * configure.ac:
14577         * docs/Makefile.am:
14578           Use GST_PLUGIN_DOCS macro in configure.ac, add
14579           --enable-plugin-docs default to autogen.sh and use
14580           ENABLE_PLUGIN_DOCS conditional in Makefile.am (#344039).
14581
14582 2006-06-15  Wim Taymans  <wim@fluendo.com>
14583
14584         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
14585         (gst_ogg_demux_activate_chain), (gst_ogg_demux_combine_flows),
14586         (gst_ogg_demux_loop):
14587         Combine GstFlowReturn from the source pads to give a
14588         meaningfull result to the upstream peer or to stop the
14589         processing task in case of errors.
14590
14591 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
14592
14593         * gst/playback/gststreaminfo.c: (cb_probe):
14594           Try GST_TAG_CODEC as fallback when extracting the
14595           codec name; more debug info.
14596
14597 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
14598
14599         * ext/ogg/Makefile.am:
14600         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
14601           Extract language tags from ogm subtitle streams, so that
14602           the subtitle menu choices are labelled correctly in
14603           Totem (fixes #344708).
14604
14605 2006-06-14  Wim Taymans  <wim@fluendo.com>
14606
14607         Patch by: Alessandro Decina <alessandro at nnva dot org>
14608
14609         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_clear),
14610         (gst_ogg_mux_release_pad), (gst_ogg_mux_get_headers),
14611         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_init_collectpads),
14612         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
14613         Fix various leaks. Fixes #343699.
14614         Add x-smoke mime type.
14615
14616 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
14617
14618         * gst-libs/gst/riff/riff-ids.h:
14619           Add IDs for 'bext' chunks (see #343837).
14620
14621 2006-06-12  Tim-Philipp Müller  <tim at centricular dot net>
14622
14623         Patch by: Young-Ho Cha  <ganadist at chollian net>
14624
14625         * gst/subparse/samiparse.c: (sami_context_pop_state),
14626         (handle_start_font), (end_sami_element):
14627           Honour font face tags in SAMI subtitles (#344503).
14628
14629 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
14630
14631         * po/POTFILES.in:
14632           add missing files containing translatable strings
14633
14634 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
14635
14636         * docs/libs/tmpl/.cvsignore:
14637           we don't want those *.sgml files in CVS either
14638
14639 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
14640
14641         * docs/libs/.cvsignore:
14642         * tests/check/elements/.cvsignore:
14643         * tests/check/libs/.cvsignore:
14644           ignore more
14645
14646 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
14647
14648         * docs/libs/Makefile.am:
14649           also commiting the changed Makefile.am (added more libs to the
14650           doc-build)
14651
14652 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
14653
14654         * docs/libs/gst-plugins-base-libs-docs.sgml:
14655         * docs/libs/gst-plugins-base-libs-sections.txt:
14656         * docs/libs/gst-plugins-base-libs.types:
14657           first batch of reordering things, add index & hierarchy
14658
14659 2006-06-11  Thomas Vander Stichele  <thomas at apestaart dot org>
14660
14661         * configure.ac:
14662           use GST_PKG_CHECK_MODULES, cleans up output
14663
14664 2006-06-10  Tim-Philipp Müller  <tim at centricular dot net>
14665
14666         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
14667           Add support for burn:// URIs (#343385); const-ify things a bit,
14668           use G_N_ELEMENTS instead of hard-coded array size.
14669
14670 2006-06-10  Tim-Philipp Müller  <tim at centricular dot net>
14671
14672         Patch by: Young-Ho Cha  <ganadist at chollian net>
14673
14674         * gst/subparse/samiparse.c: (fix_invalid_entities), (parse_sami):
14675           Fix up broken entities before passing them to libxml *sigh*.
14676           (#343303).
14677           
14678 2006-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
14679
14680         * configure.ac:
14681           back to TRUNK
14682
14683 === release 0.10.8 ===
14684
14685 2006-06-09  Thomas Vander Stichele <thomas at apestaart dot org>
14686
14687         * configure.ac:
14688           releasing 0.10.8, "Moar gij ziet mij nie"
14689
14690 2006-06-07  Thomas Vander Stichele  <thomas at apestaart dot org>
14691
14692         * configure.ac:
14693         * po/af.po:
14694         * po/az.po:
14695         * po/cs.po:
14696         * po/en_GB.po:
14697         * po/hu.po:
14698         * po/it.po:
14699         * po/nb.po:
14700         * po/nl.po:
14701         * po/or.po:
14702         * po/sq.po:
14703         * po/sr.po:
14704         * po/sv.po:
14705         * po/uk.po:
14706         * po/vi.po:
14707         * win32/common/config.h:
14708           0.10.7.2 prerelease
14709
14710 2006-06-07  Thomas Vander Stichele  <thomas at apestaart dot org>
14711
14712         * docs/libs/tmpl/gstaudio.sgml:
14713         * docs/libs/tmpl/gstcolorbalance.sgml:
14714         * docs/libs/tmpl/gstmixer.sgml:
14715         * docs/libs/tmpl/gstringbuffer.sgml:
14716         * docs/libs/tmpl/gsttuner.sgml:
14717         * docs/libs/tmpl/gstxoverlay.sgml:
14718         * gst-libs/gst/audio/audio.c:
14719         * gst-libs/gst/audio/gstringbuffer.c:
14720         * gst-libs/gst/interfaces/colorbalance.c:
14721         * gst-libs/gst/interfaces/mixer.c:
14722         * gst-libs/gst/interfaces/tuner.c:
14723         * gst-libs/gst/interfaces/xoverlay.c:
14724           move last template doc snippets to source code and delete them
14725
14726 2006-06-06  Michael Smith  <msmith@fluendo.com>
14727
14728         * ext/theora/theoraparse.c: (theora_parse_drain_queue_prematurely),
14729         (theora_parse_drain_queue):
14730           Mark DELTA_UNIT on non-keyframes.
14731
14732 2006-06-03  Jan Schmidt  <thaytan@mad.scientist.com>
14733
14734         * gst-libs/gst/audio/gstbaseaudiosink.c:
14735         (gst_base_audio_sink_class_init), (gst_base_audio_sink_setcaps):
14736         * gst-libs/gst/audio/gstbaseaudiosink.h:
14737         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps),
14738         (gst_ring_buffer_samples_done):
14739         * gst-libs/gst/audio/gstringbuffer.h:
14740         Document better the fact that latency_time and buffer_time are values
14741         stored in microseconds, and not the usual GStreamer nanoseconds.
14742         Change the variables (compatibly) that store them from GstClockTime 
14743         to guint64 to make it more clear that they're not storing clock times.
14744         Also, remove the bogus property description that says the user can
14745         specify -1 to get the default value, since that's never been the case.
14746
14747         When computing the default segment size for the ring buffer, make it
14748         an integer number of samples.
14749
14750         When the sub-class indicates a delay greater than the number of
14751         samples we've written return 0 from the audio sink get_time method.
14752
14753 2006-06-02  Michael Smith  <msmith@fluendo.com>
14754
14755         * tests/check/elements/audioconvert.c: (set_channel_positions),
14756         (get_float_mc_caps), (get_int_mc_caps):
14757         * tests/check/elements/audioresample.c:
14758         * tests/check/elements/audiotestsrc.c: (GST_START_TEST):
14759         * tests/check/elements/videorate.c:
14760         * tests/check/elements/videotestsrc.c: (GST_START_TEST):
14761         * tests/check/elements/volume.c:
14762         * tests/check/elements/vorbisdec.c:
14763         * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
14764           Don't busy-wait in tests; this was causing test timeouts very
14765           frequently when running under valgrind.
14766
14767 2006-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
14768
14769         * gst/tcp/README:
14770         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_init),
14771         (gst_multi_fd_sink_remove_client_link),
14772         (gst_multi_fd_sink_client_queue_caps),
14773         (gst_multi_fd_sink_client_queue_buffer),
14774         (gst_multi_fd_sink_handle_client_write),
14775         (gst_multi_fd_sink_render):
14776         * gst/tcp/gstmultifdsink.h:
14777           make multifdsink properly deal with streamheader:
14778           - streamheader is taken from caps
14779           - buffers marked with IN_CAPS are not sent
14780           - streamheaders are sent, on connection, from the caps of the
14781             buffer where the client gets positioned to
14782           - further streamheader changes are done every time the client
14783             will receive a buffer with different caps
14784         * tests/check/elements/multifdsink.c: (GST_START_TEST),
14785         (gst_multifdsink_create_streamheader):
14786           add tests for this
14787
14788 2006-06-02  Michael Smith  <msmith@fluendo.com>
14789
14790         * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
14791           Reinstate limit on channel count. Vorbis does not define the meaning
14792           of > 6 channels, so they're just independent channels. Gstreamer
14793           currently has no mechanism to represent N independent channels.
14794
14795 2006-06-02  Michael Smith  <msmith@fluendo.com>
14796
14797         * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
14798           Don't arbitrarily restrict channel counts and rate in vorbis.
14799           In terms of effects likely on real-world files, this fixes 96kHz
14800           playback of vorbis.
14801
14802 2006-06-02  Michael Smith  <msmith@fluendo.com>
14803
14804         * gst/audioconvert/audioconvert.c: (float):
14805           More correct float->int conversion.
14806
14807 2006-06-02  Michael Smith  <msmith@fluendo.com>
14808
14809         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_perform_seek):
14810           Don't accidently send GST_CLOCK_TIME_NONE as a new segment start
14811           value. Fixes g-critical on trying to play back ogg containing
14812           unknown codec.
14813
14814 2006-06-02  Wim Taymans  <wim@fluendo.com>
14815
14816         * gst/playback/gstplaybasebin.c: (group_create), (group_commit),
14817         (setup_source):
14818         * gst/playback/gstplaybasebin.h:
14819         Make the subtitle detection work from any thread so we don't
14820         deadlock. Fixes #343397.
14821
14822 2006-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
14823
14824         * gst/volume/Makefile.am:
14825           Seriously, it's not *that* hard to get compilation right.  Even
14826           a drunk can do it ! Add LIBOIL CFLAGS and LIBS
14827
14828 2006-06-01  Stefan Kost  <ensonic@users.sf.net>
14829
14830         * gst/volume/gstvolume.c: (volume_choose_func),
14831         (volume_update_real_volume), (gst_volume_class_init),
14832         (gst_volume_init), (volume_process_float), (volume_process_int16),
14833         (volume_process_int16_clamp), (volume_set_caps),
14834         (volume_transform_ip), (plugin_init):
14835         * gst/volume/gstvolume.h:
14836         rewrite the passthrough check, split _int16 and _int16_clamp, fix
14837         another property desc., remove unused param from process function
14838         
14839         * tests/check/elements/volume.c: (volume_suite):
14840         reactivate the passthrough test
14841
14842 2006-06-01  Stefan Kost  <ensonic@users.sf.net>
14843
14844         * ext/alsa/gstalsamixerelement.h:
14845         * ext/alsa/gstalsamixeroptions.h:
14846         * ext/alsa/gstalsamixertrack.h:
14847         * ext/gnomevfs/gstgnomevfssink.h:
14848         * ext/gnomevfs/gstgnomevfssrc.h:
14849         * ext/theora/gsttheoradec.h:
14850         * ext/theora/gsttheoraenc.h:
14851         * ext/theora/gsttheoraparse.h:
14852         * ext/vorbis/vorbisparse.h:
14853         * gst-libs/gst/audio/gstaudioclock.h:
14854         * gst-libs/gst/audio/gstaudiofilter.h:
14855         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
14856         * gst/audioconvert/gstaudioconvert.h:
14857         * gst/audioresample/gstaudioresample.h:
14858         * gst/audiotestsrc/gstaudiotestsrc.h:
14859         * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
14860         * gst/playback/gststreamselector.h:
14861         * gst/tcp/gstmultifdsink.h:
14862         * gst/tcp/gsttcpclientsink.h:
14863         * gst/tcp/gsttcpclientsrc.h:
14864         * gst/tcp/gsttcpserversink.h:
14865         * gst/tcp/gsttcpserversrc.h:
14866         * gst/videorate/gstvideorate.h:
14867         * gst/videoscale/gstvideoscale.h:
14868         * gst/videotestsrc/gstvideotestsrc.h:
14869         * gst/volume/gstvolume.h:
14870         * sys/v4l/gstv4ljpegsrc.h:
14871         * sys/v4l/gstv4lmjpegsink.h:
14872         * sys/v4l/gstv4lmjpegsrc.h:
14873         * sys/v4l/gstv4lsrc.h:
14874         * sys/ximage/ximagesink.h:
14875         * sys/xvimage/xvimagesink.h:
14876         * tests/old/testsuite/alsa/sinesrc.h:
14877         Fix more gobject macros: obj<->klass, GstXXX<->GstXXXClass
14878
14879 2006-05-31  Wim Taymans  <wim@fluendo.com>
14880
14881         * ext/libvisual/visual.c: (gst_visual_reset),
14882         (gst_visual_sink_setcaps), (gst_visual_sink_event),
14883         (gst_visual_src_event), (get_buffer), (gst_visual_chain):
14884         Handle DISCONT.
14885         Use running time before doing QoS.
14886         Handle mono too.
14887
14888 2006-05-31  Thomas Vander Stichele  <thomas at apestaart dot org>
14889
14890         * docs/libs/Makefile.am:
14891           set a magic variable to indicate we know the docs are incomplete
14892
14893 2006-05-30  Sebastien Moutte  <sebastien@moutte.net>
14894
14895         * win32/common/libgstvideo.def:
14896           export gst_video_calculate_display_ratio
14897         * win32/vs6/libgstvideoscale.dsp:
14898           add link to libgstvideo-0.10.lib
14899
14900 2006-05-30  Tim-Philipp Müller  <tim at centricular dot net>
14901
14902         * gst/playback/gstplaybasebin.c: (gen_source_element):
14903           Throw a more comprehensible error for rtsp:// URIs (rather
14904           than erroring out with a negotiation error later on) until
14905           we fix playbin to handle rtspsrc etc.
14906
14907 2006-05-30  Wim Taymans  <wim@fluendo.com>
14908
14909         * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event),
14910         (gst_text_overlay_text_event):
14911         Added some FIXMEs.
14912
14913 2006-05-30  Wim Taymans  <wim@fluendo.com>
14914
14915         * gst/adder/gstadder.c: (gst_adder_class_init), (gst_adder_init),
14916         (gst_adder_request_new_pad), (gst_adder_release_pad):
14917         * gst/adder/gstadder.h:
14918         Implement release_request_pad.
14919         Make padcounter atomic.
14920
14921         * tests/check/elements/adder.c: (GST_START_TEST), (adder_suite):
14922         Added check for release_pad in adder.
14923
14924 2006-05-30  Wim Taymans  <wim@fluendo.com>
14925
14926         * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream):
14927         Fix build again.
14928
14929 2006-05-30  Thomas Vander Stichele  <thomas at apestaart dot org>
14930
14931         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
14932         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
14933         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
14934         (gst_ogg_pad_submit_page), (gst_ogg_chain_new_stream),
14935         (gst_ogg_demux_seek), (gst_ogg_demux_get_data),
14936         (gst_ogg_demux_get_next_page), (gst_ogg_demux_do_seek),
14937         (gst_ogg_demux_bisect_forward_serialno),
14938         (gst_ogg_demux_read_chain), (gst_ogg_demux_find_chains),
14939         (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
14940           add more debugging
14941           clean up printf formats for granulepos and serialno
14942
14943 2006-05-30  Michael Smith  <msmith@fluendo.com>
14944
14945         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
14946         (gst_vorbis_enc_class_init), (gst_vorbis_enc_dispose),
14947         (gst_vorbis_enc_generate_sink_caps), (gst_vorbis_enc_sink_getcaps),
14948         (gst_vorbis_enc_init), (gst_vorbis_enc_buffer_from_header_packet),
14949         (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
14950         * ext/vorbis/vorbisenc.h:
14951           Multi-channel caps negotiation, so we can do proper multichannel
14952           vorbis encoding, negotiated through audioconvert.
14953
14954 2006-05-30  Wim Taymans  <wim@fluendo.com>
14955
14956         * tests/check/elements/adder.c: (test_event_message_received),
14957         (test_play_twice_message_received), (GST_START_TEST),
14958         (adder_suite):
14959         Added check to show that #339935 is fixed with ongoing
14960         adder and collectpads fixes.
14961
14962 2006-05-29  Wim Taymans  <wim@fluendo.com>
14963
14964         * gst/adder/gstadder.c: (gst_adder_request_new_pad):
14965         Don't leak pad name.
14966
14967 2006-05-29  Wim Taymans  <wim@fluendo.com>
14968
14969         * gst/adder/gstadder.c: (gst_adder_query_duration),
14970         (forward_event_func), (forward_event), (gst_adder_src_event):
14971         Fix adder seeking.
14972         Make query/seeking code threadsafe.
14973
14974         * tests/check/Makefile.am:
14975         * tests/check/elements/adder.c: (test_event_message_received),
14976         (GST_START_TEST), (test_play_twice_message_received):
14977         Fix adder test case.
14978
14979 2006-05-29  Tim-Philipp Müller  <tim at centricular dot net>
14980
14981         Patch by: Young-Ho Cha  <ganadist at chollian net>
14982
14983         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
14984         (gst_play_base_bin_init), (gst_play_base_bin_dispose),
14985         (set_encoding_element), (decodebin_element_added_cb),
14986         (decodebin_element_removed_cb), (setup_subtitle), (setup_source),
14987         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
14988         * gst/playback/gstplaybasebin.h:
14989           Add 'subtitle-encoding' property to playbin, so applications can
14990           force a subtitle encoding for non-UTF8 subtitles (#342268).
14991
14992         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init),
14993         (gst_sub_parse_set_property):
14994           Rename recently-added 'encoding' property to 'subtitle-encoding'
14995           (so it can be proxied by playbin/decodebin in a generic way
14996           with less danger of false positives).
14997
14998 2006-05-29  Michael Smith  <msmith@fluendo.com>
14999
15000         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
15001         (append_with_other_format), (set_structure_widths),
15002         (gst_audio_convert_transform_caps):
15003           Patch from #341562: give more specific audio caps in get_caps, so
15004           that basetransform  can make better decisions on what caps to
15005           negotiate.
15006
15007 2006-05-28  Stefan Kost  <ensonic@users.sf.net>
15008
15009         * tests/check/elements/volume.c:
15010         make it compile again
15011
15012 2006-05-28  Stefan Kost  <ensonic@users.sf.net>
15013
15014         * tests/check/elements/volume.c: (volume_suite):
15015         disable test until #343196 gets resolved
15016
15017 2006-05-28  Stefan Kost  <ensonic@users.sf.net>
15018
15019         * gst/adder/gstadder.c: (gst_adder_get_type):
15020         Make it easier to copy&paste
15021         
15022         * gst/volume/Makefile.am:
15023         * gst/volume/gstvolume.c: (volume_update_real_volume),
15024         (gst_volume_set_volume), (gst_volume_set_mute),
15025         (gst_volume_class_init), (volume_process_int16), (volume_set_caps),
15026         (volume_transform_ip), (volume_update_mute),
15027         (volume_update_volume):
15028         * gst/volume/gstvolume.h:
15029         Add own debug category, move duplicate code to helper function, fix
15030         property texts, add more comments and prepare ffor liboil-goodness
15031         
15032         * tests/check/Makefile.am:
15033         * tests/check/elements/volume.c: (GST_START_TEST), (volume_suite):
15034         add test for mute and passtrough case, be a bit more verbose to track
15035         failure
15036         
15037         * tests/check/generic/states.c: (GST_START_TEST):
15038         catch elements that fail to instantiate
15039
15040 2006-05-28  Edward Hervey  <edward@fluendo.com>
15041
15042         * tests/check/pipelines/simple-launch-lines.c:
15043         * tests/check/pipelines/theoraenc.c:
15044         * tests/check/pipelines/vorbisenc.c:
15045         Comment out tests using parse_launch() if core was built without
15046         parsing capabilities.
15047
15048 2006-05-27  Edward Hervey  <edward@fluendo.com>
15049
15050         * tests/check/Makefile.am:
15051         Extra bonus points for whoever explains to ensonic that you are meant
15052         to test unit tests thoroughly before commiting them, especially if
15053         you know it's going to break.
15054         De-activated element/adder tests.
15055
15056 2006-05-27  Edward Hervey  <edward@fluendo.com>
15057
15058         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
15059         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps):
15060         Marking caps conversion issues as GST_WARNING is way too verbose,
15061         Moving them to GST_LOG.
15062
15063 2006-05-27  Tim-Philipp Müller  <tim at centricular dot net>
15064
15065         * README:
15066           Replace current README (containing the release notes from
15067           some 0.9.x version) with a proper README taken from the core.
15068
15069 2006-05-26  Wim Taymans  <wim@fluendo.com>
15070
15071         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
15072         (vorbis_dec_src_event), (vorbis_dec_sink_event), (vorbis_do_clip),
15073         (vorbis_dec_push), (vorbis_handle_data_packet), (vorbis_dec_chain),
15074         (vorbis_dec_change_state):
15075         Small cleanups.
15076         Add some FIXMEs
15077         Clip output samples to segment boundaries.
15078
15079 2006-05-26  Jan Schmidt  <thaytan@mad.scientist.com>
15080
15081         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
15082         (gst_ximagesink_xcontext_get), (gst_ximagesink_show_frame):
15083         Improve the errors produced on bad output, including some human
15084         readable description strings.
15085         Handle the (theoretical for ximagesink) case where the XServer 
15086         has a different idea about the size required for a particular 
15087         frame and gives us too small a memory allocation.
15088
15089 2006-05-26  Jan Schmidt  <thaytan@mad.scientist.com>
15090
15091         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
15092         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
15093         (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
15094         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
15095         Improve the errors produced on bad output, including some human 
15096         readable description strings.
15097         Handle RGB Xv formats properly by transforming them into our 
15098         big-endian caps description.
15099         Use gst_caps_truncate to ensure that we never try and choose a
15100         non-fixed caps in buffer_alloc.
15101         Handle the case where the XServer has a different idea about the size
15102         required for a particular frame and gives us too small a memory
15103         allocation.
15104         Use -1 to indicate 'no image format', because 0 is a valid XServer
15105         image format number.
15106         Put RGB Xv formats at the end of the caps, so that we always prefer
15107         YUV format frames.
15108         Iterate the available Xv Encodings to determine the maximum width and
15109         height, and then return that in our caps.
15110         (Closes #315312, #337544)
15111
15112 2006-05-25  Jan Schmidt  <thaytan@mad.scientist.com>
15113
15114         * gst/playback/gstdecodebin.c: (remove_fakesink), (pad_probe):
15115         When there is only one unfinished pad and it receives an event that
15116         doesn't match our requirements, we need to set alldone=FALSE so that
15117         the fakesink is not removed yet.
15118
15119 2006-05-25  Tim-Philipp Müller  <tim at centricular dot net>
15120
15121         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
15122           Use gst_type_find_helper_for_buffer() to find the type
15123           of stream from the first packet.
15124
15125         * configure.ac:
15126           Bump requirements to core CVS (needed for vorbis
15127           typefinding to work).
15128
15129 2006-05-24  Edward Hervey  <edward@fluendo.com>
15130
15131         * gst/typefind/gsttypefindfunctions.c: (qt_type_find): 
15132         Added the 'prfl' atom type which MQV (no, it's not a typo) files
15133         contain.  Else they play perfectly fine with qtdemux.
15134
15135 2006-05-23  Stefan Kost  <ensonic@users.sf.net>
15136
15137         * ext/theora/theoradec.c:
15138         * ext/theora/theoraenc.c:
15139         * ext/theora/theoraparse.c: (gst_theora_parse_class_init):
15140         * gst/audiorate/gstaudiorate.c:
15141           make more debug catagories static
15142         
15143         * tests/check/Makefile.am:
15144         * tests/check/elements/adder.c: (message_received),
15145         (test_event_message_received), (GST_START_TEST),
15146         (test_play_twice_message_received), (adder_suite):
15147           added test case for using element twice, extra bonus points for anyone
15148           who can make these test run reliably
15149
15150 2006-05-23  Tim-Philipp Müller  <tim at centricular dot net>
15151
15152         * ext/theora/theoradec.c: (theora_dec_chain):
15153           Make work with time-stamped input buffers that do not
15154           have a granulepos in BUFFER_OFFSET_END (like theora
15155           buffers coming from matroskademux). Fixes #342448.
15156
15157 2006-05-22  Tim-Philipp Müller  <tim at centricular dot net>
15158
15159         Patch by: Peter Kjellerstedt  <pkj at axis com>
15160
15161         * gst/tcp/Makefile.am:
15162           fdstresstest doesn't need Gtk+, fix compilation if 
15163           gtk is not available (#342566).
15164
15165 2006-05-19 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
15166          
15167         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:     
15168           80 line columns
15169           Removed redundant floor()
15170
15171 2006-05-19  Tim-Philipp Müller  <tim at centricular dot net>
15172
15173         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
15174           On second thought, just skip JUNK chunks automatically, so
15175           the caller doesn't have to handle this. Fixes #342345.
15176           Also, return GST_FLOW_UNEXPECTED if we get a short read,
15177           not GST_FLOW_ERROR.
15178
15179 2006-05-19  Tim-Philipp Müller  <tim at centricular dot net>
15180
15181         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
15182           Don't bail out on JUNK chunks with a size of 0 (would try to
15183           pull_range 0 bytes before, which sources don't like too much).
15184           See #342345.
15185
15186 2006-05-19  Jan Schmidt  <thaytan@mad.scientist.com>
15187
15188         * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
15189         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
15190         Use the gstutil scaling function to preserve 64 bits while calculating
15191         output width and height from the display-aspect-ratio. (A continuation
15192         of #341542)
15193
15194 2006-05-19  Jan Schmidt  <thaytan@mad.scientist.com>
15195
15196         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
15197         (gst_xvimagesink_buffer_alloc):
15198         * sys/xvimage/xvimagesink.h:
15199         When performing buffer allocations, remember the caps and image format
15200         we return so that if the same caps are asked for next time we can
15201         return them immediately without doing any caps intersections.
15202
15203 2006-05-18 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
15204          
15205         * gst-libs/gst/rtp/README:
15206           Some new documentation
15207         * gst-libs/gst/rtp/gstrtpbuffer.h:       
15208           Added GST_RTP_PAYLOAD_DYNAMIC_STRING for use by children       
15209         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:     
15210         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:     
15211           New RTP audio base payloader class. Supports frame or sample based
15212           codecs.  Not enabled in Makefile.am until approved.
15213
15214 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
15215
15216         * tests/check/elements/alsa.c: (test_device_property_probe):
15217           Fix test case: don't try to free NULL GValueArray when there
15218           are no devices.
15219
15220 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
15221
15222         * tests/check/Makefile.am:
15223         * tests/check/elements/alsa.c: (test_device_property_probe),
15224         (alsa_suite), (main):
15225           Add simple test that runs a device property probe on alsasrc,
15226           alsasink and alsamixer. Disable valgrind check for now (too
15227           many leaks in libasound, and valgrind ignored my suppressions
15228           additions).
15229
15230 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
15231
15232         * ext/alsa/gstalsadeviceprobe.c: (gst_alsa_get_device_list),
15233         (gst_alsa_device_property_probe_probe_property),
15234         (gst_alsa_device_property_probe_needs_probe),
15235         (gst_alsa_device_property_probe_get_values),
15236         (gst_alsa_type_add_device_property_probe_interface):
15237         * ext/alsa/gstalsadeviceprobe.h:
15238         * ext/alsa/gstalsamixerelement.c:
15239         (gst_alsa_mixer_element_init_interfaces):
15240         * ext/alsa/gstalsamixerelement.h:
15241           Clean up and simplify alsa device probing. Make it actually work
15242           for multiple classes. Don't cache results any longer.
15243
15244         * ext/alsa/gstalsasink.c: (gst_alsasink_init_interfaces),
15245         (gst_alsasink_init):
15246         * ext/alsa/gstalsasrc.c: (gst_alsasrc_dispose),
15247         (gst_alsasrc_interface_supported), (gst_implements_interface_init),
15248         (gst_alsasrc_init_interfaces), (gst_alsasrc_set_property):
15249           Make alsasink and alsasrc implement the GstPropertyProbe interface
15250           for device probing (#342181).
15251           Patch by: Martin Szulecki  <gnomebugzilla at sukimashita com>
15252
15253 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
15254
15255         * gst/subparse/samiparse.c: (handle_start_font):
15256           Don't ignore return value of strtol (++compiler_happiness).
15257
15258 2006-05-17  Tim-Philipp Müller  <tim at centricular dot net>
15259
15260         Patch by: Young-Ho Cha  <ganadist chollian net>
15261
15262         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
15263         (gst_sub_parse_class_init), (gst_sub_parse_init),
15264         (gst_sub_parse_set_property), (gst_sub_parse_get_property),
15265         (convert_encoding):
15266         * gst/subparse/gstsubparse.h:
15267           Add 'encoding' property (#341681).
15268
15269         * gst/subparse/samiparse.c: (characters_sami):
15270           Output is pango markup, so we need to escape text
15271           between tags (#342143).
15272
15273 2006-05-16  Tim-Philipp Müller  <tim at centricular dot net>
15274
15275         * gst-libs/gst/audio/multichannel.c:
15276         (gst_audio_check_channel_positions):
15277           It's okay to have caps with channels=1 and a channel position
15278           different from GST_AUDIO_CHANNEL_POSITION_FRONT_MONO
15279           (deinterleavers might want to keep the position in the caps,
15280           so that they can be re-interleaved again properly later).
15281           Leave check for unexpected 2-channel layouts intact for now.
15282
15283 2006-05-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15284
15285         * gst/tcp/gsttcp.c: (gst_tcp_socket_read):
15286         Return GST_FLOW_UNEXPECTED when we have an eos on the socket so
15287         basesrc can do its job correctly.
15288
15289 2006-05-16  Tim-Philipp Müller  <tim at centricular dot net>
15290
15291         * ext/alsa/Makefile.am:
15292         * ext/alsa/gstalsa.c: (gst_alsa_detect_rates),
15293         (gst_alsa_detect_formats), (get_channel_free_structure),
15294         (caps_add_channel_configuration), (gst_alsa_detect_channels),
15295         (gst_alsa_probe_supported_formats):
15296         * ext/alsa/gstalsa.h:
15297         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
15298           Refactor and improve caps probing code: probe signedness
15299           when we probe the supported formats/widths; set endianness
15300           to the one we actually probed for (ie. cpu endianness).
15301           
15302         * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (gst_alsasrc_getcaps),
15303         (gst_alsasrc_close):
15304         * ext/alsa/gstalsasrc.h:
15305           Implement caps probing for alsasrc.
15306
15307 2006-05-15  Wim Taymans  <wim@fluendo.com>
15308
15309         * ext/theora/theoradec.c: (gst_theora_dec_reset),
15310         (theora_dec_src_query), (theora_dec_src_event),
15311         (theora_dec_sink_event), (theora_handle_comment_packet),
15312         (theora_handle_data_packet), (theora_dec_change_state):
15313         Cleanups, add some G_LIKELY.
15314         Use segment helpers instead of our own wrong code.
15315         Clear queued buffers on seek and READY.
15316
15317         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
15318         (vorbis_dec_convert), (vorbis_dec_src_query),
15319         (vorbis_dec_src_event), (vorbis_dec_sink_event),
15320         (vorbis_handle_comment_packet), (vorbis_dec_push),
15321         (vorbis_handle_data_packet), (vorbis_dec_chain),
15322         (vorbis_dec_change_state):
15323         * ext/vorbis/vorbisdec.h:
15324         Remove old useless packetno variable.
15325         Do position query properly.
15326         Add some G_LIKELY.
15327         Do cleanup of queued buffers in new helper function
15328         and use it.
15329
15330 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
15331
15332         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
15333           Query supported sample rates. Fixes #341732.
15334
15335 2006-05-15  Julien MOUTTE  <julien@moutte.net>
15336
15337         * gst/playback/gstdecodebin.c: (cleanup_decodebin),
15338         (gst_decode_bin_change_state): Make decodebin reusable
15339         when going from PAUSE_TO_READY and then back to PAUSED.
15340         Fixes #331678.
15341
15342 2006-05-15  Wim Taymans  <wim@fluendo.com>
15343
15344         * ext/vorbis/vorbisdec.c: (vorbis_get_query_types),
15345         (vorbis_dec_convert), (vorbis_dec_src_query),
15346         (vorbis_dec_sink_query), (vorbis_dec_src_event),
15347         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
15348         (vorbis_dec_clean_queued), (vorbis_dec_push),
15349         (vorbis_handle_data_packet), (vorbis_dec_change_state):
15350         Cleanups. Use refcounting and DEBUG_OBJECT.
15351         Reset segment on flush, use code methods instead of our
15352         own wrong version.
15353         Fix potential memleak.
15354
15355 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
15356
15357         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
15358         (gst_alsasink_init):
15359         * ext/alsa/gstalsasink.h:
15360           Don't leak allocated snd_output_t structure if there's
15361           more than one alsasink instance at a time (#341873).
15362           Also fix GObject macros in header file.
15363           
15364 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
15365
15366         * gst/subparse/gstsubparse.c:
15367         (gst_sub_parse_data_format_autodetect):
15368           Don't use libxml functions in the typefinding code.
15369
15370 2006-05-15  Wim Taymans  <wim@fluendo.com>
15371
15372         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
15373         Fix seeking performance in the case where a non-header 
15374         packet has a 0 granulepos (busted theora case). 
15375         Fixes #341719
15376         (nvdr: thanks Wim for not mentioning who spotted and fixed it in
15377          the first place, you limelight stealer you)
15378
15379 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
15380
15381         * gst/subparse/gstsubparse.c:
15382         (gst_sub_parse_data_format_autodetect):
15383           Improve SAMI typefinding: handle case where there are
15384           whitespaces or newlines in front of the first <SAMI>
15385           tag (#169936).
15386
15387 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
15388
15389         * configure.ac:
15390           Build video4linux plugin even if there's no XVIDEO, just
15391           without implementing the GstXOverlay interface (#334002).
15392          
15393 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
15394
15395         * configure.ac:
15396         * ext/libvisual/visual.c: (gst_visual_actor_plugin_is_gl),
15397         (plugin_init):
15398           Add tentative support for libvisual-0.4 (#336881).
15399
15400 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
15401
15402         Patch by: Young-Ho Cha <ganadist at chollian net>
15403
15404         * gst/subparse/samiparse.c: (handle_start_font):
15405           Need to map "silver" colour explicitly (#169936).
15406
15407 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
15408
15409         Patch by: Young-Ho Cha  <ganadist at chollian net>
15410
15411         * gst/subparse/Makefile.am:
15412         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
15413         (parser_state_dispose), (gst_sub_parse_data_format_autodetect),
15414         (gst_sub_parse_format_autodetect), (feed_textbuf),
15415         (gst_subparse_type_find), (plugin_init):
15416         * gst/subparse/gstsubparse.h:
15417         * gst/subparse/samiparse.c:
15418         * gst/subparse/samiparse.h:
15419           Add support for SAMI subtitles (#169936).
15420
15421 2006-05-14  Michael Smith  <msmith@fluendo.com>
15422
15423         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_fill_others):
15424           Fix #341696: crash when mixing L+R+C to mono or stereo.
15425         * tests/check/Makefile.am:
15426         * tests/check/elements/audioconvert.c: (set_channel_positions),
15427         (get_float_mc_caps), (get_int_mc_caps), (GST_START_TEST),
15428         (audioconvert_suite):
15429           Add test for the above, including some generic framework bits for
15430           testing multichannel things.
15431
15432 === release 0.10.7 ===
15433
15434 2006-05-14  Jan Schmidt <thaytan@mad.scientist.com>
15435
15436         * configure.ac:
15437           releasing 0.10.7, "Leave the gun"
15438
15439 2006-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
15440
15441         * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
15442         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
15443         Fix the build.
15444
15445 2006-05-12  Jan Schmidt  <thaytan@mad.scientist.com>
15446
15447         * docs/libs/gst-plugins-base-libs-docs.sgml:
15448         * docs/libs/gst-plugins-base-libs-sections.txt:
15449         * gst-libs/gst/video/video.c: (gst_video_calculate_display_ratio):
15450         * gst-libs/gst/video/video.h:
15451         * gst/videoscale/Makefile.am:
15452         * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
15453         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
15454         * tests/check/Makefile.am:
15455         * tests/check/libs/video.c: (GST_START_TEST), (video_suite),
15456         (main):
15457           Fix integer overflow problem with pixel-aspect-ratio calculations
15458           in videoscale and xvimagesink (#341542)
15459
15460 2006-05-12  Tim-Philipp Müller  <tim at centricular dot net>
15461
15462         * gst-libs/gst/tag/gstid3tag.c:
15463           Map GST_IMAGE_TAG to and from ID2v2 APIC frames (#341557).
15464
15465 2006-05-12  Sebastien Moutte  <sebastien@moutte.net>
15466
15467         * win32/MANIFEST:
15468           update win32 files listing
15469
15470 2006-05-11  Thomas Vander Stichele  <thomas at apestaart dot org>
15471
15472         patch by: Sjoerd Simons (sjoerd@luon.net)
15473
15474         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
15475         (group_create), (group_destroy), (add_stream),
15476         (gst_play_base_bin_get_property),
15477         (gst_play_base_bin_get_streaminfo_value_array):
15478         * gst/playback/gstplaybasebin.h:
15479           API: GstPlayBaseBin::stream-info-value-array property
15480           use a more bindings-friendly way of exposing streaminfo
15481           using a GValueArray.  Tested in ipython.
15482           Closes #341114
15483
15484 2006-05-11  Wim Taymans  <wim@fluendo.com>
15485
15486         * gst/playback/gstdecodebin.c: (try_to_link_1), (queue_enlarge),
15487         (queue_underrun_cb), (queue_filled_cb):
15488         Also catch queue underruns but don't do anything yet.
15489         Refactor and comment queue enlarging code a bit.
15490
15491         * gst/playback/gstplaybasebin.c: (queue_overrun),
15492         (queue_threshold_reached), (queue_out_of_data),
15493         (gen_preroll_element):
15494         If a queue over/underruns check that we don't create nasty
15495         deadlocks when the min-threshold is not reached but the
15496         max-bytes is. In those cases disable max-bytes when we
15497         know that the queue is fed timed data.
15498         Add more comments.
15499
15500 2006-05-11  Tim-Philipp Müller  <tim at centricular dot net>
15501
15502         * gst/playback/gstplaybin.c: (gen_audio_element):
15503           Make playbin automatically plug an 'audioresample'
15504           element before the audio sink as well. This solves
15505           problems with sinks that only accept a very specific
15506           sample rate, like esdsink (e.g. #340379).
15507
15508 2006-05-11  Tim-Philipp Müller  <tim at centricular dot net>
15509
15510         * gst/playback/gstplaybasebin.c: (gen_source_element):
15511           Make http sources send special headers so that we receive
15512           icecast metadata if the http stream is an icecast stream
15513           (otherwise the server will just ignore them). This also
15514           means that from now on users will need the 'icydemux'
15515           element from gst-plugins-good installed if they want to
15516           listen to icecast radio streams. (#341432, #333657).
15517
15518 2006-05-11  Thomas Vander Stichele  <thomas at apestaart dot org>
15519
15520         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_remove_client_link),
15521         (gst_multi_fd_sink_new_client), (gst_multi_fd_sink_stop):
15522           remove stupid example from docs - it should come with a simple
15523           C program instead.
15524           Clean up/fix docs
15525         * tests/check/elements/multifdsink.c: (wait_bytes_served),
15526         (fail_if_can_read), (GST_START_TEST),
15527         (gst_multifdsink_create_streamheader), (multifdsink_suite):
15528           add a test for changing streamheader which exposes a bug in
15529           multifdsink
15530
15531 2006-05-11  Michael Smith  <msmith@fluendo.com>
15532
15533         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_init),
15534         (gst_gnome_vfs_src_received_headers_callback):
15535         * ext/gnomevfs/gstgnomevfssrc.h:
15536           Don't set icy-caps unless we have a sane interval value. Move
15537           interval to a local variable; we never use it outside this function.
15538
15539 2006-05-11  Wim Taymans  <wim@fluendo.com>
15540
15541         * sys/ximage/ximagesink.c: (gst_ximagesink_get_type):
15542         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_type):
15543         Register special buffer types along with the objects so
15544         that they are not registered at runtime from N different
15545         streaming threads since they are not threadsafe.
15546
15547 2006-05-10  Thomas Vander Stichele  <thomas at apestaart dot org>
15548
15549         * tests/check/elements/multifdsink.c: (wait_bytes_served),
15550         (GST_START_TEST), (fail_unless_read), (multifdsink_suite):
15551           add two more tests, one doing streamheader
15552
15553 2006-05-10  Thomas Vander Stichele  <thomas at apestaart dot org>
15554
15555         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_stop):
15556           clean up the bufqueue when shutting down
15557         * tests/check/Makefile.am:
15558         * tests/check/elements/multifdsink.c: (setup_multifdsink),
15559         (cleanup_multifdsink), (GST_START_TEST), (multifdsink_suite),
15560         (main):
15561           add a test for the leak that was just fixed
15562
15563 2006-05-10  Wim Taymans  <wim@fluendo.com>
15564
15565         * gst/adder/gstadder.c: (gst_adder_setcaps),
15566         (gst_adder_query_duration), (gst_adder_query), (forward_event),
15567         (gst_adder_src_event), (gst_adder_sink_event),
15568         (gst_adder_class_init), (gst_adder_finalize),
15569         (gst_adder_request_new_pad), (gst_adder_collected):
15570         * gst/adder/gstadder.h:
15571         Updated some docs. Added comments and FIXMEs all over the place.
15572         Improve debugging info.
15573         Fix leak on finalize by not calling the parent.
15574         Implement duration query.
15575         Make event forwarding threadsafe.
15576         Correctly send NEWSEGMENT at start and after flush.
15577         Handle EOS correctly.
15578         Post error when not negotiated.
15579
15580         * tests/check/elements/adder.c: (GST_START_TEST):
15581         Added FIXME in the test.
15582
15583 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
15584
15585         * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
15586         (gst_text_overlay_halign_get_type),
15587         (gst_text_overlay_wrap_mode_get_type):
15588         * ext/theora/theoradec.c: (theora_handle_type_packet),
15589         (theora_handle_data_packet):
15590         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
15591         (theora_enc_sink_setcaps), (theora_enc_chain):
15592         * gst-libs/gst/cdda/gstcddabasesrc.c:
15593         (gst_cdda_base_src_mode_get_type):
15594         * gst/audiotestsrc/gstaudiotestsrc.c:
15595         (gst_audiostestsrc_wave_get_type):
15596         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
15597         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
15598         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
15599         (gst_sync_method_get_type), (gst_unit_type_get_type),
15600         (gst_client_status_get_type):
15601         * gst/videoscale/gstvideoscale.c:
15602         (gst_video_scale_method_get_type):
15603         * gst/videotestsrc/gstvideotestsrc.c:
15604         (gst_video_test_src_pattern_get_type):
15605         * gst/videotestsrc/videotestsrc.c: (paint_setup_I420),
15606         (paint_setup_YV12), (paint_setup_YUY2), (paint_setup_UYVY),
15607         (paint_setup_YVYU), (paint_setup_IYU2), (paint_setup_Y41B),
15608         (paint_setup_Y42B), (paint_setup_Y800), (paint_setup_YVU9),
15609         (paint_setup_YUV9), (paint_setup_RGB888), (paint_setup_BGR888),
15610         (paint_setup_RGB565), (paint_setup_xRGB1555):
15611           Const-ify GEnumValue and GFlagsValue arrays. Use
15612           GST_ROUND_UP_* macros instead of home-made ones.
15613
15614 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
15615
15616         * configure.ac:
15617           Require core CVS for the new newsegment stuff.
15618
15619 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
15620
15621         Patch by: Sjoerd Simons  <sjoerd at luon net>
15622
15623         * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type):
15624           Register nick for enum value (#341160).
15625
15626 2006-05-09  Stefan Kost  <ensonic@users.sf.net>
15627
15628         * gst/typefind/gsttypefindfunctions.c: (m4a_type_find),
15629         (plugin_init):
15630          backout typefind patch #340375
15631          
15632         * tests/check/elements/adder.c: (message_received),
15633         (GST_START_TEST), (adder_suite):
15634           redo, signal-handling of test
15635
15636 2006-05-09  Wim Taymans  <wim@fluendo.com>
15637
15638         * gst/adder/gstadder.c: (gst_adder_request_new_pad),
15639         (gst_adder_collected):
15640         * gst/adder/gstadder.h:
15641         Remove bogus segment merging and forwarding, we don't
15642         care about timestamps anyway and we just produce a
15643         continuous stream. 
15644         Also create a nice NEWSEGMENT event when we start.
15645         Use _scale_int some more.
15646
15647 2006-05-09  Edward Hervey  <edward@fluendo.com>
15648
15649         * tests/icles/stress-xoverlay.c:
15650         Fix if core was built without parsing support.
15651
15652 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
15653
15654         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
15655           Add SEDG (Samsung MPEG-4) fourcc.
15656
15657 2006-05-09  Edward Hervey  <edward@fluendo.com>
15658
15659         * tests/icles/stress-xoverlay.c:
15660         * tests/examples/volume/volume.c:
15661         Fix if core was built without parsing support.
15662
15663         * tests/examples/seek/seek.c:
15664         Disable the parse_launch example if core was built without parsing
15665         support.
15666
15667 2006-05-08  Edward Hervey  <edward@fluendo.com>
15668
15669         * autogen.sh: (CONFIGURE_DEF_OPT): 
15670         libtoolize on Darwin/MacOSX is called glibtoolize
15671
15672 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
15673
15674         * tests/check/Makefile.am:
15675         * tests/check/elements/adder.c: (event_loop), (GST_START_TEST):
15676           Disable the adder test, until the build-slaves posses the kindness to 
15677           either like it or to give valid reason for not doing so 
15678
15679 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
15680
15681         * tests/check/elements/adder.c: (event_loop), (GST_START_TEST),
15682         (adder_suite):
15683           Shuffle NULL state change around and raise timeout more
15684
15685 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
15686
15687         * gst/typefind/gsttypefindfunctions.c: (mp4_find_box),
15688         (mp4_type_find), (plugin_init):
15689           Add typefind to distinguish between "audio/x-m4a" and new type
15690           "video/mp4". Fixes #340375
15691
15692         * tests/check/elements/adder.c: (adder_suite):
15693           Raise timeout to make buildbot happy
15694
15695 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
15696
15697         * gst/adder/gstadder.c: (gst_adder_sink_event),
15698         (gst_adder_request_new_pad), (gst_adder_change_state):
15699         * gst/adder/gstadder.h:
15700         * tests/check/Makefile.am:
15701         * tests/check/elements/adder.c: (event_loop), (GST_START_TEST),
15702         (adder_suite), (main):
15703           Add sink-event handling to adder. It tries to merge incomming
15704           newsegment-events. Added test to check if segment_done is comming
15705           through. Fixes #340060
15706
15707 2006-05-05  Andy Wingo  <wingo@pobox.com>
15708
15709         * ext/theora/theoraparse.c (gst_theora_parse_init)
15710         (theora_parse_src_convert, theora_parse_src_query):
15711         * ext/vorbis/vorbisparse.c (gst_vorbis_parse_init)
15712         (vorbis_parse_convert, vorbis_parse_src_query): Add convert and
15713         query functions on the source pads of the theora and vorbis parse
15714         elements. Fixes position querying when doing a remux.
15715
15716 2006-05-05  Michael Smith  <msmith@fluendo.com>
15717
15718         * ext/theora/theoraparse.c: (parse_granulepos),
15719         (theora_parse_drain_queue_prematurely),
15720         (theora_parse_queue_buffer), (theora_parse_sink_event):
15721           Fix flushing.
15722           Fix invalid granulepos outputs when starting with a non-keyframe.
15723
15724 2006-05-05  Jan Schmidt  <thaytan@mad.scientist.com>
15725
15726         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find),
15727         (mpeg1_sys_type_find), (ogganx_type_find), (sw_data_destroy):
15728         Rearrange MPEG system stream detection, fixing some memleaks in the
15729         process.
15730         Constify the data for STARTS_WITH and RIFF helper handlers. Make sure
15731         they clean up their data correctly.
15732         Remove unused ogganx caps and move the 'is_annodex' check to inside
15733         the 'is_ogg' if statement.
15734
15735 2006-05-05  Wim Taymans  <wim@fluendo.com>
15736
15737         * gst/playback/gstdecodebin.c: (cleanup_decodebin):
15738         Properly remove ghostpads. Fixes #340392
15739
15740 2006-05-04  David Schleef  <ds@schleef.org>
15741
15742         * gst/typefind/gsttypefindfunctions.c:
15743
15744 2006-05-03  Jan Schmidt  <thaytan@mad.scientist.com>
15745
15746         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
15747         (mpeg_ts_probe_headers), (mpeg_ts_type_find):
15748
15749         When typefinding an MP3 in push-based mode, don't penalise the
15750         probability down to 74% when we found 5 valid frames just because we
15751         can't peek the end of the file.
15752
15753         Make the probability for detecting MPEG Transport Streams based on the
15754         number of sequential headers we successfully detected.
15755
15756 2006-05-03  Wim Taymans  <wim@fluendo.com>
15757
15758         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
15759         (vorbis_dec_push), (vorbis_dec_chain):
15760         Still produce an error when we receive an empty packet.
15761
15762 2006-05-03  Wim Taymans  <wim@fluendo.com>
15763
15764         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
15765         (gst_ogg_chain_mark_discont), (gst_ogg_chain_new_stream),
15766         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek):
15767         Mark buffers with DISCONT after seek and after activating new
15768         chains.
15769
15770         * ext/theora/gsttheoradec.h:
15771         * ext/theora/theoradec.c: (gst_theora_dec_reset),
15772         (theora_get_query_types), (theora_dec_sink_event),
15773         (theora_dec_push), (theora_handle_data_packet), (theora_dec_chain),
15774         (theora_dec_change_state):
15775         Fix frame counter.
15776         Detect and mark DISCONT buffers.
15777
15778         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
15779         (vorbis_dec_sink_event), (vorbis_dec_push), (vorbis_dec_chain),
15780         (vorbis_dec_change_state):
15781         * ext/vorbis/vorbisdec.h:
15782         Use GstSegment.
15783         Detect and mark DISCONT buffers.
15784         Don't crash on 0 sized buffers.
15785
15786 2006-05-03  Wim Taymans  <wim@fluendo.com>
15787
15788         * gst/volume/gstvolume.c: (volume_funcfind), (volume_set_caps),
15789         (volume_transform_ip):
15790         Increase "volume" property to 10.0. Fixes #340369.
15791         Set the process function to NULL when capsnego fails so that
15792         we properly error out.
15793
15794 2006-05-02  Stefan Kost  <ensonic@users.sf.net>
15795
15796         * gst/playback/gstplaybin.c: (add_sink):
15797         * gst/playback/test.c: (main):
15798         * gst/playback/test5.c: (dump_element_stats):
15799         * gst/playback/test6.c: (main):
15800           free caps using gst_caps_unref, don't leak caps-strings
15801
15802 2006-05-01  Tim-Philipp Müller  <tim at centricular dot net>
15803
15804         * gst/typefind/gsttypefindfunctions.c: (musepack_type_find),
15805         (plugin_init):
15806           Refine musepack typefinding a bit. Return MAXIMUM
15807           probability when we detect stream version 7 to make
15808           sure the mpeg audio typefinder doesn't trump us.
15809
15810 2006-04-29  Tim-Philipp Müller  <tim at centricular dot net>
15811
15812         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
15813           Protect against unexpected NULL strf_data buffer.
15814
15815 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
15816
15817         * tests/check/elements/audioconvert.c: (verify_convert),
15818         (GST_START_TEST):
15819           interpret the out[] buffer in the order the bytes are actually
15820           put in, which is LITTLE_ENDIAN, not BYTE_ORDER.
15821           Other tests should use BYTE_ORDER since the array is filled in
15822           with actual values
15823
15824 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
15825
15826         * tests/check/elements/audioconvert.c: (verify_convert),
15827         (GST_START_TEST):
15828           when a test fails, give an indication of which it is
15829
15830 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
15831
15832         * gst-libs/gst/cdda/gstcddabasesrc.c:
15833           compile fix; strtol() needs <stdlib.h>
15834
15835 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
15836
15837         * ext/alsa/gstalsamixerelement.c:
15838         * ext/alsa/gstalsasrc.c:
15839         * ext/cdparanoia/gstcdparanoiasrc.c:
15840         * ext/gnomevfs/gstgnomevfssink.c:
15841         * ext/gnomevfs/gstgnomevfssrc.c:
15842         * ext/ogg/gstoggdemux.c:
15843         * ext/ogg/gstoggmux.c:
15844         * ext/ogg/gstoggparse.c:
15845         * ext/ogg/gstogmparse.c:
15846         * ext/pango/gstclockoverlay.c:
15847         * ext/pango/gsttextoverlay.c:
15848         * ext/pango/gsttextrender.c:
15849         * ext/pango/gsttimeoverlay.c:
15850         * ext/theora/theoradec.c:
15851         * ext/theora/theoraenc.c:
15852         * ext/vorbis/vorbisdec.c:
15853         * ext/vorbis/vorbisenc.c:
15854         * gst-libs/gst/audio/gstaudiofilter.c:
15855         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
15856         * gst/audioconvert/gstaudioconvert.c:
15857         * gst/audiorate/gstaudiorate.c:
15858         * gst/audioresample/gstaudioresample.c:
15859         * gst/audiotestsrc/gstaudiotestsrc.c:
15860         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15861         * gst/playback/gstdecodebin.c:
15862         * gst/playback/gstplaybin.c:
15863         * gst/playback/gststreamselector.c:
15864         * gst/subparse/gstsubparse.c:
15865         * gst/tcp/gstmultifdsink.c:
15866         * gst/tcp/gsttcpclientsink.c:
15867         * gst/tcp/gsttcpclientsrc.c:
15868         * gst/tcp/gsttcpserversink.c:
15869         * gst/tcp/gsttcpserversrc.c:
15870         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
15871         * gst/videorate/gstvideorate.c:
15872         * gst/videoscale/gstvideoscale.c:
15873         * gst/videotestsrc/gstvideotestsrc.c:
15874         * gst/volume/gstvolume.c:
15875         * sys/v4l/gstv4ljpegsrc.c:
15876         * sys/v4l/gstv4lmjpegsink.c:
15877         * sys/v4l/gstv4lmjpegsrc.c:
15878         * sys/v4l/gstv4lsrc.c:
15879         * sys/ximage/ximagesink.c:
15880         * sys/xvimage/xvimagesink.c:
15881         * tests/check/libs/cddabasesrc.c:
15882           make GstElementDetails const
15883
15884 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
15885
15886         * gst/adder/gstadder.c: (gst_adder_setcaps), (gst_adder_src_event),
15887         (gst_adder_init):
15888           send events from src-pad to all sink-pads fixes #338657
15889
15890 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
15891
15892         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps),
15893         (alsasink_parse_spec):
15894           query width capabilities from alsa, fixes #338919
15895
15896 2006-04-28  Wim Taymans  <wim@fluendo.com>
15897
15898         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
15899         (gst_multi_fd_sink_remove_client_link):
15900         * gst/tcp/gstmultifdsink.h:
15901         Fix race condition in multifdsink that can lead to spurious 
15902         duplicate clients. this patch adds a new signal that is fired when
15903         multifdsink has removed all references to the fd.
15904         Fixes #339574.
15905         Updated documentation.
15906         API: client-fd-removed signal added
15907
15908 2006-04-28  Michael Smith  <msmith@fluendo.com>
15909
15910         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_get_stats):
15911           When asking g_value_array_new to prealloc elements, we may as well
15912           ask for the right number of elements.
15913
15914 2006-04-28  Wim Taymans  <wim@fluendo.com>
15915
15916         * gst-libs/gst/audio/gstbaseaudiosink.c:
15917         (gst_base_audio_sink_drain), (gst_base_audio_sink_event),
15918         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
15919         patch to make timestamp checking more tollerant to rounding 
15920         errors given that real discontinuities are to be marked on
15921         buffers. Fixes some asf files and #338778.
15922         Also avoid some crashers when we receive an event in the 
15923         NULL state.
15924
15925 2006-04-28  Michael Smith  <msmith@fluendo.com>
15926
15927         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
15928         (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
15929         (gst_gnome_vfs_src_get_property),
15930         (gst_gnome_vfs_src_send_additional_headers_callback),
15931         (gst_gnome_vfs_src_received_headers_callback),
15932         (gst_gnome_vfs_src_create), (gst_gnome_vfs_src_start),
15933         (gst_gnome_vfs_src_stop):
15934         * ext/gnomevfs/gstgnomevfssrc.h:
15935           Remove ICY handling (mostly) from gnomevfssrc, in favour of
15936           proper shared support within icydemux.
15937
15938 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
15939
15940         * gst/videorate/gstvideorate.c: (gst_video_rate_reset),
15941         (gst_video_rate_swap_prev), (gst_video_rate_chain):
15942           fix up docs
15943           fix a leak when no caps negotiated
15944           fix counting of input frames
15945         * tests/check/elements/.cvsignore:
15946         * tests/check/elements/videorate.c: (assert_videorate_stats),
15947         (GST_START_TEST), (videorate_suite):
15948           add tests for these
15949
15950 2006-04-28  Wim Taymans  <wim@fluendo.com>
15951
15952         * gst-libs/gst/audio/gstringbuffer.c:
15953         (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
15954         (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
15955         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
15956         (gst_ring_buffer_pause), (gst_ring_buffer_stop),
15957         (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
15958         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
15959         (gst_ring_buffer_commit), (gst_ring_buffer_read),
15960         (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
15961         (gst_ring_buffer_clear), (gst_ring_buffer_may_start):
15962         Check arguments passed to public functions instead of
15963         crashing.
15964
15965 2006-04-28  Wim Taymans  <wim@fluendo.com>
15966
15967         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
15968         (gst_base_audio_src_get_time), (gst_base_audio_src_create):
15969         GstBaseAudioSrc must be live or it does not work.
15970
15971         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audio_src_init):
15972         Don't set live to TRUE as this is the default in the parentclass.
15973
15974 2006-04-28  Wim Taymans  <wim@fluendo.com>
15975
15976         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps),
15977         (gst_video_scale_fixate_caps), (gst_video_scale_src_event):
15978         Videoscale doesn't pass on pixel-aspect ratio. Handle all
15979         fixation cases better. Fixes #338991
15980
15981 2006-04-28  Wim Taymans  <wim@fluendo.com>
15982
15983         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
15984         Handle 0/1 framerate correctly Fixes #331901.
15985
15986 2006-04-28  Wim Taymans  <wim@fluendo.com>
15987
15988         * tests/check/elements/audioconvert.c: (get_float_caps),
15989         (GST_START_TEST), (audioconvert_suite):
15990         Added check for correct clipping when doing float samples
15991         in audioconvert.
15992
15993 2006-04-28  Wim Taymans  <wim@fluendo.com>
15994
15995         * gst/videorate/gstvideorate.c: (gst_video_rate_event),
15996         (gst_video_rate_chain):
15997         Print more debugging info.
15998
15999 2006-04-28  Wim Taymans  <wim@fluendo.com>
16000
16001         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
16002         (resample_set_state_from_caps):
16003         Add support for other formats audioresample can handle such as
16004         32 bits in and float and 64 bits float. Fixes #301759
16005
16006 2006-04-28  Wim Taymans  <wim@fluendo.com>
16007
16008         * gst/audioconvert/audioconvert.c: (float):
16009         correctly clip float samples > 1.0. Fixes #338718
16010
16011 2006-04-28  Tim-Philipp Müller  <tim at centricular dot net>
16012
16013         Patch by: Young-Ho Cha  <ganadist at chollian net>
16014
16015         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
16016         (gst_text_overlay_render_text):
16017           Don't strip newlines from the text. Also, center lines
16018           within multi-line paragraphs (#339405).
16019
16020 2006-04-28  Tim-Philipp Müller  <tim at centricular dot net>
16021
16022         * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find):
16023           Fix wavpack typefinding to work in more cases (don't peek
16024           for chunks of multiple hundred kBs at once, but process
16025           things step-by-step in smaller units). Fixes #339786.
16026
16027 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
16028
16029         * configure.ac:
16030           back to HEAD
16031
16032 === release 0.10.6 ===
16033
16034 2006-04-28  Thomas Vander Stichele <thomas at apestaart dot org>
16035
16036         * configure.ac:
16037           releasing 0.10.6, "Chao"
16038
16039 2006-04-26  David Schleef  <ds@schleef.org>
16040
16041         * gst/videoscale/gstvideoscale.c: Add call to oil_init().
16042           Fixes #338897.
16043
16044 2006-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
16045
16046         * configure.ac:
16047         * win32/common/config.h:
16048           new prerelease
16049
16050 2006-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
16051
16052         patch by: Wim Taymans
16053
16054         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
16055         (gst_ogg_demux_perform_seek):
16056           make sure correct newsegments are sent, so that the decoder
16057           and the demuxer agree on timestamps.  Fixes playback of a lot
16058           of Ogg files that do not start from 0.  Fixes #339833.
16059
16060 2006-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
16061
16062         Patch by: Edward Hervey  <edward@fluendo.com>
16063
16064         * gst/videorate/gstvideorate.c: (gst_video_rate_chain):
16065         * tests/check/Makefile.am:
16066         * tests/check/elements/videorate.c: (assert_videorate_stats),
16067         (setup_videorate), (cleanup_videorate), (GST_START_TEST),
16068         (videorate_suite), (main):
16069           Fix an infinite loop if frames are passed in with wrongly ordered
16070           timestamps.  Fixes #339013.
16071
16072 2006-04-22  Thomas Vander Stichele  <thomas at apestaart dot org>
16073
16074         Patch by: Tim-Philipp Müller  <tim at centricular dot net>
16075
16076         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
16077           fix typefinding on some ISO files.  Fixes #339212.
16078
16079 2006-04-22  Thomas Vander Stichele  <thomas at apestaart dot org>
16080
16081         Patch by: Tim-Philipp Müller  <tim at centricular dot net>
16082
16083         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
16084           add another H264 fourcc.  Fixes #339047.
16085
16086 2006-04-22  Thomas Vander Stichele  <thomas at apestaart dot org>
16087
16088         Patch by: Jan Schmidt
16089
16090         * gst/playback/gststreamselector.c:
16091         (gst_stream_selector_bufferalloc):
16092           Restore old StreamSelector behaviour.
16093           Fixes #338419.
16094
16095 2006-04-12  Thomas Vander Stichele  <thomas at apestaart dot org>
16096
16097         * configure.ac:
16098         * win32/common/config.h:
16099           prerelease
16100
16101 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
16102
16103         Patch by: Antoine Tremblay  <hexa00 at gmail dot com>
16104
16105         * gst-libs/gst/rtp/gstbasertpdepayload.c:
16106         (gst_base_rtp_depayload_finalize), (gst_base_rtp_depayload_push):
16107           Fix some memory leaks: on finalize, free buffers left in the queue
16108           before destroying the queue; in _push(), unref rtp_buf even if
16109           the process vfunc returned a NULL buffer as output buffer (#337548);
16110           demote some recuring debug messages to LOG level.
16111
16112 2006-04-11  Wim Taymans  <wim@fluendo.com>
16113
16114         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
16115         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
16116         (gst_ogg_chain_free), (gst_ogg_demux_sink_event),
16117         (gst_ogg_demux_loop):
16118         More cleanups.
16119         Respect segment stop when emiting EOS or SEGMENT_DONE.
16120         Fixes (#337945).
16121
16122 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
16123
16124         * gst/playback/gststreamselector.c:
16125         (gst_stream_selector_get_property):
16126           Don't leak pad name.
16127
16128 2006-04-10  Michael Smith  <msmith@fluendo.com>
16129
16130         * tests/check/Makefile.am:
16131         * tests/check/gst-plugins-base.supp:
16132           Suppress an old libtheora bug (fixed in more recent versions), so 
16133           that FC4 buildslaves can pass.
16134
16135 2006-04-10  Wim Taymans  <wim@fluendo.com>
16136
16137         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
16138         (gst_ogg_demux_receive_event), (gst_ogg_pad_event),
16139         (gst_ogg_demux_init), (gst_ogg_demux_finalize),
16140         (gst_ogg_demux_sink_event), (gst_ogg_demux_get_data),
16141         (gst_ogg_demux_loop):
16142         Don't leak events.
16143         Remember what error we got when finding chains, if we
16144         were shutdown, that would not be an error.
16145
16146 2006-04-10  Wim Taymans  <wim@fluendo.com>
16147
16148         * gst-libs/gst/audio/gstbaseaudiosink.c:
16149         (gst_base_audio_sink_event):
16150         Starting the ringbuffer when we did not acquire it can cause
16151         a deadlock, is pointless and causes nasty things for
16152         subclasses. 
16153         Fixes gst-launch audiotestsrc num-buffers=0 ! alsasink.
16154
16155 2006-04-10  Wim Taymans  <wim@fluendo.com>
16156
16157         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
16158         (gst_ogg_demux_receive_event), (gst_ogg_pad_event),
16159         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
16160         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
16161         (gst_ogg_demux_deactivate_current_chain),
16162         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
16163         (gst_ogg_demux_bisect_forward_serialno),
16164         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain):
16165         Add some more debugging.
16166
16167 2006-04-10  Wim Taymans  <wim@fluendo.com>
16168
16169         * ext/theora/theoradec.c: (theora_dec_src_event),
16170         (theora_handle_data_packet):
16171         Some more debug info.
16172
16173         * tests/examples/seek/seek.c: (start_seek), (main):
16174         Print element messages too.
16175
16176 2006-04-09  Sebastien Moutte  <sebastien@moutte.net>
16177
16178         * gst/audioresample/debug.h:
16179           replace debug macros with variable number of parameters
16180           by a simple alias to gstreamer standard debug macros 
16181          (#define RESAMPLE_ERROR GST_ERROR, __VA_ARGS__ is not
16182           supported by MSVC 6.0 and 7.1)
16183         * gst/audioresample/resample.h:
16184           define M_PI and rint for WIN32
16185         * win32/common/libgstaudio.def:
16186         * win32/common/libgstriff.def:
16187         * win32/common/libgsttag.def:
16188         * win32/common/libgstvideo.def:
16189           add new exported functions
16190         * win32/vs6:
16191           update project files
16192
16193 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
16194
16195         * ext/alsa/gstalsamixeroptions.c:
16196         (gst_alsa_mixer_options_class_init):
16197         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init):
16198         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_class_init):
16199         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init):
16200         * ext/ogg/gstoggparse.c: (gst_ogg_parse_class_init):
16201         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_class_init):
16202         * gst-libs/gst/audio/gstaudiofilter.c:
16203         (gst_audio_filter_class_init):
16204         * gst-libs/gst/audio/gstaudiosink.c:
16205         (gst_audioringbuffer_class_init):
16206         * gst-libs/gst/audio/gstaudiosrc.c:
16207         (gst_audioringbuffer_class_init):
16208         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_class_init):
16209         * gst-libs/gst/interfaces/colorbalancechannel.c:
16210         (gst_color_balance_channel_class_init):
16211         * gst-libs/gst/interfaces/mixeroptions.c:
16212         (gst_mixer_options_class_init):
16213         * gst-libs/gst/interfaces/mixertrack.c:
16214         (gst_mixer_track_class_init):
16215         * gst-libs/gst/interfaces/tunerchannel.c:
16216         (gst_tuner_channel_class_init):
16217         * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_class_init):
16218         * gst-libs/gst/netbuffer/gstnetbuffer.c:
16219         (gst_netbuffer_class_init):
16220         * gst-libs/gst/rtp/gstbasertppayload.c:
16221         (gst_basertppayload_class_init):
16222         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
16223         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
16224         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
16225         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init):
16226         * gst/playback/gststreamselector.c:
16227         (gst_stream_selector_class_init):
16228         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
16229         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
16230         * sys/v4l/gstv4lcolorbalance.c:
16231         (gst_v4l_color_balance_channel_class_init):
16232         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_class_init):
16233         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
16234         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
16235         * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_channel_class_init),
16236         (gst_v4l_tuner_norm_class_init):
16237         * sys/ximage/ximagesink.c: (gst_ximagesink_class_init):
16238         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_class_init):
16239         * tests/old/testsuite/alsa/sinesrc.c: (sinesrc_class_init):
16240         Fix #337365 (g_type_class_ref <-> g_type_class_peek_parent)
16241
16242 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
16243
16244         * ext/pango/gsttextrender.h:
16245         * gst-libs/gst/audio/gstaudiosink.h:
16246         * gst-libs/gst/audio/gstaudiosrc.h:
16247         * gst-libs/gst/audio/gstbaseaudiosink.h:
16248         * gst-libs/gst/audio/gstbaseaudiosrc.h:
16249         * gst-libs/gst/audio/gstringbuffer.h:
16250         * gst-libs/gst/rtp/gstbasertpdepayload.h:
16251         * gst-libs/gst/rtp/gstbasertppayload.h:
16252         * gst-libs/gst/video/gstvideofilter.h:
16253         * gst-libs/gst/video/gstvideosink.h:
16254         * gst/playback/gstplaybasebin.h:
16255         * gst/tcp/gstmultifdsink.h:
16256         * sys/v4l/gstv4lelement.h:
16257         Fix broken GObject macros
16258
16259 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
16260
16261         * ext/alsa/gstalsasink.c: (set_hwparams), (alsasink_parse_spec):
16262         More debug to trace why my USB headset is not working with gst
16263
16264 2006-04-07  Jan Schmidt  <thaytan@mad.scientist.com>
16265
16266         * gst/playback/gstplaybasebin.c: (group_destroy):
16267         Clean up our group elements properly in the case where it never 
16268         got committed - it still got added unconditionally to the bin.
16269
16270 2006-04-07  Wim Taymans  <wim@fluendo.com>
16271
16272         * ext/theora/theoradec.c: (theora_dec_sink_event),
16273         (theora_handle_data_packet), (theora_dec_chain):
16274         Unref unhandled events.
16275         Protect against empty buffers.
16276         Perform QoS on running time.
16277
16278 2006-04-07  Michael Smith  <msmith@fluendo.com>
16279
16280         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_set_header_on_caps),
16281         (gst_vorbis_enc_chain):
16282           Remove leaks from vorbisenc.
16283           Mostly minor changes, the only significant one is that now the
16284           buffers we set as 'streamheader' on the caps are copies of the
16285           original buffers, to avoid circular refcounting problems.
16286
16287 2006-04-07  Jan Schmidt  <thaytan@mad.scientist.com>
16288
16289         * gst/playback/gstplaybasebin.c: (mute_stream), (setup_substreams):
16290           Don't remove our mute-probe if someone else already did so.
16291           Don't set a 2nd one if there is already one pending on the pad.
16292
16293         * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
16294         (do_playbin_seek):
16295           When a seek fails, ensure that playbin is still set back to playing.
16296           
16297         * gst/typefind/gsttypefindfunctions.c: (mpeg_ts_probe_headers),
16298         (mpeg_ts_type_find), (plugin_init):
16299           Add a typefind function for mpeg-ts streams. (Closes: #336617)
16300
16301 2006-04-06  Andy Wingo  <wingo@pobox.com>
16302
16303         * gst/videorate/gstvideorate.c (gst_video_rate_reset) 
16304         (gst_video_rate_init): Caps-related parameters should not be reset
16305         by a flush -- move their inits to the instance init function.
16306         (gst_video_rate_flush_prev): Don't complain if gst_pad_push
16307         is not OK, just return the result.
16308
16309         * gst/audiotestsrc/gstaudiotestsrc.c
16310         (gst_audio_test_src_class_init)
16311         (gst_audio_test_src_get_times): Re-enable is-live=true, as was
16312         broken by Stefan's commit on 24 March.
16313
16314         * ext/ogg/gstoggmux.c (gst_ogg_mux_push_buffer): Set caps on
16315         buffers being pushed out. Fixes oggmux ! multifdsink.
16316
16317 2006-04-05  Tim-Philipp Müller  <tim at centricular dot net>
16318
16319         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
16320         (gst_vorbis_dec_init), (vorbis_dec_finalize):
16321         * ext/vorbis/vorbisdec.h:
16322         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_add_interfaces),
16323         (gst_vorbis_enc_base_init), (gst_vorbis_enc_class_init),
16324         (gst_vorbis_enc_sink_setcaps), (gst_vorbis_enc_convert_src),
16325         (gst_vorbis_enc_convert_sink), (gst_vorbis_enc_get_query_types),
16326         (gst_vorbis_enc_src_query), (gst_vorbis_enc_sink_query),
16327         (gst_vorbis_enc_init), (gst_vorbis_enc_get_tag_value),
16328         (gst_vorbis_enc_metadata_set1), (gst_vorbis_enc_set_metadata),
16329         (gst_vorbis_enc_setup), (gst_vorbis_enc_clear),
16330         (gst_vorbis_enc_buffer_from_packet),
16331         (gst_vorbis_enc_buffer_from_header_packet),
16332         (gst_vorbis_enc_push_buffer), (gst_vorbis_enc_push_packet),
16333         (gst_vorbis_enc_set_header_on_caps), (gst_vorbis_enc_sink_event),
16334         (gst_vorbis_enc_chain), (gst_vorbis_enc_output_buffers),
16335         (gst_vorbis_enc_get_property), (gst_vorbis_enc_set_property),
16336         (gst_vorbis_enc_change_state):
16337         * ext/vorbis/vorbisenc.h:
16338           Remove left-over 0.8 cruft; use GST_DEBUG_FUNCPTR; make
16339           vorbisenc adhere to the official nomenclature; use boilerplate
16340           macro.
16341
16342 2006-04-04  Andy Wingo  <wingo@pobox.com>
16343
16344         * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
16345         Whoops, fix bug introduced. Bad hacker!
16346         
16347         * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
16348         Properly handle the case where you get EOS before any buffers are
16349         received. Use gst_buffer_make_metadata_writable where appropriate.
16350
16351         * ext/theora/theoradec.c (theora_handle_data_packet): This value
16352         is often negative -- make it signed so as not to wrap around.
16353         Fixes segfaults introduced on 9 March.
16354
16355 2006-04-03  Wim Taymans  <wim@fluendo.com>
16356
16357         * ext/theora/gsttheoradec.h:
16358         * ext/theora/theoradec.c: (theora_dec_src_event):
16359         Don't try to store a gdouble in a gboolean.
16360         Small cleanups.
16361
16362 2006-04-03  Michael Smith  <msmith@fluendo.com>
16363
16364         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads):
16365           Oggmux sucks.
16366           Make it suck slightly less by writing out the final page.
16367           Still can't encode a vorbis-in-ogg file correctly, though.
16368
16369 2006-04-03  Andy Wingo  <wingo@pobox.com>
16370
16371         * ext/theora/theoraparse.c (theora_parse_drain_queue): Um, remove
16372         a g_print.
16373
16374         * ext/theora/theora.c (plugin_init): Register theoraparse.
16375
16376         * ext/theora/gsttheoraparse.h: 
16377         * ext/theora/theoraparse.c: New files implementing a theora
16378         parser. Now we can properly remux ogg/theora+vorbis, yay.
16379
16380         * ext/vorbis/vorbisparse.c: Add some docs and a copyright.
16381
16382 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
16383
16384         * gst/audiotestsrc/gstaudiotestsrc.c:
16385           Fixed the sample pipeline (see #323798)
16386
16387 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
16388
16389         * configure.ac:
16390         * win32/common/config.h:
16391         * win32/common/config.h.in:
16392           use AS_VERSION and AS_NANO
16393           more cleanups
16394
16395 2006-03-31  Andy Wingo  <wingo@pobox.com>
16396
16397         * ext/vorbis/vorbisparse.c (vorbis_parse_sink_event): Fix
16398         uninitialized variable return that would happen.
16399         
16400         * ext/vorbis/vorbisparse.c (vorbis_parse_drain_queue): Fix
16401         uninitialized variable return that would never happen.
16402
16403         * ext/vorbis/vorbisparse.c (gst_vorbis_parse_init) 
16404         (vorbis_parse_sink_event): Add an event function to flush our
16405         state on a seek, and to drain buffers on a premature EOS.
16406         (vorbis_parse_push_headers, vorbis_parse_clear_queue) 
16407         (vorbis_parse_push_buffer, vorbis_parse_drain_queue_prematurely) 
16408         (vorbis_parse_chain, vorbis_parse_queue_buffer) 
16409         (vorbis_parse_drain_queue): Queue up buffers until we can set
16410         their timestamps and granulepos values.
16411
16412         * ext/vorbis/vorbisparse.h: Include the vorbis decoder headers,
16413         and keep track of data needed for deriving granulepos and
16414         timestamps for buffers.
16415
16416 2006-03-29  Wim Taymans  <wim@fluendo.com>
16417
16418         Patch by: j^ <j at bootlab dot org>
16419
16420         * ext/alsa/gstalsamixerelement.c:
16421         (gst_alsa_mixer_element_class_init):
16422         * ext/alsa/gstalsasink.c:
16423         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init):
16424         * ext/ogg/gstoggdemux.c:
16425         * ext/ogg/gstoggmux.c:
16426         * ext/ogg/gstoggparse.c:
16427         * ext/pango/gstclockoverlay.c:
16428         * ext/pango/gsttextoverlay.c:
16429         * ext/pango/gsttextrender.c:
16430         * ext/pango/gsttimeoverlay.c:
16431         * ext/theora/theoradec.c:
16432         * ext/theora/theoraenc.c:
16433         * ext/vorbis/vorbisdec.c:
16434         * ext/vorbis/vorbisenc.c:
16435         * gst/audioconvert/gstaudioconvert.c:
16436         * gst/subparse/gstsubparse.c:
16437         * gst/tcp/gstmultifdsink.c:
16438         * gst/tcp/gsttcpclientsink.c:
16439         * gst/tcp/gsttcpclientsrc.c:
16440         * gst/tcp/gsttcpserversink.c:
16441         * gst/tcp/gsttcpserversrc.c:
16442           better/unified long descriptions
16443           Fixes #336477
16444
16445 2006-03-29  Wim Taymans  <wim@fluendo.com>
16446
16447         * tests/examples/seek/seek.c: (end_scrub), (seek_cb), (start_seek),
16448         (stop_seek):
16449         Don't let double and triple clicks mess up our state.
16450
16451 2006-03-28  Tim-Philipp Müller  <tim at centricular dot net>
16452
16453         * gst/playback/gstplaybin.c: (gen_video_element),
16454         (gen_text_element), (gen_audio_element), (gen_vis_element):
16455           Error out gracefully when we can't create any of the usual
16456           conversion elements for some reason. Also, don't try to
16457           create an audioscale (sic) element that's not used anyway.
16458
16459 2006-03-28  Tim-Philipp Müller  <tim at centricular dot net>
16460
16461         * gst/playback/gstplaybasebin.c: (setup_source):
16462           Don't post RESOURCE_NOT_FOUND error when we can't find a source
16463           element for a particular protocol, that's confusing for users.
16464           Instead, post a RESOURCE_FAILED error, so that our own error
16465           message is actually shown in totem etc. (#336303).
16466
16467 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
16468
16469         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
16470
16471         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_finalize),
16472         (gst_gnome_vfs_src_get_icy_metadata):
16473           Fix some minor memory leaks (#336194).
16474
16475 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
16476
16477         * ext/gnomevfs/gstgnomevfs.c:
16478         (gst_gnome_vfs_location_to_uri_string):
16479         * ext/gnomevfs/gstgnomevfs.h:
16480         * ext/gnomevfs/gstgnomevfssink.c:
16481         (gst_gnome_vfs_sink_set_property):
16482         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_set_property):
16483           Make gnomevfssink accept filenames as well as URIs for the
16484           "location" property, just like gnomevfssrc does (and
16485           filesrc/filesink do) (#336190).
16486
16487 2006-03-24  Thomas Vander Stichele <thomas at apestaart dot org>
16488
16489         * tests/check/generic/clock-selection.c: (GST_START_TEST):
16490           set to NULL before unreffing, fixes a valgrind leak.
16491           Why was this not triggering the error that an object needs to
16492           be NULL before unreffing ?
16493         * win32/common/config.h:
16494           update
16495
16496 2006-03-24  Tim-Philipp Müller  <tim at centricular dot net>
16497
16498         * gst/subparse/gstsubparse.c: (convert_encoding),
16499         (gst_sub_parse_change_state):
16500         * gst/subparse/gstsubparse.h:
16501           Text subtitle files may or may not be UTF-8. If it's not, we
16502           don't really want to see '?' characters in place of non-ASCII
16503           characters like accented characters. So let's assume the input
16504           is UTF-8 until we come across text that is clearly not. If it's
16505           not UTF-8, we don't really know what it is, so try the following:
16506           (a) see whether the GST_SUBTITLE_ENCODING environment variable
16507           is set; if not, check (b) if the current locale encoding is
16508           non-UTF-8 and use that if it is, or (c) assume ISO-8859-15 if
16509           the current locale encoding is UTF-8 and the environment variable
16510           was not set to any particular encoding. Not perfect, but better
16511           than nothing (and better than before, I think) (fixes #172848).
16512
16513 2006-03-24  Thomas Vander Stichele <thomas at apestaart dot org>
16514
16515         * configure.ac:
16516           update core requirement to 0.10.4.1 because of async_playback
16517           vmethod on GstBaseSink
16518
16519 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
16520
16521         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
16522         * gst/adder/gstadder.c: (gst_adder_init):
16523         use DEBUG_FUNCPTR for collectpads
16524
16525 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
16526
16527         * docs/plugins/Makefile.am:
16528         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
16529         * docs/plugins/gst-plugins-base-plugins-sections.txt:
16530         * ext/cdparanoia/gstcdparanoiasrc.c:
16531         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_base_init),
16532         (gst_gnome_vfs_sink_class_init):
16533         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_base_init):
16534         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_base_init):
16535         * ext/ogg/gstoggmux.c:
16536         * ext/ogg/gstoggparse.c: (gst_ogg_parse_base_init):
16537         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_base_init),
16538         (gst_ogm_video_parse_base_init), (gst_ogm_text_parse_base_init):
16539         * ext/pango/gsttextoverlay.c:
16540         * ext/pango/gsttextrender.c:
16541         * ext/theora/theoradec.c:
16542         * ext/theora/theoraenc.c:
16543         * ext/vorbis/vorbisdec.c:
16544         * ext/vorbis/vorbisenc.c:
16545         * gst-libs/gst/audio/gstaudiofilter.c:
16546         (gst_audio_filter_base_init):
16547         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
16548         (gst_audio_filter_template_base_init):
16549         * gst/adder/gstadder.c: (gst_adder_get_type):
16550         * gst/adder/gstadder.h:
16551         * gst/audioconvert/gstaudioconvert.c:
16552         * gst/audiotestsrc/gstaudiotestsrc.c:
16553         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
16554         (gst_audio_test_src_create):
16555         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
16556         * gst/playback/gstdecodebin.c:
16557         * gst/playback/gstplaybin.c:
16558         * gst/playback/gststreamselector.c:
16559         (gst_stream_selector_base_init):
16560         * gst/subparse/gstsubparse.c: (gst_sub_parse_base_init):
16561         * gst/volume/gstvolume.c:
16562         * sys/v4l/gstv4lmjpegsink.c:
16563         * sys/v4l/gstv4lmjpegsrc.c:
16564         * tests/check/libs/cddabasesrc.c:
16565         * tests/old/examples/gob/gst-identity2.gob:
16566           Add docs for adder, use GST_ELEMENT_DETAILS macro,
16567           define GstElementDetails at the top
16568
16569 2006-03-23  Sebastien Moutte  <sebastien@moutte.net>
16570
16571         * win32/common/libgstinterfaces.def:
16572         Add a lot of export functions for gst-python
16573         * win32/vs6/libgstinterfaces.dsp:
16574         Add a missing include folder in the project configuration
16575         
16576 2006-03-23  Wim Taymans  <wim@fluendo.com>
16577
16578         * gst-libs/gst/audio/gstbaseaudiosrc.c:
16579         (gst_base_audio_src_get_time), (gst_base_audio_src_create),
16580         (gst_base_audio_src_change_state):
16581         Fix audio sources, forgot to make the ringbuffer
16582         startable...
16583
16584 2006-03-23  Wim Taymans  <wim@fluendo.com>
16585
16586         * gst-libs/gst/audio/gstbaseaudiosrc.c:
16587         (gst_base_audio_src_get_time), (gst_base_audio_src_create),
16588         (gst_base_audio_src_change_state):
16589         unparent instead of unref the ringbuffer.
16590
16591 2006-03-23  Wim Taymans  <wim@fluendo.com>
16592
16593         * gst-libs/gst/audio/gstbaseaudiosink.c:
16594         (gst_base_audio_sink_class_init), (gst_base_audio_sink_async_play),
16595         (gst_base_audio_sink_do_play), (gst_base_audio_sink_change_state):
16596         Implement new async_play vmethod to start slaving and allow
16597         playback start in case of async PLAY state changes. 
16598
16599         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
16600         Enable QoS with new method in base class.
16601
16602 2006-03-23  Wim Taymans  <wim@fluendo.com>
16603
16604         Patch by: Julien MOUTTE <julien at moutte dot net>
16605
16606         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_query),
16607         (gst_video_test_src_do_seek), (gst_video_test_src_create):
16608         Partially handle 0 framerate, only EOS after the first frame
16609         is missing.
16610
16611 2006-03-23  Wim Taymans  <wim@fluendo.com>
16612
16613         Patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
16614
16615         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
16616         (gst_riff_create_video_template_caps):
16617         * gst/ffmpegcolorspace/avcodec.h:
16618         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
16619         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
16620         (gst_ffmpegcsp_avpicture_fill):
16621         * gst/ffmpegcolorspace/imgconvert.c:
16622         Patch for support of YVU9 AVI files (#334822)
16623
16624 2006-03-22  Edward Hervey  <edward@fluendo.com>
16625
16626         * docs/design/design-decodebin.txt:
16627         Added design document for new decodebin
16628         (Target Caps): text/x-pango-markup is also a default target caps.
16629
16630 2006-03-22  Wim Taymans  <wim@fluendo.com>
16631
16632         * gst-libs/gst/audio/gstbaseaudiosink.c:
16633         (gst_base_audio_sink_dispose):
16634         Since we _parent the ringbuffer, we also need to
16635         _unparent instead of a plain _unref.
16636
16637 2006-03-22  Wim Taymans  <wim@fluendo.com>
16638
16639         * tests/examples/seek/seek.c: (end_scrub), (do_seek), (seek_cb),
16640         (stop_seek), (scrub_toggle_cb), (main):
16641         Add scrub checkbox.
16642
16643 2006-03-21  Tim-Philipp Müller  <tim at centricular dot net>
16644
16645         * ext/ogg/gstoggparse.c: (gst_ogg_parse_find_stream),
16646         (gst_ogg_parse_chain):
16647           Fix very inefficient usage of linked lists (#335365).
16648
16649 2006-03-21  Edward Hervey  <edward@fluendo.com>
16650
16651         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
16652         * gst/playback/gstplaybin.c: (handoff):
16653         * gst/playback/gststreamselector.c:
16654         (gst_stream_selector_set_property):
16655         gcc 4.1 unreferenced pointer fixes.
16656         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put):
16657         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
16658         gst_buffer_ref() now takes a GstBuffer*.
16659
16660 2006-03-20  Julien MOUTTE  <julien@moutte.net>
16661
16662         * sys/xvimage/xvimagesink.c:
16663         (gst_xvimagesink_get_format_from_caps): Fix a memleak reported
16664         by Jan Schmidt.
16665
16666 2006-03-19  Tim-Philipp Müller  <tim at centricular dot net>
16667
16668         * gst/typefind/gsttypefindfunctions.c: (id3v2_type_find),
16669         (id3v1_type_find), (apetag_type_find), (plugin_init):
16670           Can't do tag preferences via probability, as tags would then
16671           lose against types that are recognised with MAXIMUM probability
16672           (like .wav); so let all tag typefinders return MAXIMUM themselves
16673           and order them via the rank. Split ID3v1 and ID3v2 typefinders so
16674           that we can prefer APE to ID3v1 (fixes #335028).
16675           
16676 2006-03-17  Wim Taymans  <wim@fluendo.com>
16677
16678         * gst-libs/gst/audio/gstbaseaudiosink.c:
16679         (gst_base_audio_sink_change_state):
16680         * gst-libs/gst/audio/gstringbuffer.c: (wait_segment),
16681         (gst_ring_buffer_may_start):
16682         * gst-libs/gst/audio/gstringbuffer.h:
16683         Only start playback if we are playing.
16684         should fix #330748.
16685
16686 2006-03-17  Jan Schmidt  <thaytan@mad.scientist.com>
16687
16688         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
16689         * win32/common/config.h:
16690           Revert accidental commits to these files.
16691
16692 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
16693
16694         Patch by: Michal Benes  <michal dot benes at xeris dot cz>
16695
16696         * tests/Makefile.am:
16697           Don't try to build tests in tests/icles if we
16698           don't have X (#323852)
16699
16700 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
16701
16702         * gst-libs/gst/tag/gstid3tag.c:
16703           Add TXXX frame identifiers for replaygain stuff as used
16704           by some taggers (see #323721).
16705
16706 2006-03-16  Jan Schmidt  <thaytan@mad.scientist.com>
16707
16708         * gst/playback/gststreamselector.c:
16709         (gst_stream_selector_set_property),
16710         (gst_stream_selector_bufferalloc):
16711           Preserve the existing buggy streamselector behaviour by performing
16712           a fallback buffer allocation when downstream isn't linked yet.
16713           This should really be fixed in playbin by blocking pads until it's
16714           linked them.
16715           Also, use gst_pad_alloc_buffer instead of
16716           gst_pad_alloc_buffer_and_set.
16717
16718 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
16719
16720         * gst-libs/gst/tag/gstid3tag.c:
16721           Don't crash on unknown ID3v2 TXXX frames.
16722           
16723 2006-03-15  Jan Schmidt  <thaytan@mad.scientist.com>
16724
16725         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise):
16726           Chain up to the parent finalize method.
16727           Add 32-bit sample size to the template caps.
16728
16729         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
16730         (gst_riff_create_video_template_caps):
16731           Add the fourcc that the VMWare codec uses.
16732           
16733         * gst/playback/gststreamselector.c:
16734         (gst_stream_selector_set_property),
16735         (gst_stream_selector_bufferalloc),
16736         (gst_stream_selector_request_new_pad):
16737           For the active pad, forward buffer-alloc requests, otherwise
16738           return GST_FLOW_NOT_LINKED. This also prevents xvimagesink
16739           having to memcpy every frame when used by playbin.
16740
16741         * gst/tcp/gstmultifdsink.c:
16742         (gst_multi_fd_sink_handle_client_write):
16743           Get negotiated caps from the sink pad, rather than the sink
16744           pad's peer.
16745
16746 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
16747
16748         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
16749         
16750         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_pop_callbacks):
16751           Don't forget to set src->callbacks_pushed to FALSE again when
16752           popping them, otherwise re-activation in a different mode won't
16753           work (#334620).
16754
16755 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
16756
16757         Patch by: Sebastien Moutte  <sebastien moutte net>
16758
16759         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: (gst_ff_vid_caps_new),
16760         (gst_ff_aud_caps_new), (gst_ffmpeg_pixfmt_to_caps),
16761         (gst_ffmpeg_smpfmt_to_caps):
16762           Replace __VA_ARGS__ caps creation macros with varargs functions.
16763           Makes things compile on MSVC (#320765), looks nicer, and we can
16764           tell the compiler to check for the NULL terminator.
16765
16766 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
16767
16768         Patch by: Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>
16769
16770         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
16771           Make sure the buffer we copy into is really always big
16772           enough, this time for real (#333488).
16773           
16774 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
16775
16776         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
16777           Add support for 24bpp DIB (#305279).
16778
16779 2006-03-14  Wim Taymans  <wim@fluendo.com>
16780
16781         * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_init):
16782         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
16783         * gst/ffmpegcolorspace/gstffmpegcolorspace.c: (gst_ffmpegcsp_init):
16784         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
16785         (gst_video_scale_init), (gst_video_scale_src_event):
16786         Re-enable QoS after the release.
16787         Rework videoscale to use the base class src_event handler.
16788
16789 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
16790
16791         * configure.ac:
16792           back to CVS.
16793
16794 === release 0.10.5 ===
16795
16796 2006-03-13  Thomas Vander Stichele <thomas at apestaart dot org>
16797
16798         * configure.ac:
16799           releasing 0.10.5, "Net"
16800
16801 2006-03-13  Tim-Philipp Müller  <tim at centricular dot net>
16802
16803         * docs/plugins/Makefile.am:
16804           Part of previous cdparanoiasrc docs fixes, forgot to commit.
16805           
16806 2006-03-12  Tim-Philipp Müller  <tim at centricular dot net>
16807
16808         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
16809         * docs/plugins/gst-plugins-base-plugins-sections.txt:
16810         * docs/plugins/gst-plugins-base-plugins.hierarchy:
16811           Add cdparanoiasrc to docs.
16812
16813         * gst-libs/gst/cdda/gstcddabasesrc.c:
16814           More GstCddaBaseSrc docs.
16815
16816 2006-03-12  Tim-Philipp Müller  <tim at centricular dot net>
16817
16818         * docs/libs/gst-plugins-base-libs-sections.txt:
16819         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_user_tag):
16820         * gst-libs/gst/tag/tag.h:
16821           API: libgsttag: new method gst_tag_from_id3_user_tag().
16822
16823 2006-03-11  Tim-Philipp Müller  <tim at centricular dot net>
16824
16825         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
16826           NULL-terminate array of mpeg4 video file extensions.
16827           Fixes crash on PPC (#334226).
16828
16829 2006-03-11  Tim-Philipp Müller  <tim at centricular dot net>
16830
16831         * ext/gnomevfs/gstgnomevfssrc.c:
16832         (gst_gnome_vfs_src_check_get_range):
16833           gnome_vfs_uri_is_local() alone is not a good indicator
16834           whether we can operate in pull-mode with a specific URI,
16835           as it returns FALSE for file:// URIs that point to an
16836           NFS-mounted path. Be more conservative here: whitelist
16837           local files, blacklist http URIs and use the old
16838           mechanism for anything else (fixes #334216).
16839
16840 2006-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
16841
16842         * configure.ac:
16843           back to trunk
16844
16845 === release 0.10.4 ===
16846
16847 2006-03-10  Thomas Vander Stichele <thomas at apestaart dot org>
16848
16849         * configure.ac:
16850           releasing 0.10.4, "Power"
16851
16852 2006-03-10  Jan Schmidt  <thaytan@mad.scientist.com>
16853
16854         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
16855         Disable max-lateness by setting it to -1 for now, so that 
16856         we can bed QoS stuff in thoroughly between now and the next
16857         release.
16858
16859 2006-03-10  Tim-Philipp Müller  <tim at centricular dot net>
16860
16861         Patch by: Fabrizio Gennari
16862
16863         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
16864           Make sure we don't read beyond the palette buffer in case of
16865           broken or manipulated files (#333488)
16866
16867 2006-03-10  Edward Hervey  <edward@fluendo.com>
16868
16869         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
16870         Fix for variable not initialized.
16871
16872 2006-03-09  Wim Taymans  <wim@fluendo.com>
16873
16874         * ext/libvisual/visual.c: (gst_visual_get_type),
16875         (gst_visual_src_setcaps), (gst_vis_src_negotiate),
16876         (gst_visual_chain):
16877         Small cleanups.
16878
16879         * ext/theora/gsttheoradec.h:
16880         * ext/theora/theoradec.c: (gst_theora_dec_init),
16881         (gst_theora_dec_reset), (_theora_granule_time),
16882         (theora_dec_src_convert), (theora_dec_sink_convert),
16883         (theora_dec_src_query), (theora_dec_src_event),
16884         (theora_dec_sink_event), (theora_handle_comment_packet),
16885         (theora_handle_header_packet), (theora_dec_push),
16886         (theora_handle_data_packet), (theora_dec_chain),
16887         (theora_dec_change_state):
16888         Add simple QoS.
16889
16890 2006-03-09  Wim Taymans  <wim@fluendo.com>
16891
16892         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
16893         (audiocast_register_listener), (gst_gnome_vfs_src_start):
16894         Some cleanups.
16895
16896 2006-03-09  Wim Taymans  <wim@fluendo.com>
16897
16898         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
16899         Don't try to activate NULL chains.
16900
16901 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
16902
16903         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
16904           Fix invalid memory access to region before peek'd data (#332964).
16905
16906 2006-03-09  Wim Taymans  <wim@fluendo.com>
16907
16908         Patch by: Christophe Fergeau
16909
16910         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init):
16911         * ext/pango/gsttextrender.c: (gst_text_render_init):
16912         * gst/adder/gstadder.c: (gst_adder_init):
16913         Don't leak padtemplates, closes #333510.
16914
16915 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
16916
16917         * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
16918           Fix invalid memory access: make sure string passed to
16919           regexec() is NUL-termianted.
16920
16921 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
16922
16923         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
16924         (mp3_type_find):
16925           Refactor mpeg/audio typefinding to make it more maintainable
16926           and easier to fine-tune. Make probing into middle of the file
16927           work properly (fixes #333900, also see #152688).
16928
16929 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
16930
16931         * gst/typefind/gsttypefindfunctions.c:
16932         (utf8_type_find_have_valid_utf8_at_offset):
16933           Remove part from previous commit that was bogus:
16934           g_utf8_validate() does in fact not accept embedded
16935           zeroes, so we don't need to check for those (thanks
16936           to Mike for the hint).
16937
16938 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
16939
16940         * gst/typefind/gsttypefindfunctions.c:
16941         (utf8_type_find_count_embedded_zeroes),
16942         (utf8_type_find_have_valid_utf8_at_offset), (utf8_type_find):
16943           Make plain/text typefinder more conservative: firstly, check
16944           for embedded zeroes, which are perfectly valid UTF-8 characters,
16945           but also a fairly good sign that something is not a plain text
16946           file; secondly, probe into the middle of the file if possible.
16947           If we can't probe into the middle, limit the probability value
16948           to be returned to TYPE_FIND_POSSIBLE (see #333900).
16949
16950 2006-03-08  Michael Smith  <msmith@fluendo.com>
16951
16952         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
16953           Make typefind function name for mpeg4 video unique.
16954
16955 2006-03-08  Wim Taymans  <wim@fluendo.com>
16956
16957         * ext/libvisual/visual.c: (gst_visual_init),
16958         (gst_visual_clear_actors), (gst_visual_dispose),
16959         (gst_visual_reset), (gst_visual_src_setcaps),
16960         (gst_visual_sink_setcaps), (gst_vis_src_negotiate),
16961         (gst_visual_sink_event), (gst_visual_src_event), (get_buffer),
16962         (gst_visual_chain), (gst_visual_change_state):
16963         Cleanups, post nice errors.
16964         Handle sink and src events.
16965         Implement simple QoS.
16966
16967         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
16968         Use new basesink methods to configure max-lateness.
16969         Small doc update.
16970
16971         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
16972         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps):
16973         Debug statement cleanups.
16974
16975         * gst/volume/gstvolume.c: (gst_volume_class_init):
16976         Simple cleanup.
16977
16978 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
16979
16980         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init),
16981         (gst_text_overlay_init), (gst_text_overlay_set_property),
16982         (gst_text_overlay_get_property):
16983           Revert API/ABI break from March 1. Keep 'halign' and 'valign'
16984           as string type properties, but mark them deprecated. Add
16985           'halignment' and 'valignment' properties that use enums
16986           instead of strings.
16987
16988 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
16989
16990         Patch by: Fabrizio Gennari
16991
16992         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
16993           Allow palettes with less than 256 colours in AVI files
16994           (#333488)
16995
16996 2006-03-07  Julien MOUTTE  <julien@moutte.net>
16997
16998         * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event),
16999         (gst_text_overlay_video_event): Fix wrong EOS handling on text
17000         pad. We were releasing the queued text buffer when we should keep
17001         it until video pad gets EOS or discard the text buffer because it's
17002         too old. That was eating the last subtitle buffer. Add some more
17003         debug.
17004
17005 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
17006
17007         * ext/pango/gsttextoverlay.c: (gst_text_overlay_render_text),
17008         (gst_text_overlay_video_chain):
17009           Fix invalid memory access (we can't access a buffer after it's been
17010           pushed downstream without taking a reference); fix memory leak (if
17011           there's no text to render, bail out before allocating stuff).
17012
17013 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
17014
17015         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
17016         (gst_text_overlay_setcaps_txt), (gst_text_overlay_video_chain):
17017         * ext/pango/gsttextoverlay.h:
17018           If input is plain text, escape it before passing it to
17019           pango_layout_set_markup().
17020
17021 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
17022
17023         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_chain):
17024           Don't ignore flow return from gst_pad_push().
17025
17026 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
17027
17028         Patch by: Fabrizio Gennari
17029
17030         * ext/libvisual/visual.c: (gst_visual_getcaps),
17031         (gst_visual_src_setcaps), (gst_visual_sink_setcaps):
17032         * ext/ogg/gstoggmux.c: (gst_ogg_mux_sinkconnect):
17033         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
17034         (gst_vorbisenc_convert_sink):
17035         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size),
17036         (gst_audio_duration_from_pad_buffer):
17037         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_link),
17038         (gst_audio_filter_chain):
17039         * gst-libs/gst/rtp/gstbasertpdepayload.c:
17040         (gst_base_rtp_depayload_setcaps):
17041         * gst-libs/gst/video/video.c: (gst_video_frame_rate),
17042         (gst_video_get_size):
17043         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
17044           Don't leak references returned by gst_pad_get_parent()
17045           (#333663)
17046
17047 2006-03-06  Stefan Kost  <ensonic@users.sf.net>
17048
17049         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
17050           change location param details
17051         * gst/volume/gstvolume.c: (plugin_init):
17052           correct plugin description
17053
17054 2006-03-06  Tim-Philipp Müller  <tim at centricular dot net>
17055
17056         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
17057         (gst_gnome_vfs_src_check_get_range):
17058           Override GstBaseSrc::check_get_range() in order to avoid opening
17059           the resource just to check whether we can operate in pull-mode or
17060           not - we can predict that pretty well from the URI alone. Should
17061           fix problems with last.fm (#331690). (Requires latest core CVS).
17062
17063 2006-03-06  Wim Taymans  <wim@fluendo.com>
17064
17065         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
17066         (gst_video_sink_class_init):
17067         Throw away frames that are later than 20 ms.
17068
17069 2006-03-06  Tim-Philipp Müller  <tim at centricular dot net>
17070
17071         Patch by: Fabrizio Gennari
17072
17073         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
17074           Set depth on WMA caps (#333545)
17075
17076 2006-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
17077
17078         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
17079         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
17080           put Theora BOS pages before others.  This hardcodes
17081           the Ogg/Theora I profile, but hey.
17082
17083 2006-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
17084
17085         * ext/ogg/README:
17086           updated with some examples
17087         * ext/theora/theoraenc.c: (granulepos_to_timestamp),
17088         (granulepos_add), (theora_buffer_from_packet):
17089         * ext/vorbis/vorbisenc.c: (granulepos_to_timestamp_offset),
17090         (granulepos_to_timestamp), (gst_vorbisenc_buffer_from_packet),
17091         (gst_vorbisenc_chain):
17092           implement strategy from ext/ogg/README
17093         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
17094         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
17095         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_compare_pads),
17096         (gst_ogg_mux_queue_pads), (gst_ogg_mux_collected):
17097           Fix muxer so that oggz-validate is happy with all streams;
17098           except for no eos mark, and the BOS page ordering
17099         * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
17100         (check_buffer_granulepos):
17101         * tests/check/pipelines/vorbisenc.c: (check_buffer_granulepos):
17102           update tests to check for OFFSET being set as requested
17103           fixed type of granulepos, it's not a ClockTime
17104
17105 2006-03-05  Julien MOUTTE  <julien@moutte.net>
17106
17107         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
17108         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
17109         Check that the xvimage we are creating has a correct size
17110         before returning it. (#314897)
17111
17112 2006-03-05  Tim-Philipp Müller  <tim at centricular dot net>
17113
17114         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
17115           Give id3 and ape tag typefinders a rank slightly higher
17116           than PRIMARY to ensure they're always run before any of
17117           the other typefinders (in particular wav and mp3) (#324186).
17118
17119 2006-03-05  Tim-Philipp Müller  <tim at centricular dot net>
17120
17121         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
17122           Add support for '3IVD' fourcc (#333403).
17123
17124 2006-03-04  Tim-Philipp Müller  <tim at centricular dot net>
17125
17126         * configure.ac:
17127           Bump requirements to GStreamer CVS for the new error enum.
17128
17129         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_render):
17130           Emit new GST_RESOURCE_ERROR_NO_SPACE_LEFT when there's no
17131           space left on the device (fixes #333352).
17132
17133 2006-03-04  Sebastien Moutte  <sebastien@moutte.net>
17134
17135         * win32/vs6:
17136           add a project file for libgstvolume
17137           update the workspace
17138
17139 2006-03-03  Thomas Vander Stichele  <thomas at apestaart dot org>
17140
17141         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
17142         * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
17143         (GST_START_TEST):
17144           Fix for http://bugzilla.gnome.org/show_bug.cgi?id=333254
17145           Set IN_CAPS on header buffers
17146
17147 2006-03-02  Wim Taymans  <wim@fluendo.com>
17148
17149         * docs/plugins/Makefile.am:
17150         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
17151         * docs/plugins/gst-plugins-base-plugins-sections.txt:
17152         Add audioresample to docs.
17153
17154         * gst/audioconvert/gstaudioconvert.c:
17155         Add revision date.
17156
17157         * gst/audioresample/gstaudioresample.c:
17158         (gst_audioresample_base_init), (gst_audioresample_class_init),
17159         (gst_audioresample_init), (gst_audioresample_dispose),
17160         (audioresample_get_unit_size), (audioresample_transform_caps),
17161         (resample_set_state_from_caps), (audioresample_transform_size),
17162         (audioresample_set_caps), (audioresample_event),
17163         (audioresample_do_output), (audioresample_transform),
17164         (audioresample_pushthrough), (gst_audioresample_set_property),
17165         (gst_audioresample_get_property), (plugin_init):
17166         * gst/audioresample/gstaudioresample.h:
17167         Added docs.
17168         Small code cleanups.
17169
17170 2006-03-02  Wim Taymans  <wim@fluendo.com>
17171
17172         * docs/plugins/Makefile.am:
17173         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
17174         * docs/plugins/gst-plugins-base-plugins-sections.txt:
17175         Added videoscale to docs.
17176
17177         * gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
17178         (gst_video_rate_swap_prev), (gst_video_rate_event),
17179         (gst_video_rate_chain):
17180         Fix typo in docs.
17181
17182         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
17183         (gst_video_scale_init), (gst_video_scale_prepare_size),
17184         (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
17185         (gst_video_scale_fixate_caps), (gst_video_scale_transform):
17186         * gst/videoscale/gstvideoscale.h:
17187         Added docs, examples.
17188         Some code cleanups.
17189         Post errors instead of g_warning.
17190
17191 2006-03-02  Wim Taymans  <wim@fluendo.com>
17192
17193         * docs/libs/gst-plugins-base-libs-docs.sgml:
17194         * docs/libs/gst-plugins-base-libs-sections.txt:
17195         * docs/libs/gst-plugins-base-libs.types:
17196         * docs/plugins/Makefile.am:
17197         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
17198         * docs/plugins/gst-plugins-base-plugins-sections.txt:
17199         Added some more docs to libs and plugins.
17200
17201         * gst-libs/gst/audio/gstringbuffer.c:
17202         (gst_ring_buffer_prepare_read), (gst_ring_buffer_clear):
17203         * gst-libs/gst/audio/gstringbuffer.h:
17204         Document ringbuffer some more.
17205
17206         * gst/videorate/gstvideorate.c: (gst_video_rate_class_init),
17207         (gst_video_rate_setcaps), (gst_video_rate_reset),
17208         (gst_video_rate_init), (gst_video_rate_flush_prev),
17209         (gst_video_rate_swap_prev), (gst_video_rate_event),
17210         (gst_video_rate_chain), (gst_video_rate_change_state):
17211         * gst/videorate/gstvideorate.h:
17212         Fix videorate to use segments.
17213         Make it work with 0/1 framerates (closes #331903)
17214         Handle EOS correctly.
17215         Added docs.
17216
17217 2006-03-02  Tim-Philipp Müller  <tim at centricular dot net>
17218
17219         * ext/ogg/gstogmparse.c: (gst_ogm_parse_class_init),
17220         (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
17221         (gst_ogm_text_parse_init), (gst_ogm_parse_change_state):
17222           In state change function, first chain up to parent class,
17223           then handle downwards state change stuff. Remove some
17224           commented out cruft from 0.8 code.
17225
17226 2006-03-02  Tim-Philipp Müller  <tim at centricular dot net>
17227
17228         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
17229         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
17230         (gst_ogm_parse_sink_convert), (gst_ogm_parse_sink_query),
17231         (gst_ogm_parse_chain):
17232           Don't remove/re-add source pad if the new caps are the same as
17233           the old caps anyway (#333042). When removing source pad, don't
17234           unref it afterwards - we didn't ref it when adding. Sprinkle some
17235           GST_DEBUG_FUNCPTR goodness here and there. Don't leak references
17236           after using gst_pad_get_parent(). Return downstream flow return
17237           value in chain function.
17238
17239 2006-03-02  Wim Taymans  <wim@fluendo.com>
17240
17241         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
17242         * docs/plugins/gst-plugins-base-plugins.args:
17243         * docs/plugins/gst-plugins-base-plugins.hierarchy:
17244         * docs/plugins/gst-plugins-base-plugins.interfaces:
17245         * docs/plugins/gst-plugins-base-plugins.signals:
17246         Fix hierarchy, added some more elements to the docs.
17247
17248         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
17249         (gst_ffmpegcsp_get_type):
17250         * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
17251         Fix docs for ffmpegcolorspace.
17252
17253 2006-03-01  Tim-Philipp Müller  <tim at centricular dot net>
17254
17255         * gst/typefind/gsttypefindfunctions.c: (id3_type_find),
17256         (apetag_type_find), (ape_type_find), (plugin_init):
17257           Some typefinding fine-tuning:
17258           - rank ID3/APE tags in order of preference via probabilities, so that
17259             ID3v2 > APEv2 > APEv1 > ID3v1.
17260           - three or four bytes don't really justify MAXIMUM probability,
17261             change those to 'very likely' (musepack and monkeysaudio).
17262
17263 2006-03-01  Wim Taymans  <wim@fluendo.com>
17264
17265         * docs/plugins/Makefile.am:
17266         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
17267         * docs/plugins/gst-plugins-base-plugins-sections.txt:
17268         * ext/alsa/gstalsamixer.c:
17269         * ext/alsa/gstalsamixer.h:
17270         * ext/alsa/gstalsamixerelement.c:
17271         (gst_alsa_mixer_element_class_init), (gst_alsa_mixer_element_init):
17272         * ext/alsa/gstalsamixerelement.h:
17273         * ext/alsa/gstalsasink.c:
17274         * ext/alsa/gstalsasink.h:
17275         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
17276         (gst_alsasrc_init):
17277         * ext/alsa/gstalsasrc.h:
17278         Added alsa docs.
17279         Small code cleanups.
17280
17281 2006-03-01  Wim Taymans  <wim@fluendo.com>
17282
17283         * ext/theora/Makefile.am:
17284         Dist new header too,
17285
17286 2006-03-01  Wim Taymans  <wim@fluendo.com>
17287
17288         * docs/plugins/Makefile.am:
17289         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
17290         * docs/plugins/gst-plugins-base-plugins-sections.txt:
17291         * ext/gnomevfs/gstgnomevfssink.h:
17292         * ext/gnomevfs/gstgnomevfssrc.h:
17293         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
17294         * ext/vorbis/vorbisdec.h:
17295         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_sink):
17296         * ext/vorbis/vorbisenc.h:
17297         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps),
17298         (vorbis_parse_chain), (vorbis_parse_change_state):
17299         * ext/vorbis/vorbisparse.h:
17300         * gst/audioconvert/gstaudioconvert.h:
17301         * gst/tcp/gsttcpserversink.h:
17302         * gst/videotestsrc/gstvideotestsrc.c:
17303         * gst/videotestsrc/gstvideotestsrc.h:
17304         * gst/volume/gstvolume.c:
17305         * gst/volume/gstvolume.h:
17306         Fix some more docs.
17307         Added docs for vorbisdec and vorbisparse.
17308         Fix vorbisparse.
17309
17310 2006-03-01  Wim Taymans  <wim@fluendo.com>
17311
17312         * docs/plugins/Makefile.am:
17313         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
17314         * docs/plugins/gst-plugins-base-plugins-sections.txt:
17315         * ext/pango/gstclockoverlay.h:
17316         * ext/pango/gsttextoverlay.h:
17317         * ext/pango/gsttextrender.h:
17318         * ext/pango/gsttimeoverlay.h:
17319         * ext/theora/gsttheoradec.h:
17320         * ext/theora/gsttheoraenc.h:
17321         * ext/theora/theoradec.c:
17322         * ext/theora/theoraenc.c:
17323         * gst/audioconvert/gstaudioconvert.h:
17324         * gst/audiotestsrc/gstaudiotestsrc.h:
17325         * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
17326         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
17327         * gst/tcp/gstmultifdsink.h:
17328         Updated/added documentation.
17329
17330         * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
17331         (gst_text_overlay_halign_get_type),
17332         (gst_text_overlay_wrap_mode_get_type),
17333         (gst_text_overlay_base_init), (gst_text_overlay_class_init),
17334         (gst_text_overlay_init), (gst_text_overlay_set_property),
17335         (gst_text_overlay_get_property):
17336         Fix up properties to be enums instead of string to make bindings,
17337         introspection and automatic GUI creation possible.
17338         Add getters for the properties.
17339
17340 2006-02-28  Sebastien Moutte  <sebastien@moutte.net>
17341
17342         * gst/audiotestsrc/gstaudiotestsrc.c:
17343           added defines of M_PI and M_PI_2
17344         * gst/ffmpegcolorspace/avcodec.h:
17345           removed #include "stdint.h" for win32 as _stdint.h is 
17346           autogenerated to win32/common
17347         * win32/common/libgstaudio.def:
17348         * win32/common/libgsttag.def:
17349           added some exports
17350         * win32/vs6:
17351           some project files bugs corrected
17352         * win32/vs7:
17353           project files are reset to the default vs7 configuration 
17354           (they link to msvcr71.dll using default optimizations)
17355           
17356 2006-02-28  Wim Taymans  <wim@fluendo.com>
17357
17358         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
17359         Fix some docs.
17360
17361 2006-02-28  Edward Hervey  <edward@fluendo.com>
17362
17363         * ext/alsa/gstalsasrc.c:
17364         Set proper class on the ElementDetails:
17365         Source/Audio instead of Src/Audio/
17366
17367 2006-02-28  Edward Hervey  <edward@fluendo.com>
17368
17369         * gst/videoscale/vs_scanline.c:
17370         (vs_scanline_resample_nearest_RGBA):
17371         Revert optimization in videoscale. It should go in liboil and have
17372         an appropriate liboil function.
17373
17374 2006-02-28  Wim Taymans  <wim@fluendo.com>
17375
17376         * gst-libs/gst/audio/gstbaseaudiosink.c:
17377         (gst_base_audio_sink_provide_clock):
17378         Don't try to provide a clock in the NULL state.
17379
17380 2006-02-28  Wim Taymans  <wim@fluendo.com>
17381
17382         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
17383         (gst_ogg_pad_event), (gst_ogg_pad_internal_chain),
17384         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
17385         (gst_ogg_demux_deactivate_current_chain),
17386         (gst_ogg_demux_activate_chain), (gst_ogg_demux_do_seek),
17387         (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_info),
17388         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
17389         (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
17390         Use GstSegment infrastructure to remove duplicated code
17391         and handle more seek cases correctly.
17392
17393 2006-02-28  Wim Taymans  <wim@fluendo.com>
17394
17395         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
17396         (gst_ffmpegcsp_transform):
17397         Don't ignore return code from ffmpeg convert function.
17398
17399         * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
17400         Split out some long statements to ease debugging.
17401
17402 2006-02-27  Jan Schmidt  <thaytan@mad.scientist.com>
17403
17404         * ext/libvisual/visual.c: (gst_visual_init),
17405         (gst_vis_src_negotiate), (get_buffer), (plugin_init):
17406         Don't use gst_pad_use_fixed_caps, because it prevents downstream from
17407         being able to renegotiate the size. Instead, use the negotiation
17408         algorithm from the goom plugin to pick an initial output caps. 
17409
17410         Also, allow theoretical libvisual plugins that might support non-GL 
17411         output even if they also do GL.
17412
17413 2006-02-26  Julien MOUTTE  <julien@moutte.net>
17414
17415         * ext/libvisual/visual.c: (gst_visual_init),
17416         (gst_visual_src_setcaps), (get_buffer), (gst_visual_chain),
17417         (plugin_init): Load only non GL plugins. Fix some memleaks and 
17418         possible negotiation issues.
17419
17420 2006-02-25  Julien MOUTTE  <julien@moutte.net>
17421
17422         * gst-libs/gst/tag/tag.h: Adding Annodex tags here.
17423
17424 2006-02-24  Michael Smith  <msmith@fluendo.com>
17425
17426         * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find),
17427         (cmml_type_find), (plugin_init):
17428           Fix CMML type find function to not require a specific minor version
17429           of the CMML header.
17430
17431           Add an MPEG4 video elementary stream typefind function.
17432
17433 2006-02-04  Michael Smith  <msmith@fluendo.com>
17434
17435         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_parse_skeleton_fishead),
17436         (gst_ogg_pad_parse_skeleton_fisbone), (gst_ogg_pad_query_convert),
17437         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
17438         (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
17439         (gst_ogg_demux_read_end_chain), (gst_ogg_demux_collect_chain_info),
17440         (gst_ogg_demux_change_state), (gst_annodex_granule_to_time):
17441           Annodex support in ogg demuxer. Doesn't do very much without the
17442           other annodex patches (to come).
17443
17444 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
17445
17446         Patch by: Fabrizio Gennari <fabrizio dot get at tiscali dot it>
17447
17448         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
17449           Pick up palette for MS video v1 (#327028)
17450
17451 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
17452
17453         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
17454         (gst_ffmpegcsp_caps_remove_format_info),
17455         (gst_ffmpegcsp_get_unit_size):
17456           The 'palette_data' field from incoming RGB caps shouldn't be
17457           proxied on outgoing YUV caps; also, restrict unit size
17458           adjustment in case of paletted data only to the unit that
17459           actually has a palette. Fixes #330711.
17460
17461 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
17462
17463         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
17464         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
17465         (gst_ffmpegcsp_finalize), (gst_ffmpegcsp_class_init),
17466         (gst_ffmpegcsp_get_unit_size):
17467           Plug some memory leaks.
17468
17469 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
17470
17471         * sys/ximage/Makefile.am:
17472         * sys/xvimage/Makefile.am:
17473           Add some _CFLAGS and _LIBS that seem to be missing
17474           and/or required for Cygwin (see #317048).
17475
17476 2006-02-22  Wim Taymans  <wim@fluendo.com>
17477
17478         * ext/alsa/gstalsasrc.c:
17479         Fix description as pointed out by caugier.
17480
17481 2006-02-22  Tommi Myöhänen  <ext-tommi do myohanen at nokia dot com>
17482
17483         Reviewed by : Edward Hervey  <edward@fluendo.com>
17484
17485         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
17486         (qt_type_find):
17487         Better 3gp typefinding (#331526).
17488
17489 2006-02-21  Tim-Philipp Müller  <tim at centricular dot net>
17490
17491         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
17492           Don't send EOS event here, the base class will send one for us.
17493
17494         * gst/playback/gstplaybasebin.c: (prepare_output):
17495           Subpictures without video stream aren't allowed either.
17496         
17497         * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
17498           Fix debug statement copy'n'paste-o.
17499
17500 2006-02-21  Tim-Philipp Müller  <tim at centricular dot net>
17501
17502         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume):
17503           Fix issues with mixer keeping state when muting/unmuting
17504           and when changing the volume whilst muted (see #331763
17505           and #331765).
17506
17507 2006-02-20  Tim-Philipp Müller  <tim at centricular dot net>
17508
17509         * gst/subparse/gstsubparse.c: (subrip_unescape_formatting),
17510         (parse_subrip), (gst_sub_parse_format_autodetect):
17511           Set right caps given that we send escaped text. Also,
17512           honour <i></i>, <b></b> and <u></u> markers that can be found
17513           in .srt files (fixes #310202).
17514
17515 2006-02-20  Tim-Philipp Müller  <tim at centricular dot net>
17516
17517         * gst-libs/gst/audio/mixerutils.c:
17518         (element_factory_rank_compare_func):
17519           Make order in which elements are tried more determinable.
17520
17521 2006-02-20  Julien MOUTTE  <julien@moutte.net>
17522
17523         * gst/playback/gstdecodebin.c: (get_our_ghost_pad),
17524         (remove_element_chain), (cleanup_decodebin),
17525         (gst_decode_bin_change_state): Make decodebin reusable by
17526         fixing remove_element_chain first and then introduce a
17527         cleaner in state change to ->NULL. (Closes #331678)
17528
17529 2006-02-19  Wim Taymans  <wim@fluendo.com>
17530
17531         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_open_file):
17532         use 0666 mask when creating files so umask gets applied
17533         correctly. Fixes #331295.
17534
17535 2006-02-19  Tim-Philipp Müller  <tim at centricular dot net>
17536
17537         * gst/subparse/Makefile.am:
17538         * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
17539         (gst_ssa_parse_dispose), (gst_ssa_parse_init),
17540         (gst_ssa_parse_class_init), (gst_ssa_parse_src_event),
17541         (gst_ssa_parse_sink_event), (gst_ssa_parse_setcaps),
17542         (gst_ssa_parse_remove_override_codes), (gst_ssa_parse_parse_line),
17543         (gst_ssa_parse_chain), (gst_ssa_parse_change_state):
17544         * gst/subparse/gstssaparse.h:
17545         * gst/subparse/gstsubparse.c: (plugin_init):
17546           Add very basic parser for SSA subtitle streams (as often
17547           found in matroska files).
17548
17549 2006-02-19  Tim-Philipp Müller  <tim at centricular dot net>
17550
17551         * gst/playback/gstdecodebin.c: (mimetype_is_raw):
17552           That should be text/x-pango-markup, not text/x-pango-layout.
17553
17554 2006-02-19  Julien MOUTTE  <julien@moutte.net>
17555
17556         * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize):
17557         Polishing.
17558
17559 2006-02-19  Julien MOUTTE  <julien@moutte.net>
17560
17561         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
17562         (gst_text_overlay_finalize), (gst_text_overlay_init),
17563         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
17564         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
17565         (gst_text_overlay_text_event), (gst_text_overlay_video_event),
17566         (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
17567         (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
17568         Fix state change deadlock.
17569
17570 2006-02-19  Julien MOUTTE  <julien@moutte.net>
17571
17572         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
17573         (gst_text_overlay_finalize), (gst_text_overlay_init),
17574         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
17575         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
17576         (gst_text_overlay_text_event), (gst_text_overlay_video_event),
17577         (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
17578         (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
17579         * ext/pango/gsttextoverlay.h: Fix seeking both for muxed formats
17580         and subtitles files.
17581
17582 2006-02-19  Julien MOUTTE  <julien@moutte.net>
17583
17584         * gst/playback/gstdecodebin.c: (mimetype_is_raw): pango layout
17585         should be considered as raw.
17586
17587 2006-02-19  Julien MOUTTE  <julien@moutte.net>
17588
17589         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
17590         (cb_probe):
17591         * gst/playback/gststreaminfo.h: Introduce language informations.
17592
17593 2006-02-18  Jan Schmidt  <thaytan@mad.scientist.com>
17594
17595         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
17596         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
17597         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
17598         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new):
17599         Set shared memory segments to be deleted as soon as we have attached,
17600         that way they get cleaned up automatically if we crash.
17601
17602 2006-02-18  Julien MOUTTE  <julien@moutte.net>
17603
17604         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_get_text): 
17605         * ext/pango/gsttimeoverlay.c: (gst_time_overlay_get_text): Those
17606         functions are called with lock held.
17607
17608 2006-02-18  Julien MOUTTE  <julien@moutte.net>
17609
17610         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
17611         (gst_text_overlay_finalize), (gst_text_overlay_init),
17612         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
17613         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
17614         (gst_text_overlay_text_pad_unlink), (gst_text_overlay_text_event),
17615         (gst_text_overlay_video_event), (gst_text_overlay_pop_text),
17616         (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
17617         (gst_text_overlay_change_state): Refactoring of textoverlay
17618         without collectpads. This now supports sparse subtitles coming
17619         from a demuxer instead of a sub file. Seeking is still broken 
17620         though. Need to discuss with wtay some more on how to handle
17621         seeking correctly.
17622         * ext/pango/gsttextoverlay.h:
17623         * gst/playback/gstplaybin.c: (setup_sinks): Support linking with
17624         subtitles coming from the demuxer.
17625
17626 2006-02-17  Wim Taymans  <wim@fluendo.com>
17627
17628         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
17629         (gst_vorbisenc_convert_sink):
17630         Use some more scaling functions.
17631
17632 2006-02-17  Tim-Philipp Müller  <tim at centricular dot net>
17633
17634         * ext/cdparanoia/gstcdparanoiasrc.c:
17635         (gst_cd_paranoia_src_class_init), (gst_cd_paranoia_dummy_callback),
17636         (gst_cd_paranoia_paranoia_callback),
17637         (gst_cd_paranoia_src_signal_is_being_watched),
17638         (gst_cd_paranoia_src_read_sector):
17639         * ext/cdparanoia/gstcdparanoiasrc.h:
17640           Add back 'transport-error' and 'uncorrected-error' signals and
17641           make them actually be fired when bad stuff happens (#319340).
17642
17643 2006-02-17  Wim Taymans  <wim@fluendo.com>
17644
17645         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
17646         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
17647         (gst_ring_buffer_device_is_open), (gst_ring_buffer_acquire),
17648         (gst_ring_buffer_release), (gst_ring_buffer_set_flushing),
17649         (gst_ring_buffer_start), (gst_ring_buffer_pause_unlocked),
17650         (gst_ring_buffer_pause), (gst_ring_buffer_stop),
17651         (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
17652         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
17653         (gst_ring_buffer_commit), (gst_ring_buffer_prepare_read),
17654         (gst_ring_buffer_clear):
17655         Small cleanups.
17656         Added some G_LIKELY.
17657
17658 2006-02-17  Wim Taymans  <wim@fluendo.com>
17659
17660         * gst-libs/gst/audio/TODO:
17661         Update TODO
17662
17663         * gst-libs/gst/audio/gstbaseaudiosink.c:
17664         (gst_base_audio_sink_get_offset):
17665         When trying to play samples ASAP and we don't have a
17666         previous sample, try to play at position 0 instead of
17667         an invalid position.
17668
17669 2006-02-17  Wim Taymans  <wim@fluendo.com>
17670
17671         * ext/alsa/gstalsasink.c: (gst_alsasink_open),
17672         (gst_alsasink_reset):
17673         Also release lock when we get an error in _reset();
17674         fix an error message.
17675
17676 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
17677
17678         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
17679         (gst_alsasink_init), (get_channel_free_structure),
17680         (caps_add_channel_configuration), (gst_alsasink_getcaps),
17681         (gst_alsasink_close):
17682         * ext/alsa/gstalsasink.h:
17683           Add support for more than 2 channels (#326720).
17684
17685 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
17686
17687         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
17688           Set codec_name for WAVEFORMATEX as well. When we have 'normal PCM'
17689           with 4 or 6 channels, assume a default channel layout to make things
17690           work (not sure there's anything else we can do in those cases).
17691
17692 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
17693
17694         * gst-libs/gst/audio/multichannel.c:
17695           Minor docs fix.
17696
17697         * gst-libs/gst/riff/Makefile.am:
17698         * gst-libs/gst/riff/riff-ids.h:
17699         * gst-libs/gst/riff/riff-media.c:
17700         (gst_riff_wavext_add_channel_layout), (gst_riff_create_audio_caps):
17701           Add support for WAVEFORMATEX, eg. PCM audio with more than two
17702           channels and a channel layout map.
17703           
17704 2006-02-16  Mathieu Garcia <b0nk at free dot fr>
17705
17706         Reviewed by Edward Hervey  <edward@fluendo.com>
17707
17708         * gst/videoscale/vs_scanline.c: (vs_scanline_resample_nearest_RGBA): 
17709         C-level optimization of the RGBA nearest neighbour function.
17710         Eventually this might end up in liboil with vectorized versions.
17711
17712 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
17713
17714         * gst-libs/gst/audio/multichannel.c:
17715         (gst_audio_get_channel_positions):
17716           When we have more than 2 channels, but no channel layout is
17717           specified in the caps, return some default channel layout
17718           to the caller and warn about about a possibly buggy element
17719           (could be buggy filtercaps as well of course) (#317038).
17720
17721 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
17722
17723         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
17724           Add gst-libs/gst/cdda to list of lib search paths.
17725
17726 2006-02-15  Andy Wingo  <wingo@pobox.com>
17727
17728         * ext/ogg/gstoggmux.c (gst_ogg_mux_collected): When updating
17729         timestamp, update timestamp_end as well. Fixes a bugaboo. I hope
17730         to the Lord Jesus that I do not have to touch the ogg muxer ever
17731         again.
17732
17733 2006-02-15  Edward Hervey  <edward@fluendo.com>
17734
17735         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
17736         quicktime movie files can also contain 'uuid' atoms.
17737
17738 2006-02-14  Tim-Philipp Müller  <tim at centricular dot net>
17739
17740         * gst/audioconvert/plugin.c: (plugin_init):
17741           Register the GstAudioChannelPosition enum type with the type
17742           system in the plugin_init function, so that it is known before
17743           any element actually makes use of multi-channel stuff. This is
17744           required for example if one wants to be able to deserialise/use
17745           a caps string with channel positions before any pipeline has
17746           been setup and started, like with gst-launch.
17747
17748 2006-02-14  Wim Taymans  <wim@fluendo.com>
17749
17750         * gst-libs/gst/audio/gstringbuffer.c:
17751         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_delay),
17752         (gst_ring_buffer_samples_done), (wait_segment),
17753         (gst_ring_buffer_commit), (gst_ring_buffer_clear):
17754         Add some compiler G_(UN_)LIKELY help.
17755         SIGNAL the ringbuffer waiters when going to PAUSED as well to
17756         make sure they can exit their functions. Should fix #330748
17757
17758 2006-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
17759
17760         * Makefile.am:
17761         * configure.ac:
17762         * win32/MANIFEST:
17763         * win32/common/_stdint.h:
17764           Windows does not have long long; copy the generated _stdint.h
17765         * win32/common/interfaces-enumtypes.c:
17766         (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
17767         (gst_mixer_track_flags_get_type),
17768         (gst_tuner_channel_flags_get_type):
17769         * win32/common/multichannel-enumtypes.c:
17770         (gst_audio_channel_position_get_type):
17771           update
17772
17773 2006-02-13  Wim Taymans  <wim@fluendo.com>
17774
17775         * gst-libs/gst/audio/gstbaseaudiosink.c:
17776         (gst_base_audio_sink_get_time), (gst_base_audio_sink_preroll),
17777         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
17778         Always sync on first sample we receive when starting.
17779
17780 2006-02-13  Wim Taymans  <wim@fluendo.com>
17781
17782         * gst/playback/gstplaybin.c: (gen_vis_element):
17783         Update vis bin docs.
17784         Move queue after tee so we don't queue video buffers but
17785         audio samples instead. Fixes problems where the video queue
17786         is filled and the audio queue empty.
17787
17788 2006-02-13  Tim-Philipp Müller  <tim at centricular dot net>
17789
17790         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
17791           No need to push an EOS event here, GstBaseSrc will do that for us
17792           when we return FLOW_UNEXPECTED.
17793           
17794 2006-02-12  Wim Taymans  <wim@fluendo.com>
17795
17796         * gst-libs/gst/audio/gstbaseaudiosink.c:
17797         (gst_base_audio_sink_get_time), (gst_base_audio_sink_setcaps),
17798         (gst_base_audio_sink_drain), (gst_base_audio_sink_preroll),
17799         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
17800         Use scale functions when possible.
17801         Fix error messages.
17802         Free clockid when after waiting for EOS.
17803         Use G_(UN_)LIKLY when it makes sense.
17804         Fix sample clipping bug found by Arwed v. Merkatz fixes #330789.
17805
17806 2006-02-12  Edward Hervey  <edward@fluendo.com>
17807
17808         * gst/playback/gstplaybasebin.c: (prepare_output): 
17809         Remove stray semi-colon (fixes #330888).
17810
17811 2006-02-12  Jan Schmidt  <thaytan@mad.scientist.com>
17812
17813         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
17814         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls):
17815         Fix up the XShm call testing so that we catch errors, and don't
17816         cause new ones by attempting to detach from a segment we failed
17817         to attach to. Fixes #312439.
17818
17819 2006-02-10  Edward Hervey  <edward@fluendo.com>
17820
17821         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
17822         Added flv file typefind (video/x-flv).
17823
17824 2006-02-10  Edward Hervey  <edward@fluendo.com>
17825
17826         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
17827         (gst_riff_create_video_template_caps):
17828         Added FLV1 <==> 'video/x-flash-video,flvversion=1' conversion.
17829         Also added the caps to the default set of riff video caps.
17830
17831 2006-02-09  Andy Wingo  <wingo@pobox.com>
17832
17833         * ext/ogg/gstoggmux.c (GstOggPad): Keep track of both the start
17834         time and the end time of the last packet in the page.
17835         (gst_ogg_mux_pad_queue_page): In addition to setting the timestamp
17836         on the pages in our queue, set the duration as well. Reflow a
17837         debug statement.
17838         (gst_ogg_mux_collected): Keep track of GstOggPad->timestamp_end.
17839         Fixes bad muxing order.
17840
17841 2006-02-09  Thomas Vander Stichele  <thomas at apestaart dot org>
17842
17843         * gst-libs/gst/rtp/gstbasertppayload.c:
17844         (gst_basertppayload_setcaps), (gst_basertppayload_push):
17845           update seqnum before setting it on the packet; this makes sure
17846           that the timestamp and seqnum properties match after pushing
17847           a buffer
17848
17849 2006-02-09  Andy Wingo  <wingo@pobox.com>
17850
17851         * gst-libs/gst/audio/gstringbuffer.c
17852         (gst_ring_buffer_samples_done): Cast to guint64, fixes an integer
17853         overflow after 13.5 hours of recording. Kapow!
17854
17855         * ext/alsa/gstalsasrc.c (gst_alsasrc_delay): Clamp the delay to
17856         the buffer size -- we don't care about underrun/overrun reporting
17857         right now, just need to return a useful value.
17858
17859 2006-02-09  Jan Schmidt  <thaytan@mad.scientist.com>
17860
17861         * configure.ac:
17862           Back to CVS
17863
17864 === release 0.10.3 ===
17865
17866 2006-02-09  Jan Schmidt <thaytan@mad.scientist.com>
17867
17868         * configure.ac:
17869           releasing 0.10.3, "Under Pressure"
17870
17871 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
17872
17873         * configure.ac:
17874         Drat. Bump libtool version number for new API.
17875         Prelease 0.10.2.3 (of 0.10.3)
17876
17877 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
17878
17879         * configure.ac:
17880         * win32/common/config.h:
17881         0.10.2.2 prerelease (of 0.10.3).
17882
17883 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
17884
17885         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_create):
17886           Revert Andy's newsegment change pending a more correct
17887           fix.
17888
17889 2006-02-08  Thomas Vander Stichele  <thomas at apestaart dot org>
17890
17891         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
17892         (qt_type_find), (plugin_init):
17893           detect more files as 3gp
17894           group and reorder the iso file formats
17895
17896 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
17897
17898         * ext/vorbis/vorbis.c: (plugin_init):
17899           Register musicbrainz tags, so apps don't have to.
17900
17901 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
17902
17903         * gst-libs/gst/tag/gstvorbistag.c: (gst_tag_from_vorbis_tag),
17904         (gst_tag_to_vorbis_tag):
17905           Make sure we called gst_tag_register_musicbrainz_tags()
17906           before possibly mapping a vorbiscomment string from/to a
17907           musicbrainz tag.
17908
17909 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
17910
17911         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
17912           In case we can't find the required number of consecutive
17913           mpeg audio frames to positively identify an MPEG audio
17914           stream, check if there's at least a valid mpeg audio
17915           frame right at offset 0 and if so suggest mpeg/audio
17916           caps with a very low probability (#153004).
17917
17918 2006-02-07  Andy Wingo  <wingo@pobox.com>
17919
17920         * gst/tcp/gsttcpclientsrc.c (gst_tcp_client_src_create): Switch to
17921         a TIME segment if we get timestamped buffers. Requires recent
17922         fixes in core to work properly.
17923
17924 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
17925
17926         * gst/playback/gstplaybasebin.c: (prepare_output):
17927           Don't print the URI as part of the error message, it
17928           makes error dialogs look rather ugly, especially if
17929           the URI is very long or has characters in it that
17930           need escaping.
17931
17932 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
17933
17934         * gst/playback/gstplaybasebin.c: (prepare_output):
17935           Error out if we have only text or subtitles, but nothing
17936           else. Also error out if we have subtitles but no video
17937           stream.
17938
17939 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
17940
17941         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
17942           Treat GNOME_VFS_RESULT_EOF as EOS, not as error (#329194).
17943           Post an error message on the bus when we encounter an
17944           error, which will hopefully be more meaningful than the
17945           'Internal Flow Error' message users get to see if we
17946           just return GST_FLOW_ERROR.
17947
17948 2006-02-07  Andy Wingo  <wingo@pobox.com>
17949
17950         * configure.ac (GST_MAJORMINOR): Update core version req to
17951         0.10.2.2, for the collectpads API addition (#330244).
17952
17953 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
17954
17955         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
17956           Return FALSE from plugin_init() when GnomeVFS can't
17957           be initialised for some reason (#328423).
17958
17959 2006-02-06  Julien MOUTTE  <julien@moutte.net>
17960
17961         * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event): 
17962         Stick to seeking theory until i find the bug.
17963         * gst/subparse/gstsubparse.c: (parse_subrip): Fix debug.
17964
17965 2006-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
17966
17967         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
17968         (theora_enc_finalize), (theora_enc_sink_setcaps),
17969         (theora_set_header_on_caps), (theora_enc_chain),
17970         (theora_enc_change_state):
17971         * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
17972           Make theoraenc and the tests leak free. Like, really.
17973
17974 2006-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
17975
17976         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
17977         (theora_enc_finalize), (theora_enc_sink_setcaps):
17978           Add a finalize method to ensure we clean up state even if
17979           someone omitted the state change back to NULL.
17980
17981         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1),
17982         (gst_vorbisenc_chain):
17983           Free some more leaked bits.
17984
17985         * tests/check/pipelines/theoraenc.c: (start_pipeline),
17986         (stop_pipeline):
17987           Wait for state changes to happen if they're ASYNC.
17988
17989           This ought to teach those fancy pants buildbots a lesson.
17990
17991 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
17992
17993         * gst-libs/gst/tag/gstid3tag.c:
17994           Add mapping for ID3 International Standard Recording Code
17995           tag "TSRC"
17996
17997 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
17998
17999         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1):
18000           Don't leak tag names.
18001
18002 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
18003
18004         * docs/libs/gst-plugins-base-libs-docs.sgml:
18005         * docs/libs/gst-plugins-base-libs-sections.txt:
18006         * gst-libs/gst/tag/gstid3tag.c:
18007         * gst-libs/gst/tag/gstvorbistag.c:
18008         * gst-libs/gst/tag/tags.c:
18009           Split libgsttag docs into multiple sections.
18010
18011 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
18012
18013         * docs/libs/Makefile.am:
18014         * docs/libs/gst-plugins-base-libs-docs.sgml:
18015         * docs/libs/gst-plugins-base-libs-sections.txt:
18016         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_tag):
18017         * gst-libs/gst/tag/gstvorbistag.c:
18018         * gst-libs/gst/tag/tag.h:
18019         * gst-libs/gst/tag/tags.c:
18020           Add libgsttag to the docs.
18021
18022 2006-02-05  Julien MOUTTE  <julien@moutte.net>
18023
18024         * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize),
18025         (gst_text_overlay_init), (gst_text_overlay_src_event),
18026         (gst_text_overlay_collected): Fix clockoverlay.
18027
18028 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
18029
18030         * docs/libs/compiling.sgml:
18031           Fix typo: it's pkg-config, not pkg-gconfig
18032
18033         * docs/libs/gst-plugins-base-libs-docs.sgml:
18034         * docs/libs/gst-plugins-base-libs-sections.txt:
18035         * docs/libs/tmpl/gstgconf.sgml:
18036           There is no libgstgconf in 0.10, remove it
18037           from the docs.
18038
18039 2006-02-05  Julien MOUTTE  <julien@moutte.net>
18040
18041         * docs/libs/tmpl/gstcolorbalance.sgml: Updated.
18042         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
18043         (gst_text_overlay_src_event), (gst_text_overlay_collected):
18044         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
18045         (gst_sub_parse_class_init), (gst_sub_parse_init),
18046         (gst_sub_parse_src_event), (parse_mdvdsub), (parse_subrip),
18047         (parse_mpsub), (parser_state_init), (handle_buffer),
18048         (gst_sub_parse_chain), (gst_sub_parse_sink_event), (plugin_init):
18049         * gst/subparse/gstsubparse.h: Introduce seeking code.
18050
18051 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
18052
18053         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
18054           Add comment about LANGUAGE tag inconsistency (we want
18055           ISO-639-1, but extract three-letter identifiers?)
18056
18057         * po/POTFILES.in:
18058           Add two translatable files.
18059
18060 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
18061
18062         * gst-libs/gst/tag/Makefile.am:
18063         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
18064         * gst-libs/gst/tag/tag.h:
18065         * gst-libs/gst/tag/tags.c:
18066         (gst_tag_register_musicbrainz_tags_internal),
18067         (gst_tag_register_musicbrainz_tags):
18068           Forward-port some tags stuff from the 0.8 branch. This is
18069           mostly the addition of musicbrainz tags and their mapping
18070           to vorbistags, and a vorbistag mapping of the language tag.
18071
18072 2006-02-05  Julien MOUTTE  <julien@moutte.net>
18073
18074         * gst/playback/gstplaybin.c: (gen_text_element): Fix broken code
18075         refactoring.
18076
18077 2006-02-04  David Schleef  <ds@schleef.org>
18078
18079         * ext/ogg/gstoggmux.c:
18080         * gst/typefind/gsttypefindfunctions.c:
18081           Add Dirac typefinding and add dirac format to oggmux.
18082
18083 2006-02-03  Tim-Philipp Müller  <tim at centricular dot net>
18084
18085         * gst/playback/gstdecodebin.c: (try_to_link_1):
18086           Don't put essential function call into
18087           g_return_*() macro, otherwise it'll all be
18088           replaced by NOOPs when compiling with
18089           G_DISABLE_CHECKS defined.
18090
18091 2006-02-03  Edgard Lima <edgard.lima@indt.org.br>
18092
18093         * ext/ogg/gstoggdemux.c:
18094         * ext/ogg/gstoggparse.c:
18095         * gst/tcp/gsttcpserversink.c:
18096         * sys/v4l/v4lsrc_calls.c:
18097         * sys/v4l/v4lsrc_calls.h:
18098         Just make it compile with --disable-gst-debug.
18099
18100 2006-02-03  Wim Taymans  <wim@fluendo.com>
18101
18102         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
18103         (gst_alsasink_class_init), (gst_alsasink_init),
18104         (gst_alsasink_write), (gst_alsasink_reset):
18105         * ext/alsa/gstalsasink.h:
18106         Add lock to protect alsa calls.
18107         Implement reset to flush samples ASAP, does not work
18108         with dmix though.
18109
18110 2006-02-02  Wim Taymans  <wim@fluendo.com>
18111
18112         * gst-libs/gst/audio/gstbaseaudiosink.c:
18113         (gst_base_audio_sink_provide_clock):
18114         Ugh.. getting late I guess...
18115
18116 2006-02-02  Wim Taymans  <wim@fluendo.com>
18117
18118         * gst-libs/gst/audio/gstbaseaudiosink.c:
18119         (gst_base_audio_sink_provide_clock),
18120         (gst_base_audio_sink_set_property),
18121         (gst_base_audio_sink_get_property), (gst_base_audio_sink_render):
18122         Don't try to provide a clock when we are not negotiated since
18123         we might not be able to make it run.
18124
18125 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
18126
18127         * gst/playback/gstdecodebin.c: (try_to_link_1):
18128           Unlinking two source pads is ... hard.
18129
18130 2006-02-02  Wim Taymans  <wim@fluendo.com>
18131
18132         * gst-libs/gst/audio/TODO:
18133         Updated.
18134
18135         * gst-libs/gst/audio/gstbaseaudiosink.c:
18136         (gst_base_audio_sink_drain), (gst_base_audio_sink_event):
18137         On EOS, wait till the last sample is played before posting EOS.
18138
18139 2006-02-01  Philippe Kalaf <burger at speedy dot org>
18140
18141         Patch by: Kai Vehmanen
18142         * gst-libs/gst/rtp/gstbasertpdepayload.c:
18143           Adds ability to enable newsegment bypass by setting queue_delay to
18144           zero. Also avoid thread being started if queue_delay is zero.
18145
18146 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
18147
18148         * gst/playback/test6.c: (new_decoded_pad_cb), (show_error), (main):
18149           Make test work again by connecting fakesinks to each decoded pad,
18150           which makes the pipeline wait until each fakesink has a buffer
18151           queued before going to PAUSED state. At that point we know the
18152           decodebin pads are negotiated.
18153
18154 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
18155
18156         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_query),
18157         (gst_cdda_base_src_handle_event):
18158         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_query):
18159           Pass unhandled queries to the parent class's query function.
18160
18161 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
18162
18163         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_types),
18164         (gst_ogg_pad_src_query):
18165         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
18166         * ext/theora/theoradec.c: (theora_dec_src_query),
18167         (theora_dec_sink_query):
18168         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
18169         (vorbis_dec_sink_query):
18170         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
18171         (gst_vorbisenc_sink_query):
18172         * gst/adder/gstadder.c: (gst_adder_query):
18173           Pass unhandled queries upstream instead of just
18174           dropping them (#326447). Also, fix supported
18175           query types list for some elements.
18176
18177 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
18178
18179         * gst/typefind/gsttypefindfunctions.c: (au_type_find),
18180         (paris_type_find), (ilbc_type_find), (plugin_init):
18181           Fix typefinding for audio/x-au, audio/x-paris and
18182           audio/iLBC-sh. We cannot use the START_WITH macros
18183           here, because there can only be one typefind factory
18184           with the same name (caps), so the second one would
18185           replace the first one and the first one would never
18186           be called when doing typefinding (see #161712).
18187           
18188
18189 2006-01-31  Wim Taymans  <wim@fluendo.com>
18190
18191         * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
18192         (vorbis_handle_header_packet), (vorbis_dec_push),
18193         (vorbis_handle_data_packet):
18194         Use scale_int when we can, add some more scaling.
18195         Check packettype before parsing it.
18196
18197 2006-01-31  Wim Taymans  <wim@fluendo.com>
18198
18199         * ext/theora/theoradec.c: (_theora_granule_time),
18200         (theora_dec_src_convert), (theora_dec_sink_convert):
18201         Call right _scale functions.
18202         Use parameter instead of some other random value.
18203
18204 2006-01-31  Wim Taymans  <wim@fluendo.com>
18205
18206         * ext/theora/theoradec.c: (_theora_granule_frame),
18207         (_theora_granule_time), (_inc_granulepos),
18208         (theora_dec_src_convert), (theora_dec_sink_convert),
18209         (theora_handle_type_packet), (theora_handle_data_packet),
18210         (theora_dec_chain):
18211         Use higher precision timestamps calculation.
18212         Convert some other conversions to _scale.
18213
18214 2006-01-31  Stefan Kost  <ensonic@users.sf.net>
18215
18216         * gst/audiotestsrc/gstaudiotestsrc.c:
18217         (gst_audio_test_src_create_sine_table), (plugin_init):
18218         * gst/volume/gstvolume.c: (plugin_init):
18219           initialize gst_controller before using
18220
18221 2006-01-31  Jan Schmidt  <thaytan@mad.scientist.com>
18222
18223         * tests/check/pipelines/theoraenc.c:
18224         * tests/check/pipelines/vorbisenc.c:
18225         Define constant using G_GINT64_CONSTANT to avoid errors when
18226         passing it around - otherwise it gets truncated to 32 bits.
18227
18228         Fixes failing tests.
18229
18230 2006-01-31  Andy Wingo  <wingo@pobox.com>
18231
18232         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_set_caps): Don't segfault if the
18233         caps being set doesn't have a framerate value. Basically a stopgap
18234         measure.
18235
18236         * ext/ogg/gstoggmux.c (GST_BUFFER_END_TIME): New macro. Not
18237         technically correct enough to put into core though.
18238         (gst_ogg_mux_dequeue_page): Use END_TIME instead of TIMESTAMP +
18239         DURATION. Fixes theoraenc ! oggmux.
18240
18241         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Fixate to the nearest
18242         fraction, not double.
18243
18244 2006-01-31  Sebastien Moutte  <sebastien@moutte.net>
18245
18246         * win32/vs7:
18247         add vs7 project files created by Sergey Scobich
18248
18249 2006-01-30  Sebastien Moutte  <sebastien@moutte.net>
18250
18251         * win32/vs8:
18252         add vs8 project files created by Sergey Scobich
18253         
18254 2006-01-30  Andy Wingo  <wingo@pobox.com>
18255
18256         * ext/ogg/gstoggmux.c (gst_ogg_mux_dequeue_page): Compare
18257         timestamp + duration, not just timestamp -- ogg pages should be
18258         ordered by stop time. Necessary fix given the change in vorbis
18259         timestamps.
18260
18261         * ext/theora/theoraenc.c (theora_enc_sink_setcaps) 
18262         (gst_theora_enc_init): Pull the granule shift out of the encoder.
18263         (granulepos_add): New function, handles the messiness of adjusting
18264         granulepos values.
18265         (theora_buffer_from_packet):
18266         (theora_enc_chain):
18267         (theora_enc_sink_event): Use granulepos_add, not +.
18268
18269         * tests/check/pipelines/theoraenc.c
18270         (check_buffer_granulepos_from_starttime): Just check the frame
18271         count, not the actual granulepos -- we can't dictate to the
18272         encoder when it should be placing keyframes.
18273
18274 2006-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
18275
18276         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
18277           SERVICE_NOT_AVAILABLE happens for example when you're trying to
18278           play an http:// stream from a server that's not serving
18279
18280 2006-01-30  Andy Wingo  <wingo@pobox.com>
18281
18282         * tests/check/pipelines/vorbisenc.c (TIMESTAMP_OFFSET): 
18283         * tests/check/pipelines/theoraenc.c (TIMESTAMP_OFFSET): Totally
18284         remove the UINT64_CONSTANT macro, doesn't appear to be needed or
18285         available.
18286
18287         * ext/theora/gsttheoraenc.h:
18288         * ext/theora/theoraenc.c: Same changes as were done to vorbisenc,
18289         although theoraenc was timestamping correctly. Added handling of
18290         streams that start with nonzero timestamps.
18291
18292         * tests/check/Makefile.am:
18293         * tests/check/pipelines/theoraenc.c: New file, basically does same
18294         tests as vorbisenc.
18295
18296         * tests/check/pipelines/vorbisenc.c: I claim these bugs.
18297
18298 2006-01-30  Wim Taymans  <wim@fluendo.com>
18299
18300         * gst-libs/gst/audio/gstaudiosink.c:
18301         (gst_audioringbuffer_class_init), (gst_audioringbuffer_release),
18302         (gst_audioringbuffer_pause):
18303         Implement pause that does not wait for completion.
18304
18305         * gst-libs/gst/audio/gstbaseaudiosink.c:
18306         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
18307         Don't drop buffers when going to PAUSED but perform preroll on
18308         remaining samples now that core base class supports this.
18309
18310         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_release),
18311         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_stop),
18312         (gst_ring_buffer_commit):
18313         Pause should not signal waiters.
18314         Implement return value of _commit correctly.
18315
18316 2006-01-30  Andy Wingo  <wingo@pobox.com>
18317
18318         * tests/check/Makefile.am (check_vorbis): Add pipelines/vorbisenc.
18319
18320         * ext/vorbis/vorbisenc.c (gst_vorbisenc_buffer_from_packet): Logic
18321         updated to timestamp from the first sample, not the last.
18322         (gst_vorbisenc_buffer_from_header_packet): New function, takes
18323         special care of granulepos and timestamp for header packets.
18324         (gst_vorbisenc_chain): Reflow, fix some leaks, and handle the case
18325         when the first buffer has a nonzero timestamp.
18326
18327         * ext/vorbis/vorbisenc.h (GstVorbisEnc.granulepos_offset)
18328         (GstVorbisEnc.subgranule_offset): New members. Take care of the
18329         case when the first audio buffer we get has a nonzero timestamp.
18330         (GstVorbisEnc.next_ts): Renamed from prev_ts, because now we
18331         properly timestamp vorbis buffers with the time of the first
18332         sample, not the last.
18333         
18334         * ext/vorbis/vorbisenc.c (granulepos_to_clocktime): Renamed from
18335         vorbis_granule_time_copy -- now it takes the granule/subgranule
18336         offset into account.
18337
18338         * tests/check/pipelines/vorbisenc.c: New test for correctness of
18339         timestamps, durations, and granulepos on buffers produced by
18340         vorbisenc.
18341
18342 2006-01-30  Jan Schmidt  <thaytan@mad.scientist.com>
18343
18344         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
18345         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
18346           Patch from Eric Jonas to support conversions to/from UYVY 
18347           (Fixes: #324626)
18348
18349 2006-01-30  Julien MOUTTE  <julien@moutte.net>
18350
18351         * gst/playback/gstplaybasebin.c: (group_commit), (queue_overrun),
18352         (setup_subtitle), (setup_source), (set_active_source):
18353         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
18354         (gen_text_element), (gen_audio_element), (gen_vis_element),
18355         (remove_sinks), (add_sink), (setup_sinks): Implement subtitles.
18356
18357 2006-01-29  Sebastien Moutte  <sebastien@moutte.net>
18358
18359         * gst-libs/gst/audio/audio.h: (GST_CLOCK_TIME_TO_FRAMES)
18360         * gst-libs/gst/audio/gstbaseaudiosink.c: (gst_base_audio_sink_render)
18361                 use gst_guint64_to_gdouble to be compliant with vs6
18362         * gst/playback/gstdecodebin.c: (try_to_link_1)
18363         * gst/videorate/videorate.c: (gst_video_rate_blank_data)
18364                 use G_GINT64_CONSTANT for int64 constants
18365         * win32/common/libgstinterfaces.def:
18366                 export some symbols (gst_mixer_get_type,gst_mixer_track_get_type)
18367         * win32/vs6:
18368                 update and add new project files
18369                 
18370 2006-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
18371
18372         * Makefile.am:
18373         * win32/MANIFEST:
18374         * win32/common/interfaces-enumtypes.c:
18375         (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
18376         (gst_mixer_track_flags_get_type),
18377         (gst_tuner_channel_flags_get_type):
18378         * win32/common/interfaces-enumtypes.h:
18379         * win32/common/multichannel-enumtypes.c:
18380         (gst_audio_channel_position_get_type):
18381         * win32/common/multichannel-enumtypes.h:
18382           add a win32-update rule like in core, and copy over enumtypes files
18383
18384 2006-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
18385
18386         * win32/MANIFEST:
18387         * win32/common/config.h:
18388         * win32/common/config.h.in:
18389           add config files just like in core
18390
18391 2006-01-28  Tim-Philipp Müller  <tim at centricular dot net>
18392
18393         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format):
18394           Make gcc-4.1 happy (part of #327357).
18395
18396 2006-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
18397
18398         * ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
18399         (set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
18400         (gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
18401         * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
18402         (set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
18403         (gst_alsasrc_unprepare), (gst_alsasrc_read):
18404           Update all error messages.  All of them should either use
18405           the default translated message, or actually provide a
18406           translatable string.
18407           Make the string for channel count problems meaningful.
18408
18409 2006-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
18410
18411         * sys/v4l/v4l_calls.c: (gst_v4l_open):
18412           check for and throw RESOURCE_BUSY
18413
18414 2006-01-27  David Schleef  <ds@schleef.org>
18415
18416         * gst/videoscale/vs_scanline.c: Oops, *that's* why I never
18417           checked in this change -- it requires liboil features not
18418           in 0.3.6.  Revert parts.
18419
18420 2006-01-27  David Schleef  <ds@schleef.org>
18421
18422         * REQUIREMENTS:
18423         * configure.ac: update liboil requirement to 0.3.6
18424         * gst/videoscale/Makefile.am:
18425         * gst/videoscale/vs_scanline.c: liboilify
18426
18427 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
18428
18429         * ext/libvisual/visual.c: (get_buffer):
18430           When pad_alloc returns a GstFlowReturn other
18431           than GST_FLOW_OK, make sure it is passed upstream.
18432
18433 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
18434
18435         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
18436         (gst_alsasink_class_init):
18437           Free the device name string.
18438
18439         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
18440         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad),
18441         (gst_ogg_mux_handle_src_event), (gst_ogg_mux_clear_collectpads):
18442           Don't remove a pad from the collectpads structure until it
18443           is released - it's a request pad, and may receive data again
18444           if the element gets moved back to PLAYING state.
18445
18446         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
18447           Ensure we turn on double buffering on the Xv port, and
18448           set the colour key to something dark and mysterious that
18449           isn't black.
18450
18451 2006-01-27  Thomas Vander Stichele  <thomas at apestaart dot org>
18452
18453         * ext/alsa/gstalsaplugin.c: (plugin_init):
18454         * ext/cdparanoia/gstcdparanoiasrc.c:
18455         (gst_cd_paranoia_src_base_init), (plugin_init):
18456         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
18457         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init):
18458           - a library should not call setlocale. see "Libraries" node in
18459             gettext manual
18460           - make sure all plugins that use translation do bindtextdomain
18461             to point to the localedir
18462         * gst/playback/gstplaybin.c: (gen_vis_element), (add_sink),
18463         (setup_sinks), (plugin_init):
18464           all this, and check for NULL when creating sinks
18465
18466 2006-01-27  Julien MOUTTE  <julien@moutte.net>
18467
18468         * gst/subparse/gstsubparse.c: (gst_subparse_type_find),
18469         (plugin_init): Make typefinding of subtitles work again.
18470
18471 2006-01-26  Tim-Philipp Müller  <tim at centricular dot net>
18472
18473         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
18474         (mp3_type_frame_length_from_header), (mp3_type_find),
18475         (wavpack_type_find), (m4a_type_find), (ircam_type_find),
18476         (plugin_init):
18477           Backport a bunch of typefinding fixes from the 0.8 branch.
18478           Also, improve wavpack typefinding: if we can't peek the
18479           entire wavpack block, try to parse the bits we can get and
18480           see if we find what we're looking for in those.
18481
18482 2006-01-26  Julien MOUTTE  <julien@moutte.net>
18483
18484         * sys/ximage/ximagesink.c:
18485         (gst_ximagesink_calculate_pixel_aspect_ratio):
18486         * sys/xvimage/xvimagesink.c:
18487         (gst_xvimagesink_calculate_pixel_aspect_ratio): Handle some
18488         more cases of pixel aspect ratio.
18489
18490 2006-01-26  Edward Hervey  <edward@fluendo.com>
18491
18492         * gst/playback/gstdecodebin.c: (pad_probe):
18493         Also consider the flush-start and tag events as unblockers
18494         for the pad probes.
18495
18496 2006-01-26  Julien MOUTTE  <julien@moutte.net>
18497
18498         * gst/playback/gstplaybin.c: (gst_play_bin_init),
18499         (gst_play_bin_dispose), (gst_play_bin_vis_unblocked),
18500         (gst_play_bin_vis_blocked), (gst_play_bin_set_property): 
18501         On the fly visualisation switch, works disabling, enabling as
18502         well but it won't be able to enable vis in a playbin that was
18503         created with no visualisation.
18504
18505 2006-01-25  Wim Taymans  <wim@fluendo.com>
18506
18507         * gst-libs/gst/audio/gstbaseaudiosink.c:
18508         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
18509         Undo previous commit that returned WRONG_STATE sooner, it breaks 
18510         resume after pause.
18511
18512 2006-01-25  Wim Taymans  <wim@fluendo.com>
18513
18514         * gst-libs/gst/audio/gstbaseaudiosink.c:
18515         (gst_base_audio_sink_setcaps), (gst_base_audio_sink_event),
18516         (gst_base_audio_sink_preroll), (gst_base_audio_sink_render):
18517         Improve debugging.
18518         Post error when caps cannot be parsed.
18519         Resync on discontinuity in the stream.
18520         Clip samples to segment boundaries.
18521         return WRONG_STATE sooner when we are flushing.
18522
18523         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
18524         (gst_base_audio_src_get_time), (gst_base_audio_src_create):
18525         Make audiosrc operate in TIME.
18526         Set TIMESTAMP and DURATION on buffers.
18527
18528 2006-01-24  Tim-Philipp Müller  <tim at centricular dot net>
18529
18530         * tests/examples/seek/seek.c: (main):
18531           Output tag messages as well.
18532
18533 2006-01-23  Edward Hervey  <edward@fluendo.com>
18534
18535         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
18536         (free_pad_probes), (remove_fakesink), (pad_probe),
18537         (close_pad_link), (gst_decode_bin_change_state):
18538         Replace GstPadBlockCallback with pad probes that detect
18539         first buffer AND eos before removing fakesink.
18540         Fixes hang with demuxers doing EOS while pre-rolling.
18541         Solves #328279
18542
18543 2006-01-23  Andy Wingo  <wingo@pobox.com>
18544
18545         * ext/alsa/gstalsasink.c:
18546         * gst-libs/gst/rtp/gstbasertpdepayload.c:
18547         (gst_base_rtp_depayload_setcaps),
18548         (gst_base_rtp_depayload_add_to_queue),
18549         (gst_base_rtp_depayload_queue_release): GCC 2.95 fixes (#328263).
18550         
18551         Patch by: Jens Granseuer <jensgr at gmx dot net>
18552
18553 2006-01-22  Julien MOUTTE  <julien@moutte.net>
18554
18555         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
18556         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
18557         (gst_xvimagesink_buffer_alloc): Playbin keeps some ref to some 
18558         frames. We might get a frame destroyed after changing state to
18559         NULL, adding a safety check on xcontext.
18560
18561 2006-01-22  Tim-Philipp Müller  <tim at centricular dot net>
18562
18563         * gst-libs/gst/interfaces/xoverlay.c:
18564           Fix prepare-xwindow-id code example in the docs - we need to
18565           ignore all messages that aren't element messages as well.
18566           
18567 2006-01-21  Julien MOUTTE  <julien@moutte.net>
18568
18569         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
18570           I think one day i'll completely undestand how caps negotiation
18571           is supposed to work. This refactoring handles buffer_alloc
18572           called with caps we can't handle. We definitely don't want a
18573           set_caps with those caps, so we define and allocate a buffer
18574           we would like to receive.
18575
18576 2006-01-19  Tim-Philipp Müller  <tim at centricular dot net>
18577
18578         * gst/playback/gstplaybasebin.c: (setup_source):
18579           Free iterator when done.
18580
18581 2006-01-17  Jan Schmidt  <thaytan@mad.scientist.com>
18582
18583         * gst-libs/gst/audio/gstbaseaudiosink.c:
18584         (gst_base_audio_sink_render):
18585           Fix playback of non-synchronised streams by assuming a rate
18586           of 1.0 instead of a random one.
18587
18588           Makes this work again:
18589
18590           gst-launch filesrc location=raw_audio.file ! 'audio/x-raw-int,
18591           endianness=(int)4321, signed=(boolean)true, width=(int)16,
18592           depth=(int)16, rate=(int)44100, channels=(int)2' ! audioconvert !
18593           audioresample ! alsasink
18594
18595 === release 0.10.2 ===
18596
18597 2006-01-16  Thomas Vander Stichele <thomas at apestaart dot org>
18598
18599         * configure.ac:
18600           releasing 0.10.2, "Then the devil is six"
18601
18602 2006-01-16  Jan Schmidt  <thaytan@mad.scientist.com>
18603
18604         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
18605         * gst/playback/gststreamselector.c:
18606         (gst_stream_selector_set_property):
18607           Comment out broken code that connects to the state-changed signal.
18608           At this point, changing current stream selection is broken, but 
18609           stuff like gst-launch playbin current-audio=1 works and filters
18610           to the chosen stream.
18611
18612 2006-01-16  Thomas Vander Stichele  <thomas at apestaart dot org>
18613
18614         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
18615           Fix #327216 (null dereference in vorbisdec)
18616
18617 2006-01-16  Tim-Philipp Müller  <tim at centricular dot net>
18618
18619         * ext/theora/theoradec.c: (theora_handle_comment_packet):
18620           Post taglist actually on bus instead of just freeing it
18621           (fixes #327114 and totem bug #327080).
18622
18623         * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
18624           Use gst_element_found_tags_for_pad(), so that the tags
18625           are sent downstream as an event as well.
18626
18627 2006-01-15  Thomas Vander Stichele  <thomas at apestaart dot org>
18628
18629         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
18630         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
18631         (gst_ximagesink_buffer_alloc):
18632         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
18633         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_show_frame),
18634         (gst_xvimagesink_buffer_alloc):
18635           move all regularly occurring messages to GST_LOG level
18636           add some more object logs
18637
18638 2006-01-14  Thomas Vander Stichele  <thomas at apestaart dot org>
18639
18640         * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
18641           fix a silly segfault
18642
18643 2006-01-14  Tim-Philipp Müller  <tim at centricular dot net>
18644
18645         * docs/libs/gst-plugins-base-libs-docs.sgml:
18646         * docs/libs/gst-plugins-base-libs-sections.txt:
18647         * gst-libs/gst/audio/mixerutils.c:
18648         * gst-libs/gst/audio/mixerutils.h:
18649           Add docs for mixerutils stuff.
18650
18651 2006-01-13  Tim-Philipp Müller  <tim at centricular dot net>
18652
18653         * gst/playback/gstplaybasebin.c: (setup_source):
18654           Fix playback for sources that emit raw audio or
18655           raw video streams (e.g.: cd audio sources) (#325984).
18656
18657 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
18658
18659         * gst-libs/gst/audio/mixerutils.c:
18660         (gst_audio_mixer_filter_do_filter):
18661           actually save the element we create
18662
18663 2006-01-12  Tim-Philipp Müller  <tim at centricular dot net>
18664
18665         * gst-libs/gst/cdda/gstcddabasesrc.c:
18666         (gst_cdda_base_src_handle_track_seek):
18667           No need to post a tag message on the bus when seeking
18668           within the same track, only post it when the current
18669           track changes.
18670
18671 2006-01-11  Jan Schmidt  <thaytan@mad.scientist.com>
18672
18673         * gst/playback/gstplaybasebin.c: (group_destroy),
18674         (probe_triggered), (new_decoded_pad), (mute_group_type),
18675         (set_active_source):
18676         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
18677         * gst/playback/gststreamselector.c:
18678         (gst_stream_selector_base_init),
18679         (gst_stream_selector_set_property),
18680         (gst_stream_selector_request_new_pad):
18681           Reenable stream selection. These mechanisms need a complete overhaul
18682           in the face of 0.8->0.10 changes though.
18683
18684 2006-01-11  Jan Schmidt  <thaytan@mad.scientist.com>
18685
18686         * ext/ogg/gstoggdemux.c:
18687           Change the pad template to src_%d to match the pads that 
18688           are created from it. decodebin needs this information in order
18689           to decide that oggdemux is capable of producing multiple pads
18690           (and hence needs queues inserted).
18691
18692         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
18693         (gst_ogg_mux_collected):
18694           Make debug output more useful by using GST_PTR_FORMAT.
18695
18696 2006-01-11  Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
18697
18698         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
18699
18700         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps):
18701           Set depth and width for alaw/mulaw (fixes #326601).
18702
18703 2006-01-11  Thomas Vander Stichele  <thomas at apestaart dot org>
18704
18705         * tests/icles/Makefile.am:
18706           don't build the tests if we don't have the libs
18707
18708 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
18709
18710         * ext/cdparanoia/gstcdparanoiasrc.c: (gst_cd_paranoia_src_close),
18711         (gst_cd_paranoia_paranoia_callback):
18712           Don't try to free NULL pointers.
18713
18714 2006-01-10  Edward Hervey  <edward@fluendo.com>
18715
18716         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain),
18717         (gst_audio_rate_change_state), (plugin_init):
18718         Add debugging category.
18719         Fix type issues.
18720         Add case for incoming buffers without valid offset/offset_end.
18721
18722 2006-01-10  Michael Smith  <msmith@fluendo.com>
18723
18724         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_dispose):
18725           Don't leak GCond in audio sources.
18726
18727 2006-01-10  Jan Schmidt  <thaytan@mad.scientist.com>
18728
18729         * gst/playback/gstplaybin.c: (gen_audio_element):
18730           Don't leak an autoaudiosink/alsasink when we generate
18731           a new audio element. (old code, I guess)
18732
18733 2006-01-10  Michael Smith  <msmith@fluendo.com>
18734
18735         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
18736           Support float audio in audiorate.
18737           Use width rather than depth for selecting sample width.
18738
18739 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
18740
18741         * gst/videotestsrc/videotestsrc.h:
18742           Use GLib types here (that way we don't have to include the
18743           generated _stdint.h header, which makes life easier for win32
18744           folks that don't use autotools for the build) (#325990, patch
18745           by: Sergey Scobich).
18746
18747 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
18748
18749         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
18750         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
18751         (gst_ring_buffer_pause), (wait_segment):
18752         * gst-libs/gst/audio/gstringbuffer.h:
18753           Name (private) union, makes Forte compiler happy (this time
18754           for real) (#324900).
18755
18756 2006-01-09  Tim-Philipp Müller  <tim at centricular dot net>
18757
18758         * gst-libs/gst/audio/Makefile.am:
18759           Link against libgstinterfaces, needed for mixer
18760           and property probe stuff.
18761
18762 2006-01-09  Edward Hervey  <edward@fluendo.com>
18763
18764         * gst-libs/gst/Makefile.am:
18765
18766 2006-01-09  Tim-Philipp Müller  <tim at centricular dot net>
18767
18768         * gst-libs/gst/audio/Makefile.am:
18769         * gst-libs/gst/audio/mixerutils.c:
18770         (gst_audio_mixer_filter_do_filter),
18771         (gst_audio_mixer_filter_check_element),
18772         (gst_audio_mixer_filter_probe_feature),
18773         (element_factory_rank_compare_func),
18774         (gst_audio_default_registry_mixer_filter):
18775         * gst-libs/gst/audio/mixerutils.h:
18776           Add gst_audio_default_registry_mixer_filter() utility
18777           function.
18778
18779 2006-01-03  Michael Smith  <msmith@fluendo.com>
18780
18781         * gst/audioresample/resample.h:
18782           As before, but for o_buf
18783
18784 2006-01-03  Michael Smith  <msmith@fluendo.com>
18785
18786         * gst/audioresample/resample.h:
18787           Declare struct _ResampleState.buffer as unsigned char *, not void *,
18788           since we do arithmetic on it.
18789
18790 2006-01-02  Tim-Philipp Müller  <tim at centricular dot net>
18791
18792         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
18793         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
18794         (gst_ring_buffer_pause), (wait_segment):
18795         * gst-libs/gst/audio/gstringbuffer.h:
18796           Sun's Forte compiler doesn't seem to like anonymous structs,
18797           so use same setup as in GstBaseSrc (fixes #324900).
18798
18799 2005-12-30  Stefan Kost  <ensonic@users.sf.net>
18800
18801         * configure.ac:
18802         * gst/volume/Makefile.am:
18803         * gst/volume/demo.c:
18804           move old example to tests/examples/volume/volune.c
18805         * tests/examples/Makefile.am:
18806         * tests/examples/seek/seek.c: (main):
18807           change window-close event from "delete-event" to "destroy"
18808         * tests/examples/volume/Makefile.am:
18809         * tests/examples/volume/volume.c: (value_changed_callback),
18810         (setup_gui), (message_received), (eos_message_received), (main):
18811           fix event handling and bus usage
18812
18813 2005-12-29  Stefan Kost  <ensonic@users.sf.net>
18814
18815         * gst/audiotestsrc/gstaudiotestsrc.c:
18816         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
18817         (gst_audio_test_src_init), (gst_audio_test_src_src_fixate),
18818         (gst_audio_test_src_query), (gst_audio_test_src_create_sine),
18819         (gst_audio_test_src_create_square),
18820         (gst_audio_test_src_create_saw),
18821         (gst_audio_test_src_create_triangle),
18822         (gst_audio_test_src_create_silence),
18823         (gst_audio_test_src_create_white_noise),
18824         (gst_audio_test_src_create_pink_noise),
18825         (gst_audio_test_src_init_sine_table),
18826         (gst_audio_test_src_create_sine_table),
18827         (gst_audio_test_src_change_wave),
18828         (gst_audio_test_src_change_volume), (gst_audio_test_src_do_seek),
18829         (gst_audio_test_src_create), (gst_audio_test_src_set_property):
18830         * gst/audiotestsrc/gstaudiotestsrc.h:
18831           update to basesrc changes, implement segmented seeking and eos
18832           handling, add a 'sine-tab' waveform for performance critical playback
18833
18834 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
18835
18836         * po/POTFILES.in:
18837           ... and this time the other modified file that I missed last time.
18838
18839 2005-12-29  Michael Smith  <msmith@fluendo.com>
18840
18841         * gst/playback/gstdecodebin.c: (new_pad):
18842           Fix non-C89 variable declaration not at the start of a block. Should
18843           help some compilers.
18844
18845 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
18846
18847         * tests/check/Makefile.am:
18848           And now fix 'make distcheck' (builddir != srcdir)
18849
18850 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
18851
18852         * configure.ac:
18853         * ext/cdparanoia/Makefile.am:
18854         * ext/cdparanoia/gstcdparanoia.c:
18855         * ext/cdparanoia/gstcdparanoia.h:
18856         * ext/cdparanoia/gstcdparanoiasrc.c:
18857         (gst_cd_paranoia_mode_get_type), (gst_cd_paranoia_src_base_init),
18858         (gst_cd_paranoia_src_init), (gst_cd_paranoia_src_class_init),
18859         (gst_cd_paranoia_src_open), (gst_cd_paranoia_src_close),
18860         (gst_cd_paranoia_paranoia_callback),
18861         (gst_cd_paranoia_src_read_sector), (gst_cd_paranoia_src_finalize),
18862         (gst_cd_paranoia_src_set_property),
18863         (gst_cd_paranoia_src_get_property), (plugin_init):
18864         * ext/cdparanoia/gstcdparanoiasrc.h:
18865           New cdparanoiasrc element based on cddabasesrc; enable cdparanoia
18866           plugin again (there are still fixes required to playbin to make
18867           cdda:// uris work there).
18868
18869 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
18870
18871         * tests/check/Makefile.am:
18872           Fix test case compilation.
18873
18874 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
18875
18876         * gst-libs/gst/cdda/gstcddabasesrc.c:
18877         (gst_cdda_base_src_update_duration),
18878         (gst_cdda_base_src_calculate_cddb_id):
18879           An integer is not a string. Fix access to uninitialised variable.
18880
18881         * tests/check/Makefile.am:
18882           Add cddabasesrc unit test; also actually enable the vorbis test.
18883
18884         * tests/check/generic/states.c:
18885           Blacklist new cd audio elements as well.
18886
18887         * tests/check/libs/cddabasesrc.c:
18888           Unit test for GstCddaBaseSrc (discid calculation mostly).
18889
18890 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
18891
18892         * docs/libs/Makefile.am:
18893         * docs/libs/gst-plugins-base-libs-docs.sgml:
18894         * docs/libs/gst-plugins-base-libs-sections.txt:
18895         * docs/libs/gst-plugins-base-libs.types:
18896           Add docs for libgstcdda/GstCddaBaseSrc.
18897
18898         * gst-libs/gst/interfaces/mixertrack.h:
18899           Do one struct member per line with a semicolon at the end, that way
18900           even gtk-doc might parse it without complaining.
18901
18902 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
18903
18904         * configure.ac:
18905         * gst-libs/gst/Makefile.am:
18906         * gst-libs/gst/cdda/Makefile.am:
18907         * gst-libs/gst/cdda/base64.c:
18908         * gst-libs/gst/cdda/base64.h:
18909         * gst-libs/gst/cdda/gstcddabasesrc.c:
18910         (gst_cdda_base_src_mode_get_type), (gst_cdda_base_src_base_init),
18911         (gst_cdda_base_src_class_init), (gst_cdda_base_src_init),
18912         (gst_cdda_base_src_finalize), (gst_cdda_base_src_set_property),
18913         (gst_cdda_base_src_get_property),
18914         (gst_cdda_base_src_get_track_from_sector),
18915         (gst_cdda_base_src_get_query_types), (gst_cdda_base_src_convert),
18916         (gst_cdda_base_src_query), (gst_cdda_base_src_is_seekable),
18917         (gst_cdda_base_src_do_seek), (gst_cdda_base_src_handle_track_seek),
18918         (gst_cdda_base_src_handle_event), (gst_cdda_base_src_uri_get_type),
18919         (gst_cdda_base_src_uri_get_protocols),
18920         (gst_cdda_base_src_uri_get_uri), (gst_cdda_base_src_uri_set_uri),
18921         (gst_cdda_base_src_uri_handler_init),
18922         (gst_cdda_base_src_setup_interfaces),
18923         (gst_cdda_base_src_add_track), (gst_cdda_base_src_update_duration),
18924         (cddb_sum), (gst_cddabasesrc_calculate_musicbrainz_discid),
18925         (lba_to_msf), (gst_cdda_base_src_calculate_cddb_id),
18926         (gst_cdda_base_src_add_tags),
18927         (gst_cdda_base_src_add_index_associations),
18928         (gst_cdda_base_src_set_index), (gst_cdda_base_src_get_index),
18929         (gst_cdda_base_src_track_sort_func), (gst_cdda_base_src_start),
18930         (gst_cdda_base_src_clear_tracks), (gst_cdda_base_src_stop),
18931         (gst_cdda_base_src_create):
18932         * gst-libs/gst/cdda/gstcddabasesrc.h:
18933         * gst-libs/gst/cdda/sha1.c:
18934         * gst-libs/gst/cdda/sha1.h:
18935           Add new libgstcdda with GstCddaBaseSrc class.
18936
18937 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
18938
18939         * ext/gnomevfs/gstgnomevfssink.h:
18940           Use GstBaseSinkClass as parent_class member for class struct, not
18941           GstBaseSink.
18942
18943 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
18944
18945         Patch by: Michael Benes
18946
18947         * gst/videotestsrc/gstvideotestsrc.c:
18948         (gst_video_test_src_class_init), (gst_video_test_src_start):
18949           Add start method to reset running time and number of frames sent
18950           when starting up (fixes #324696)
18951
18952 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
18953
18954         * docs/plugins/Makefile.am:
18955         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
18956         * docs/plugins/gst-plugins-base-plugins-sections.txt:
18957         * docs/plugins/gst-plugins-base-plugins.args:
18958         * docs/plugins/gst-plugins-base-plugins.hierarchy:
18959         * docs/plugins/gst-plugins-base-plugins.signals:
18960           Add docs stuff for gnomevfssrc and gnomevfssink.
18961
18962         * ext/gnomevfs/gstgnomevfssrc.c:
18963           Fix example pipeline in gtk-doc blurb.
18964
18965 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
18966
18967         * ext/gnomevfs/Makefile.am:
18968         * ext/gnomevfs/gstgnomevfs.c: (gst_gnome_vfs_uri_get_type),
18969         (gst_gnome_vfs_handle_copy), (gst_gnome_vfs_handle_free),
18970         (gst_gnome_vfs_handle_get_type), (plugin_init):
18971         * ext/gnomevfs/gstgnomevfs.h:
18972         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_do_init),
18973         (gst_gnome_vfs_sink_base_init), (gst_gnome_vfs_sink_class_init),
18974         (gst_gnome_vfs_sink_finalize), (gst_gnome_vfs_sink_init),
18975         (gst_gnome_vfs_sink_set_property),
18976         (gst_gnome_vfs_sink_get_property), (gst_gnome_vfs_sink_open_file),
18977         (gst_gnome_vfs_sink_close_file), (gst_gnome_vfs_sink_start),
18978         (gst_gnome_vfs_sink_stop), (gst_gnome_vfs_sink_handle_event),
18979         (gst_gnome_vfs_sink_query), (gst_gnome_vfs_sink_render),
18980         (gst_gnome_vfs_sink_uri_get_type),
18981         (gst_gnome_vfs_sink_uri_get_protocols),
18982         (gst_gnome_vfs_sink_uri_get_uri), (gst_gnome_vfs_sink_uri_set_uri),
18983         (gst_gnome_vfs_sink_uri_handler_init):
18984         * ext/gnomevfs/gstgnomevfssink.h:
18985           Port gnomevfssink; add gtk-doc blurb.
18986
18987         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_get_type),
18988         (gst_gnome_vfs_src_base_init), (gst_gnome_vfs_src_class_init),
18989         (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
18990         (gst_gnome_vfs_src_uri_get_type),
18991         (gst_gnome_vfs_src_uri_get_protocols),
18992         (gst_gnome_vfs_src_uri_get_uri), (gst_gnome_vfs_src_uri_set_uri),
18993         (gst_gnome_vfs_src_uri_handler_init),
18994         (gst_gnome_vfs_src_set_property), (gst_gnome_vfs_src_get_property),
18995         (gst_gnome_vfs_src_unicodify), (audiocast_thread_run),
18996         (gst_gnome_vfs_src_send_additional_headers_callback),
18997         (gst_gnome_vfs_src_received_headers_callback),
18998         (gst_gnome_vfs_src_push_callbacks),
18999         (gst_gnome_vfs_src_pop_callbacks),
19000         (gst_gnome_vfs_src_get_icy_metadata), (gst_gnome_vfs_src_create),
19001         (gst_gnome_vfs_src_is_seekable), (gst_gnome_vfs_src_get_size),
19002         (gst_gnome_vfs_src_start), (gst_gnome_vfs_src_stop):
19003         * ext/gnomevfs/gstgnomevfssrc.h:
19004           s/gst_gnomevfssrc/gst_gnome_vfs_src/; move header stuff to header
19005           file; add gtk-doc blurb with example pipelines.
19006
19007 === release 0.10.1 ===
19008
19009 2005-12-23  Thomas Vander Stichele <thomas at apestaart dot org>
19010
19011         * configure.ac:
19012           releasing 0.10.1, "Dobro Dedek"
19013
19014 2005-12-21  Edgard Lima <edgard.lima@indt.org.br>
19015
19016         * gst/typefind/gsttypefindfunctions.c:
19017         iLBC30 and iLBC20 added to typefind.
19018
19019 2005-12-20  Thomas Vander Stichele  <thomas at apestaart dot org>
19020
19021         * gst-libs/gst/audio/gstbaseaudiosink.c:
19022         (gst_base_audio_sink_class_init):
19023         * gst-libs/gst/audio/gstbaseaudiosrc.c:
19024         (gst_base_audio_src_class_init):
19025           update strings, values are in microseconds
19026           change the default sink buffer time to something that is smaller
19027           (to help software volume mixing have a slightly lower delay) but
19028           still be acceptable on Wim's laptop
19029
19030 2005-12-20  Edward Hervey  <edward@fluendo.com>
19031
19032         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_template_caps):
19033         Made a quack, forgot to add DUCK to the riff video template.
19034
19035 2005-12-19  Edward Hervey  <edward@fluendo.com>
19036
19037         * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_base_init),
19038         (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
19039         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
19040         (gst_ogm_parse_chain):
19041         Make sure pads are initialized correctly.
19042         * gst-libs/gst/riff/riff-ids.h:
19043         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
19044         (gst_riff_create_video_template_caps):
19045         Add a whole bunch of FOURCC <=> MimeType.
19046         Extend the riff video pad template to support the newly added fourcc.
19047
19048 2005-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
19049
19050         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain),
19051         (gst_ogg_demux_activate_chain):
19052           Extra debug output when activating/deactivating chains.
19053
19054         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
19055         (is_demuxer_element), (try_to_link_1), (remove_element_chain),
19056         (unlinked):
19057           Remove a queue from our list when it becomes unlinked.
19058           Don't add queues to elements in class 'Demux' if they
19059           can only produce one pad 
19060
19061 2005-12-18  Julien MOUTTE  <julien@moutte.net>
19062
19063         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_base_init),
19064         (gst_video_sink_get_type): Add a debug category.
19065
19066 2005-12-17  Philippe Khalaf  <burger@speedy.org> 
19067
19068         * gst-libs/gst/rtp/gstbasertpdepayload.c:
19069         (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_handle_sink_event):
19070           Handle downstream newsegment by sending our own newsegment before the
19071           next buffer to be released. (#323900)
19072
19073 2005-12-17  Philippe Khalaf  <burger@speedy.org> 
19074
19075         * gst-libs/gst/rtp/gstbasertpdepayload.c:
19076         (gst_base_rtp_depayload_set_gst_timestamp):
19077           add queue delay to new segment as well (as opposed to just the first
19078           buffer). (bug #322347)
19079
19080 2005-12-16  Stefan Kost  <ensonic@users.sf.net>
19081
19082         * ext/libvisual/visual.c: (make_valid_name):
19083           change some char* into char[]
19084         * gst/audiotestsrc/gstaudiotestsrc.c:
19085         (gst_audio_test_src_class_init), (gst_audio_test_src_do_seek),
19086         (gst_audio_test_src_create):
19087         * gst/audiotestsrc/gstaudiotestsrc.h:
19088           prepare to handle EOS and SEGMENT_DONE
19089
19090 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
19091
19092         * tests/check/generic/states.c: (GST_START_TEST):
19093           Blacklist cdparanoia element in state test.
19094
19095 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
19096
19097           Patch by: Benjamin Pineau
19098
19099         * gst/tcp/gsttcp.c:
19100         * gst/tcp/gsttcpclientsink.c:
19101         * gst/tcp/gsttcpserversink.c:
19102         * gst/tcp/gsttcpserversrc.c:
19103           Add <string.h> includes for memset and FD_ZERO (fixes #323878)
19104
19105 2005-12-15  Michael Smith  <msmith@fluendo.com>
19106
19107         * gst/videorate/gstvideorate.c: (gst_video_rate_blank_data),
19108         (gst_video_rate_chain):
19109           Fix timestamping for videorate when the first buffer it sees has a
19110           non-zero timestamp. Fix some misleading debug output.
19111
19112 2005-12-15  Michael Smith  <msmith@fluendo.com>
19113
19114         * gst/audioresample/gstaudioresample.c:
19115           Don't leak all input buffers to audioresample.
19116
19117 2005-12-15  Tim-Philipp Müller  <tim at centricular dot net>
19118
19119         * ext/pango/gsttextoverlay.c: (gst_text_overlay_collected):
19120           Don't operate on empty text buffers. Strip newlines and
19121           tabs only from the end of the text, but leave them intact
19122           in the middle. Fix typo in gtk-doc description.
19123
19124 2005-12-15  Tim-Philipp Müller  <tim at centricular dot net>
19125
19126         * gst/playback/gstplaybasebin.c:
19127         * gst/playback/gstplaybin.c: (handoff):
19128           Make sure the video frame buffer we return to apps via the
19129           "frame" property always has caps set on it. Modify
19130           _gst_gvalue_set_object() macro to handle NULL objects
19131           gracefully too.
19132
19133 2005-12-14  Stefan Kost  <ensonic@users.sf.net>
19134
19135         * gst/audiotestsrc/gstaudiotestsrc.c:
19136         (gst_audio_test_src_class_init), (gst_audio_test_src_init),
19137         (gst_audio_test_src_setcaps), (gst_audio_test_src_src_query),
19138         (gst_audio_test_src_do_seek), (gst_audio_test_src_is_seekable),
19139         (gst_audio_test_src_create):
19140         * gst/audiotestsrc/gstaudiotestsrc.h:
19141         Adjust to some recent api changes and add wtays new cool seeking
19142         capabillities
19143
19144 2005-12-14  Tim-Philipp Müller  <tim at centricular dot net>
19145
19146         * ext/alsa/Makefile.am:
19147         * ext/alsa/gstalsadeviceprobe.c:
19148         * ext/alsa/gstalsadeviceprobe.h:
19149           Helper functions to add device probing via the GstPropertyProbe
19150           interface to a class.
19151
19152         * ext/alsa/gstalsamixer.h:
19153           Comment out GST_ALSA_MIXER, it returns a struct that's not
19154           used.
19155
19156         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
19157           Add some debug info. 
19158
19159         * ext/alsa/gstalsamixerelement.c:
19160         (gst_alsa_mixer_element_interface_supported),
19161         (gst_implements_interface_init),
19162         (gst_alsa_mixer_element_init_interfaces),
19163         (gst_alsa_mixer_element_class_init),
19164         (gst_alsa_mixer_element_finalize), (gst_alsa_mixer_element_init),
19165         (gst_alsa_mixer_element_set_property),
19166         (gst_alsa_mixer_element_get_property),
19167         (gst_alsa_mixer_element_change_state):
19168         * ext/alsa/gstalsamixerelement.h:
19169           Add 'device' and 'device-name' properties. Add GstPropertyProbe
19170           for device handling (gnome-volume-control will need that).
19171
19172 2005-12-12  Christian Schaller  <uraeus@gnome.org>
19173
19174         * ext/Makefile.am: fix cdparanoia entry
19175         * gst-plugins-base.spec.in: add cdparanoia
19176
19177 2005-12-12  Michael Smith  <msmith@fluendo.com>
19178
19179         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
19180           Use the correct function to free list of typefind factories.
19181
19182 2005-12-12  Wim Taymans  <wim@fluendo.com>
19183
19184         * gst/videotestsrc/gstvideotestsrc.c:
19185         (gst_video_test_src_class_init), (gst_video_test_src_init),
19186         (gst_video_test_src_parse_caps), (gst_video_test_src_query),
19187         (gst_video_test_src_do_seek), (gst_video_test_src_is_seekable),
19188         (gst_video_test_src_create):
19189         * gst/videotestsrc/gstvideotestsrc.h:
19190         Implement seeking in videotestsrc.
19191         Small cleanups.
19192
19193 2005-12-12  Wim Taymans  <wim@fluendo.com>
19194
19195         * ext/cdparanoia/Makefile.am:
19196         * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
19197         (gst_paranoia_endian_get_type), (_do_init),
19198         (cdparanoia_class_init), (cdparanoia_init),
19199         (cdparanoia_set_property), (cdparanoia_get_property),
19200         (cdparanoia_do_seek), (cdparanoia_is_seekable),
19201         (cdparanoia_create), (cdparanoia_start), (cdparanoia_stop),
19202         (cdparanoia_convert), (cdparanoia_get_query_types),
19203         (cdparanoia_query), (cdparanoia_set_index),
19204         (cdparanoia_uri_set_uri):
19205         * ext/cdparanoia/gstcdparanoia.h:
19206         Partially ported cdparanoia now that basesrc can support a
19207         plugin like this..
19208
19209 2005-12-12  Wim Taymans  <wim@fluendo.com>
19210
19211         * tests/examples/seek/scrubby.c: (main):
19212         Set higher priority for bus events so they don't get reordered with
19213         gtk gui events.
19214
19215         * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
19216         (flush_toggle_cb), (main):
19217         Added checkbox to disable flushing seeks. 
19218         Disable scrubbing when doing non flushing seeks.
19219
19220 2005-12-12  Tim-Philipp Müller  <tim at centricular dot net>
19221
19222         * gst/subparse/gstsubparse.c: (gst_sub_parse_init),
19223         (gst_sub_parse_do_seek), (gst_sub_parse_src_event), (parse_subrip),
19224         (parser_state_init), (handle_buffer), (gst_sub_parse_chain),
19225         (gst_sub_parse_sink_event), (gst_sub_parse_change_state):
19226           Implement some sort of event handling that doesn't rely on
19227           g_return_if_fail; make sure we always push the last chunk of an 
19228           .srt out when we receive an EOS; use gst_pad_alloc_buffer; fix
19229           state change function; remove some old cruft. Seeking is still
19230           rather unlikely to work though.
19231
19232         * tools/.cvsignore:
19233           Ignore more.
19234
19235 2005-12-11  Julien MOUTTE  <julien@moutte.net>
19236
19237         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state): 
19238         Fixed a leak of the current image reference when cleaning up.
19239         Thanks to Arwed von Merkatz (alley_cat) for pointing it out.
19240
19241 2005-12-09  Michael Smith  <msmith@fluendo.com>
19242
19243         * tools/Makefile.am:
19244         * tools/gst-launch-ext-m.m:
19245           Remove gst-launch-ext. It doesn't work, and is no longer
19246           particularly useful.
19247
19248 2005-12-08  Luca Ognibene  <luogni@tin.it>
19249
19250         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
19251           don't pass random values to ogmparse convert function.
19252           Make seeking possible in the exile1.ogm file.
19253
19254 2005-12-07  Tim-Philipp Müller  <tim at centricular dot net>
19255
19256         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
19257         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
19258           Work around refcount problem with g_value_set_object() that occur
19259           if the core has been compiled against GLib-2.6 (g_value_set_object()
19260           will only g_object_ref() the element, but the caller will
19261           gst_object_unref() it and bad things will happen due to the way
19262           GstObjects are refcounted in the GLib-2.6 case). Fixes problems with
19263           totem for people on FC4 using Thomas's 0.10 RPMs.
19264           
19265 2005-12-07  Edward Hervey  <edward@fluendo.com>
19266
19267         Time to welcome ogm to 0.10 :)
19268         
19269         * ext/ogg/gstoggdemux.c: (internal_element_pad_added_cb),
19270         (gst_ogg_pad_typefind):
19271         Oggdemux can now properly typefind elements with dynamic pads.
19272         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
19273         Properly set caps on src pad, and set caps on outgoing buffers.
19274
19275 2005-12-06  Thomas Vander Stichele  <thomas at apestaart dot org>
19276
19277         * ext/alsa/gstalsamixer.h:
19278         * ext/alsa/gstalsamixerelement.h:
19279         * ext/alsa/gstalsamixeroptions.h:
19280         * ext/alsa/gstalsamixertrack.h:
19281         * ext/alsa/gstalsasink.c:
19282         * ext/alsa/gstalsasink.h:
19283         * ext/alsa/gstalsasrc.c:
19284         * ext/alsa/gstalsasrc.h:
19285         * ext/cdparanoia/gstcdparanoia.h:
19286         * ext/gnomevfs/gstgnomevfsuri.h:
19287         * ext/ogg/gstoggdemux.c:
19288         * ext/ogg/gstoggmux.c:
19289         * ext/pango/gsttextoverlay.h:
19290         * ext/theora/theoradec.c:
19291         * ext/theora/theoraenc.c:
19292         * ext/vorbis/vorbisdec.h:
19293         * ext/vorbis/vorbisenc.c:
19294         * ext/vorbis/vorbisenc.h:
19295         * ext/vorbis/vorbisparse.h:
19296         * gst-libs/gst/audio/gstaudioclock.h:
19297         * gst-libs/gst/audio/gstaudiosink.c:
19298         * gst-libs/gst/audio/gstaudiosink.h:
19299         * gst-libs/gst/audio/gstaudiosrc.c:
19300         * gst-libs/gst/audio/gstaudiosrc.h:
19301         * gst-libs/gst/audio/gstbaseaudiosink.c:
19302         * gst-libs/gst/audio/gstbaseaudiosink.h:
19303         * gst-libs/gst/audio/gstbaseaudiosrc.c:
19304         * gst-libs/gst/audio/gstbaseaudiosrc.h:
19305         * gst-libs/gst/audio/gstringbuffer.h:
19306         * gst-libs/gst/audio/multichannel.h:
19307         * gst-libs/gst/floatcast/floatcast.h:
19308         * gst-libs/gst/interfaces/colorbalance.c:
19309         * gst-libs/gst/interfaces/colorbalance.h:
19310         * gst-libs/gst/interfaces/colorbalancechannel.h:
19311         * gst-libs/gst/interfaces/mixer.h:
19312         * gst-libs/gst/interfaces/mixeroptions.h:
19313         * gst-libs/gst/interfaces/mixertrack.h:
19314         * gst-libs/gst/interfaces/navigation.h:
19315         * gst-libs/gst/interfaces/propertyprobe.h:
19316         * gst-libs/gst/interfaces/tuner.h:
19317         * gst-libs/gst/interfaces/tunerchannel.h:
19318         * gst-libs/gst/interfaces/tunernorm.h:
19319         * gst-libs/gst/interfaces/xoverlay.h:
19320         * gst-libs/gst/netbuffer/gstnetbuffer.h:
19321         * gst-libs/gst/riff/riff-ids.h:
19322         * gst-libs/gst/riff/riff-media.h:
19323         * gst-libs/gst/riff/riff-read.h:
19324         * gst-libs/gst/rtp/gstbasertpdepayload.h:
19325         * gst-libs/gst/rtp/gstbasertppayload.c:
19326         * gst-libs/gst/rtp/gstbasertppayload.h:
19327         * gst-libs/gst/rtp/gstrtpbuffer.c:
19328         * gst-libs/gst/rtp/gstrtpbuffer.h:
19329         * gst-libs/gst/tag/gsttageditingprivate.h:
19330         * gst-libs/gst/tag/gstvorbistag.c:
19331         (gst_tag_list_from_vorbiscomment_buffer):
19332         * gst-libs/gst/tag/tag.h:
19333         * gst-libs/gst/video/video.h:
19334         * gst/adder/gstadder.c:
19335         * gst/adder/gstadder.h:
19336         * gst/audioconvert/audioconvert.c:
19337         * gst/audioconvert/audioconvert.h:
19338         * gst/audioconvert/gstaudioconvert.c:
19339         * gst/audioconvert/gstchannelmix.c:
19340         * gst/audioconvert/gstchannelmix.h:
19341         * gst/audiorate/gstaudiorate.c:
19342         * gst/audioresample/buffer.h:
19343         * gst/audioresample/functable.h:
19344         * gst/audioresample/gstaudioresample.c:
19345         * gst/audioresample/resample.h:
19346         * gst/ffmpegcolorspace/avcodec.h:
19347         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19348         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
19349         * gst/ffmpegcolorspace/imgconvert.c:
19350         * gst/ffmpegcolorspace/imgconvert_template.h:
19351         * gst/playback/gstdecodebin.c:
19352         * gst/playback/gstplaybasebin.h:
19353         * gst/playback/gstplaybin.c:
19354         * gst/playback/gststreaminfo.h:
19355         * gst/tcp/gstfdset.c:
19356         * gst/tcp/gstfdset.h:
19357         * gst/tcp/gstmultifdsink.c:
19358         * gst/tcp/gstmultifdsink.h:
19359         * gst/tcp/gsttcp.h:
19360         * gst/tcp/gsttcpclientsrc.c:
19361         * gst/tcp/gsttcpclientsrc.h:
19362         * gst/tcp/gsttcpplugin.h:
19363         * gst/tcp/gsttcpserversink.c:
19364         * gst/tcp/gsttcpserversrc.c:
19365         * gst/typefind/gsttypefindfunctions.c:
19366         * gst/videorate/gstvideorate.c:
19367         * gst/videotestsrc/gstvideotestsrc.h:
19368         * gst/videotestsrc/videotestsrc.h:
19369         * sys/v4l/gstv4lcolorbalance.h:
19370         * sys/v4l/gstv4ltuner.h:
19371         * sys/v4l/gstv4lxoverlay.h:
19372         * sys/v4l/v4l_calls.h:
19373         * sys/v4l/videodev_mjpeg.h:
19374         * tests/check/elements/audioconvert.c:
19375         * tests/check/elements/audioresample.c:
19376         * tests/check/elements/audiotestsrc.c:
19377         * tests/check/elements/videotestsrc.c:
19378         * tests/check/elements/volume.c:
19379         * tests/examples/seek/scrubby.c:
19380         * tests/examples/seek/seek.c:
19381           expand tabs
19382
19383 === release 0.10.0 ===
19384
19385 2005-12-05 Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19386
19387         * configure.ac:
19388           releasing 0.10.0, "Mont-d'or"
19389
19390 2005-12-05  Jan Schmidt  <thaytan@mad.scientist.com>
19391
19392         * tests/examples/seek/Makefile.am:
19393         Build fix for when gtk is not available.
19394
19395 2005-12-05  Andy Wingo  <wingo@pobox.com>
19396
19397         * ext/libvisual/visual.c: (get_buffer):
19398         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
19399         * ext/pango/gsttextrender.c: (gst_text_render_chain):
19400         * ext/theora/theoradec.c: (theora_handle_data_packet):
19401         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
19402         (theora_enc_chain):
19403         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
19404         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
19405         Update for alloc_buffer changes.
19406
19407 2005-12-05  Andy Wingo  <wingo@pobox.com>
19408
19409         patch by: Kai Vehmanen <kv2004 eca cx>
19410         
19411         * gst-libs/gst/rtp/gstbasertpdepayload.c
19412         (gst_base_rtp_depayload_thread): Fix busy loop (#323017).
19413
19414 2005-12-04  Andy Wingo  <wingo@pobox.com>
19415
19416         patch by: Sebastien Cote <sebas642 yahoo ca>
19417         
19418         * pkgconfig/gstreamer-plugins-base.pc.in (Libs): Add -L flag.
19419         Fixes #319172.
19420
19421 2005-12-02  Tim-Philipp Müller  <tim at centricular dot net>
19422
19423         * docs/plugins/Makefile.am:
19424         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
19425         * docs/plugins/gst-plugins-base-plugins-sections.txt:
19426         * docs/plugins/gst-plugins-base-plugins.hierarchy:
19427         * ext/pango/gstclockoverlay.c:
19428         * ext/pango/gsttextoverlay.c: 
19429         * ext/pango/gsttextrender.c:
19430         * ext/pango/gsttimeoverlay.c:
19431           Add gtk-doc blurbs to pango elements.
19432
19433 2005-12-02  Wim Taymans  <wim@fluendo.com>
19434
19435         * gst/audioresample/buffer.c: (audioresample_buffer_queue_flush):
19436         * gst/audioresample/buffer.h:
19437         * gst/audioresample/gstaudioresample.c:
19438         * gst/audioresample/gstaudioresample.h:
19439         * gst/audioresample/resample.c: (resample_input_flush),
19440         (resample_input_pushthrough), (resample_input_eos),
19441         (resample_get_output_size_for_input),
19442         (resample_get_input_size_for_output), (resample_get_output_size),
19443         (resample_get_output_data):
19444         * gst/audioresample/resample.h:
19445         * gst/audioresample/resample_ref.c: (resample_scale_ref):
19446         Fix audioresample, seek torture, new segments, reverse negotiation
19447         etc.. work fine.
19448
19449 2005-12-02  Wim Taymans  <wim@fluendo.com>
19450
19451         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
19452         Small cleanups.
19453
19454 2005-12-02  Wim Taymans  <wim@fluendo.com>
19455
19456         * gst/audioconvert/gstaudioconvert.c:
19457         (gst_audio_convert_transform):
19458         Post errors.
19459
19460 === release 0.9.7 ===
19461
19462 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19463
19464         * configure.ac:
19465           releasing 0.9.7, "Mi Perro No Tiene Ninguna Nariz"
19466
19467 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
19468
19469         * Makefile.am:
19470         * po/hu.po:
19471         * win32/MANIFEST:
19472         * win32/gst.sln:
19473           add win32 MANIFEST file
19474           do something to the hungarian translation
19475
19476 2005-12-01  Tim-Philipp Müller  <tim at centricular dot net>
19477
19478         * ext/Makefile.am:
19479           Add $(PANGO_DIR) to SUBDIRS
19480
19481         * ext/pango/gstclockoverlay.c:
19482         * ext/pango/gsttimeoverlay.c:
19483           Fix and improve element descriptions.
19484
19485 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19486
19487         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
19488         * docs/plugins/inspect/plugin-libvisual.xml:
19489         * docs/plugins/inspect/plugin-pango.xml:
19490           add pango plugin to docs
19491
19492 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19493
19494         * configure.ac:
19495         * ext/Makefile.am:
19496           moved pango to base
19497
19498 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
19499
19500         * configure.ac:
19501         * tests/Makefile.am:
19502         * tests/icles/.cvsignore:
19503         * tests/icles/Makefile.am:
19504         * tests/icles/stress-xoverlay.c: (myclock), (open_display),
19505         (close_display), (resize_window), (move_window), (create_window),
19506         (terminate_playback), (pause_playback), (start_playback), (main):
19507           add stress test for xoverlay from Julien
19508
19509 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19510
19511         * docs/libs/tmpl/gstcolorbalance.sgml:
19512         * gst-libs/gst/rtp/gstbasertpdepayload.c:
19513         * gst-libs/gst/rtp/gstbasertppayload.c:
19514         * gst-libs/gst/rtp/gstrtpbuffer.c:
19515         * gst-libs/gst/rtp/gstrtpbuffer.h:
19516           Do burger's rename for rtp payloaders and depayloaders
19517
19518 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
19519
19520         * win32/:
19521           add Visual Studio 6 build files
19522
19523 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
19524
19525         * docs/libs/gst-plugins-base-libs-docs.sgml:
19526         * docs/libs/gst-plugins-base-libs-sections.txt:
19527         * docs/libs/tmpl/gstaudio.sgml:
19528         * docs/libs/tmpl/gstringbuffer.sgml:
19529         * gst-libs/gst/interfaces/xoverlay.c:
19530         * gst-libs/gst/video/gstvideofilter.c:
19531         * gst-libs/gst/video/gstvideosink.c:
19532           update documentation
19533
19534 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
19535
19536         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_base_init),
19537         (gst_multi_fd_sink_class_init), (gst_multi_fd_sink_init),
19538         (gst_multi_fd_sink_finalize), (gst_multi_fd_sink_add),
19539         (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
19540         (gst_multi_fd_sink_get_stats),
19541         (gst_multi_fd_sink_remove_client_link),
19542         (gst_multi_fd_sink_handle_client_read),
19543         (gst_multi_fd_sink_client_queue_data),
19544         (gst_multi_fd_sink_client_queue_caps),
19545         (gst_multi_fd_sink_client_queue_buffer),
19546         (gst_multi_fd_sink_new_client),
19547         (gst_multi_fd_sink_handle_client_write),
19548         (gst_multi_fd_sink_recover_client),
19549         (gst_multi_fd_sink_queue_buffer),
19550         (gst_multi_fd_sink_handle_clients), (gst_multi_fd_sink_thread),
19551         (gst_multi_fd_sink_render), (gst_multi_fd_sink_set_property),
19552         (gst_multi_fd_sink_get_property), (gst_multi_fd_sink_start),
19553         (gst_multi_fd_sink_stop), (gst_multi_fd_sink_change_state):
19554         * gst/tcp/gstmultifdsink.h:
19555         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_get_type),
19556         (gst_tcp_client_sink_base_init), (gst_tcp_client_sink_class_init),
19557         (gst_tcp_client_sink_init), (gst_tcp_client_sink_finalize),
19558         (gst_tcp_client_sink_setcaps), (gst_tcp_client_sink_render),
19559         (gst_tcp_client_sink_set_property),
19560         (gst_tcp_client_sink_get_property), (gst_tcp_client_sink_start),
19561         (gst_tcp_client_sink_stop), (gst_tcp_client_sink_change_state):
19562         * gst/tcp/gsttcpclientsink.h:
19563         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_base_init),
19564         (gst_tcp_client_src_class_init), (gst_tcp_client_src_init),
19565         (gst_tcp_client_src_finalize), (gst_tcp_client_src_getcaps),
19566         (gst_tcp_client_src_create), (gst_tcp_client_src_set_property),
19567         (gst_tcp_client_src_get_property), (gst_tcp_client_src_start),
19568         (gst_tcp_client_src_stop), (gst_tcp_client_src_unlock):
19569         * gst/tcp/gsttcpclientsrc.h:
19570         * gst/tcp/gsttcpplugin.c: (plugin_init):
19571         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_base_init),
19572         (gst_tcp_server_sink_class_init), (gst_tcp_server_sink_init),
19573         (gst_tcp_server_sink_finalize),
19574         (gst_tcp_server_sink_handle_server_read),
19575         (gst_tcp_server_sink_removed), (gst_tcp_server_sink_handle_wait),
19576         (gst_tcp_server_sink_set_property),
19577         (gst_tcp_server_sink_get_property),
19578         (gst_tcp_server_sink_init_send), (gst_tcp_server_sink_close):
19579         * gst/tcp/gsttcpserversink.h:
19580         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_base_init),
19581         (gst_tcp_server_src_class_init), (gst_tcp_server_src_init),
19582         (gst_tcp_server_src_finalize), (gst_tcp_server_src_create),
19583         (gst_tcp_server_src_set_property),
19584         (gst_tcp_server_src_get_property), (gst_tcp_server_src_start),
19585         (gst_tcp_server_src_stop), (gst_tcp_server_src_unlock):
19586         * gst/tcp/gsttcpserversrc.h:
19587           more borgifying
19588
19589 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
19590
19591         * docs/plugins/Makefile.am:
19592         * docs/plugins/gst-plugins-base-plugins.args:
19593         * docs/plugins/inspect/plugin-libvisual.xml:
19594         * gst/audioconvert/plugin.h:
19595         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_get_type),
19596         (gst_audio_rate_base_init), (gst_audio_rate_class_init),
19597         (gst_audio_rate_setcaps), (gst_audio_rate_init),
19598         (gst_audio_rate_chain), (gst_audio_rate_set_property),
19599         (gst_audio_rate_get_property), (gst_audio_rate_change_state),
19600         (plugin_init):
19601         * gst/audiotestsrc/gstaudiotestsrc.c:
19602         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_base_init),
19603         (gst_audio_test_src_class_init), (gst_audio_test_src_init),
19604         (gst_audio_test_src_src_fixate), (gst_audio_test_src_setcaps),
19605         (gst_audio_test_src_get_query_types),
19606         (gst_audio_test_src_src_query), (gst_audio_test_src_create_sine),
19607         (gst_audio_test_src_create_square),
19608         (gst_audio_test_src_create_saw),
19609         (gst_audio_test_src_create_triangle),
19610         (gst_audio_test_src_create_silence),
19611         (gst_audio_test_src_create_white_noise),
19612         (gst_audio_test_src_init_pink_noise),
19613         (gst_audio_test_src_generate_pink_noise_value),
19614         (gst_audio_test_src_create_pink_noise),
19615         (gst_audio_test_src_change_wave), (gst_audio_test_src_get_times),
19616         (gst_audio_test_src_create), (gst_audio_test_src_set_property),
19617         (gst_audio_test_src_get_property), (gst_audio_test_src_start),
19618         (plugin_init):
19619         * gst/audiotestsrc/gstaudiotestsrc.h:
19620         * gst/subparse/gstsubparse.c: (gst_sub_parse_get_type),
19621         (gst_sub_parse_base_init), (gst_sub_parse_class_init),
19622         (gst_sub_parse_init), (gst_sub_parse_formats),
19623         (gst_sub_parse_src_eventmask), (gst_sub_parse_src_event),
19624         (convert_encoding), (get_next_line),
19625         (gst_sub_parse_data_format_autodetect),
19626         (gst_sub_parse_format_autodetect), (feed_textbuf), (handle_buffer),
19627         (gst_sub_parse_loop), (gst_sub_parse_chain),
19628         (gst_sub_parse_change_state), (gst_sub_parse_type_find),
19629         (plugin_init):
19630         * gst/subparse/gstsubparse.h:
19631         * gst/videorate/gstvideorate.c: (gst_video_rate_get_type),
19632         (gst_video_rate_base_init), (gst_video_rate_class_init),
19633         (gst_video_rate_transformcaps), (gst_video_rate_getcaps),
19634         (gst_video_rate_setcaps), (gst_video_rate_blank_data),
19635         (gst_video_rate_init), (gst_video_rate_event),
19636         (gst_video_rate_chain), (gst_video_rate_set_property),
19637         (gst_video_rate_get_property), (gst_video_rate_change_state),
19638         (plugin_init):
19639         * gst/videoscale/gstvideoscale.c:
19640         (gst_video_scale_method_get_type), (gst_video_scale_get_capslist),
19641         (gst_video_scale_src_template_factory),
19642         (gst_video_scale_sink_template_factory),
19643         (gst_video_scale_get_type), (gst_video_scale_base_init),
19644         (gst_video_scale_class_init), (gst_video_scale_init),
19645         (gst_video_scale_set_property), (gst_video_scale_get_property),
19646         (gst_video_scale_transform_caps), (gst_video_scale_get_format),
19647         (gst_video_scale_prepare_size), (parse_caps),
19648         (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
19649         (gst_video_scale_fixate_caps), (gst_video_scale_prepare_image),
19650         (gst_video_scale_transform), (gst_video_scale_handle_src_event),
19651         (plugin_init):
19652         * gst/videoscale/gstvideoscale.h:
19653         * gst/videotestsrc/gstvideotestsrc.c:
19654         (gst_video_test_src_pattern_get_type),
19655         (gst_video_test_src_base_init), (gst_video_test_src_class_init),
19656         (gst_video_test_src_init), (gst_video_test_src_src_fixate),
19657         (gst_video_test_src_set_pattern),
19658         (gst_video_test_src_set_property),
19659         (gst_video_test_src_get_property), (gst_video_test_src_getcaps),
19660         (gst_video_test_src_parse_caps), (gst_video_test_src_setcaps),
19661         (gst_video_test_src_event), (gst_video_test_src_get_times),
19662         (gst_video_test_src_create), (plugin_init):
19663         * gst/videotestsrc/gstvideotestsrc.h:
19664         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_get_size),
19665         (gst_video_test_src_smpte), (gst_video_test_src_snow),
19666         (gst_video_test_src_black):
19667         * gst/videotestsrc/videotestsrc.h:
19668           borgify further
19669           clean up docs a little
19670
19671 2005-11-30  Wim Taymans  <wim@fluendo.com>
19672
19673         * gst-libs/gst/rtp/gstbasertpdepayload.h:
19674         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
19675         (gst_basertppayload_event), (gst_basertppayload_push),
19676         (gst_basertppayload_change_state):
19677         * gst-libs/gst/rtp/gstbasertppayload.h:
19678         closed #320644.
19679
19680 2005-11-30  Julien MOUTTE  <julien@moutte.net>
19681
19682         * docs/libs/gst-plugins-base-libs-docs.sgml:
19683         * docs/libs/gst-plugins-base-libs-sections.txt:
19684         * gst-libs/gst/video/gstvideofilter.c:
19685         * gst-libs/gst/video/gstvideosink.c:
19686         * gst-libs/gst/video/gstvideosink.h: Adding docs.
19687
19688 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19689
19690         * LICENSE:
19691           move
19692         * po/af.po:
19693         * po/az.po:
19694         * po/cs.po:
19695         * po/en_GB.po:
19696         * po/hu.po:
19697         * po/it.po:
19698         * po/nb.po:
19699         * po/nl.po:
19700         * po/or.po:
19701         * po/sq.po:
19702         * po/sr.po:
19703         * po/sv.po:
19704         * po/uk.po:
19705         * po/vi.po:
19706         * Makefile.am:
19707           update
19708         * scripts/autoplugins.sh:
19709           remove
19710
19711 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19712
19713         * Makefile.am:
19714         * configure.ac:
19715         * examples/Makefile.am:
19716         * examples/capsfilter/Makefile.am:
19717         * examples/capsfilter/capsfilter1.c:
19718         * examples/gob/Makefile.am:
19719         * examples/gob/gst-identity2.gob:
19720         * examples/indexing/.cvsignore:
19721         * examples/indexing/Makefile.am:
19722         * examples/indexing/indexmpeg.c:
19723         * examples/seeking/.cvsignore:
19724         * examples/seeking/Makefile.am:
19725         * examples/seeking/cdparanoia.c:
19726         * examples/seeking/cdplayer.c:
19727         * examples/seeking/chained.c:
19728         * examples/seeking/scrubby.c:
19729         * examples/seeking/seek.c:
19730         * examples/stats/Makefile.am:
19731         * examples/stats/mp2ogg.c:
19732         * examples/switch/.cvsignore:
19733         * examples/switch/Makefile.am:
19734         * examples/switch/switcher.c:
19735         * tests/Makefile.am:
19736         * tests/check/generic/.cvsignore:
19737         * tests/check/pipelines/.cvsignore:
19738         * tests/examples/Makefile.am:
19739         * tests/examples/seek/Makefile.am:
19740           reorganize stuff under tests/
19741
19742 2005-11-30  Edward Hervey  <edward@fluendo.com>
19743
19744         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
19745         Go away you stupid GstStaticPadTemplate memleak.
19746
19747 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
19748
19749         * gst-libs/gst/net/Makefile.am:
19750         * gst-libs/gst/net/README:
19751         * gst-libs/gst/net/gstnetbuffer.c:
19752         * gst-libs/gst/net/gstnetbuffer.h:
19753           this was moved to "netbuffer"
19754
19755 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
19756
19757         * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_get_type),
19758         (gst_video_filter_class_init), (gst_video_filter_init):
19759         * gst-libs/gst/video/gstvideofilter.h:
19760           borgify name to bring in line with other classes
19761
19762 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
19763
19764         * gst/audioscale/.cvsignore:
19765         * gst/audioscale/Makefile.am:
19766         * gst/audioscale/README:
19767         * gst/audioscale/audioscale.vcproj:
19768         * gst/audioscale/dtof.c:
19769         * gst/audioscale/dtos.c:
19770         * gst/audioscale/functable.c:
19771         * gst/audioscale/gstaudioscale.c:
19772         * gst/audioscale/gstaudioscale.h:
19773         * gst/audioscale/private.h:
19774         * gst/audioscale/resample.c:
19775         * gst/audioscale/resample.h:
19776         * gst/audioscale/test.c:
19777           remove
19778
19779 2005-11-30  Edward Hervey  <edward@fluendo.com>
19780
19781         * gst-libs/gst/netbuffer/Makefile.am:
19782         really, really tired
19783
19784 2005-11-30  Edward Hervey  <edward@fluendo.com>
19785
19786         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
19787         Update for new GstTypeFindFactory _register()
19788
19789 2005-11-30  Edward Hervey  <edward@fluendo.com>
19790
19791         * gst-libs/gst/netbuffer/Makefile.am: (libgstnetbufferincludedir): 
19792         Let's not override libgstnet from core for no reason...
19793         (libgstnetbuffer_@GST_MAJORMINOR@_la_SOURCES):
19794         Ok, maybe not so quick next time.
19795
19796 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
19797
19798         * configure.ac:
19799         * gst-libs/gst/Makefile.am:
19800           moved gst-libs/gst/net to netbuffer through CVS surgery
19801           remove old directory
19802           updating build to accomodate
19803           (#322257)
19804
19805 2005-11-29  Andy Wingo  <wingo@pobox.com>
19806
19807         * pkgconfig/gstreamer-plugins-base.pc.in:
19808         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
19809         * gst-libs/gst/net/Makefile.am: Rename gstnet to gstnetbuffer
19810         (#322257).
19811
19812 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
19813
19814         * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
19815         3rd time's the charm. Correct ref-counting for discarded buffers.
19816
19817 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
19818
19819         * gst/playback/gststreamselector.c:
19820         (gst_stream_selector_class_init),
19821         (gst_stream_selector_set_property),
19822         (gst_stream_selector_get_property),
19823         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
19824         Fix ref-counting
19825
19826 2005-11-29  Tim-Philipp Müller  <tim at centricular dot net>
19827
19828         * gst/subparse/gstsubparse.c: (feed_textbuf):
19829           Don't access already unref'ed buffer.
19830
19831 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
19832
19833         * gst/playback/gststreamselector.c:
19834         (gst_stream_selector_class_init), (gst_stream_selector_init),
19835         (gst_stream_selector_dispose), (gst_stream_selector_set_property),
19836         (gst_stream_selector_get_property),
19837         (gst_stream_selector_get_linked_pad),
19838         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
19839         * gst/playback/gststreamselector.h:
19840         Add the active-pad property for playbin to use shortly. Ignore buffers
19841         from any other pad, returning GST_FLOW_NOT_LINKED
19842
19843 2005-11-29  Julien MOUTTE  <julien@moutte.net>
19844
19845         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find): Free the list,
19846         patch from bug #322704 (Alessandro Decina).
19847
19848 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
19849
19850         * gst-libs/gst/audio/Makefile.am:
19851           folded audiofilter into the audio library
19852
19853 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
19854
19855         * gst/videoscale/gstvideoscale.h:
19856         * gst/videoscale/gstvideoscale.c:
19857           remove unimplemented scale methods
19858
19859 2005-11-28  Tim-Philipp Müller  <tim at centricular dot net>
19860
19861         * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers):
19862           Don't leak caps.
19863
19864 2005-11-28  Julien MOUTTE  <julien@moutte.net>
19865
19866         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
19867         (gst_ximagesink_setcaps):
19868         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
19869         (gst_xvimagesink_setcaps): Fixed a tricky bug. When caps renegotiation
19870         happens (only visible on ximagesink but bug is in xv too) set_caps was
19871         destroying the internal x[v]image used to memcpy non locally alloced
19872         buffers so that it got renewed on next _chain. The issue is that 
19873         _expose will try to put that image as it reffed it in _put.
19874         Using gst_buffer_unref instead of destroy fixes it !
19875
19876 2005-11-28  Edward Hervey  <edward@fluendo.com>
19877
19878         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
19879         (try_to_link_1), (queue_filled_cb):
19880         Better use of the queues. Start with a small size queue and only increase
19881         the size of the queues when the other queues are empty.
19882
19883 2005-11-28  Thomas Vander Stichele  <thomas at apestaart dot org>
19884
19885         * gst-libs/gst/video/Makefile.am:
19886           compile in copied-over videofilter into the video library
19887         * gst-libs/gst/video/videosink.h:
19888           rename the header to gstvideosink.h since it's a base GstObject class
19889         * sys/ximage/ximagesink.h:
19890         * sys/xvimage/xvimagesink.h:
19891           use the new header
19892
19893 2005-11-28  Wim Taymans  <wim@fluendo.com>
19894
19895         * gst/playback/gstplaybasebin.c: (group_commit), (probe_triggered):
19896         * gst/playback/gstplaybasebin.h:
19897         Prepare to handle errors betters.
19898
19899         * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
19900         Set sinks to PAUSED first before adding and linking them so that
19901         we don't interrupt dataflow.
19902
19903 2005-11-28  Wim Taymans  <wim@fluendo.com>
19904
19905         * gst-libs/gst/audio/TODO:
19906         Updated TODO
19907
19908         * gst-libs/gst/audio/gstaudiosink.c:
19909         (gst_audioringbuffer_open_device),
19910         (gst_audioringbuffer_close_device), (gst_audioringbuffer_acquire),
19911         (gst_audioringbuffer_release):
19912         Small cleanups.
19913
19914         * gst-libs/gst/audio/gstbaseaudiosink.c:
19915         (gst_base_audio_sink_class_init), (gst_base_audio_sink_render),
19916         (gst_base_audio_sink_change_state):
19917         Slave to the master clock when going to PLAYING and unslave when
19918         going to PAUSED.
19919
19920         * gst-libs/gst/audio/gstringbuffer.c:
19921         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
19922         (gst_ring_buffer_acquire), (gst_ring_buffer_release),
19923         (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
19924         (gst_ring_buffer_clear_all), (wait_segment),
19925         (gst_ring_buffer_commit), (gst_ring_buffer_read),
19926         (gst_ring_buffer_advance):
19927         * gst-libs/gst/audio/gstringbuffer.h:
19928         Add some docs and cleanups.
19929
19930 2005-11-28  Julien MOUTTE  <julien@moutte.net>
19931
19932         * sys/xvimage/xvimagesink.c:
19933         (gst_xvimagesink_navigation_send_event): Fix navigation events
19934         coordinates translation with pixel aspect ratios.
19935
19936 2005-11-28  Julien MOUTTE  <julien@moutte.net>
19937
19938         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
19939         Use calculated video geometry from _setcaps instead of buffer
19940         caps to respect pixel aspect ratio. (fixes #322388)
19941
19942 2005-11-28  Julien MOUTTE  <julien@moutte.net>
19943
19944         * docs/libs/tmpl/gstcolorbalance.sgml:
19945         * docs/libs/tmpl/gstmixer.sgml:
19946         * docs/libs/tmpl/gstxoverlay.sgml:
19947         * gst-libs/gst/interfaces/xoverlay.c: Add docs for the Xoverlay
19948         interface.
19949
19950 2005-11-28  Julien MOUTTE  <julien@moutte.net>
19951
19952         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
19953         Refuse to create an XvImage if we can't find the format.
19954
19955 2005-11-28  Edward Hervey  <edward@fluendo.com>
19956
19957         * gst-libs/gst/riff/riff-media.c:
19958         (gst_riff_create_audio_template_caps):
19959         Add ATRAC3 to the list of riff-possible audio caps.
19960         I know we still don't have a plugin for atrac3, but it's saner to output
19961         that than a cryptic mimetype.
19962
19963 2005-11-27  Edward Hervey  <edward@fluendo.com>
19964
19965         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds):
19966         Don't try to create a zero-sized subbuffer.
19967
19968 2005-11-27  Julien MOUTTE  <julien@moutte.net>
19969
19970         * sys/ximage/ximagesink.c: (gst_ximage_buffer_free),
19971         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
19972         (gst_ximagesink_bufferpool_clear), (gst_ximagesink_buffer_alloc),
19973         (gst_ximagesink_expose): Fixed a tricky race.
19974         * sys/ximage/ximagesink.h:
19975         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
19976         (gst_xvimagesink_expose): Fixed a tricky race.
19977         * sys/xvimage/xvimagesink.h:
19978
19979 2005-11-27  Edward Hervey  <edward@fluendo.com>
19980
19981         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
19982         (gst_decode_bin_init), (close_pad_link), (try_to_link_1):
19983         Remove unused properties, and add queues between demuxers and decoders
19984         so that a lot more files can preroll properly.
19985
19986 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
19987
19988         * gst-libs/gst/net/Makefile.am:
19989         * gst-libs/gst/rtp/Makefile.am:
19990         * gst-libs/gst/tag/Makefile.am:
19991           remove silly include
19992         * gst/tags/Makefile.am:
19993         * gst/tags/gsttagediting.c:
19994         * gst/tags/gsttageditingprivate.h:
19995         * gst/tags/tagedit.vcproj:
19996           remove directory, is as good as empty
19997
19998 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
19999
20000         * configure.ac:
20001           added GST_LIB_LDFLAGS and GST_ALL_LDFLAGS
20002         * gst-libs/Makefile.am:
20003         * gst-libs/gst/audio/Makefile.am:
20004         * gst-libs/gst/interfaces/Makefile.am:
20005         * gst-libs/gst/net/Makefile.am:
20006         * gst-libs/gst/riff/Makefile.am:
20007         * gst-libs/gst/rtp/Makefile.am:
20008         * gst-libs/gst/tag/Makefile.am:
20009         * gst-libs/gst/video/Makefile.am:
20010           and use them
20011
20012 2005-11-27  Julien MOUTTE  <julien@moutte.net>
20013
20014         * docs/libs/tmpl/gstcolorbalance.sgml:
20015         * docs/libs/tmpl/gstmixer.sgml:
20016         * docs/libs/tmpl/gstxoverlay.sgml:
20017         * sys/ximage/ximagesink.c: (gst_ximagesink_buffer_alloc):
20018         * sys/ximage/ximagesink.h:
20019         * sys/xvimage/xvimagesink.h: More and more documentation.
20020
20021 2005-11-26  Julien MOUTTE  <julien@moutte.net>
20022
20023         * docs/libs/gst-plugins-base-libs-docs.sgml:
20024         * docs/libs/gst-plugins-base-libs-sections.txt:
20025         * docs/libs/tmpl/gstcolorbalance.sgml:
20026         * docs/libs/tmpl/gstmixer.sgml:
20027         * docs/libs/tmpl/gstxoverlay.sgml: Add the XOverlay interface
20028         to documentation.
20029
20030 2005-11-26  Julien MOUTTE  <julien@moutte.net>
20031
20032         * docs/plugins/Makefile.am:
20033         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
20034         * docs/plugins/gst-plugins-base-plugins-sections.txt:
20035         * sys/xvimage/xvimagesink.c: Added doc for xvimagesink.
20036
20037 2005-11-26  Julien MOUTTE  <julien@moutte.net>
20038
20039         * docs/plugins/Makefile.am:
20040         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
20041         * docs/plugins/gst-plugins-base-plugins-sections.txt:
20042         * docs/plugins/inspect/plugin-adder.xml:
20043         * docs/plugins/inspect/plugin-alsa.xml:
20044         * docs/plugins/inspect/plugin-audioconvert.xml:
20045         * docs/plugins/inspect/plugin-audiorate.xml:
20046         * docs/plugins/inspect/plugin-audioresample.xml:
20047         * docs/plugins/inspect/plugin-audiotestsrc.xml:
20048         * docs/plugins/inspect/plugin-decodebin.xml:
20049         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
20050         * docs/plugins/inspect/plugin-gnomevfs.xml:
20051         * docs/plugins/inspect/plugin-ogg.xml:
20052         * docs/plugins/inspect/plugin-playbin.xml:
20053         * docs/plugins/inspect/plugin-subparse.xml:
20054         * docs/plugins/inspect/plugin-tcp.xml:
20055         * docs/plugins/inspect/plugin-theora.xml:
20056         * docs/plugins/inspect/plugin-typefindfunctions.xml:
20057         * docs/plugins/inspect/plugin-video4linux.xml:
20058         * docs/plugins/inspect/plugin-videorate.xml:
20059         * docs/plugins/inspect/plugin-videoscale.xml:
20060         * docs/plugins/inspect/plugin-videotestsrc.xml:
20061         * docs/plugins/inspect/plugin-volume.xml:
20062         * docs/plugins/inspect/plugin-vorbis.xml:
20063         * docs/plugins/inspect/plugin-ximagesink.xml:
20064         * docs/plugins/inspect/plugin-xvimagesink.xml: Updated version.
20065         * sys/ximage/ximagesink.c: Adding documentation for ximagesink.
20066
20067 2005-11-26  Edward Hervey  <edward@fluendo.com>
20068
20069         * gst/audiorate/gstaudiorate.c: (gst_audiorate_chain):
20070         Properly return GstFlowReturn from gst_pad_push in chain functions.
20071
20072 2005-11-25  Michael Smith  <msmith@fluendo.com>
20073
20074         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
20075         (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
20076         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
20077         (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
20078           Handle various conditions better when we don't understand a stream.
20079           Removes a heap of CRITICALs on ogg streams containing unknown data.
20080
20081 2005-11-24  Andy Wingo  <wingo@pobox.com>
20082
20083         * gst/tcp/gstmultifdsink.c (gst_multifdsink_handle_client_write):
20084         Be threadsafe.
20085
20086 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
20087
20088         * configure.ac: back to HEAD
20089
20090 === release 0.9.6 ===
20091
20092 2005-11-23  Thomas Vander Stichele <thomas at apestaart dot org>
20093
20094         * configure.ac:
20095           releasing 0.9.6, "White Eight"
20096
20097 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
20098
20099         * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
20100         * docs/plugins/inspect/plugin-sine.xml:
20101           remove sinesrc some more
20102
20103 2005-11-23  Wim Taymans  <wim@fluendo.com>
20104
20105         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
20106         If we are reading too slowly, jump forward in the ringbuffer
20107         instead of blocking.
20108
20109 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
20110
20111         * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
20112         (gst_visual_chain):
20113         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps):
20114         * gst/videorate/gstvideorate.c: (gst_videorate_setcaps),
20115         (gst_videorate_chain):
20116         * gst/videotestsrc/gstvideotestsrc.c:
20117         (gst_videotestsrc_src_fixate), (gst_videotestsrc_create):
20118         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_fps),
20119         (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query),
20120         (gst_v4lmjpegsrc_get), (gst_v4lmjpegsrc_getcaps):
20121         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
20122         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
20123           Updates for API changes
20124
20125 2005-11-23  Wim Taymans  <wim@fluendo.com>
20126
20127         * gst-libs/gst/audio/gstbaseaudiosink.c:
20128         (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
20129         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
20130         Fix for calibration API change.
20131
20132 2005-11-23  Michael Smith <msmith@fluendo.com>
20133
20134         * gst-libs/gst/audio/multichannel.c:
20135         (gst_audio_get_channel_positions),
20136         (gst_audio_set_channel_positions),
20137         (gst_audio_set_structure_channel_positions_list),
20138         (gst_audio_fixate_channel_positions):
20139           Use gst_value_array_*() functions on value arrays, not
20140           gst_value_list_*().
20141
20142 2005-11-23  Edward Hervey  <edward@fluendo.com>
20143
20144         * autogen.sh:
20145         eheh, sinesrc is gone. Replacing sample srcfile by existing one.
20146         Fixes autogen
20147
20148 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
20149
20150         * check/Makefile.am:
20151         * check/elements/videotestsrc.c: (setup_videotestsrc),
20152         (cleanup_videotestsrc), (GST_START_TEST), (videotestsrc_suite),
20153         (main):
20154           add a test for videotestsrc
20155
20156 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
20157
20158         * gst/sine/.cvsignore:
20159         * gst/sine/Makefile.am:
20160         * gst/sine/gstsinesrc.c:
20161         * gst/sine/gstsinesrc.h:
20162         * gst/sine/sinesrc.vcproj:
20163           and remove sinesrc from the repository.  Closes #321446
20164
20165 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
20166
20167         * configure.ac:
20168         * gst-plugins-base.spec.in:
20169           remove sinesrc from the build
20170
20171 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
20172
20173         * check/Makefile.am:
20174         * check/elements/audiotestsrc.c: (setup_audiotestsrc),
20175         (cleanup_audiotestsrc), (GST_START_TEST), (audiotestsrc_suite),
20176         (main):
20177           add a test for audiotestsrc, testing all waves.  Even seems
20178           leak-free at first glance, nice job Stefan
20179
20180 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
20181
20182         * po/af.po:
20183         * po/az.po:
20184         * po/cs.po:
20185         * po/en_GB.po:
20186         * po/hu.po:
20187         * po/it.po:
20188         * po/nb.po:
20189         * po/nl.po:
20190         * po/or.po:
20191         * po/sq.po:
20192         * po/sr.po:
20193         * po/sv.po:
20194         * po/uk.po:
20195         * po/vi.po:
20196           Translation string updates
20197
20198         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
20199         (gst_v4lsrc_set_caps):
20200         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
20201         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
20202         * sys/v4l/v4lsrc_calls.h:
20203           Improve v4lsrc, by making it work again.
20204
20205 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
20206
20207         * ext/libvisual/visual.c: (gst_visual_chain):
20208           Fix the fps calculations.
20209
20210         * gst/ffmpegcolorspace/avcodec.h:
20211           Move structure element for clarity
20212
20213         * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_init):
20214         * gst-libs/gst/interfaces/tunernorm.h:
20215         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_src_link):
20216         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
20217         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
20218         (gst_v4lmjpegsrc_get_fps), (gst_v4lmjpegsrc_src_convert),
20219         (gst_v4lmjpegsrc_src_query), (gst_v4lmjpegsrc_get),
20220         (gst_v4lmjpegsrc_getcaps):
20221         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
20222         (gst_v4lsrc_set_caps):
20223         * sys/v4l/gstv4lsrc.h:
20224         * sys/v4l/v4l_calls.c: (gst_v4l_open):
20225         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
20226         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
20227         * sys/v4l/v4lsrc_calls.h:
20228           Fractional framerates...
20229
20230 2005-11-22  Wim Taymans  <wim@fluendo.com>
20231
20232         * gst-libs/gst/audio/gstbaseaudiosink.c:
20233         (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
20234         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
20235         And we provide a clock by default, of course...
20236
20237 2005-11-22  Wim Taymans  <wim@fluendo.com>
20238
20239         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init):
20240         This clock can be slaved to a master clock now.
20241
20242         * gst-libs/gst/audio/gstbaseaudiosink.c:
20243         (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
20244         (gst_base_audio_sink_dispose), (gst_base_audio_sink_provide_clock),
20245         (gst_base_audio_sink_set_clock),
20246         (gst_base_audio_sink_set_property),
20247         (gst_base_audio_sink_get_property), (gst_base_audio_sink_preroll),
20248         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
20249         * gst-libs/gst/audio/gstbaseaudiosink.h:
20250         Handle slaving the internal clock to the clock selected in the
20251         pipeline.
20252         Add property to make the basesink not provide a clock.
20253
20254         * gst-libs/gst/rtp/gstbasertpdepayload.c:
20255         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
20256         (gst_base_rtp_depayload_wait):
20257         * gst-libs/gst/rtp/gstbasertpdepayload.h:
20258         We can use the clock in GstElement, no need to store it ourselves.
20259
20260 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
20261
20262         * docs/libs/tmpl/gstaudio.sgml:
20263           update
20264         * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
20265         (gst_paranoia_endian_get_type):
20266         * ext/theora/theoraenc.c: (gst_border_mode_get_type):
20267         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
20268         * gst/audiotestsrc/gstaudiotestsrc.c:
20269         (gst_audiostestsrc_wave_get_type):
20270         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
20271         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
20272         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
20273         (gst_sync_method_get_type), (gst_unit_type_get_type),
20274         (gst_client_status_get_type), (gst_multifdsink_class_init),
20275         (gst_multifdsink_new_client), (gst_multifdsink_recover_client),
20276         (gst_multifdsink_queue_buffer), (gst_multifdsink_set_property),
20277         (gst_multifdsink_get_property):
20278         * gst/tcp/gstmultifdsink.h:
20279         * gst/videoscale/gstvideoscale.c: (gst_videoscale_method_get_type):
20280         * gst/videotestsrc/gstvideotestsrc.c:
20281         (gst_videotestsrc_pattern_get_type):
20282           remove deprecated properties
20283           fix up enums to correctly have short lowercase dashed nicks
20284
20285 2005-11-22  Michael Smith <msmith@fluendo.com>
20286
20287         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
20288         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
20289           Add underscore.
20290
20291 2005-11-22  Michael Smith <msmith@fluendo.com>
20292
20293         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
20294         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
20295           Use utility method for scaling clocktime for fractional framerates.
20296
20297 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
20298
20299         * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
20300         (gst_visual_chain):
20301         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
20302         * ext/theora/theoradec.c: (theora_handle_type_packet):
20303         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
20304         (theora_enc_chain):
20305         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
20306         * gst-libs/gst/video/video.c: (gst_video_frame_rate):
20307         * gst-libs/gst/video/video.h:
20308         * gst/ffmpegcolorspace/avcodec.h:
20309         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
20310         (gst_ffmpeg_caps_to_pixfmt):
20311         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
20312         (gst_ffmpegcsp_set_caps):
20313         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
20314         (gst_videorate_setcaps), (gst_videorate_blank_data),
20315         (gst_videorate_chain):
20316         * gst/videotestsrc/gstvideotestsrc.c:
20317         (gst_videotestsrc_src_fixate), (gst_videotestsrc_getcaps),
20318         (gst_videotestsrc_parse_caps), (gst_videotestsrc_setcaps),
20319         (gst_videotestsrc_event), (gst_videotestsrc_create):
20320         * gst/videotestsrc/gstvideotestsrc.h:
20321         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
20322         (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
20323         (gst_ximagesink_get_times), (gst_ximagesink_init):
20324         * sys/ximage/ximagesink.h:
20325         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
20326         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
20327         (gst_xvimagesink_get_times), (gst_xvimagesink_init):
20328         * sys/xvimage/xvimagesink.h:
20329           Convert elements to use fractions for their framerate.
20330           V4L elements to come later tonight.
20331
20332 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
20333
20334         * gst-libs/gst/audio/audio.c:
20335         * gst-libs/gst/audio/audio.h:
20336           remove some deprecated functions
20337
20338 2005-11-22  Andy Wingo  <wingo@pobox.com>
20339
20340         * Update for gst_tag_setter API changes.
20341
20342 2005-11-22  Andy Wingo  <wingo@pobox.com>
20343
20344         * ext/ogg/gstoggdemux.c (gst_ogg_pad_submit_packet)
20345         (gst_ogg_demux_perform_seek):
20346         * ext/theora/theoradec.c (theora_dec_sink_event):
20347         * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event): Run
20348         update-funcnames.
20349
20350 2005-11-22  Wim Taymans  <wim@fluendo.com>
20351
20352         * examples/seeking/seek.c: (main):
20353         Give higher priority to bus signals than the gtk events
20354         to fix a race condition in the segment looping.
20355
20356 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
20357
20358         * ext/theora/Makefile.am:
20359         * ext/vorbis/Makefile.am:
20360         * gst-libs/gst/tag/Makefile.am:
20361         * gst-plugins-base.spec.in:
20362           Rename libgsttagedit to libgsttag (#322117).
20363
20364 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
20365
20366         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
20367         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
20368           Call gst_x_overlay_prepare_xwindow_id() to give applications
20369           a final chance to set their own xwindow id before the video
20370           sink creates its own window.
20371
20372 2005-11-22  Julien MOUTTE  <julien@moutte.net>
20373
20374         * sys/xvimage/xvimagesink.c:
20375         (gst_xvimagesink_navigation_send_event): Handle navigation
20376         events correcly with borders if applicable.
20377
20378 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
20379
20380         Patch by: Luca Ognibene
20381
20382         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
20383         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
20384         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
20385         (gst_ffmpegcsp_caps_remove_format_info):
20386         * gst/ffmpegcolorspace/imgconvert.c:
20387         * gst/ffmpegcolorspace/imgconvert_template.h:
20388           Forward-port fixes from the 0.8 branch (patch by Luca Ognibene,
20389           #318353); use gst_structure_has_name().
20390
20391 2005-11-22  Julien MOUTTE  <julien@moutte.net>
20392
20393         * sys/ximage/ximagesink.c: (gst_ximagesink_event_thread),
20394         (gst_ximagesink_class_init): Add debug macros on functions.
20395         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
20396         (gst_xvimagesink_xwindow_draw_borders),
20397         (gst_xvimagesink_xvimage_put),
20398         (gst_xvimagesink_xwindow_update_geometry),
20399         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_get_xv_support),
20400         (gst_xvimagesink_event_thread), (gst_xvimagesink_xcontext_get),
20401         (gst_xvimagesink_xcontext_clear),
20402         (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
20403         (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
20404         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
20405         (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
20406         (gst_xvimagesink_get_property), (gst_xvimagesink_finalize),
20407         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
20408         * sys/xvimage/xvimagesink.h: Refactoring to handle aspect ratio,
20409         expose while being PAUSED, out of data flow navigation events, etc..
20410
20411 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
20412
20413         * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
20414         * gst-libs/gst/audio/audio.h:
20415           fix prototype - wondering why the test worked regardless
20416
20417 2005-11-21  Thomas Vander Stichele  <thomas at apestaart dot org>
20418
20419         * check/Makefile.am:
20420         * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
20421         * gst-libs/gst/audio/audio.h:
20422           add a method that returns a proper GstClockTime
20423
20424 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20425
20426         * gst-libs/gst/interfaces/xoverlay.c: (gst_x_overlay_base_init),
20427         (gst_x_overlay_got_xwindow_id), (gst_x_overlay_prepare_xwindow_id):
20428         * gst-libs/gst/interfaces/xoverlay.h:
20429           Remove everything having to do with the desired size; add 
20430           gst_x_overlay_prepare_xwindow_id() function; remove the
20431           'have-xwindow-id' signal and make gst_x_overlay_got_xwindow_id()
20432           post a message on the bus instead (#321816).
20433
20434         * sys/ximage/ximagesink.c: (gst_ximagesink_xoverlay_init):
20435         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps),
20436         (gst_xvimagesink_xoverlay_init):
20437           Remove desired size stuff (#321816).
20438
20439 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20440
20441         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
20442         (mpeg2_sys_type_find), (mpeg1_sys_type_find),
20443         (mpeg_video_type_find), (mpeg_video_stream_type_find):
20444           Terminate vararg functions with NULL instead of 0 to 
20445           make gcc4 happy.
20446
20447 2005-11-21  Andy Wingo  <wingo@pobox.com>
20448
20449         patch by: Sebastien Cote <sebas642@yahoo.ca>
20450         
20451         * gst-libs/gst/rtp/gstrtpbuffer.h: 
20452         * gst-libs/gst/rtp/gstrtpbuffer.c
20453         (gst_rtpbuffer_get_payload_buffer): New function. Fixes #321451.
20454
20455 2005-11-21  Andy Wingo  <wingo@pobox.com>
20456
20457         * gst/playback/gstplaybin.c (gen_audio_element) 
20458         (gen_video_element): Use the new MISSING_PLUGIN core error
20459         category. Closes #320060.
20460
20461         * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event): 
20462         * gst/videorate/gstvideorate.c (gst_videorate_event):
20463         * ext/theora/theoradec.c (theora_dec_sink_event): 
20464         * ext/theora/theoraenc.c (theora_enc_sink_event): Don't take
20465         stream lock.
20466
20467         * gst/subparse/gstsubparse.c (gst_subparse_src_event):
20468         * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek): Update for
20469         stream lock changes.
20470
20471 2005-11-21  Wim Taymans  <wim@fluendo.com>
20472
20473         * gst-libs/gst/audio/gstbaseaudiosink.c:
20474         (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
20475         (gst_base_audio_sink_provide_clock),
20476         (gst_base_audio_sink_set_clock), (gst_base_audio_sink_render),
20477         (gst_base_audio_sink_change_state):
20478         * gst/audioresample/gstaudioresample.c:
20479         Segment update fix.
20480
20481 2005-11-21  Andy Wingo  <wingo@pobox.com>
20482
20483         * *.h:
20484         * *.c: Ran scripts/update-macros. Oh yes.
20485
20486 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20487
20488         * sys/ximage/Makefile.am:
20489         * sys/ximage/ximage.c:
20490           Rename ximage plugin to ximagesink (#321426) (Don't forget to
20491           remove your old libgstximage.* manually if necessary).
20492
20493 2005-11-21  Michael Smith <msmith@fluendo.com>
20494
20495         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup):
20496           Minimal fix for bug #320200: set the min/max bitrate in the correct
20497           units. A better fix would be to upgrade to the RATEMANAGE2
20498           interface, rather than using the deprecated interface used here, but
20499           that would require an update in our libvorbis dependency (to 1.1),
20500           which is probably undesirable.
20501
20502 2005-11-21  Jan Schmidt  <thaytan@mad.scientist.com>
20503
20504         * ext/libvisual/visual.c: (get_buffer):
20505         * gst-libs/gst/audio/gstbaseaudiosrc.c:
20506         (gst_base_audio_src_fixate):
20507         * gst/audioconvert/gstaudioconvert.c:
20508         (gst_audio_convert_fixate_caps):
20509         * gst/audioscale/gstaudioscale.c: (gst_audioscale_fixate):
20510         * gst/audiotestsrc/gstaudiotestsrc.c:
20511         (gst_audiotestsrc_src_fixate):
20512         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
20513         * gst/videorate/gstvideorate.c: (gst_videorate_setcaps):
20514         * gst/videoscale/gstvideoscale.c: (gst_videoscale_fixate_caps):
20515         * gst/videotestsrc/gstvideotestsrc.c:
20516         (gst_videotestsrc_src_fixate):
20517         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
20518         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
20519           Rename gst_caps_structure_fixate_* to gst_structure_fixate_*
20520           (#322027)
20521
20522
20523 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20524
20525         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
20526         (gst_riff_create_iavs_caps):
20527         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_file_header),
20528         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
20529         (gst_riff_parse_info):
20530         * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure):
20531         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_caps):
20532         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
20533           Fixes for GST_FOURCC_FORMAT API change.
20534
20535 2005-11-21  Andy Wingo  <wingo@pobox.com>
20536
20537         patch by: Alessandro Dessina <alessandro nnva org>
20538
20539         * ext/ogg/gstoggmux.c (gst_ogg_mux_set_header_on_caps):
20540         * ext/ogg/gstoggparse.c (gst_ogg_parse_append_header)
20541         (gst_ogg_parse_chain):
20542         * ext/theora/theoraenc.c (theora_set_header_on_caps):
20543         * ext/vorbis/vorbisenc.c (gst_vorbisenc_set_header_on_caps):
20544         * ext/vorbis/vorbisparse.c (vorbis_parse_set_header_on_caps): Fix
20545         gst_value_list calls on arrays. Fixes #321962.
20546
20547 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20548
20549         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
20550         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_queue_pads),
20551         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
20552         * gst/adder/gstadder.c: (gst_adder_init),
20553         (gst_adder_request_new_pad), (gst_adder_collected),
20554         (gst_adder_change_state):
20555           Update for gst_collectpads_foo() to gst_collect_pads_foo()
20556           API change.
20557
20558 2005-11-21  Michael Smith <msmith@fluendo.com>
20559
20560         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
20561         (gst_vorbisenc_chain), (gst_vorbisenc_output_buffers):
20562           Properly handle pad_push return values.
20563
20564 2005-11-20  Jan Schmidt  <thaytan@mad.scientist.com>
20565
20566         * gst-libs/gst/tag/Makefile.am:
20567         * gst-libs/gst/tag/gstvorbistag.c:
20568         (gst_tag_list_to_vorbiscomment_buffer):
20569           Remove obsolete vorbistag element and debug category.
20570
20571         * gst/playback/gstplaybasebin.c: (check_queue):
20572           Don't divide by 0 when queue-threshold is 0.
20573
20574         * sys/ximage/ximagesink.c: (gst_ximagesink_set_property):
20575           Don't modify an existing pixel-aspect-ratio if we fail to read
20576           a new one.
20577
20578 2005-11-20  Wim Taymans  <wim@fluendo.com>
20579
20580         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_push_buffer),
20581         (gst_vorbisenc_push_packet):
20582         GST_PAD_IS_USABLE is gone, use the return value of
20583         the push or pad_alloc_buffer instead.
20584
20585 2005-11-18  Julien MOUTTE  <julien@moutte.net>
20586
20587         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
20588         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
20589         (gst_ximagesink_ximage_destroy),
20590         (gst_ximagesink_xwindow_draw_borders), (gst_ximagesink_ximage_put),
20591         (gst_ximagesink_xwindow_new),
20592         (gst_ximagesink_xwindow_update_geometry),
20593         (gst_ximagesink_handle_xevents), (gst_ximagesink_event_thread),
20594         (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
20595         (gst_ximagesink_bufferpool_clear), (gst_ximagesink_getcaps),
20596         (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
20597         (gst_ximagesink_show_frame), (gst_ximagesink_buffer_alloc),
20598         (gst_ximagesink_navigation_send_event),
20599         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_expose),
20600         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
20601         (gst_ximagesink_finalize), (gst_ximagesink_init),
20602         (gst_ximagesink_class_init):
20603         * sys/ximage/ximagesink.h: Refactoring of ximagesink.
20604         This new version brings correct software scaling, non flickering
20605         window while resizing, pixel aspect ratio handling, usage of
20606         hardware buffer pools, out of data flow event thread for 
20607         navigation and handling of expose events even when being PAUSED,
20608         a new property to keep video aspect ratio when resizing, etc...
20609
20610 2005-11-18  Julien MOUTTE  <julien@moutte.net>
20611
20612         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
20613         (gst_videoscale_fixate_caps): Introduce back caps fixate with
20614         handling of PAR.
20615
20616 2005-11-18  Edward Hervey  <bilboed@dvdsrc.fluendo.com>
20617
20618         * gst/playback/gstdecodebin.c: (gst_decode_bin_init): 
20619         Unsetting IS_SINK flag from the fakesink, so decodebin
20620         never behaves as a sink.
20621
20622 2005-11-17  Wim Taymans  <wim@fluendo.com>
20623
20624         * gst-libs/gst/audio/gstbaseaudiosrc.c:
20625         (gst_base_audio_src_change_state):
20626         Fix the audiosrc base class again, we did not unflush.
20627
20628 2005-11-17  Julien MOUTTE  <julien@moutte.net>
20629
20630         * examples/seeking/seek.c: (make_dv_pipeline),
20631         (make_vorbis_theora_pipeline), (make_avi_pipeline),
20632         (make_mpegnt_pipeline): Use VSINK everywhere, add a scaler
20633         to ogg/vorbis/theora pipeline.
20634
20635 2005-11-17  Wim Taymans  <wim@fluendo.com>
20636
20637         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
20638         (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
20639         (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
20640         Fix EOS on multiple streams.
20641         More debugging.
20642
20643 2005-11-16  Wim Taymans  <wim@fluendo.com>
20644
20645         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_configure_segment),
20646         (gst_ogg_demux_perform_seek):
20647         Segment done must include stream time.
20648
20649         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
20650         (gst_ogg_mux_clear), (gst_ogg_mux_init), (gst_ogg_mux_finalize),
20651         (gst_ogg_mux_change_state):
20652         Fix ogg muxer again.
20653
20654 2005-11-16  Wim Taymans  <wim@fluendo.com>
20655
20656         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init):
20657         Fix compile again.
20658
20659 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
20660
20661         * ext/libvisual/visual.c: (gst_visual_init):
20662         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
20663         * ext/ogg/gstoggparse.c: (gst_ogg_parse_init),
20664         (gst_ogg_parse_chain):
20665         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
20666         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init):
20667         * ext/theora/theoradec.c: (gst_theora_dec_init):
20668         * ext/theora/theoraenc.c: (gst_theora_enc_init):
20669         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
20670         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init):
20671         * gst/adder/gstadder.c: (gst_adder_class_init),
20672         (gst_adder_dispose):
20673         * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
20674         * gst/subparse/gstsubparse.c: (gst_subparse_init):
20675         * gst/videorate/gstvideorate.c: (gst_videorate_init):
20676           Fix a whole set of pad template leaks
20677
20678 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
20679
20680         * check/generic/states.c: (GST_START_TEST):
20681           fix the test so that it only checks for elements that are part of
20682           this source module
20683
20684 2005-11-16  Michael Smith <msmith@fluendo.com>
20685
20686         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_reset),
20687         (gst_ogg_mux_init), (gst_ogg_mux_request_new_pad),
20688         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
20689         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
20690         (gst_ogg_mux_collected), (gst_ogg_mux_clear_collectpads),
20691         (gst_ogg_mux_change_state):
20692           Fix leaking collectpads.
20693
20694 2005-11-16  Edward Hervey  <edward@fluendo.com>
20695
20696         * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
20697         (gst_videorate_event), (gst_videorate_chain):
20698         Handle segment seeks
20699
20700 2005-11-16  Wim Taymans  <wim@fluendo.com>
20701
20702         * gst-libs/gst/audio/gstbaseaudiosink.c:
20703         (gst_base_audio_sink_provide_clock),
20704         (gst_base_audio_sink_change_state):
20705         Set ringbuffer to non-flushing when going to PAUSED, set to
20706         flushing again when going to READY.
20707
20708         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
20709         (gst_ring_buffer_stop):
20710         Start in flushing mode by default.
20711         Don't set flushing in the _stop method, let the app call
20712         this explicitly.
20713
20714 2005-11-16  Julien MOUTTE  <julien@moutte.net>
20715
20716         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_center_rect):
20717         * gst-libs/gst/video/videosink.h: Add helper function needed
20718         for video sinks.
20719
20720 2005-11-16  Tim-Philipp Müller  <tim at centricular dot net>
20721
20722         * gst/videoscale/gstvideoscale.c:
20723         (gst_videoscale_handle_src_event):
20724           Don't leak reference to pad parent.
20725
20726 2005-11-16  Wim Taymans  <wim@fluendo.com>
20727
20728         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop):
20729         Set ringbuffer to flushing when stopping so that we don't
20730         block on wait_segment anymore and livelock.
20731
20732 2005-11-16  Wim Taymans  <wim@fluendo.com>
20733
20734         * examples/seeking/seek.c: (send_event), (do_seek),
20735         (loop_toggle_cb), (segment_done), (main):
20736         Added looping checkbox.
20737
20738 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
20739
20740         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
20741         (gst_ogg_demux_init):
20742         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
20743         (gst_vorbis_dec_init):
20744           revert unrefs, they don't pass make check
20745
20746 2005-11-15  Johan Dahlin  <johan@gnome.org>
20747
20748         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
20749         (gst_ogg_demux_init), (gst_ogg_demux_finalize):
20750         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
20751         (gst_vorbis_dec_init):
20752         Fix pad template leaks. 
20753
20754 2005-11-15  Tim-Philipp Müller  <tim at centricular dot net>
20755
20756         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
20757           Make state change function thread safe.
20758
20759 2005-11-15  Edward Hervey  <edward@fluendo.com>
20760
20761         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
20762         (gst_ogg_demux_class_init):
20763         Implement GstElement::send_event, so we can send seek events
20764         in GST_STATE_READY
20765
20766 2005-11-14  Julien MOUTTE  <julien@moutte.net>
20767
20768         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new):
20769         Discovered how to take away flickering while resizing the
20770         window. Please don't put that in ximagesink, refactoring in
20771         progress.
20772
20773 2005-11-14  Michael Smith <msmith@fluendo.com>
20774
20775         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_client_queue_data),
20776         (gst_multifdsink_render):
20777           Don't leak GDP headers when using GDP mode (i.e. tcpserversink).
20778
20779 2005-11-14  Tim-Philipp Müller  <tim at centricular dot net>
20780
20781         * gst/playback/gstplaybin.c: (gen_audio_element):
20782           Use autoaudiosink, it tends to be more widely available than
20783           autoaudiiosink.
20784           
20785 2005-11-14  Andy Wingo  <wingo@pobox.com>
20786
20787         * gst/playback/gstplaybin.c (gen_audio_element): Use autoaudiosink
20788         as well if it is available. Fixes #316442.
20789
20790 2005-11-14  Michael Smith <msmith@fluendo.com>
20791
20792         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_init),
20793         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
20794         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
20795         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
20796         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_collected),
20797         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
20798         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_buffer_from_packet),
20799         (gst_vorbisenc_change_state):
20800           Fix a small memory leak in vorbisenc.
20801           Fix large memory leaks in oggmux, also fix lots of state change
20802           bugs in oggmux.
20803
20804 2005-11-14  Thomas Vander Stichele  <thomas at apestaart dot org>
20805
20806         * gst/videotestsrc/gstvideotestsrc.c:
20807         (gst_videotestsrc_class_init), (gst_videotestsrc_init),
20808         (gst_videotestsrc_src_fixate):
20809           move fixation to a fixate function
20810           remove negotiate function, basesrc's is good enough
20811           fixes a bug for check when using the element alone
20812
20813 2005-11-13  Edward Hervey  <edward@fluendo.com>
20814
20815         * examples/seeking/seek.c: (do_seek), (accurate_toggle_cb),
20816         (key_toggle_cb), (main):
20817         Added checkboxes for adding/removing the accurate and key_unit seek
20818         flags.
20819
20820 2005-11-11  Thomas Vander Stichele  <thomas at apestaart dot org>
20821
20822         * configure.ac: back to HEAD
20823
20824 === release 0.9.5 ===
20825
20826 2005-11-11  Thomas Vander Stichele <thomas at apestaart dot org>
20827
20828         * configure.ac:
20829           releasing 0.9.5, "No No Kia"
20830
20831 2005-11-11  Edward Hervey  <edward@fluendo.com>
20832
20833         * examples/seeking/seek.c: (make_parselaunch_pipeline):
20834         Added parse-launch syntax seeking mode for the seeking example.
20835         This should help stress-test even more cases.
20836         Ex usage : ./seek 15 "filesrc location=uranus.avi ! decodebin ! xvimagesink"
20837
20838 2005-11-11  Tim-Philipp Müller  <tim at centricular dot net>
20839
20840         * sys/xvimage/xvimagesink.c:
20841         (gst_xvimagesink_navigation_send_event):
20842           Check whether peer pad exists before sending navigation events
20843           to it.
20844
20845 2005-11-11  Michael Smith <msmith@fluendo.com>
20846
20847         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup),
20848         (gst_vorbisenc_buffer_from_packet):
20849         * ext/vorbis/vorbisenc.h:
20850           Set duration on encoded buffers. This allows oggmux's
20851           max_page_delay parameter to actually work.
20852
20853 2005-11-11  Tim-Philipp Müller  <tim at centricular dot net>
20854
20855         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
20856         (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
20857         (gst_ffmpegcsp_avpicture_fill):
20858         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
20859         (gst_ffmpegcsp_get_unit_size), (gst_ffmpegcsp_transform):
20860           Make palettes work again (see #132341). Use our own macros
20861           for rounding up.
20862
20863 2005-11-10  Andy Wingo  <wingo@pobox.com>
20864
20865         * gst/playback/gstplaybasebin.c (prepare_output): Fix format
20866         string doober.
20867
20868 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
20869
20870         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
20871         (gst_ffmpegcsp_transform_caps):
20872           Prefer passthrough in transform_caps
20873
20874 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
20875
20876         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
20877           check for ALSA errors properly, instead of relying on ALSA's
20878           error strings to serve to the user.
20879
20880 2005-11-10  Wim Taymans  <wim@fluendo.com>
20881
20882         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event), (gst_ogg_demux_init),
20883         (gst_ogg_demux_configure_segment), (gst_ogg_demux_perform_seek),
20884         (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
20885         Modernise the seek code.
20886
20887 2005-11-10  Michael Smith <msmith@fluendo.com>
20888         
20889         * gst/playback/gstplaybasebin.c: (group_commit), (new_decoded_pad),
20890         (setup_substreams), (set_active_source):
20891           Unlock GROUP_LOCK in failure cases, so that we don't deadlock when
20892           trying to go to NULL if we failed to read a file.
20893
20894 2005-11-10  Wim Taymans  <wim@fluendo.com>
20895
20896         * gst/audiotestsrc/gstaudiotestsrc.c:
20897         (gst_audiotestsrc_class_init), (gst_audiotestsrc_get_times),
20898         (gst_audiotestsrc_create):
20899         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
20900         (gst_sinesrc_get_times), (gst_sinesrc_create):
20901         * gst/videotestsrc/gstvideotestsrc.c:
20902         (gst_videotestsrc_class_init), (gst_videotestsrc_get_times),
20903         (gst_videotestsrc_create):
20904         The base class can now sync for us.
20905
20906 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
20907
20908         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate): Check if the caps have
20909           a fourcc field. Fixes crash for gst-launch-0.9 v4lsrc
20910           name=source autoprobe=false autoprobe-fps=false copy-mode=1
20911           device=/dev/video0 ! ffmpegcolorspace ! "video/x-raw-yuv,
20912           format=(fourcc)I420" ! xvimagesink
20913
20914 2005-11-10  Tim-Philipp Müller  <tim at centricular dot net>
20915
20916         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
20917         (gst_sinesrc_get_query_types), (gst_sinesrc_src_query),
20918         (gst_sinesrc_newsegment):
20919           Send newsegment event in TIME format, set duration if
20920           num-buffers is set, fix duration querying.
20921
20922 2005-11-10  Michael Smith <msmith@fluendo.com>
20923
20924         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
20925         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
20926         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
20927         (gst_ogg_mux_collected):
20928          Fix EOS handling, partially. Now forwarding an EOS event once we have
20929          EOS on all pads works correctly. However, we still don't properly set
20930          EOS on the actual ogg stream pages.
20931
20932 2005-11-09  Tim-Philipp Müller  <tim at centricular dot net>
20933
20934         * gst/playback/gstplaybin.c: (gst_play_bin_dispose):
20935           Set elements to NULL state before disposing of them.
20936
20937 2005-11-08  Sebastien Cote  <sebas642 at yahoo dot ca>
20938
20939         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
20940
20941         * gst-libs/gst/rtp/gstbasertpdepayload.c:
20942         (gst_base_rtp_depayload_init),
20943         (gst_base_rtp_depayload_set_gst_timestamp):
20944         * gst-libs/gst/rtp/gstbasertpdepayload.h:
20945           We need to send a newsegment event for each instance, not
20946           just for the first instance of this class (get rid of
20947           static variable in function). (#321011).
20948           
20949 2005-11-08  Michael Smith <msmith@fluendo.com>
20950
20951         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
20952         (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_buffer),
20953         (gst_ogg_mux_dequeue_page), (gst_ogg_mux_pad_queue_page),
20954         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
20955           Forward port rewrite of muxing strategy to 0.9 version of oggmux.
20956           This makes us mux things correctly according to the ogg muxing
20957           rules. Still not handling EOS correctly right now, though.
20958
20959 2005-11-08  Tim-Philipp Müller  <tim at centricular dot net>
20960
20961         * gst/audioconvert/gstaudioconvert.c:
20962           Fix typo in docs. 
20963
20964 2005-11-08  Tim-Philipp Müller  <tim at centricular dot net>
20965
20966         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
20967         (gst_ogg_pad_submit_packet), (gst_ogg_chain_new):
20968           Initialise segment_stop to GST_CLOCK_TIME_NONE when
20969           creating a new chain; should fix live streaming. Also
20970           add more debug output and fix a typo.
20971
20972 2005-11-08  Brian Cameron  <brian dot cameron at sun dot com>
20973
20974         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
20975
20976         * gst/volume/gstvolume.c: (volume_set_caps):
20977           Fix compilation on Solaris with Forte. (#320923)
20978
20979 2005-11-08  Wim Taymans  <wim@fluendo.com>
20980
20981         * gst-libs/gst/audio/gstbaseaudiosink.c:
20982         (gst_base_audio_sink_render):
20983         No need to do a typecheck.
20984
20985 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
20986
20987         * ext/alsa/gstalsa.h:
20988           We register a debug category, so let's use it.
20989
20990 2005-11-04  Zeeshan Ali  <zeenix@gmail.com>
20991
20992         * gst-libs/gst/rtp/gstbasertpdepayload.c:
20993         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_wait):
20994         Fixed a small problem.
20995
20996 2005-11-04  Wim Taymans  <wim@fluendo.com>
20997
20998         * examples/seeking/Makefile.am:
20999         * examples/seeking/scrubby.c: (gst_element_factory_make_or_warn),
21000         (dynamic_link), (setup_dynamic_link), (make_wav_pipeline),
21001         (make_playerbin_pipeline), (format_value), (update_scale),
21002         (speed_cb), (seek_cb), (do_seek), (start_seek), (stop_seek),
21003         (play_cb), (pause_cb), (stop_cb), (print_message), (bus_message),
21004         (print_usage), (main):
21005         Added app for playback speed testing.
21006
21007         * examples/seeking/seek.c: (dynamic_link),
21008         (make_avi_msmpeg4v3_mp3_pipeline), (make_avi_pipeline),
21009         (make_mpeg_pipeline), (do_seek), (set_update_scale),
21010         (message_received), (main):
21011         Updated seek example.
21012
21013 2005-11-04  Zeeshan Ali  <zeenix@gmail.com>
21014
21015         * gst-libs/gst/rtp/gstbasertpdepayload.c:
21016         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
21017         (gst_base_rtp_depayload_thread), (gst_base_rtp_depayload_wait),
21018         (gst_base_rtp_depayload_set_clock):
21019         * gst-libs/gst/rtp/gstbasertpdepayload.h:
21020         Don't sleep on the bench (system clock) when you have a nice 
21021         comfortable bed (Gstreamer clock) to sleep on.
21022
21023 2005-11-03  Wim Taymans  <wim@fluendo.com>
21024
21025         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
21026         (gst_decode_bin_dispose), (free_dynamics), (remove_fakesink),
21027         (pad_blocked), (close_pad_link), (new_pad), (no_more_pads):
21028         Handle the case where a pad_block failed.
21029
21030 2005-11-02  Sebastien Cote  <sebas642@yahoo.ca> 
21031
21032         reviewed by: Zeeshan Ali  <zeenix@gmail.com>
21033
21034         * gst-libs/gst/rtp/gstbasertpdepayload.c:
21035         (gst_base_rtp_depayload_add_to_queue),
21036         (gst_base_rtp_depayload_push),
21037         (gst_base_rtp_depayload_set_gst_timestamp),
21038         (gst_base_rtp_depayload_queue_release):
21039           Fixes some bugs in the depayloader's queuing/de-queueing code.
21040
21041 2005-10-31  Michael Smith <msmith@fluendo.com>
21042
21043         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
21044         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
21045         (gst_ogg_demux_collect_chain_info), (gst_ogg_print):
21046           Patch from Alessandro Decina <alessandro@nnva.org>.
21047           Make oggdemux only find the final time in a chain, not per-pad,
21048           since the per-pad information can be very expensive to locate, and
21049           it isn't used anywhere. This makes reading a file containing
21050           OggSkeleton reasonably fast.
21051           Also, make chain finding work when there are logical bitstreams that
21052           can't be decoded. Fixes #319110.
21053
21054 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
21055
21056         * gst-libs/gst/rtp/gstbasertpdepayload.c:
21057         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
21058         (gst_base_rtp_depayload_chain),
21059         (gst_base_rtp_depayload_add_to_queue),
21060         (gst_base_rtp_depayload_push),
21061         (gst_base_rtp_depayload_set_gst_timestamp),
21062         (gst_base_rtp_depayload_queue_release),
21063         (gst_base_rtp_depayload_start_thread),
21064         (gst_base_rtp_depayload_set_property),
21065         (gst_base_rtp_depayload_get_property):
21066         * gst-libs/gst/rtp/gstbasertpdepayload.h:
21067         Some random fixes, to fullfill the desires of thomas.
21068
21069 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
21070
21071         * gst-libs/gst/rtp/gstbasertpdepayload.c:
21072         (gst_base_rtp_depayload_add_to_queue),
21073         (gst_base_rtp_depayload_push):
21074         Fixed the queueing algorithm.
21075
21076 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
21077
21078         * gst-libs/gst/rtp/gstbasertpdepayload.c:
21079         (gst_base_rtp_depayload_push):
21080         A small fix
21081
21082 2005-10-31  Wim Taymans  <wim@fluendo.com>
21083
21084         * gst-libs/gst/audio/gstringbuffer.h:
21085         Don't break ABI.
21086
21087         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
21088         (gst_ffmpeg_caps_to_pixfmt):
21089         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
21090         (gst_ffmpegcsp_set_caps):
21091         Some more comments.
21092         Handle missing required caps fields better.
21093
21094 2005-10-31  Wim Taymans  <wim@fluendo.com>
21095
21096         * gst-libs/gst/audio/gstbaseaudiosink.c:
21097         (gst_base_audio_sink_event), (gst_base_audio_sink_get_offset),
21098         (gst_base_audio_sink_render):
21099         * gst-libs/gst/audio/gstringbuffer.c:
21100         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
21101         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
21102         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_pause),
21103         (gst_ring_buffer_stop), (wait_segment), (gst_ring_buffer_commit),
21104         (gst_ring_buffer_read):
21105         * gst-libs/gst/audio/gstringbuffer.h:
21106         Add flushing mode to the ringbuffer so that it in all cases does
21107         not try to handle more audio. This makes sure it does not try to
21108         block anymore when flushing and fixes a livelock.
21109
21110 2005-10-29  Tim-Philipp Müller  <tim at centricular dot net>
21111
21112         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
21113         (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
21114         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain):
21115           Explicitly check for -1 values before doing a conversion
21116           and always map them to -1. (#315545)
21117
21118 2005-10-28  Thomas Vander Stichele  <thomas at apestaart dot org>
21119
21120         * gst/playback/gstplaybin.c: (gen_video_element):
21121           first try autovideosink, then xvimagesink, then error out
21122         * po/POTFILES.in:
21123           add translatable file
21124         * po/af.po:
21125         * po/az.po:
21126         * po/cs.po:
21127         * po/en_GB.po:
21128         * po/hu.po:
21129         * po/it.po:
21130         * po/nb.po:
21131         * po/nl.po:
21132         * po/or.po:
21133         * po/sq.po:
21134         * po/sr.po:
21135         * po/sv.po:
21136         * po/uk.po:
21137         * po/vi.po:
21138           update translations
21139
21140 2005-10-27  Philippe Khalaf <burger at speedy dot org> 
21141
21142         * gst-libs/gst/rtp/gstbasedepayload.c:
21143         * gst-libs/gst/rtp/gstbasedepayload.h:
21144           Minor cleanups
21145
21146 2005-10-27  Tim-Philipp Müller  <tim at centricular dot net>
21147
21148         * gst/playback/.cvsignore:
21149         * gst/playback/decodetest.c:
21150         * gst/playback/test3.c:
21151           Port these two tests as well.
21152
21153 2005-10-27  Wim Taymans  <wim@fluendo.com>
21154
21155         * ext/theora/theoradec.c: (theora_dec_src_query),
21156         (theora_dec_sink_event):
21157         * ext/theora/theoraenc.c: (theora_enc_sink_event),
21158         (theora_enc_change_state):
21159         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
21160         (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
21161         Take proper locks when handling events.
21162
21163 2005-10-27  Wim Taymans  <wim@fluendo.com>
21164
21165         * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_collected),
21166         (gst_adder_change_state):
21167         Fix timestamps and fix deadlock when stopping the collectpads.
21168
21169 2005-10-27  Zeeshan Ali  <zeenix@gmail.com>
21170
21171         * gst-libs/gst/rtp/gstrtpbuffer.h:
21172         Declaring the payload types as strings too so that they can be used
21173         in the padtemplate inialization.
21174
21175 2005-10-26  Andre Magalhaes  <andrunko@gmail.com>
21176
21177         reviewed by: Zeeshan Ali   <zeenix@gmail.com>
21178
21179         * gst-libs/gst/rtp/gstbasertpdepayload.c:
21180         (gst_base_rtp_depayload_class_init):
21181         Fixes a small but nasty bug. The derived elements no longer segfaults
21182         on finalization.
21183
21184 2005-10-26  Michael Smith <msmith@fluendo.com>
21185
21186         * gst/audioconvert/audioconvert.c: (audio_convert_clean_context):
21187           When clearing an audioconvert context, set tmpbufsize to zero, so
21188           we'll allocate it again later if required.
21189           This fixes audioconvert re-negotiating formats, which previously
21190           segfaulted with a NULL destination buffer.
21191
21192 2005-10-26  Zeeshan Ali <zeenix@gmail.com>
21193
21194         * gst-libs/gst/rtp/gstbasertpdepayload.c:
21195         (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_push),
21196         (gst_base_rtp_depayload_set_gst_timestamp),
21197         (gst_base_rtp_depayload_queue_release):
21198         Fixed a smalll memleak.
21199
21200 2005-10-26  Zeeshan Ali  <zeenix@gmail.com>
21201         * gst-libs/gst/rtp/gstbasertpdepayload.c:
21202         (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_init),
21203         (gst_base_rtp_depayload_finalize),
21204         (gst_base_rtp_depayload_setcaps),
21205         (gst_base_rtp_depayload_add_to_queue),
21206         (gst_base_rtp_depayload_push),
21207         (gst_base_rtp_depayload_set_gst_timestamp),
21208         (gst_base_rtp_depayload_queue_release),
21209         (gst_base_rtp_depayload_thread),
21210         (gst_base_rtp_depayload_change_state):
21211         * gst-libs/gst/rtp/gstbasertpdepayload.h:
21212         Changed the C++ comments to C comments
21213
21214 2005-10-26  Tim-Philipp Müller  <tim at centricular dot net>
21215
21216         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init):
21217         * gst/tcp/gsttcpclientsrc.h:
21218         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init):
21219         * gst/tcp/gsttcpserversrc.h:
21220           Remove unused 'curoffset' structure member.
21221
21222 2005-10-25  Zeeshan Ali  <zeenix@gmail.com>
21223
21224         * gst-libs/gst/rtp/gstbasertpdepayload.c:
21225         (gst_base_rtp_depayload_base_init),
21226         (gst_base_rtp_depayload_finalize):
21227         * gst-libs/gst/rtp/gstbasertpdepayload.h:
21228         * gst-libs/gst/rtp/gstbasertppayload.h:
21229           The pad-template on the sinkpad should be set by the derived classes.
21230           Also added some useful macros.
21231
21232 2005-10-24  Wim Taymans  <wim@fluendo.com>
21233
21234         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
21235         Correctly flush decoder samples even if we could not
21236         copy them to an output buffer. Fixes #319618.
21237
21238 2005-10-24  Julien MOUTTE  <julien@moutte.net>
21239
21240         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
21241         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Check
21242         the caps against our xcontext caps.
21243
21244 2005-10-24  Wim Taymans  <wim@fluendo.com>
21245
21246         * gst-libs/gst/audio/gstbaseaudiosink.c:
21247         (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
21248         Remove g_print
21249         Use sync property from baseclass to disable sync.
21250
21251 2005-10-24  Wim Taymans  <wim@fluendo.com>
21252
21253         * gst-libs/gst/audio/gstbaseaudiosink.c:
21254         (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
21255         Buffers with no timestamps get aligned with previous buffers or
21256         on underrun, played ASAP.
21257
21258 2005-10-24  Julien MOUTTE  <julien@moutte.net>
21259
21260         * gst-libs/gst/video/video.h:
21261         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
21262         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
21263         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): And
21264         here comes my change on caps for framerate and geometry range.
21265         We are now accepting 1 to MAXINT for width and height, and from
21266         0.0 to MAXDOUBLE for framerate. That allows duration less png frames
21267         to be blended correctly in videomixer.
21268
21269 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
21270
21271         * configure.ac:
21272           back to HEAD
21273
21274 === release 0.9.4 ===
21275
21276 2005-10-23  Thomas Vander Stichele  <thomas at apestaart dot org>
21277
21278         * NEWS:
21279         * RELEASE:
21280         * configure.ac:
21281           releasing 0.9.4, "Velociraptor"
21282
21283 2005-10-23  Thomas Vander Stichele  <thomas at apestaart dot org>
21284
21285         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
21286         * po/POTFILES.in:
21287           STOPPED -> FAILED
21288
21289 2005-10-21  Wim Taymans  <wim@fluendo.com>
21290
21291         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
21292         (gst_decode_bin_dispose), (free_dynamics), (pad_unblocked),
21293         (pad_blocked), (close_pad_link), (new_pad):
21294         Don't try to remove elements twice.
21295
21296 2005-10-21  Wim Taymans  <wim@fluendo.com>
21297
21298         * ext/theora/theoradec.c: (theora_dec_src_query),
21299         (theora_dec_sink_event):
21300         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
21301         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
21302         (vorbis_handle_data_packet):
21303         * ext/vorbis/vorbisdec.h:
21304         Fix old naming.
21305
21306         * gst-libs/gst/audio/gstbaseaudiosink.c:
21307         (gst_base_audio_sink_render):
21308         Don't try to sync on buffers without a timestamp.
21309
21310 2005-10-21  Wim Taymans  <wim@fluendo.com>
21311
21312         * ext/theora/theoradec.c: (theora_dec_src_query),
21313         (theora_dec_sink_event):
21314         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
21315         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
21316         (vorbis_handle_data_packet):
21317         * ext/vorbis/vorbisdec.h:
21318         Fix old naming.
21319
21320 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
21321
21322         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types),
21323         (gst_vorbisenc_src_query):
21324           Implement position and duration queries.
21325
21326         * gst/playback/test3.c: (update_scale), (main):
21327           Fix for async state changes and print nicer output.
21328
21329 2005-10-20  Wim Taymans  <wim@fluendo.com>
21330
21331         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
21332         (dump_element_stats), (main):
21333         * gst/playback/test6.c: (main):
21334         Fix tests again
21335
21336 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
21337
21338         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
21339         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
21340           Don't use functions for position queries when handling
21341           duration queries.
21342
21343 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
21344
21345         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
21346         (vorbis_handle_data_packet), (vorbis_dec_chain),
21347         (vorbis_dec_change_state):
21348         * ext/vorbis/vorbisdec.h:
21349           Vorbis streams can be embedded in other container formats
21350           than ogg, container formats where the demuxer might set 
21351           timestamps on encoded vorbis buffers instead of those silly 
21352           granulepos thingies. In short: make vorbisdec handle 
21353           timestamps on incoming buffers as well.
21354
21355 2005-10-20  Wim Taymans  <wim@fluendo.com>
21356
21357         * gst/playback/gstplaybasebin.c: (group_destroy),
21358         (gst_play_base_bin_change_state):
21359         Fix leak.
21360         Handle case where playbasebin is now ASYNC because
21361         decodebin is.
21362
21363 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
21364
21365         * gst/audioconvert/Makefile.am:
21366         * gst/audioconvert/bufferframesconvert.c:
21367         * gst/audioconvert/plugin.c: (plugin_init):
21368         * gst/audioconvert/plugin.h:
21369           And bye bye buffer-frames-convert
21370
21371 2005-10-19  Wim Taymans  <wim@fluendo.com>
21372
21373         * check/elements/audioconvert.c:
21374         * docs/libs/tmpl/gstaudio.sgml:
21375         * docs/libs/tmpl/gstcolorbalance.sgml:
21376         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
21377         (vorbis_handle_identification_packet), (vorbis_handle_data_packet):
21378         * ext/vorbis/vorbisenc.c: (raw_caps_factory):
21379         * gst-libs/gst/audio/audio.c: (gst_audio_structure_set_int):
21380         * gst-libs/gst/audio/audio.h:
21381         * gst/audioconvert/audioconvert.h:
21382         * gst/audioconvert/gstaudioconvert.c:
21383         (gst_audio_convert_parse_caps):
21384         * gst/volume/gstvolume.c:
21385         Bye bye buffer-frames.
21386
21387 2005-10-19  Wim Taymans  <wim@fluendo.com>
21388
21389         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
21390         (query_positions_elems), (query_positions_pads), (update_scale),
21391         (do_seek), (set_update_scale), (message_received), (main):
21392         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
21393         (gst_ogg_demux_perform_seek), (gst_ogg_demux_find_chains),
21394         (gst_ogg_demux_loop):
21395         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
21396         * ext/theora/theoradec.c: (theora_dec_src_query),
21397         (theora_dec_sink_event):
21398         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
21399         (vorbis_dec_sink_event), (vorbis_handle_data_packet):
21400         * gst/adder/gstadder.c: (gst_adder_query):
21401         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
21402         * gst/playback/test3.c: (update_scale):
21403         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
21404         (dump_element_stats), (main):
21405         * gst/playback/test6.c: (main):
21406         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
21407         Query API update.
21408
21409 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
21410
21411         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
21412         (xml_check_first_element), (xml_type_find), (smil_type_find),
21413         (plugin_init):
21414           Add typefinding for SMIL and for generic XML. Based on patch by
21415           Akos Maroy (#308663).
21416
21417 2005-10-18  Wim Taymans  <wim@fluendo.com>
21418
21419         * gst/playback/Makefile.am:
21420         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
21421         (gst_decode_bin_dispose), (dynamic_create), (dynamic_free),
21422         (free_dynamics), (pad_unblocked), (pad_blocked), (close_pad_link),
21423         (try_to_link_1), (new_pad), (no_more_pads), (type_found),
21424         (gst_decode_bin_change_state):
21425         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
21426         (gst_play_bin_send_event_to_sink):
21427         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
21428         (dump_element_stats), (main):
21429         * gst/playback/test6.c: (main):
21430         Make playbin async, it'll commit state to paused when all streams
21431         are detected.
21432         Remove ugly hack.
21433         Added test6.c to show async behaviour.
21434
21435 2005-10-18  Wim Taymans  <wim@fluendo.com>
21436
21437         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
21438         (gst_ogg_demux_perform_seek), (gst_ogg_demux_loop):
21439         Fix for segment-start/stop API change.
21440
21441 2005-10-18  Wim Taymans  <wim@fluendo.com>
21442
21443         * check/Makefile.am:
21444         * check/clocks/selection.c: (GST_START_TEST), (volume_suite),
21445         (main):
21446         Add future test for clock selection.
21447
21448 2005-10-18  Wim Taymans  <wim@fluendo.com>
21449
21450         * ext/alsa/gstalsasink.c: (gst_alsasink_init),
21451         (gst_alsasink_close):
21452         Set handle to NULL.
21453
21454         * gst-libs/gst/audio/gstringbuffer.c:
21455         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
21456         (gst_ring_buffer_acquire), (gst_ring_buffer_release),
21457         (gst_ring_buffer_start), (gst_ring_buffer_pause),
21458         (gst_ring_buffer_stop), (gst_ring_buffer_commit),
21459         (gst_ring_buffer_read):
21460         More debug info.
21461
21462 2005-10-17  Stefan Kost  <ensonic@users.sf.net>
21463
21464         * gst/audiotestsrc/Makefile.am:
21465         * gst/sine/Makefile.am:
21466         * gst/volume/Makefile.am:
21467           fix broken build of controllerized plugins
21468
21469 2005-10-17  Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>
21470
21471         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
21472
21473         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
21474         (gst_riff_create_video_template_caps):
21475           Add support for Indeo-3 (IV32).
21476
21477 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
21478
21479         * configure.ac:
21480           rewrite
21481
21482 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
21483
21484         * gst-libs/gst/video/video.c: (gst_video_get_size):
21485         * gst/audiotestsrc/gstaudiotestsrc.c:
21486           doc updates
21487
21488 2005-10-17  Andy Wingo  <wingo@pobox.com>
21489
21490         * ext/ogg/gstoggmux.c (gst_ogg_mux_queue_pads): Fix bug introduced
21491         with the collectpads change.
21492         (gst_ogg_mux_send_headers): Elevate warning to a g_critical.
21493
21494         * gst/tcp/gstmultifdsink.c: Convert to use the boilerplate macro.
21495
21496         * gst/tcp/gsttcp.c (gst_tcp_socket_read): Comment update.
21497
21498         * ext/theora/theoraenc.c (theora_buffer_from_packet): Pass the
21499         alloc_buffer flow return to callers.
21500         (theora_enc_chain, theora_enc_chain): Adapt to buffer_from_packet
21501         change. Fix some memleaks in theoraenc.
21502
21503         * ext/ogg/gstoggmux.c (gst_ogg_mux_send_headers): Fix a segfault
21504         in strange circumstance.
21505
21506 2005-10-17  Julien MOUTTE  <julien@moutte.net>
21507
21508         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
21509         (gst_ffmpegcsp_get_unit_size): We are asked to compute a buffer size
21510         from caps, let's use the caps...
21511
21512 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
21513
21514         * configure.ac:
21515           put back AX_CREATE_STDINT_H, ffmpegcolorspace includes _stdint.h
21516
21517 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
21518
21519         * gst-libs/gst/interfaces/Makefile.am:
21520           fix silly typo
21521
21522 2005-10-16  Andy Wingo  <wingo@pobox.com>
21523
21524         * gst/playback/gstdecodebin.c
21525         (gst_element_set_state_like_a_crazy_man): New kraaaaaaazy
21526         function!
21527         (try_to_link_1): Increase kraziness level.
21528
21529 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
21530
21531         * configure.ac:
21532           restructure like the core one
21533         * gst-libs/gst/audio/Makefile.am:
21534         * gst-libs/gst/interfaces/Makefile.am:
21535         * gst-libs/gst/net/Makefile.am:
21536         * gst-libs/gst/riff/Makefile.am:
21537         * gst-libs/gst/rtp/Makefile.am:
21538         * gst-libs/gst/tag/Makefile.am:
21539         * gst-libs/gst/video/Makefile.am:
21540           use correct linker flags, now the libs are properly versioned
21541         * check/elements/audioconvert.c: (verify_convert):
21542         * ext/alsa/gstalsaplugin.c:
21543         * ext/cdparanoia/gstcdparanoia.c:
21544         * ext/gnomevfs/gstgnomevfs.c:
21545         * ext/libvisual/visual.c:
21546         * ext/ogg/gstogg.c:
21547         * ext/ogg/gstoggparse.c: (gst_ogg_parse_chain):
21548         * ext/theora/theora.c:
21549         * ext/vorbis/vorbis.c:
21550         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
21551         * gst-libs/gst/tag/gsttagediting.c:
21552         * gst-libs/gst/video/video.c:
21553         * gst/adder/gstadder.c:
21554         * gst/audioconvert/plugin.c:
21555         * gst/audiorate/gstaudiorate.c:
21556         * gst/audioresample/gstaudioresample.c:
21557         * gst/audioresample/resample_ref.c: (resample_scale_ref):
21558         * gst/audioscale/gstaudioscale.c:
21559         * gst/audioscale/resample.c:
21560         * gst/audiotestsrc/gstaudiotestsrc.c:
21561         * gst/ffmpegcolorspace/gstffmpeg.c:
21562         * gst/playback/gstdecodebin.c: (close_pad_link):
21563         * gst/playback/gstplaybin.c: (gen_video_element),
21564         (gen_audio_element):
21565         * gst/sine/gstsinesrc.c:
21566         * gst/subparse/gstsubparse.c:
21567         * gst/tags/gsttagediting.c:
21568         * gst/tcp/gsttcpplugin.c:
21569         * gst/typefind/gsttypefindfunctions.c:
21570         * gst/videorate/gstvideorate.c:
21571         * gst/videoscale/gstvideoscale.c:
21572         * gst/videotestsrc/gstvideotestsrc.c:
21573         * gst/volume/gstvolume.c:
21574         * sys/v4l/gstv4l.c:
21575         * sys/ximage/ximage.c:
21576         * sys/xvimage/xvimagesink.c:
21577           fix up defines
21578
21579 2005-10-13  Tim-Philipp Müller  <tim at centricular dot net>
21580
21581         * ext/vorbis/vorbisenc.c:
21582         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
21583         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
21584         (gst_tag_to_vorbis_comments):
21585           Fix handling of GST_TAG_DATE, which is now of GST_TYPE_DATE.
21586
21587 2005-10-13  Stefan Kost  <ensonic@users.sf.net>
21588
21589         * examples/stats/mp2ogg.c:
21590         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
21591           typo fixes
21592
21593 2005-10-13  Michael Smith <msmith@fluendo.com>
21594
21595         * ext/ogg/gstoggmux.c:
21596           Use magic glib macros to define constants as 64 bit, to ensure
21597           appropriate vararg passing.
21598
21599 2005-10-13  Michael Smith <msmith@fluendo.com>
21600
21601         * ext/ogg/gstoggmux.c:
21602         * gst/audioconvert/audioconvert.c: (float):
21603           Don't use LL suffix, as it's not portable, and neither of these
21604           uses required it anyway.
21605
21606 2005-10-12  Stefan Kost  <ensonic@users.sf.net>
21607
21608         * examples/indexing/indexmpeg.c: (main):
21609         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get),
21610         (cdparanoia_open), (cdparanoia_close), (cdparanoia_event),
21611         (cdparanoia_convert), (cdparanoia_query):
21612         * ext/cdparanoia/gstcdparanoia.h:
21613         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
21614         (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file),
21615         (gst_gnomevfssink_chain), (gst_gnomevfssink_change_state):
21616         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
21617         * gst/audioscale/gstaudioscale.c: (gst_audioscale_init):
21618         * gst/playback/gststreamselector.c: (gst_stream_selector_init):
21619         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
21620         (gst_multifdsink_render), (gst_multifdsink_start),
21621         (gst_multifdsink_stop):
21622         * gst/tcp/gstmultifdsink.h:
21623         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init),
21624         (gst_tcpclientsink_render), (gst_tcpclientsink_start),
21625         (gst_tcpclientsink_stop):
21626         * gst/tcp/gsttcpclientsink.h:
21627         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
21628         (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_create),
21629         (gst_tcpclientsrc_start), (gst_tcpclientsrc_stop):
21630         * gst/tcp/gsttcpclientsrc.h:
21631         * gst/tcp/gsttcpserversink.h:
21632         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init),
21633         (gst_tcpserversrc_create), (gst_tcpserversrc_start),
21634         (gst_tcpserversrc_stop):
21635         * gst/tcp/gsttcpserversrc.h:
21636         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
21637         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
21638         * sys/ximage/ximagesink.c: (gst_ximagesink_init):
21639           renamed GST_FLAGS macros to GST_OBJECT_FLAGS
21640           moved bitshift from macro to enum definition
21641
21642 2005-10-12  Wim Taymans  <wim@fluendo.com>
21643
21644         * examples/seeking/Makefile.am:
21645         Oops.
21646
21647 2005-10-12  Wim Taymans  <wim@fluendo.com>
21648
21649         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
21650         (gst_ring_buffer_read), (gst_ring_buffer_clear):
21651         Don't assert on normal stuff.
21652
21653         * gst/playback/gstplaybin.c: (do_playbin_seek):
21654         API fix.
21655
21656 2005-10-12  Wim Taymans  <wim@fluendo.com>
21657
21658         * check/pipelines/simple_launch_lines.c: (run_pipeline):
21659         * examples/seeking/Makefile.am:
21660         * examples/seeking/cdplayer.c: (play_cb), (pause_cb), (stop_cb):
21661         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
21662         (do_seek), (set_update_scale), (message_received), (main):
21663         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
21664         (gst_ring_buffer_read), (gst_ring_buffer_clear):
21665         Update for _get_state() API change.
21666
21667 2005-10-11  Wim Taymans  <wim@fluendo.com>
21668
21669         * gst-libs/gst/audio/gstbaseaudiosink.c:
21670         (gst_base_audio_sink_render):
21671         * gst-libs/gst/audio/gstbaseaudiosrc.c:
21672         (gst_base_audio_src_create):
21673         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
21674         (gst_ring_buffer_read):
21675         Cleanups.
21676         Commit and read from ringbuffer in samples rather than bytes.
21677
21678 2005-10-11  Wim Taymans  <wim@fluendo.com>
21679
21680         * gst-libs/gst/audio/gstbaseaudiosink.c:
21681         (gst_base_audio_sink_render):
21682         Respect segment rate and accum when scheduling samples.
21683
21684 2005-10-11  Julien MOUTTE  <julien@moutte.net>
21685
21686         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
21687         (gst_ogg_mux_collected): Quick hack to fix build. We need to handle
21688         EOS correctly, that needs more work.
21689
21690 2005-10-11  Wim Taymans  <wim@fluendo.com>
21691
21692         * check/generic/states.c: (GST_START_TEST):
21693         remove old property.
21694
21695         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
21696         (gst_ogg_demux_perform_seek):
21697         * ext/theora/theoradec.c: (theora_dec_sink_event):
21698         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
21699         (vorbis_handle_data_packet):
21700         * gst-libs/gst/rtp/gstbasertpdepayload.c:
21701         (gst_base_rtp_depayload_set_gst_timestamp):
21702         * gst/videorate/gstvideorate.c: (gst_videorate_event):
21703         Update for newsegment API change.
21704
21705 2005-10-11  Michael Smith <msmith@fluendo.com>
21706
21707         * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
21708         (do_playbin_seek), (gst_play_bin_send_event):
21709           Override send_event differently, so that we can takes bits of
21710           functionality from GstPipeline (special handling for seeks,
21711           including pausing/resuming, and resetting stream time) and still get
21712           the appropriate behaviour of only forwarding event to a single sink,
21713           rather than all of them.
21714           Unfortunately requires a lot of code duplication, but the
21715           alternatives are equally ugly in the end.
21716
21717 2005-10-11  Thomas Vander Stichele  <thomas at apestaart dot org>
21718
21719         * check/elements/audioconvert.c: (setup_audioconvert),
21720         (cleanup_audioconvert), (get_int_caps), (verify_convert),
21721         (GST_START_TEST), (audioconvert_suite):
21722           clean up tests a little, fix some leaks.
21723
21724 2005-10-10  Wim Taymans  <wim@fluendo.com>
21725
21726         * ext/alsa/gstalsasink.c:
21727         Also allow unsigned int.
21728
21729         * gst-libs/gst/audio/gstbaseaudiosrc.c:
21730         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
21731         Small cleanup
21732
21733 2005-10-10  Wim Taymans  <wim@fluendo.com>
21734
21735         * check/pipelines/simple_launch_lines.c: (run_pipeline):
21736         Small update, use API as stated in design docs.
21737
21738         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
21739         (update_scale), (do_seek), (seek_cb), (set_update_scale),
21740         (start_seek), (stop_seek), (play_cb), (pause_cb), (stop_cb),
21741         (message_received), (main):
21742         Updated seek example for GOption. Some usability improvements.
21743
21744 2005-10-10  Wim Taymans  <wim@fluendo.com>
21745
21746         * gst/audioconvert/audioconvert.h:
21747         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
21748         (gst_channel_mix_setup_matrix), (gst_channel_mix_mix):
21749         Alloc temp storage somewhere else where we can do it more
21750         portable.
21751
21752 2005-10-10  Wim Taymans  <wim@fluendo.com>
21753
21754         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_create),
21755         (gst_tcpserversrc_start):
21756         Don't block in accept while doing the state change, move
21757         to poll and make cancellable.
21758
21759 2005-10-09  Philippe Khalaf <burger@speedy.org>
21760
21761         * gst-libs/gst/rtp/rtpbasedepayload.c:
21762         Set timestamp and add queue delay to timestamp
21763         * gst-libs/gst/rtp/rtpbuffer.h:
21764         Set correct payload type for h263
21765
21766 2005-10-09  Stefan Kost  <ensonic@users.sf.net>
21767
21768         * gst/audiotestsrc/gstaudiotestsrc.c:
21769         (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_class_init),
21770         (gst_audiotestsrc_init), (gst_audiotestsrc_create_sine),
21771         (gst_audiotestsrc_create_square), (gst_audiotestsrc_create_saw),
21772         (gst_audiotestsrc_create_triangle),
21773         (gst_audiotestsrc_create_silence),
21774         (gst_audiotestsrc_create_white_noise),
21775         (gst_audiotestsrc_init_pink_noise),
21776         (gst_audiotestsrc_generate_pink_noise_value),
21777         (gst_audiotestsrc_create_pink_noise),
21778         (gst_audiotestsrc_change_wave):
21779         * gst/audiotestsrc/gstaudiotestsrc.h:
21780           fixed typo, added pink noise
21781
21782 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
21783
21784         * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find),
21785         (plugin_init):
21786           Add wavpack and spc typefind functions from 0.8 branch.
21787
21788 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
21789
21790         * gst/typefind/gsttypefindfunctions.c: (tar_type_find),
21791         (ar_type_find), (msdos_type_find), (plugin_init):
21792           Add typefind functions for tar archives, ar archives,
21793           RAR archives, and msdos-executables (dlls, exe, etc.).
21794           Some of those would be wrongly identified as mpeg
21795           streams of some sort before (#315550).
21796
21797 2005-10-09  Stefan Kost  <ensonic@users.sf.net>
21798
21799         * configure.ac:
21800         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
21801         * docs/plugins/gst-plugins-base-plugins-sections.txt:
21802         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
21803         * gst/audiotestsrc/Makefile.am:
21804         * gst/audiotestsrc/gstaudiotestsrc.c:
21805         (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_base_init),
21806         (gst_audiotestsrc_class_init), (gst_audiotestsrc_init),
21807         (gst_audiotestsrc_src_fixate), (gst_audiotestsrc_setcaps),
21808         (gst_audiotestsrc_get_query_types), (gst_audiotestsrc_src_query),
21809         (gst_audiotestsrc_wait), (gst_audiotestsrc_unlock),
21810         (gst_audiotestsrc_create_sine), (gst_audiotestsrc_create_square),
21811         (gst_audiotestsrc_create_saw), (gst_audiotestsrc_create_triangle),
21812         (gst_audiotestsrc_create_silence),
21813         (gst_audiotestsrc_create_white_noise),
21814         (gst_audiotestsrc_change_wave), (gst_audiotestsrc_create),
21815         (gst_audiotestsrc_set_property), (gst_audiotestsrc_get_property),
21816         (gst_audiotestsrc_start), (plugin_init):
21817         * gst/audiotestsrc/gstaudiotestsrc.h:
21818           add new plugin and element
21819         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init):
21820           use gobject_class
21821
21822 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
21823
21824         * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_class_init),
21825         (gst_adder_init), (gst_adder_request_new_pad),
21826         (gst_adder_change_state):
21827           Add query function to source pad, so adder reports the correct
21828           time/sample position when queried (#315457); fix state change
21829           function; use GST_DEBUG_FUNCPTR() for pad functions.
21830
21831 2005-10-08  Thomas Vander Stichele  <thomas at apestaart dot org>
21832
21833         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find):
21834           Fix leaks in typefind registration
21835           Clean up the gratuitous commenting and whitespacing a little
21836
21837 2005-10-08  Wim Taymans  <wim@fluendo.com>
21838
21839         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_stop):
21840         Only actually wait for the thread to be stopped if it's 
21841         running.
21842
21843 2005-10-08  Wim Taymans  <wim@fluendo.com>
21844
21845         * gst-libs/gst/audio/gstbaseaudiosink.c:
21846         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
21847         If we receive EOS we can start playback of what we had.
21848
21849 2005-10-08  Wim Taymans  <wim@fluendo.com>
21850
21851         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
21852         (gst_multifdsink_finalize), (multifdsink_hash_remove),
21853         (gst_multifdsink_stop):
21854         Fix crasher when going to NULL multiple times.
21855
21856 2005-10-06  Wim Taymans  <wim@fluendo.com>
21857
21858         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event),
21859         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
21860         * gst-libs/gst/audio/gstbaseaudiosrc.h:
21861         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
21862         patch from Edgard Lima <edgard.lima@indt.org.br>
21863         Fixed gstbaseaudiosrc adding ring buffer sync to it.
21864
21865 2005-10-06  Wim Taymans  <wim@fluendo.com>
21866
21867         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
21868         Report the FLOW_RETURN as string in the error message.
21869
21870         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_clear_all):
21871         Don't assert when clearing an unnegotiated buffer.
21872
21873 2005-10-04  Michael Smith <msmith@fluendo.com>
21874
21875         * gst/playback/gstplaybasebin.c: (group_destroy),
21876         (gen_preroll_element), (remove_groups), (setup_source):
21877         * gst/playback/gstplaybin.c: (remove_sinks), (add_sink),
21878         (setup_sinks), (gst_play_bin_send_event),
21879         (gst_play_bin_change_state):
21880           Set state to NULL before removing from bin. Fix refcounting.
21881
21882 2005-10-04  Michael Smith <msmith@fluendo.com>
21883
21884         * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
21885           Correct refcounting in send_event() function. Previously was wrong
21886           if the first sink was unable to handle the event.
21887
21888 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
21889
21890         * configure.ac:
21891           back to development
21892
21893 === release 0.9.3 ===
21894
21895 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
21896
21897         * configure.ac:
21898           Releasing 0.9.3, "De Facto"
21899
21900 2005-10-03  Andy Wingo  <wingo@pobox.com>
21901
21902         * gst/playback/gstdecodebin.c (try_to_link_1)
21903         (remove_element_chain): set element to NULL before removing it.
21904
21905 2005-10-02  Johan Dahlin  <johan@gnome.org>
21906
21907         * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_uri_get_protocols): 
21908         protect gst_gnomevfs_get_supported_uris by a mutex, to make it
21909         MT safe.
21910
21911 2005-10-02  Andy Wingo  <wingo@pobox.com>
21912
21913         * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_clear) 
21914         (gst_ring_buffer_prepare_read): 
21915         * gst-libs/gst/audio/gstaudiosink.c (audioringbuffer_thread_func):
21916         Demote to LOG.
21917
21918 2005-09-29  Wim Taymans  <wim@fluendo.com>
21919
21920         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
21921         * ext/theora/theoradec.c: (theora_handle_data_packet):
21922         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
21923         Propagate error codes from alloc_buffer too.
21924
21925 2005-09-29  Wim Taymans  <wim@fluendo.com>
21926
21927         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
21928         We use fixed caps.
21929
21930         * gst/playback/Makefile.am:
21931         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
21932         (dump_element_stats), (main):
21933         Added example stream introspection code.
21934
21935 2005-09-28  Stefan Kost  <ensonic@users.sf.net>
21936
21937         * gst/adder/gstadder.c: (gst_adder_collected):
21938           fix adder for float elements
21939
21940 2005-09-28  Wim Taymans  <wim@fluendo.com>
21941
21942         * gst-libs/gst/audio/gstbaseaudiosink.c:
21943         (gst_base_audio_sink_class_init),
21944         (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
21945         * gst-libs/gst/audio/gstbaseaudiosrc.c:
21946         (gst_base_audio_src_class_init),
21947         (gst_base_audio_src_provide_clock):
21948         get_clock -> provide_clock
21949
21950 2005-09-28  Andy Wingo  <wingo@pobox.com>
21951
21952         * gst/videotestsrc/gstvideotestsrc.c: Implement live source mode
21953         and unlocking.
21954
21955         * gst/sine/gstsinesrc.c (gst_sinesrc_unlock): Actually implement
21956         unlocking.
21957
21958         * gst/tcp/gsttcpclientsink.c (gst_tcpclientsink_base_init):
21959         Actually add the pad template.
21960         (gst_tcpclientsink_get_type): We're a base sink. Woot, works.
21961
21962         * gst/tcp/gsttcpserversrc.c: Go ahead and fix up serversrc while
21963         I'm at it...
21964
21965         * gst/tcp/gsttcpclientsrc.c: Make interruptable -- code stolen
21966         from fdsrc. Get caps in create() instead of start() so it can be
21967         interrupted. Interruption somewhat untested.
21968
21969         * gst/tcp/gsttcp.c (gst_tcp_read_buffer, gst_tcp_socket_read):
21970         Proper EOS handling.
21971
21972 2005-09-27  Andy Wingo  <wingo@pobox.com>
21973
21974         * gst/tcp/gsttcpclientsrc.c: Cleaned up.
21975
21976         * gst/tcp/gsttcpserversrc.c: Cleaned up.
21977
21978         * gst/tcp/gsttcpclientsrc.c: Updated for new gsttcp API.
21979
21980         * gst/tcp/gsttcp.h: 
21981         * gst/tcp/gsttcp.c (gst_tcp_read_buffer): New function, factored
21982         out of tcpclientsrc.c. Cancellable.
21983         (gst_tcp_socket_read): Made private, cancellable, with better
21984         diagnostics. Also the FIONREAD ioctl takes a int*, not a size_t*.
21985         (gst_tcp_gdp_read_buffer): Made cancellable, actually returns the
21986         whole buffer, and better diagnostics.
21987         (gst_tcp_gdp_read_caps): Same.
21988
21989         * gst/sine/gstsinesrc.c (gst_sinesrc_wait): Add the base time.
21990
21991 2005-09-26  Andy Wingo  <wingo@pobox.com>
21992
21993         * gst/sine/gstsinesrc.h:
21994         * gst/sine/gstsinesrc.c: Refactor, remove the table lookup code,
21995         change the 'sync' property to 'is-live' and implement it halfway,
21996         update for controller api change.
21997
21998         * gst/volume/gstvolume.c (volume_transform_ip): Update for
21999         controller api change.
22000
22001 2005-09-24  Wim Taymans  <wim@fluendo.com>
22002
22003         * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
22004         * gst-libs/gst/audio/gstaudiosink.c:
22005         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
22006         (gst_audioringbuffer_stop):
22007         * gst-libs/gst/audio/gstbaseaudiosink.c:
22008         (gst_base_audio_sink_event), (gst_base_audio_sink_render),
22009         (gst_base_audio_sink_change_state):
22010         * gst-libs/gst/audio/gstbaseaudiosink.h:
22011         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop),
22012         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
22013         (gst_ring_buffer_commit), (gst_ring_buffer_read):
22014         * gst-libs/gst/audio/gstringbuffer.h:
22015         Fix sync again. Moved sample alignment to basesink.
22016
22017 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
22018
22019         * docs/plugins/Makefile.am:
22020         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
22021         * docs/plugins/gst-plugins-base-plugins-sections.txt:
22022         * gst/volume/gstvolume.c:
22023           add/fix docs
22024         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size):
22025         * gst-libs/gst/audio/audio.h:
22026           add conversion macros for frames <-> clocktime
22027
22028 2005-09-23  David Schleef  <ds@schleef.org>
22029
22030         * gst/audioresample/Makefile.am:
22031         * gst/audioresample/debug.h:
22032         * gst/audioresample/gstaudioresample.c:
22033         * gst/audioresample/resample.c: Convert to using gst debugging
22034
22035 2005-09-22  Wim Taymans  <wim@fluendo.com>
22036
22037         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
22038         (gst_play_bin_send_event):
22039         Only seek on one sink, the first one that succeeds.
22040
22041 2005-09-22  Michael Smith <msmith@fluendo.com>
22042
22043         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
22044         (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
22045         Don't flush encoder state unless we have an initialised encoder.
22046         Clear out encoder state on PAUSED_TO_READY.
22047
22048 2005-09-22  Wim Taymans  <wim@fluendo.com>
22049
22050         * gst-libs/gst/rtp/gstbasertppayload.c:
22051         (gst_basertppayload_class_init), (gst_basertppayload_init),
22052         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
22053         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
22054         (gst_basertppayload_is_filled), (gst_basertppayload_push),
22055         (gst_basertppayload_set_property),
22056         (gst_basertppayload_get_property),
22057         (gst_basertppayload_change_state):
22058         * gst-libs/gst/rtp/gstbasertppayload.h:
22059         Added max-ptime to control amount of data in the rtp packets.
22060
22061 2005-09-21  Andy Wingo  <wingo@pobox.com>
22062
22063         * gst/playback/gstplaybasebin.c: Attempt to fix up buffer probe
22064         thingies.
22065
22066         * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Dispose
22067         can be called multiple times, dogs.
22068
22069 2005-09-21  Wim Taymans  <wim@fluendo.com>
22070
22071         * gst-libs/gst/rtp/gstbasertppayload.c:
22072         (gst_basertppayload_class_init), (gst_basertppayload_init),
22073         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
22074         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
22075         (gst_basertppayload_push), (gst_basertppayload_get_property),
22076         (gst_basertppayload_change_state):
22077         Allow 0 ssrc too.
22078
22079 2005-09-21  Stefan Kost  <ensonic@users.sf.net>
22080
22081         * docs/libs/compiling.sgml:
22082           fixing typos
22083
22084 2005-09-20  Wim Taymans  <wim@fluendo.com>
22085
22086         * gst-libs/gst/rtp/gstbasertppayload.c:
22087         (gst_basertppayload_class_init), (gst_basertppayload_init),
22088         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
22089         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
22090         (gst_basertppayload_push), (gst_basertppayload_set_property),
22091         (gst_basertppayload_get_property),
22092         (gst_basertppayload_change_state):
22093         * gst-libs/gst/rtp/gstbasertppayload.h:
22094         Added property to configure sequence number offsets.
22095
22096 2005-09-20  Wim Taymans  <wim@fluendo.com>
22097
22098         * gst-libs/gst/rtp/gstbasertppayload.c:
22099         (gst_basertppayload_class_init), (gst_basertppayload_init),
22100         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
22101         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
22102         (gst_basertppayload_push), (gst_basertppayload_set_property),
22103         (gst_basertppayload_get_property),
22104         (gst_basertppayload_change_state):
22105         * gst-libs/gst/rtp/gstbasertppayload.h:
22106         Make timestamp offset configurable.
22107
22108 2005-09-20  Thomas Vander Stichele  <thomas at apestaart dot org>
22109
22110         * check/pipelines/simple_launch_lines.c: (run_pipeline):
22111           fix wrong pop/unref
22112
22113 2005-09-19  Torsten Schoenfeld  <kaffeetisch at gmx dot net>
22114
22115         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
22116
22117         * gst-libs/gst/interfaces/propertyprobe.c:
22118         (gst_property_probe_probe_property_name),
22119         (gst_property_probe_needs_probe_name),
22120         (gst_property_probe_get_values_name),
22121         (gst_property_probe_probe_and_get_values_name):
22122           Fix wrong macro usage; it's G_OBJECT_GET_CLASS(obj) or
22123           G_OBJECT_CLASS(klass), not G_OBJECT_CLASS(obj). (#316571)
22124
22125 2005-09-19  Thomas Vander Stichele  <thomas at apestaart dot org>
22126
22127         * check/Makefile.am:
22128           have some tests be disabled for valgrinding
22129         * check/elements/vorbisdec.c: (cleanup_vorbisdec),
22130         (GST_START_TEST):
22131         * ext/vorbis/vorbisdec.c: (vorbisdec_finalize):
22132           Fix A Leak.  Chain To Parent Finalize.
22133
22134 2005-09-19  Wim Taymans  <wim@fluendo.com>
22135
22136         * examples/seeking/seek.c: (make_wav_pipeline), (main):
22137         Fixed wav pipeline.
22138
22139 2005-09-19  Wim Taymans  <wim@fluendo.com>
22140
22141         * gst-libs/gst/rtp/gstbasertppayload.c:
22142         (gst_basertppayload_class_init), (gst_basertppayload_init),
22143         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
22144         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
22145         (gst_basertppayload_push), (gst_basertppayload_get_property),
22146         (gst_basertppayload_change_state):
22147         Posting ERROR and WARNING messages is good.
22148
22149 2005-09-19  Wim Taymans  <wim@fluendo.com>
22150
22151         * gst-libs/gst/rtp/gstbasertpdepayload.c:
22152         (gst_base_rtp_depayload_add_to_queue),
22153         (gst_base_rtp_depayload_push),
22154         (gst_base_rtp_depayload_set_gst_timestamp),
22155         (gst_base_rtp_depayload_queue_release):
22156         This one was not supposed to go in.
22157
22158 2005-09-19  Wim Taymans  <wim@fluendo.com>
22159
22160         * check/pipelines/simple_launch_lines.c: (run_pipeline):
22161         Fix for bus API.
22162
22163         * gst-libs/gst/rtp/gstbasertpdepayload.c:
22164         (gst_base_rtp_depayload_chain),
22165         (gst_base_rtp_depayload_add_to_queue),
22166         (gst_base_rtp_depayload_push),
22167         (gst_base_rtp_depayload_set_gst_timestamp),
22168         (gst_base_rtp_depayload_queue_release):
22169         Some cleanups.
22170
22171         * gst-libs/gst/rtp/gstbasertppayload.c:
22172         (gst_basertppayload_class_init), (gst_basertppayload_init),
22173         (gst_basertppayload_setcaps), (gst_basertppayload_set_options),
22174         (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
22175         (gst_basertppayload_get_property),
22176         (gst_basertppayload_change_state):
22177         Added debugging category.
22178
22179 2005-09-18  David Schleef  <ds@schleef.org>
22180
22181         * gst/playback/gstdecodebin.c: free plugin list correctly
22182         * gst/playback/gstplaybin.c: emit warning if autovideosink
22183           and autoaudiosink can't be found (instead of segfaulting)
22184
22185 2005-09-17  Thomas Vander Stichele  <thomas at apestaart dot org>
22186
22187         * check/elements/audioconvert.c: (GST_START_TEST):
22188           try out 24 bit conversion
22189
22190 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
22191
22192         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
22193         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
22194         (gst_vorbisenc_output_buffers), (gst_vorbisenc_change_state):
22195         * ext/vorbis/vorbisenc.h:
22196           Fix EOS handling.  Still needs a fix in the ogg muxer to
22197           mark the last page as eos.
22198
22199 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
22200
22201         * common/gtk-doc-plugins.mak:
22202         * docs/plugins/Makefile.am:
22203         * docs/plugins/gst-plugins-base-plugins-sections.txt:
22204         * gst/ffmpegcolorspace/Makefile.am:
22205         * gst/ffmpegcolorspace/avcodec.h:
22206         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22207         * gst/tcp/gstmultifdsink.c:
22208           fix up ffmpegcolorspace docs; extract header
22209
22210 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
22211
22212         * common/gtk-doc-plugins.mak:
22213         * docs/plugins/Makefile.am:
22214         * docs/plugins/gst-plugins-base-plugins-sections.txt:
22215         * ext/theora/Makefile.am:
22216         * ext/theora/gsttheoraenc.h:
22217         * ext/theora/theoraenc.c:
22218         * ext/vorbis/vorbisenc.c:
22219           pick up signals and args for vorbis; add some docs for vorbis
22220
22221 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
22222
22223         * common/gstdoc-scangobj:
22224         * common/gtk-doc-plugins.mak:
22225         * docs/libs/Makefile.am:
22226         * docs/plugins/gst-plugins-base-plugins.args:
22227         * docs/plugins/gst-plugins-base-plugins.hierarchy:
22228         * docs/plugins/gst-plugins-base-plugins.interfaces:
22229         * docs/plugins/gst-plugins-base-plugins.prerequisites:
22230         * docs/plugins/gst-plugins-base-plugins.signals:
22231           only scanobj stuff from our source module.  Not sure yet
22232           if that's correct, given the hierarchy stuff :)
22233
22234 2005-09-15  Wim Taymans  <wim@fluendo.com>
22235
22236         * gst/audioconvert/gstaudioconvert.c:
22237         And enable 24 bits mode as well..
22238
22239 2005-09-15  Wim Taymans  <wim@fluendo.com>
22240
22241         * gst-libs/gst/rtp/Makefile.am:
22242         * gst-libs/gst/rtp/gstbasertppayload.c:
22243         (gst_basertppayload_get_type), (gst_basertppayload_base_init),
22244         (gst_basertppayload_class_init), (gst_basertppayload_init),
22245         (gst_basertppayload_finalize), (gst_basertppayload_setcaps),
22246         (gst_basertppayload_chain), (gst_basertppayload_set_options),
22247         (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
22248         (gst_basertppayload_set_property),
22249         (gst_basertppayload_get_property),
22250         (gst_basertppayload_change_state):
22251         * gst-libs/gst/rtp/gstbasertppayload.h:
22252         Added rtp payloader base class.
22253
22254 2005-09-15  Andy Wingo  <wingo@pobox.com>
22255
22256         * configure.ac (plugindir): Remove the EOL matcher from the
22257         regexp, as it causes me problems. Libtool? Make? Who knows?
22258
22259 2005-09-14  David Schleef  <ds@schleef.org>
22260
22261         * check/generic/states.c: 
22262         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
22263         * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
22264           Fixes for changes in registry API.
22265
22266         * configure.ac: Only export gst_plugins_desc.  Add -no-undefined
22267           to GST_PLUGIN_LDFLAGS.
22268         * ext/libvisual/visual.c: Make the library shut up.
22269         * gst-libs/gst/audio/audio.c: Don't define a plugin in a library.
22270         * gst-libs/gst/audio/gstaudiofilter.c: same
22271
22272 2005-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
22273
22274         * docs/plugins/Makefile.am:
22275         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
22276         * docs/plugins/inspect/plugin-libvisual.xml:
22277         * docs/plugins/tmpl/element-tcpserversink.sgml:
22278         * ext/theora/theoraenc.c:
22279           add libvisual plugin and theoraenc element to docs
22280
22281 2005-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
22282
22283         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
22284         * docs/plugins/gst-plugins-base-plugins-sections.txt:
22285         * ext/theora/theoraenc.c:
22286           add theoraenc
22287
22288 2005-09-13  Tim-Philipp Müller  <tim at centricular dot net>
22289
22290         * gst/audioconvert/Makefile.am:
22291           Audioconvert derives from GstBaseTransform and should
22292           link to the library with our base elements to avoid
22293           unresolved symbols. Makes things work with MinGW (#316160)
22294
22295         * gst/playback/test4.c: (main):
22296           Fix MinGW build problem and use g_usleep() instead of 
22297           sleep() (#316162)
22298
22299 2005-09-12  Wim Taymans  <wim@fluendo.com>
22300
22301         * gst/audioconvert/audioconvert.c: (float),
22302         (audio_convert_prepare_context), (audio_convert_convert):
22303         * gst/audioconvert/audioconvert.h:
22304         Cleanups, speedups, simplifications, added back support
22305         for 24 bits.
22306
22307 2005-09-11  Thomas Vander Stichele  <thomas at apestaart dot org>
22308
22309         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
22310         * docs/plugins/gst-plugins-base-plugins-sections.txt:
22311         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
22312         * docs/plugins/tmpl/element-tcpserversink.sgml:
22313         * gst/ffmpegcolorspace/gstffmpeg.c:
22314         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22315         * gst/videotestsrc/gstvideotestsrc.c:
22316         * gst/volume/gstvolume.c:
22317           add more elements to the docs
22318
22319 2005-09-09  Jan Schmidt  <thaytan@mad.scientist.com>
22320
22321         * check/Makefile.am:
22322         * check/pipelines/simple_launch_lines.c: (setup_pipeline),
22323         (run_pipeline), (GST_START_TEST), (simple_launch_lines_suite):
22324           Add extra tests for basetransform based components. 
22325           Comment out the test_element_negotiation test until we decide
22326           if it's testing correct behaviour.
22327         * ext/libvisual/visual.c: (gst_visual_init), (get_buffer),
22328         (gst_visual_chain), (gst_visual_change_state):
22329           Slightly more correct but still bogus timestamping.
22330           Fix state change function.
22331         * gst/audioconvert/gstaudioconvert.c:
22332         (gst_audio_convert_class_init):
22333         * gst/audioresample/gstaudioresample.c:
22334         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22335         (gst_ffmpegcsp_class_init):
22336         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
22337         (gst_videoscale_prepare_size), (gst_videoscale_set_caps),
22338         (gst_videoscale_prepare_image):
22339         * gst/volume/gstvolume.c: (gst_volume_class_init),
22340         (volume_transform_ip):
22341           Basetransform updates. Enable passthrough modes.
22342         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
22343         (gst_ximagesink_renegotiate_size), (gst_ximagesink_xcontext_get),
22344         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
22345           Negotiation fix that allows the window to return to the original
22346           size and renegotiate passthrough upstream. Extra debug output.
22347
22348 2005-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
22349
22350         * gst/sine/gstsinesrc.c:
22351         * gst/volume/gstvolume.c:
22352           fix up header include
22353
22354 2005-09-09  Stefan Kost  <ensonic@users.sf.net>
22355
22356         * gst-libs/gst/audio/gstbaseaudiosink.c:
22357         (gst_base_audio_sink_render):
22358         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit):
22359         * gst/volume/gstvolume.c: (gst_volume_class_init),
22360         (volume_transform):
22361           fixing lost sync, some more debugging
22362
22363 2005-09-08  Jan Schmidt  <thaytan@mad.scientist.com>
22364
22365         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
22366         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_xcontext_get):
22367         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
22368         (gst_xvimagesink_check_xshm_calls):
22369           Fix compilation when XShm is not available.
22370
22371 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
22372
22373         * ext/libvisual/visual.c: (gst_visual_dispose),
22374         (gst_visual_getcaps), (gst_visual_src_setcaps),
22375         (gst_visual_sink_setcaps), (get_buffer), (gst_visual_chain),
22376         (gst_visual_change_state):
22377           Finish fixing up libvisual plugin so that it runs. 
22378
22379 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
22380
22381         * ext/vorbis/vorbisenc.c:
22382         * gst-libs/gst/tag/gstvorbistag.c:
22383           gsttaginterface.h -> gsttagsetter.h
22384
22385 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
22386
22387         * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
22388           added another test that failes for me (test is not active by default)
22389
22390 2005-09-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
22391
22392         * configure.ac:
22393           v4l2 is no longer in gst-plugins-base
22394
22395 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
22396
22397         * configure.ac:
22398           In the output at the end, don't show the first plugin on the same
22399           line as "Core plug-ins, always built:".
22400           Indent the output as for other plugin categories
22401         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
22402           #define that can be used to not use peer buffer_alloc functions for
22403           test purposes.
22404         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
22405         (gst_ximage_buffer_get_type), (gst_ximagesink_ximage_new),
22406         (gst_ximagesink_show_frame):
22407         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
22408         (gst_xvimage_buffer_get_type), (gst_xvimagesink_setcaps),
22409         (gst_xvimagesink_show_frame):
22410           Error case handling fixes. gst-launch fakesrc ! x[v]imagesink now
22411           fails gracefully instead of XError aborting or deadlocking.
22412
22413 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
22414
22415         * ext/libvisual/Makefile.am:
22416           link against gst-base-libs
22417
22418 2005-09-06  David Schleef  <ds@schleef.org>
22419
22420         * configure.ac: Enable libvisual plugin.
22421         * ext/libvisual/Makefile.am:
22422         * ext/libvisual/visual.c: Fixes to make it compile.
22423
22424 === release 0.9.2 ===
22425
22426 2005-09-06  Thomas Vander Stichele  <thomas at apestaart dot org>
22427
22428         * NEWS:
22429         * RELEASE:
22430         * configure.ac:
22431         * docs/random/ChangeLog-0.8:
22432           releasing 0.9.2, "Spoon"
22433
22434 2005-09-05  Michael Smith <msmith@fluendo.com>
22435
22436         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
22437           libvorbis accepts quality as low as -0.1, not just 0.0. So accept
22438           that in the vorbisenc element.
22439
22440 2005-09-04  Thomas Vander Stichele  <thomas at apestaart dot org>
22441
22442         * common/gtk-doc-plugins.mak:
22443         * docs/plugins/Makefile.am:
22444           fix distcheck
22445         * gst/audioresample/resample.c:
22446           fix wrong docstring
22447
22448 2005-09-04  Thomas Vander Stichele  <thomas at apestaart dot org>
22449
22450         * common/gst-xmlinspect.py:
22451         * common/gtk-doc-plugins.mak:
22452           only inspect plugins for this given package
22453           require gst-python 0.9
22454
22455 2005-09-03  Thomas Vander Stichele  <thomas at apestaart dot org>
22456
22457         * Makefile.am:
22458         * autogen.sh:
22459         * common/gst-xmlinspect.py:
22460         * configure.ac:
22461         * docs/Makefile.am:
22462         * docs/plugins/inspect/plugin-alsa.xml:
22463         * docs/plugins/inspect/plugin-audioresample.xml:
22464         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
22465         * docs/plugins/inspect/plugin-ogg.xml:
22466         * docs/plugins/tmpl/element-gnomevfssink.sgml:
22467         * docs/plugins/tmpl/element-multifdsink.sgml:
22468         * docs/plugins/tmpl/element-tcpserversink.sgml:
22469         * docs/plugins/tmpl/element-vorbisenc.sgml:
22470         * gst-plugins-base.spec.in:
22471           various doc-related updates
22472
22473 2005-08-31  Wim Taymans  <wim@fluendo.com>
22474
22475         * gst-libs/gst/audio/gstbaseaudiosink.c:
22476         (gst_base_audio_sink_render):
22477         Resync if the buffer timestamps drift more than a 10th 
22478         of a second.
22479
22480 2005-08-31  Tim-Philipp Müller  <tim at centricular dot net>
22481
22482         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_property),
22483         (gst_v4lsrc_get_property):
22484           The 'timestamp-offset' property is registered as an int64, so
22485           let's use g_value_{set|get}_int64() in our setter and getter
22486           functions (makes it work and fixes warnings with gst-inspect).
22487
22488 2005-08-30  Wim Taymans  <wim@fluendo.com>
22489
22490         * check/elements/audioconvert.c: (setup_audioconvert):
22491         * check/elements/audioresample.c: (setup_audioresample):
22492         * check/elements/volume.c: (setup_volume):
22493         Fix checks.
22494
22495 2005-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
22496
22497         * common/gtk-doc-plugins.mak:
22498         * common/plugins.xsl:
22499         * docs/plugins/Makefile.am:
22500           make module a param
22501
22502 2005-08-30  Stefan Kost  <ensonic@users.sf.net>
22503
22504         * examples/seeking/seek.c: (make_mp3_pipeline),
22505         (make_mpeg_pipeline), (seek_cb), (start_seek), (stop_seek),
22506         (play_cb), (pause_cb), (stop_cb):
22507           update the example
22508
22509 2005-08-30  Stefan Kost  <ensonic@users.sf.net>
22510
22511         * gst/volume/gstvolume.c: (gst_volume_class_init),
22512         (volume_transform):
22513           do not update controlled params, if buffer has no timestamp
22514
22515 2005-08-29  Stefan Kost  <ensonic@users.sf.net>
22516
22517         * configure.ac:
22518         * gst/sine/Makefile.am:
22519         * gst/volume/Makefile.am:
22520           controllerized elements also need to link against controller-libs ;)
22521
22522 2005-08-29  Stefan Kost  <ensonic@users.sf.net>
22523
22524         * docs/libs/tmpl/gstcolorbalance.sgml:
22525         * docs/libs/tmpl/gstgconf.sgml:
22526         * docs/libs/tmpl/gstmixer.sgml:
22527         * docs/libs/tmpl/gstringbuffer.sgml:
22528         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
22529         (gst_sinesrc_create):
22530         * gst/volume/gstvolume.c: (gst_volume_class_init),
22531         (volume_transform):
22532           controllerized two audio plugins
22533
22534 2005-08-29  Andy Wingo  <wingo@pobox.com>
22535
22536         * ext/vorbis/vorbisdec.c (vorbis_dec_convert, vorbis_dec_push) 
22537         (vorbis_handle_data_packet): Fix some int overflow errors.
22538
22539         * ext/ogg/gstoggdemux.c (gst_ogg_demux_init): Init total_time to
22540         -1.
22541         (gst_ogg_demux_perform_seek): Clamp segment_stop only if it's
22542         valid.
22543         (gst_ogg_pad_submit_packet): Subtract the chain's begin_time only
22544         if it's valid. Fixed streaming-mode playback.
22545
22546         * check/elements/volume.c (cleanup_volume): Fix for running
22547         CK_FORK=no.
22548
22549         * check/elements/audioconvert.c: Convert from native endian, not
22550         little endian.
22551
22552 2005-08-29  Michael Smith <msmith@fluendo.com>
22553
22554         * ext/ogg/Makefile.am:
22555         * ext/ogg/gstogg.c: (plugin_init):
22556         * ext/ogg/gstoggparse.c: (gst_ogg_parse_get_type), (free_stream),
22557         (gst_ogg_parse_delete_all_streams), (gst_ogg_parse_new_stream),
22558         (gst_ogg_parse_find_stream), (gst_ogg_parse_base_init),
22559         (gst_ogg_parse_class_init), (gst_ogg_parse_init),
22560         (gst_ogg_parse_dispose), (gst_ogg_parse_submit_buffer),
22561         (gst_ogg_parse_append_header), (gst_ogg_parse_is_header),
22562         (gst_ogg_parse_buffer_from_page), (gst_ogg_parse_chain),
22563         (gst_ogg_parse_change_state), (gst_ogg_parse_plugin_init):
22564         Add an ogg parser element.
22565
22566 2005-08-28  Andy Wingo  <wingo@pobox.com>
22567
22568         * Updates for two-arg init from GST_BOILERPLATE_FULL.
22569
22570 2005-08-26  Wim Taymans  <wim@fluendo.com>
22571
22572         * gst/audioconvert/audioconvert.c: (if), (float),
22573         (audio_convert_get_func_index), (check_default),
22574         (audio_convert_clean_fmt), (audio_convert_prepare_context),
22575         (audio_convert_clean_context), (audio_convert_get_sizes),
22576         (audio_convert_convert):
22577         Cleanups.
22578
22579 2005-08-26  Wim Taymans  <wim@fluendo.com>
22580
22581         * gst/audioconvert/audioconvert.c: (if), (float),
22582         (audio_convert_get_func_index), (check_default),
22583         (audio_convert_clean_fmt), (audio_convert_prepare_context),
22584         (audio_convert_clean_context), (audio_convert_get_sizes),
22585         (audio_convert_convert):
22586         More elegant and working temp buffer selection algo.
22587
22588 2005-08-26  Wim Taymans  <wim@fluendo.com>
22589
22590         * gst/audioconvert/audioconvert.c: (if), (float),
22591         (audio_convert_get_func_index), (check_default),
22592         (audio_convert_clean_fmt), (audio_convert_prepare_context),
22593         (audio_convert_clean_context), (audio_convert_get_sizes),
22594         (get_temp_buffer), (audio_convert_convert):
22595         Use realloc else we lose our original data.
22596
22597 2005-08-26  Thomas Vander Stichele  <thomas at apestaart dot org>
22598
22599         * gst/audioresample/gstaudioresample.c:
22600           use base class' newsegment to properly timestamp
22601
22602 2005-08-26  Wim Taymans  <wim@fluendo.com>
22603
22604         * gst/audioconvert/audioconvert.c: (if), (float),
22605         (audio_convert_get_func_index), (check_default),
22606         (audio_convert_clean_fmt), (audio_convert_prepare_context),
22607         (audio_convert_clean_context), (audio_convert_get_sizes),
22608         (get_temp_buffer), (audio_convert_convert):
22609         * gst/audioconvert/gstaudioconvert.c:
22610         (gst_audio_convert_parse_caps), (gst_audio_convert_get_unit_size),
22611         (gst_audio_convert_transform_caps),
22612         (gst_audio_convert_fixate_caps), (gst_audio_convert_transform):
22613         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_mix):
22614         Oops, allocate enough space to perform the channel mix.
22615
22616 2005-08-26  Wim Taymans  <wim@fluendo.com>
22617
22618         * gst/audioconvert/Makefile.am:
22619         * gst/audioconvert/audioconvert.c: (if), (float),
22620         (audio_convert_get_func_index), (check_default),
22621         (audio_convert_clean_fmt), (audio_convert_prepare_context),
22622         (audio_convert_clean_context), (audio_convert_get_sizes),
22623         (get_temp_buffer), (audio_convert_convert):
22624         * gst/audioconvert/audioconvert.h:
22625         * gst/audioconvert/gstaudioconvert.c:
22626         (gst_audio_convert_class_init), (gst_audio_convert_init),
22627         (gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
22628         (gst_audio_convert_get_unit_size),
22629         (gst_audio_convert_transform_caps),
22630         (gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
22631         (gst_audio_convert_transform_ip), (gst_audio_convert_transform):
22632         * gst/audioconvert/gstaudioconvert.h:
22633         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
22634         (gst_channel_mix_fill_identical),
22635         (gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
22636         (gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
22637         (gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
22638         (gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
22639         (gst_channel_mix_mix):
22640         * gst/audioconvert/gstchannelmix.h:
22641         Cleanups, librarify a bit, optimize, better negotiation and more.
22642
22643 2005-08-26  Jan Schmidt  <thaytan@mad.scientist.com>
22644
22645         * ext/ogg/gstoggdemux.c: (ogg_find_peek):
22646         Another from MikeS:
22647         During typefinding, don't support negative offsets
22648         (offsets from the end of the stream) in our typefind->peek() function
22649         - nothing embedded in ogg ever needs them. However, we need to recognise
22650         those requests and reject them, otherwise we return invalid pointers.
22651
22652 2005-08-26  Jan Schmidt  <thaytan@mad.scientist.com>
22653
22654         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
22655         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
22656         (vorbisdec_finalize), (vorbis_handle_type_packet):
22657           Big shout-out to MikeS for fixing this giant memory leak.
22658           Huzzah!
22659
22660 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
22661
22662         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose),
22663         (audio_convert_get_unit_size):
22664           plug some leaks
22665
22666 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
22667
22668         * check/Makefile.am:
22669         * check/elements/audioconvert.c: (setup_audioconvert),
22670         (cleanup_audioconvert), (get_int_caps), (verify_convert),
22671         (GST_START_TEST), (audioconvert_suite), (main):
22672           add a test for audioconvert
22673         * gst/audioresample/gstaudioresample.c:
22674         * gst/audioresample/gstaudioresample.h:
22675           set DURATION so that TIMESTAMP(a) + DURATION(a) == TIMESTAMP(b);
22676           note that for buffers of 1/3 sec this means DURATION(c) is 
22677           one nanosecond more than for a and b
22678
22679 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
22680
22681         * check/Makefile.am:
22682         * check/elements/audioresample.c: (setup_audioresample),
22683         (cleanup_audioresample), (fail_unless_perfect_stream),
22684         (test_perfect_stream_instance), (GST_START_TEST),
22685           add a check for audioresample
22686         (audioresample_suite), (main):
22687         * check/elements/volume.c: (GST_START_TEST):
22688           remove unused method
22689         * gst/audioresample/gstaudioresample.c:
22690           set correct buffer parameters since we're changing them
22691         * gst/audioresample/resample_ref.c: (resample_scale_ref):
22692           add some debug
22693
22694 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
22695
22696         * gst/audioresample/debug.c:
22697         * gst/audioresample/gstaudioresample.c:
22698           add room for extra overlap samples when asked to transform size
22699           protect against possible mem corruption and check for discrepancies
22700           between written size and outbuffer's size so we can warn for
22701           potential problems
22702         * gst/audioresample/resample.c: (resample_init),
22703         (resample_get_output_size_for_input), (resample_get_output_size),
22704         (resample_set_n_channels), (resample_set_format):
22705           set debug level based on RESAMPLE_DEBUG env var
22706           make sure that get_output_size* returns a whole number of
22707           sample_size
22708           set sample_size each time either channel or format is set
22709         * gst/audioresample/resample_chunk.c: (resample_scale_chunk):
22710         * gst/audioresample/resample_functable.c:
22711         (resample_scale_functable):
22712         * gst/audioresample/resample_ref.c: (resample_scale_ref):
22713           remove r->sample_size, it's done in resample.c now
22714           add some debugging to the ref implementation
22715           make sure we only give back bytes that are wholes of the sample
22716           size
22717
22718 2005-08-25  Jan Schmidt  <thaytan@mad.scientist.com>
22719         * gst/playback/gstplaybasebin.c: (fill_buffer):
22720         Revert unpopular change for GST_MESSAGE_SRC to GObject.
22721
22722 2005-08-25  Stefan Kost  <ensonic@users.sf.net>
22723
22724         * gst/volume/gstvolume.c:
22725           made set_caps function static
22726
22727 2005-08-24  Wim Taymans  <wim@fluendo.com>
22728
22729         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
22730         (gst_vorbisenc_change_state):
22731         Stop leaking taglists.
22732
22733 2005-08-24  Wim Taymans  <wim@fluendo.com>
22734
22735         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
22736         (gst_ogg_pad_event), (gst_ogg_demux_factory_filter),
22737         (gst_ogg_pad_submit_packet), (gst_ogg_chain_new),
22738         (gst_ogg_demux_init), (gst_ogg_demux_perform_seek),
22739         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
22740         (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
22741         Parse seeking events better.
22742         Unref static caps.
22743         Generate correct newsegment events, fixes seeking in live oggs.
22744
22745         * ext/theora/theoradec.c: (theora_dec_src_query),
22746         (theora_dec_src_event), (theora_dec_src_getcaps),
22747         (theora_dec_sink_event), (theora_dec_push), (theora_dec_chain):
22748         Use newsegment values to report correct play time.
22749
22750         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
22751         (vorbis_dec_src_event), (vorbis_dec_sink_event):
22752         * ext/vorbis/vorbisdec.h:
22753         Parse and use newsegment values to report correct play time.
22754
22755         * gst-libs/gst/audio/gstbaseaudiosink.c:
22756         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
22757         Clear ringbuffer on flush.
22758         Use newsegment values to calculate playback time.
22759
22760         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
22761         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
22762         Basesink does newsegment calculations for us now.
22763
22764 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
22765
22766         * check/Makefile.am:
22767         * configure.ac:
22768           add core's plugins to the mix so that playbin works
22769         * check/generic/states.c: (GST_START_TEST):
22770           set a 0 timeout on pipelines, so they don't force the next
22771           state change
22772         * gst/playback/gstplaybasebin.c: (setup_source), (prepare_output),
22773         (gst_play_base_bin_change_state):
22774           remove the crappy error handling and do GST error handling
22775
22776 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
22777
22778         * check/Makefile.am:
22779         * check/generic/states.c: (GST_START_TEST), (states_suite), (main):
22780           add same test as to core, it bitches out on playbin atm.
22781
22782 2005-08-24  Wim Taymans  <wim@fluendo.com>
22783
22784         * configure.ac:
22785         Remove audioscale.
22786
22787 2005-08-24  Wim Taymans  <wim@fluendo.com>
22788
22789         * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
22790         (gst_videoscale_prepare_size), (parse_caps),
22791         (gst_videoscale_set_caps), (gst_videoscale_get_size),
22792         (gst_videoscale_prepare_image), (gst_videoscale_transform_ip),
22793         (gst_videoscale_transform):
22794         * gst/videoscale/gstvideoscale.h:
22795         Refactor, make use of BaseTranform really well.
22796
22797 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
22798
22799         * configure.ac:
22800           compile audioresample
22801         * gst/audioresample/Makefile.am:
22802         * gst/audioresample/buffer.c:
22803         * gst/audioresample/functable.c:
22804         * gst/audioresample/gstaudioresample.c:
22805         * gst/audioresample/gstaudioresample.h:
22806         * gst/audioresample/resample.c:
22807         (resample_get_output_size_for_input):
22808         * gst/audioresample/resample.h:
22809         * gst/audioresample/resample_chunk.c:
22810         * gst/audioresample/resample_functable.c:
22811         * gst/audioresample/resample_ref.c:
22812           port to use basetransform; doesn't work in all cases yet
22813
22814 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
22815
22816         * gst/audioconvert/gstaudioconvert.c:
22817         (gst_audio_convert_class_init), (gst_audio_convert_init),
22818         (audio_convert_get_unit_size), (audio_convert_transform_caps),
22819         (audio_convert_fixate_caps), (audio_convert_set_caps),
22820         (audio_convert_transform),
22821         (gst_audio_convert_buffer_to_default_format),
22822         (gst_audio_convert_buffer_from_default_format),
22823         (gst_audio_convert_channels):
22824         * gst/audioconvert/gstchannelmix.c:
22825         * gst/audioconvert/gstchannelmix.h:
22826           port to basetransform
22827         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22828         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_class_init),
22829         (gst_ffmpegcsp_get_unit_size):
22830         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
22831         (gst_videoscale_transform_caps), (gst_videoscale_get_unit_size):
22832           fix for basetransform changes
22833
22834 2005-08-24  Jan Schmidt  <thaytan@mad.scientist.com>
22835
22836         * check/Makefile.am:
22837           Add CHECK_CFLAGS and LDFLAGS
22838
22839         * gst/playback/gstplaybasebin.c: (fill_buffer):
22840           GST_MESSAGE_SRC became a GObject
22841
22842 2005-08-24  Wim Taymans  <wim@fluendo.com>
22843
22844         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_set_sample),
22845         (gst_ring_buffer_clear_all):
22846         * gst-libs/gst/audio/gstringbuffer.h:
22847         Added function to clear the ringbuffer.
22848
22849 2005-08-24  Andy Wingo  <wingo@pobox.com>
22850
22851         * sys/v4l/gstv4lelement.c (gst_v4lelement_start) 
22852         (gst_v4lelement_stop): Call _start and _stop for xoverlay instead
22853         of _open and _close.
22854
22855         * sys/v4l/gstv4lxoverlay.h:
22856         * sys/v4l/gstv4lxoverlay.c (gst_v4l_xoverlay_set_xwindow_id): Open
22857         an Xv connection here, instead of all the time. Make Xv only be
22858         loaded if you axe for it. Kindof a workaround for buggy behaviour
22859         of Xv when using remote xservers (XvQueryExtension would block).
22860         (gst_v4l_xoverlay_stop, gst_v4l_xoverlay_start): New functions,
22861         replace the _open and _close public API. Only start the xv
22862         connection if necessary.
22863         (gst_v4l_xoverlay_open, gst_v4l_xoverlay_close): Made static.
22864
22865 2005-08-23  David Schleef  <ds@schleef.org>
22866
22867         * gst/audioresample/Makefile.am: Leet audioresampling code
22868         * gst/audioresample/buffer.c:
22869         * gst/audioresample/buffer.h:
22870         * gst/audioresample/debug.c:
22871         * gst/audioresample/debug.h:
22872         * gst/audioresample/functable.c:
22873         * gst/audioresample/functable.h:
22874         * gst/audioresample/gstaudioresample.c:
22875         * gst/audioresample/gstaudioresample.h:
22876         * gst/audioresample/resample.c:
22877         * gst/audioresample/resample.h:
22878         * gst/audioresample/resample_chunk.c:
22879         * gst/audioresample/resample_functable.c:
22880         * gst/audioresample/resample_ref.c:
22881
22882 2005-08-23  Wim Taymans  <wim@fluendo.com>
22883
22884         * examples/seeking/seek.c: (make_vorbis_pipeline),
22885         (make_theora_pipeline), (make_vorbis_theora_pipeline), (do_seek):
22886         Small seek updates.
22887
22888 2005-08-23  Andy Wingo  <wingo@pobox.com>
22889
22890         * gst-libs/gst/audio/gstbaseaudiosrc.c
22891         (gst_base_audio_src_fixate): Only fixate endianness if it is
22892         present in the caps.
22893
22894 2005-08-22  Andy Wingo  <wingo@pobox.com>
22895
22896         * ext/alsa/gstalsasink.c (gst_alsasink_get_property): 
22897         * ext/alsa/gstalsasrc.c (gst_alsasrc_get_property): Add a
22898         device-name property.
22899
22900         * gst-libs/gst/audio/gstaudiosrc.h:
22901         * gst-libs/gst/audio/gstaudiosrc.c: Implement open_device and
22902         close_device in the ring buffer, like gstaudiosink.
22903
22904         * ext/alsa/gstalsamixer.h:
22905         * ext/alsa/gstalsamixer.c: Not a GObject any more. Include a nifty
22906         macro to implement the interface without much code. Cleanups. 
22907
22908         * ext/alsa/gstalsasrc.h:
22909         * ext/alsa/gstalsasrc.c: Be a mixer. Open device and mixer in
22910         READY.
22911
22912         * ext/alsa/Makefile.am: Add new files.
22913         * ext/alsa/gstalsamixerelement.c: 
22914         * ext/alsa/gstalsamixerelement.c: Split element code out from
22915         mixer code so that alsasrc can be a mixer too.
22916
22917 2005-08-21  Thomas Vander Stichele  <thomas at apestaart dot org>
22918
22919         * check/elements/volume.c: (setup_volume), (cleanup_volume),
22920         (GST_START_TEST):
22921         * check/elements/vorbisdec.c: (setup_vorbisdec),
22922         (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite):
22923         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
22924         (vorbis_handle_identification_packet),
22925         (vorbis_handle_comment_packet), (vorbis_handle_type_packet),
22926         (vorbis_handle_header_packet), (vorbis_dec_push),
22927         (vorbis_dec_chain):
22928           use the setup/teardown methods to save code.  save code is good.
22929
22930 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
22931
22932         * check/Makefile.am:
22933           add ext dir for plugins
22934           add vorbisdec test conditionally
22935         * check/elements/volume.c: (setup_volume), (cleanup_volume),
22936         (GST_START_TEST), (volume_suite):
22937           add a test with wrong caps
22938         * check/elements/vorbisdec.c: (chain_func), (setup_vorbisdec),
22939         (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite), (main):
22940           add a vorbisdec test
22941         * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream),
22942         (gst_ogg_demux_chain), (gst_ogg_demux_loop):
22943           clean up debug output
22944         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
22945           yay, fix a segfault/security issue in vorbisdec
22946           gst-launch fakesrc ! vorbisdec wasn't happy
22947         * ext/vorbis/vorbisenc.c: (vorbisenc_get_type),
22948         (gst_vorbisenc_class_init), (gst_vorbisenc_sink_setcaps),
22949         (gst_vorbisenc_convert_src), (gst_vorbisenc_convert_sink),
22950         (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
22951         (gst_vorbisenc_init), (gst_vorbisenc_metadata_set1),
22952         (gst_vorbisenc_set_metadata), (get_constraints_string),
22953         (update_start_message), (gst_vorbisenc_setup),
22954         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
22955         (gst_vorbisenc_push_packet), (gst_vorbisenc_sink_event),
22956         (gst_vorbisenc_chain), (gst_vorbisenc_get_property),
22957         (gst_vorbisenc_set_property), (gst_vorbisenc_change_state):
22958         * ext/vorbis/vorbisenc.h:
22959           march in line
22960         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22961         (gst_ffmpegcsp_transform):
22962           have the kow come home
22963         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
22964           debug my func ptr
22965         * gst/volume/gstvolume.c: (volume_set_caps):
22966           add a debug
22967
22968 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
22969
22970         * Makefile.am:
22971         * check/.cvsignore:
22972         * check/Makefile.am:
22973         * check/elements/.cvsignore:
22974         * check/elements/volume.c: (chain_func), (event_func),
22975         (setup_volume), (cleanup_volume), (GST_START_TEST), (volume_suite),
22976         (main):
22977         * configure.ac:
22978           add unit test structure for gst-plugins-base
22979           add a test for volume
22980         * gst/volume/gstvolume.c: (gst_volume_list_tracks),
22981         (gst_volume_set_volume), (gst_volume_get_volume),
22982         (gst_volume_set_mute), (gst_volume_class_init), (gst_volume_init),
22983         (volume_funcfind), (volume_process_float), (volume_process_int16),
22984         (volume_set_caps), (volume_transform), (volume_update_mute),
22985         (volume_update_volume), (volume_set_property),
22986         (volume_get_property):
22987           document a little; use basetransform vmethod _set_caps
22988
22989 2005-08-19  Andy Wingo  <wingo@pobox.com>
22990
22991         * ext/alsa/gstalsamixertrack.h:
22992         * ext/alsa/gstalsamixertrack.c:
22993         * ext/alsa/gstalsamixeroptions.h:
22994         * ext/alsa/gstalsamixeroptions.c:
22995         * ext/alsa/gstalsamixer.h:
22996         * ext/alsa/gstalsamixer.c: Port to 0.9.
22997
22998         * ext/alsa/Makefile.am: Build mixer, mixeroptions, mixertracks.
22999         Remove gstalsa.c and alsaclock. No more cruft here.
23000         
23001 2005-08-18  Wim Taymans  <wim@fluendo.com>
23002
23003         * gst-libs/gst/rtp/gstbasertpdepayload.c:
23004         (gst_base_rtp_depayload_chain),
23005         (gst_base_rtp_depayload_add_to_queue),
23006         (gst_base_rtp_depayload_push),
23007         (gst_base_rtp_depayload_queue_release):
23008         * gst-libs/gst/rtp/gstbasertpdepayload.h:
23009         Fix for RTPBuffer changes.
23010
23011         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtpbuffer_allocate_data),
23012         (gst_rtpbuffer_new_take_data), (gst_rtpbuffer_new_copy_data),
23013         (gst_rtpbuffer_new_allocate), (gst_rtpbuffer_new_allocate_len),
23014         (gst_rtpbuffer_calc_header_len), (gst_rtpbuffer_calc_packet_len),
23015         (gst_rtpbuffer_calc_payload_len), (gst_rtpbuffer_validate_data),
23016         (gst_rtpbuffer_validate), (gst_rtpbuffer_set_packet_len),
23017         (gst_rtpbuffer_get_packet_len), (gst_rtpbuffer_get_version),
23018         (gst_rtpbuffer_set_version), (gst_rtpbuffer_get_padding),
23019         (gst_rtpbuffer_set_padding), (gst_rtpbuffer_pad_to),
23020         (gst_rtpbuffer_get_extension), (gst_rtpbuffer_set_extension),
23021         (gst_rtpbuffer_get_ssrc), (gst_rtpbuffer_set_ssrc),
23022         (gst_rtpbuffer_get_csrc_count), (gst_rtpbuffer_get_csrc),
23023         (gst_rtpbuffer_set_csrc), (gst_rtpbuffer_get_marker),
23024         (gst_rtpbuffer_set_marker), (gst_rtpbuffer_get_payload_type),
23025         (gst_rtpbuffer_set_payload_type), (gst_rtpbuffer_get_seq),
23026         (gst_rtpbuffer_set_seq), (gst_rtpbuffer_get_timestamp),
23027         (gst_rtpbuffer_set_timestamp), (gst_rtpbuffer_get_payload_len),
23028         (gst_rtpbuffer_get_payload):
23029         * gst-libs/gst/rtp/gstrtpbuffer.h:
23030         Don't subclass GstBuffer but add methods and helper functions
23031         to construct and manipulate RTP packets in regular GstBuffers.
23032
23033 2005-08-18  Stefan Kost  <ensonic@users.sf.net>
23034
23035         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
23036           moved statement below switch
23037         * gst/volume/gstvolume.c: (gst_volume_class_init):
23038           added debug ptr
23039
23040 2005-08-16  Wim Taymans  <wim@fluendo.com>
23041
23042         * gst-libs/gst/audio/gstbaseaudiosrc.c:
23043         (gst_base_audio_src_change_state):
23044         Open and close device in READY<->NULL state change.
23045
23046 2005-08-16  Andy Wingo  <wingo@pobox.com>
23047
23048         * examples/seeking/Makefile.am: Don't compile non-compiling
23049         compiled objects with the compiler.
23050
23051         * examples/seeking/seek.c (make_dv_pipeline): Update for new DV
23052         elements.
23053
23054 2005-08-12  Philippe Khalaf <burger@speedy.org>
23055         * gst-libs/gst/rtp/gstbasertpdepayload.c:
23056         * gst-libs/gst/rtp/gstbasertpdepayload.h:
23057           Made a thread to release the queue.
23058           Removed timestamp conversion for now.
23059
23060 2005-08-10  Philippe Khalaf <burger@speedy.org>
23061         * gst-libs/gst/rtp/gstbasertpdepayload.c:
23062         * gst-libs/gst/rtp/gstbasertpdepayload.h:
23063           Added rtp timestamp -> gst timestamp conversion.
23064           Fixed several problems with queue.
23065
23066 2005-08-09  Tim-Philipp Müller  <tim at centricular dot net>
23067
23068         * gst-libs/gst/audio/gstaudioclock.h:
23069         * gst-libs/gst/audio/gstaudiofilter.h:
23070         * gst-libs/gst/audio/gstaudiosink.h:
23071         * gst-libs/gst/audio/gstaudiosrc.h:
23072         * gst-libs/gst/audio/gstbaseaudiosink.h:
23073         * gst-libs/gst/audio/gstbaseaudiosrc.h:
23074         * gst-libs/gst/audio/gstringbuffer.h:
23075         * gst-libs/gst/net/gstnetbuffer.h:
23076         * gst-libs/gst/rtp/gstbasertpdepayload.h:
23077         * gst-libs/gst/rtp/gstrtpbuffer.h:
23078           Add padding (you will need to rebuild gst-plugins-base,
23079           gst-plugins and all applications afterwards!)
23080
23081 2005-08-09  Tim-Philipp Müller  <tim at centricular dot net>
23082
23083         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
23084         (gst_riff_parse_chunk):
23085           Fix bug in debug message and add some more debug messages.
23086
23087 2005-08-08  Edward Hervey  <edward@fluendo.com>
23088
23089         * gst-libs/gst/riff/riff-media.c:
23090         backported updates since branch
23091
23092 2005-08-08  Andy Wingo  <wingo@pobox.com>
23093
23094         * gst-libs/gst/audio/gstbaseaudiosink.c
23095         (gst_base_audio_sink_change_state): Open the device in NULL->READY
23096         like good elements should. Close on READY->NULL too.
23097
23098         * gst-libs/gst/audio/gstaudiosink.c
23099         (gst_audioringbuffer_open_device,
23100         (gst_audioringbuffer_close_device, gst_audioringbuffer_acquire)
23101         (gst_audioringbuffer_release): Updates for new ring buffer API,
23102         hook into the new audio sink api.
23103
23104         * gst-libs/gst/audio/gstaudiosink.h (GstAudioSinkClass.open)
23105         (GstAudioSinkClass.close): Just open and close the device -- no
23106         resource allocation or configuration.
23107         (GstAudioSinkClass.prepare, GstAudioSinkClass.unprepare): New
23108         vmethods, handle device setup and resource allocation.
23109
23110         * ext/alsa/gstalsasink.c (gst_alsasink_open, gst_alsasink_close)
23111         (gst_alsasink_prepare, gst_alsasink_unprepare): Update for new
23112         base class API.
23113
23114         * gst-libs/gst/audio/gstringbuffer.h
23115         (GstRingBufferClass.open_device, GstRingBufferClass.close_device):
23116         New vmethods.
23117
23118         * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_open_device)
23119         (gst_ring_buffer_close_device, gst_ring_buffer_device_is_open):
23120         New API functions. The device should be opened before acquiring
23121         and closed after releasing.
23122
23123 2005-08-08  Tim-Philipp Müller  <tim at centricular dot net>
23124
23125         * gst-libs/gst/interfaces/mixer.h:
23126           Reset padding to GST_PADDING.
23127
23128 2005-08-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23129
23130         * gst/playback/gstplaybin.c: (remove_sinks):
23131           Remove visualization from parent explicitely; works around some
23132           apparent refcount issue that I haven't tracked down yet.
23133
23134 2005-08-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23135
23136         * ext/alsa/gstalsasink.c: (set_hwparams):
23137           Assign debug category, add negotiation debug msgs.
23138
23139 2005-08-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23140
23141         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_start):
23142           Fix error code for file-not-found to NOT_FOUND.
23143
23144 2005-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
23145
23146         * common/gtk-doc-plugins.mak:
23147         * docs/plugins/Makefile.am:
23148         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
23149         * docs/plugins/gst-plugins-base-plugins-sections.txt:
23150           renamed to actual element names, so much nicer to look at
23151         * docs/plugins/tmpl/gstmultifdsink.sgml:
23152           remove
23153         * docs/plugins/tmpl/multifdsink.sgml:
23154         * docs/plugins/tmpl/tcpserversink.sgml:
23155           add
23156         * ext/alsa/gstalsa.c:
23157         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get_property):
23158         * ext/ogg/gstoggmux.c:
23159         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
23160         * gst/playback/gstdecodebin.c:
23161         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
23162         * gst/tcp/gsttcpserversink.c:
23163           various fixes and documentation additions
23164
23165 2005-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
23166
23167         * common/Makefile.am:
23168         * common/gstdoc-scangobj:
23169         * common/gtk-doc-plugins.mak:
23170         * common/gtk-doc.mak:
23171           add a custom scangobj that uses the registry
23172           add a custom gtk-doc-plugins.mak that uses it
23173           some doc build fixes
23174         * configure.ac:
23175         * docs/Makefile.am:
23176         * docs/plugins/Makefile.am:
23177         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
23178         * docs/plugins/gst-plugins-base-plugins-sections.txt:
23179         * docs/plugins/gst-plugins-base-plugins.types:
23180         * docs/plugins/tmpl/gstmultifdsink.sgml:
23181           add docs for one element, multifdsink
23182         * gst/adder/gstadder.h:
23183         * gst/volume/gstvolume.h:
23184           don't privatize enum
23185         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
23186         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
23187         (gst_sync_method_get_type), (gst_client_status_get_type),
23188         (gst_multifdsink_class_init),
23189         (gst_multifdsink_client_queue_buffer),
23190         (gst_multifdsink_handle_client_write):
23191         * gst/tcp/gstmultifdsink.h:
23192         * gst/tcp/gsttcp.h:
23193         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
23194         (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
23195         (gst_tcpclientsink_render):
23196         * gst/tcp/gsttcpclientsink.h:
23197         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
23198         (gst_tcpclientsrc_init), (gst_tcpclientsrc_create),
23199         (gst_tcpclientsrc_start):
23200         * gst/tcp/gsttcpclientsrc.h:
23201         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
23202         (gst_tcpserversrc_init), (gst_tcpserversrc_create):
23203         * gst/tcp/gsttcpserversrc.h:
23204         * gst/typefind/gsttypefindfunctions.c:
23205           remove superfluous Type stuff
23206
23207 2005-08-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23208
23209         * gst/playback/gstplaybin.c: (gen_video_element):
23210           Enable videoscale.
23211
23212 2005-08-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23213
23214         * gst-libs/gst/gconf/gconf.c:
23215         * gst-libs/gst/gconf/gconf.h:
23216           Fix some Andy Problem [tm].
23217
23218 2005-08-04  Andy Wingo  <wingo@pobox.com>
23219
23220         * gst/videoscale/gstvideoscale.c (gst_videoscale_get_size):
23221         * gst/ffmpegcolorspace/gstffmpegcolorspace.c
23222         (gst_ffmpegcsp_get_size): Adapt to API changes.
23223
23224         * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_ip):
23225         Implement an in-place do-nothing transform.
23226
23227 2005-08-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23228
23229         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
23230         (gst_ximagesink_renegotiate_size):
23231           Do not set new window sizes yet if we prepare a new buffer size
23232           for upstream renegotiation (software scaling) at some point in the
23233           future, because this new size waqs not actually accepted yet. Once
23234           accepted, renegotiation later on will set the new sizes just fine.
23235           Fixes a videotestsrc ! queue ! videoscale ! ximagesink xoverlay
23236           embedding testcase.
23237
23238 2005-08-03  Andy Wingo  <wingo@pobox.com>
23239
23240         * sys/ximage/ximagesink.c (gst_ximagesink_renegotiate_size):
23241         (gst_ximagesink_buffer_alloc): 
23242         Protect the height, width, and desired_caps with the pool_lock.
23243         Fixes videotestsrc ! queue ! ximagesink.
23244
23245 2005-08-02  Edward Hervey  <edward@fluendo.com>
23246
23247         * gst/volume/gstvolume.c:
23248         include left from controller cleanup
23249
23250 2005-08-02  Jan Schmidt  <thaytan@mad.scientist.com>
23251         * ext/ogg/gstoggmux.c: (gst_ogg_mux_change_state):
23252           Stop collectpads before calling the parent state
23253           change function on PAUSED->READY.
23254
23255 2005-08-01  Jan Schmidt  <thaytan@mad.scientist.com>
23256         * configure.ac:
23257           When testing for X libs, use the X CFlags 
23258         * gst/adder/gstadder.c: (gst_adder_change_state):
23259           Stop the collectpads before calling parent state change function
23260           on PAUSED->READY, otherwise we deadlock deactivating pads.
23261
23262 2005-08-01  Stefan Kost  <ensonic@users.sf.net>
23263
23264         * configure.ac:
23265         * docs/libs/tmpl/gstcolorbalance.sgml:
23266         * docs/libs/tmpl/gstmixer.sgml:
23267         * examples/Makefile.am:
23268         * gst/sine/Makefile.am:
23269         * gst/sine/gstsinesrc.c: (gst_sinesrc_init), (gst_sinesrc_create),
23270         (gst_sinesrc_set_property), (plugin_init):
23271         * gst/sine/gstsinesrc.h:
23272         * gst/volume/Makefile.am:
23273         * gst/volume/gstvolume.c: (gst_volume_set_volume),
23274         (gst_volume_set_mute), (gst_volume_dispose), (gst_volume_init),
23275         (volume_process_float), (volume_process_int16),
23276         (volume_set_property), (plugin_init):
23277         * gst/volume/gstvolume.h:
23278           deactivate and remove dparams (libgstcontrol)
23279
23280 2005-07-29  Wim Taymans  <wim@fluendo.com>
23281
23282         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link_src):
23283         Convert me to BaseTransform!! help..
23284
23285 2005-07-29  Andy Wingo  <wingo@pobox.com>
23286
23287         * ext/alsa/gstalsaplugin.c (plugin_init): We are primary audio
23288         sinks.
23289
23290         * ext/alsa/gstalsasink.c (alsasink_sink_factory): Advertise our
23291         support of both endiannesses.
23292
23293 2005-07-28  Tim-Philipp Müller  <tim at centricular dot net>
23294
23295         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
23296           Fix confusing debug message (s/event/query/)
23297
23298 2005-07-28  Tim-Philipp Müller  <tim at centricular dot net>
23299
23300         * gst/videotestsrc/videotestsrc.h:
23301           Use "_stdint.h" instead of <stdint.h>
23302
23303 2005-07-27  Wim Taymans  <wim@fluendo.com>
23304
23305         * ext/vorbis/Makefile.am:
23306         Revert wrong commit.
23307
23308 2005-07-27  Wim Taymans  <wim@fluendo.com>
23309
23310         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event):
23311         More compilation fixen.
23312
23313 2005-07-27  Wim Taymans  <wim@fluendo.com>
23314
23315         * gst-libs/gst/audio/gstbaseaudiosink.c:
23316         (gst_base_audio_sink_event), (gst_base_audio_sink_render),
23317         (gst_base_audio_sink_create_ringbuffer),
23318         (gst_base_audio_sink_change_state):
23319         Fix compilation.
23320
23321 2005-07-27  Wim Taymans  <wim@fluendo.com>
23322
23323         * examples/seeking/seek.c: (setup_dynamic_link),
23324         (make_dv_pipeline), (make_vorbis_theora_pipeline), (query_rates),
23325         (query_positions_elems), (query_positions_pads), (do_seek):
23326         Update seek example.
23327
23328         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
23329         (gst_ogg_pad_typefind), (gst_ogg_demux_chain_elem_pad),
23330         (gst_ogg_demux_queue_data), (gst_ogg_demux_chain_peer),
23331         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
23332         (gst_ogg_demux_handle_event),
23333         (gst_ogg_demux_deactivate_current_chain),
23334         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
23335         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
23336         (gst_ogg_demux_chain), (gst_ogg_demux_send_event),
23337         (gst_ogg_demux_loop):
23338         * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
23339         * ext/theora/theoradec.c: (theora_dec_src_event),
23340         (theora_dec_src_getcaps), (theora_dec_sink_event),
23341         (theora_dec_push), (theora_dec_chain):
23342         * ext/vorbis/Makefile.am:
23343         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_event),
23344         (vorbis_dec_sink_event), (vorbis_dec_push),
23345         (vorbis_handle_data_packet):
23346         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_event),
23347         (gst_vorbisenc_chain):
23348         * gst/playback/gststreaminfo.c: (cb_probe):
23349         * gst/subparse/gstsubparse.c: (gst_subparse_src_event):
23350         * gst/videorate/gstvideorate.c: (gst_videorate_event):
23351         * gst/videoscale/gstvideoscale.c:
23352         (gst_videoscale_handle_src_event):
23353         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_event):
23354         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame),
23355         (gst_ximagesink_navigation_send_event):
23356         * sys/xvimage/xvimagesink.c:
23357         (gst_xvimagesink_navigation_send_event):
23358         Various event updates and cleanups
23359
23360 2005-07-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23361
23362         * gst/videoscale/gstvideoscale.c: (gst_videoscale_prepare_images):
23363           Fix segfault for I420/YV12.
23364
23365 2005-07-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23366
23367         * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
23368           Report bitrate.
23369
23370 2005-07-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23371
23372         * gst/playback/gstplaybin.c: (gen_video_element),
23373         (gen_audio_element):
23374           Switch to auto*sink elements as default sinks; add volume element
23375           so that volume control in totem works.
23376
23377 2005-07-21  Wim Taymans  <wim@fluendo.com>
23378
23379         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
23380         * gst/playback/gstplaybin.c: (setup_sinks),
23381         (gst_play_bin_change_state):
23382         Refcount fix and more comments.
23383
23384 2005-07-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
23385
23386         * sys/ximage/Makefile.am:
23387         * sys/ximage/ximage.c: (plugin_init):
23388         * sys/ximage/ximagesink.c:
23389         Prepare for adding ximagesrc, rename of plugin to ximage etc.
23390         
23391
23392 2005-07-21  Wim Taymans  <wim@fluendo.com>
23393
23394         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
23395         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
23396         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
23397         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
23398         (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
23399         (gst_ogg_demux_init), (gst_ogg_demux_activate_chain),
23400         (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_chain_info),
23401         (gst_ogg_demux_collect_info), (gst_ogg_demux_chain),
23402         (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
23403         Generate correct disconts for live chained oggs.
23404
23405         * gst-libs/gst/audio/gstbaseaudiosink.c:
23406         (gst_base_audio_sink_render),
23407         (gst_base_audio_sink_create_ringbuffer),
23408         (gst_base_audio_sink_change_state):
23409         Handle discont math correctly.
23410
23411         * gst/playback/gstplaybin.c: (add_sink):
23412         Some small debug cleanup.
23413
23414 2005-07-21  Wim Taymans  <wim@fluendo.com>
23415
23416         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init), (gst_ogg_pad_event),
23417         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
23418         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
23419         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
23420         (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
23421         (gst_ogg_demux_init), (gst_ogg_demux_deactivate_current_chain),
23422         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
23423         (gst_ogg_demux_read_chain), (gst_ogg_demux_find_pad),
23424         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
23425         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
23426         (gst_ogg_demux_send_event), (gst_ogg_demux_loop),
23427         (gst_ogg_demux_change_state), (gst_ogg_print):
23428         Reorganize code to send the right disconts when in streaming
23429         mode.
23430
23431 2005-07-20  Andy Wingo  <wingo@pobox.com>
23432
23433         * gst/videoscale/vs_image.c (vs_image_scale_nearest_YUYV): Typo
23434         fix (?), fixes a seggie mcfalterson (#310894).
23435
23436 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23437
23438         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_headers),
23439         (gst_ogg_mux_set_header_on_caps):
23440         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
23441         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
23442         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
23443         * gst-libs/gst/audio/multichannel.c:
23444         (gst_audio_set_channel_positions),
23445         (gst_audio_set_structure_channel_positions_list):
23446         * gst/playback/gstdecodebin.c: (dynamic_create):
23447         * gst/playback/gstplaybasebin.c: (setup_source), (mute_group_type):
23448         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
23449           Fixes for API changes in core.
23450
23451 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23452
23453         * gst/playback/gstplaybasebin.c: (fill_buffer):
23454           Use _new_custom() so we can set custom message types for buffering
23455           messages.
23456
23457 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23458
23459         * configure.ac:
23460         * gst-libs/gst/Makefile.am:
23461         * gst-libs/gst/gconf/.cvsignore:
23462         * gst-libs/gst/gconf/Makefile.am:
23463         * gst-libs/gst/gconf/test-gconf.c:
23464         * pkgconfig/Makefile.am:
23465         * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
23466         * pkgconfig/gstreamer-gconf.pc.in:
23467           Remove gconf stuff, use gconf elements instead from now on.
23468
23469 2005-07-20  Wim Taymans  <wim@fluendo.com>
23470
23471         * gst-libs/gst/audio/TODO:
23472         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
23473         (gst_audio_clock_get_internal_time):
23474         * gst-libs/gst/audio/gstaudioclock.h:
23475         * gst-libs/gst/audio/gstbaseaudiosink.c:
23476         (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
23477         (gst_base_audio_sink_get_time), (gst_base_audio_sink_event),
23478         (gst_base_audio_sink_render),
23479         (gst_base_audio_sink_create_ringbuffer),
23480         (gst_base_audio_sink_change_state):
23481         Make sure the audio clock always returns an increasing value.
23482
23483 2005-07-19  Andy Wingo  <wingo@pobox.com>
23484
23485         * gst/videotestsrc/: Cleanups.
23486
23487 2005-07-19  Wim Taymans  <wim@fluendo.com>
23488
23489         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
23490         Better debugging.
23491
23492 2005-07-19  Wim Taymans  <wim@fluendo.com>
23493
23494         * examples/seeking/seek.c: (make_dv_pipeline),
23495         (make_vorbis_theora_pipeline), (query_rates),
23496         (query_positions_elems), (query_positions_pads), (do_seek):
23497         Make correct DV pipeline.
23498
23499 2005-07-18  Andy Wingo  <wingo@pobox.com>
23500
23501         * configure.ac (DEFAULT_AUDIOSINK, DEFAULT_AUDIOSRC): Use alsa by
23502         default. Also because it's the only thing that really works. (This
23503         is used in the GConf elements).
23504         Use AS_LIBTOOL_TAGS.
23505
23506 2005-07-18  Wim Taymans  <wim@fluendo.com>
23507
23508         * gst/playback/gstdecodebin.c: (remove_element_chain):
23509         * gst/playback/gstplaybin.c: (add_sink):
23510         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
23511         (gst_stream_info_set_mute):
23512         * gst/playback/gststreamselector.c:
23513         (gst_stream_selector_get_linked_pad),
23514         (gst_stream_selector_getcaps), (gst_stream_selector_chain):
23515         More leak and compile fixes.
23516
23517 2005-07-18  Wim Taymans  <wim@fluendo.com>
23518
23519         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
23520         (query_rates), (query_positions_elems), (query_positions_pads),
23521         (do_seek), (seek_cb), (stop_seek):
23522         Updated seek example. 
23523
23524         * gst/playback/gstdecodebin.c: (remove_element_chain), (unlinked):
23525         * gst/playback/gstplaybasebin.c: (queue_threshold_reached),
23526         (queue_out_of_data), (gen_preroll_element), (new_decoded_pad):
23527         * gst/playback/gstplaybin.c: (add_sink):
23528         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
23529         (gst_stream_info_set_mute):
23530         Some refcount leak fixes.
23531
23532 2005-07-16  Wim Taymans  <wim@fluendo.com>
23533
23534         * gst-libs/gst/audio/gstbaseaudiosink.c:
23535         (gst_base_audio_sink_render):
23536         Align samples even if we have roundoff errors in the 
23537         timestamp conversion.
23538
23539 2005-07-16  Wim Taymans  <wim@fluendo.com>
23540
23541         * docs/libs/tmpl/gstringbuffer.sgml:
23542         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
23543         (query_rates), (query_positions_elems), (query_positions_pads),
23544         (update_scale), (do_seek):
23545         Updated seek example.
23546
23547         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
23548         (gst_ogg_pad_submit_page), (gst_ogg_demux_activate_chain),
23549         (gst_ogg_demux_find_chains), (gst_ogg_demux_send_event),
23550         (gst_ogg_demux_loop):
23551         Push out correct discont values.
23552
23553         * ext/theora/theoradec.c: (theora_dec_src_convert),
23554         (theora_dec_sink_convert), (theora_dec_src_getcaps),
23555         (theora_dec_sink_event), (theora_handle_type_packet),
23556         (theora_handle_header_packet), (theora_dec_push),
23557         (theora_handle_data_packet), (theora_dec_chain),
23558         (theora_dec_change_state):
23559         Better timestamping.
23560
23561         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
23562         (vorbis_dec_sink_event), (vorbis_dec_push),
23563         (vorbis_handle_data_packet), (vorbis_dec_chain):
23564         * ext/vorbis/vorbisdec.h:
23565         Better timestamping.
23566
23567         * gst-libs/gst/audio/gstbaseaudiosink.c:
23568         (gst_base_audio_sink_get_time), (gst_base_audio_sink_get_times),
23569         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
23570         Handle syncing on timestamps instead of sample offsets. Make
23571         use of DISCONT values as described in design docs.
23572
23573         * gst-libs/gst/audio/gstbaseaudiosrc.c:
23574         (gst_base_audio_src_get_time):
23575         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_acquire),
23576         (gst_ring_buffer_set_sample), (gst_ring_buffer_commit),
23577         (gst_ring_buffer_read):
23578         * gst-libs/gst/audio/gstringbuffer.h:
23579         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times),
23580         (gst_ximagesink_show_frame):
23581         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
23582         Correcly convert buffer timestamp to stream time.
23583
23584 2005-07-16  Wim Taymans  <wim@fluendo.com>
23585
23586         * gst/audioconvert/gstaudioconvert.c:
23587         (gst_audio_convert_get_buffer):
23588         Timestamp buffers correctly.
23589
23590         * gst/playback/gstplaybin.c: (gen_video_element):
23591         Make internal fakesink silent.
23592
23593 2005-07-15  Wim Taymans  <wim@fluendo.com>
23594
23595         * gst/ffmpegcolorspace/Makefile.am:
23596         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
23597         (gst_ffmpegcsp_caps_remove_format_info),
23598         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
23599         (gst_ffmpegcsp_get_type), (gst_ffmpegcsp_class_init),
23600         (gst_ffmpegcsp_init), (gst_ffmpegcsp_get_size),
23601         (gst_ffmpegcsp_transform_ip), (gst_ffmpegcsp_transform):
23602         Ported ffmpegcolorspace to basetransform.
23603
23604         * gst/videoscale/gstvideoscale.c: (gst_videoscale_transform):
23605         * gst/volume/gstvolume.c: (volume_transform):
23606         Ported to new API.
23607
23608 2005-07-14  Wim Taymans  <wim@fluendo.com>
23609
23610         * gst/videotestsrc/Makefile.am:
23611         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get_type),
23612         (gst_videotestsrc_class_init), (gst_videotestsrc_negotiate),
23613         (gst_videotestsrc_setcaps), (gst_videotestsrc_getcaps),
23614         (gst_videotestsrc_init), (gst_videotestsrc_event),
23615         (gst_videotestsrc_create), (gst_videotestsrc_start),
23616         (gst_videotestsrc_stop), (gst_videotestsrc_get_times),
23617         (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
23618         (gst_videotestsrc_get_property):
23619         * gst/videotestsrc/gstvideotestsrc.h:
23620         Make videotestsrc a pushsrc.
23621
23622 2005-07-14  Wim Taymans  <wim@fluendo.com>
23623
23624         * gst/tcp/gstfdset.c: (gst_fdset_free):
23625         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
23626         (gst_multifdsink_add), (gst_multifdsink_remove),
23627         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
23628         (gst_multifdsink_remove_client_link),
23629         (gst_multifdsink_client_queue_data),
23630         (gst_multifdsink_client_queue_caps),
23631         (gst_multifdsink_client_queue_buffer),
23632         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
23633         (gst_multifdsink_stop):
23634         * gst/tcp/gstmultifdsink.h:
23635         0.8 backporting.
23636
23637         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
23638         Also draw image when not from a pool.
23639
23640 2005-07-14  Wim Taymans  <wim@fluendo.com>
23641
23642         * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
23643         (mute_stream), (silence_stream):
23644         Small debug additions.
23645
23646 2005-07-14  Wim Taymans  <wim@fluendo.com>
23647
23648         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
23649         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
23650         (gst_ogg_demux_activate_chain), (gst_ogg_demux_loop):
23651         Better error recovery, ignore unconnected pads and
23652         non-fatal errors.
23653
23654 2005-07-14  Thomas Vander Stichele  <thomas at apestaart dot org>
23655
23656         * docs/libs/tmpl/gstaudio.sgml:
23657         * docs/libs/tmpl/gstcolorbalance.sgml:
23658         * docs/libs/tmpl/gstgconf.sgml:
23659         * docs/libs/tmpl/gstmixer.sgml:
23660         * docs/libs/tmpl/gstringbuffer.sgml:
23661         * docs/libs/tmpl/gsttuner.sgml:
23662         * gst-libs/gst/audio/gstbaseaudiosrc.c:
23663         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
23664         (gst_tcpclientsrc_class_init):
23665         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
23666         (gst_tcpserversrc_class_init):
23667         * sys/v4l/gstv4lelement.c:
23668           more autistic cleanliness in functions/names/defines
23669
23670 2005-07-13  Thomas Vander Stichele  <thomas at apestaart dot org>
23671
23672         * configure.ac:
23673           make GST_PLUGIN_LDFLAGS only be flags; GST_LIBS should be
23674           added manually to each Makefile.am so we are sure it goes
23675           *last* and doesn't add -L flags before linking in libs of our
23676           own, like, say, internal .la libs, that then accidentally pick
23677           up the installed copy.
23678         * docs/libs/Makefile.am:
23679         * ext/alsa/Makefile.am:
23680         * ext/cdparanoia/Makefile.am:
23681         * ext/gnomevfs/Makefile.am:
23682         * ext/libvisual/Makefile.am:
23683         * ext/ogg/Makefile.am:
23684         * ext/theora/Makefile.am:
23685         * ext/vorbis/Makefile.am:
23686         * gst-libs/gst/video/Makefile.am:
23687         * gst/adder/Makefile.am:
23688         * gst/audioconvert/Makefile.am:
23689         * gst/audiorate/Makefile.am:
23690         * gst/audioscale/Makefile.am:
23691         * gst/ffmpegcolorspace/Makefile.am:
23692         * gst/playback/Makefile.am:
23693         * gst/sine/Makefile.am:
23694         * gst/subparse/Makefile.am:
23695         * gst/tags/Makefile.am:
23696         * gst/tcp/Makefile.am:
23697         * gst/typefind/Makefile.am:
23698         * gst/videorate/Makefile.am:
23699         * gst/videoscale/Makefile.am:
23700         * gst/videotestsrc/Makefile.am:
23701         * gst/volume/Makefile.am:
23702         * sys/v4l/Makefile.am:
23703         * sys/ximage/Makefile.am:
23704         * sys/xvimage/Makefile.am:
23705           adapt properly to this change. This should make sure that
23706           plugins and libs properly link to the as-yet-uninstalled
23707           copies of stuff like libgstinterfaces and libgstvideo
23708
23709 2005-07-13  Andy Wingo  <wingo@pobox.com>
23710
23711         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_stop): Fix a spurious warning.
23712         (gst_v4lsrc_fixate): Fixate on format as well.
23713
23714         * sys/xvimage/xvimagesink.c (gst_xvimage_buffer_destroy) 
23715         (gst_xvimagesink_xvimage_new): Ref the xvimagesink while the
23716         buffer points to it.
23717         (gst_xvimagesink_check_xshm_calls): Don't use our xvimage buffer,
23718         rather just doing X calls ourselves. Also fixes a memleak.
23719
23720 2005-07-12  Andy Wingo  <wingo@pobox.com>
23721
23722         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_get_property) 
23723         (gst_v4lsrc_set_property, gst_v4lsrc_class_init, gst_v4lsrc_init) 
23724         (gst_v4lsrc_create): Re-add the copy-mode property, default to
23725         TRUE to avoid deadlocks if an element holds on to our buffers.
23726
23727 2005-07-11  Thomas Vander Stichele  <thomas at apestaart dot org>
23728
23729         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
23730         (gst_sinesrc_init), (gst_sinesrc_create),
23731         (gst_sinesrc_set_property), (gst_sinesrc_get_property),
23732         (gst_sinesrc_start):
23733         * gst/sine/gstsinesrc.h:
23734           removing num-buffers property before moving it
23735
23736 2005-07-10  Thomas Vander Stichele  <thomas at apestaart dot org>
23737
23738         * configure.ac:
23739           use overridable ERROR_CFLAGS
23740         * docs/libs/gst-plugins-base-libs.types:
23741         * docs/libs/tmpl/gstringbuffer.sgml:
23742         * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
23743         (gst_alsasink_class_init):
23744         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
23745         (gst_alsasrc_class_init):
23746         * gst-libs/gst/audio/audio.h:
23747         * gst-libs/gst/audio/gstaudioclock.h:
23748         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
23749         (gst_audio_filter_base_init), (gst_audio_filter_class_init),
23750         (gst_audio_filter_link), (gst_audio_filter_init),
23751         (gst_audio_filter_chain), (gst_audio_filter_set_property),
23752         (gst_audio_filter_get_property),
23753         (gst_audio_filter_class_add_pad_templates):
23754         * gst-libs/gst/audio/gstaudiofilter.h:
23755         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
23756         (gst_audio_filter_template_get_type),
23757         (gst_audio_filter_template_base_init),
23758         (gst_audio_filter_template_class_init),
23759         (gst_audio_filter_template_init),
23760         (gst_audio_filter_template_set_property),
23761         (gst_audio_filter_template_get_property), (plugin_init),
23762         (gst_audio_filter_template_setup),
23763         (gst_audio_filter_template_filter),
23764         (gst_audio_filter_template_filter_inplace):
23765         * gst-libs/gst/audio/gstaudiosink.c:
23766         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
23767         (audioringbuffer_thread_func), (gst_audioringbuffer_acquire),
23768         (gst_audioringbuffer_release), (gst_audioringbuffer_start),
23769         (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
23770         (gst_audio_sink_base_init), (gst_audio_sink_class_init),
23771         (gst_audio_sink_init), (gst_audio_sink_create_ringbuffer):
23772         * gst-libs/gst/audio/gstaudiosink.h:
23773         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
23774         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
23775         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
23776         (gst_audioringbuffer_start), (gst_audioringbuffer_stop),
23777         (gst_audioringbuffer_delay), (gst_audio_src_base_init),
23778         (gst_audio_src_class_init), (gst_audio_src_init),
23779         (gst_audio_src_create_ringbuffer):
23780         * gst-libs/gst/audio/gstaudiosrc.h:
23781         * gst-libs/gst/audio/gstbaseaudiosink.c:
23782         (gst_base_audio_sink_base_init), (gst_base_audio_sink_class_init),
23783         (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
23784         (gst_base_audio_sink_get_clock), (gst_base_audio_sink_get_time),
23785         (gst_base_audio_sink_set_property),
23786         (gst_base_audio_sink_get_property), (gst_base_audio_sink_setcaps),
23787         (gst_base_audio_sink_get_times), (gst_base_audio_sink_event),
23788         (gst_base_audio_sink_preroll), (gst_base_audio_sink_render),
23789         (gst_base_audio_sink_create_ringbuffer),
23790         (gst_base_audio_sink_callback), (gst_base_audio_sink_change_state):
23791         * gst-libs/gst/audio/gstbaseaudiosink.h:
23792         * gst-libs/gst/audio/gstbaseaudiosrc.c:
23793         (gst_base_audio_src_base_init), (gst_base_audio_src_class_init),
23794         (gst_base_audio_src_init), (gst_base_audio_src_get_clock),
23795         (gst_base_audio_src_get_time), (gst_base_audio_src_set_property),
23796         (gst_base_audio_src_get_property), (gst_base_audio_src_fixate),
23797         (gst_base_audio_src_setcaps), (gst_base_audio_src_get_times),
23798         (gst_base_audio_src_event), (gst_base_audio_src_create),
23799         (gst_base_audio_src_create_ringbuffer),
23800         (gst_base_audio_src_callback), (gst_base_audio_src_change_state):
23801         * gst-libs/gst/audio/gstbaseaudiosrc.h:
23802         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
23803         (gst_ring_buffer_class_init), (gst_ring_buffer_init),
23804         (gst_ring_buffer_dispose), (gst_ring_buffer_finalize),
23805         (gst_ring_buffer_debug_spec_caps),
23806         (gst_ring_buffer_debug_spec_buff), (gst_ring_buffer_parse_caps),
23807         (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
23808         (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
23809         (gst_ring_buffer_start), (gst_ring_buffer_pause),
23810         (gst_ring_buffer_stop), (gst_ring_buffer_delay),
23811         (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
23812         (wait_segment), (gst_ring_buffer_commit), (gst_ring_buffer_read),
23813         (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
23814         (gst_ring_buffer_clear):
23815         * gst-libs/gst/audio/gstringbuffer.h:
23816         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
23817         (gst_video_sink_class_init), (gst_video_sink_get_type):
23818         * gst-libs/gst/video/videosink.h:
23819         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
23820         (gst_multifdsink_class_init),
23821         (gst_multifdsink_handle_client_write),
23822         (gst_multifdsink_change_state):
23823         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
23824         (gst_tcpclientsink_setcaps):
23825         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
23826         (gst_ximagesink_getcaps), (gst_ximagesink_setcaps),
23827         (gst_ximagesink_change_state), (gst_ximagesink_show_frame),
23828         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
23829         (gst_ximagesink_send_pending_navigation),
23830         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size),
23831         (gst_ximagesink_class_init), (gst_ximagesink_get_type):
23832         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
23833         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
23834         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc),
23835         (gst_xvimagesink_send_pending_navigation),
23836         (gst_xvimagesink_navigation_send_event),
23837         (gst_xvimagesink_set_xwindow_id),
23838         (gst_xvimagesink_get_desired_size), (gst_xvimagesink_class_init),
23839         (gst_xvimagesink_get_type):
23840         more macro splitting
23841
23842 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
23843
23844         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
23845           plug a memleak, allows me to import 1479 albums in one go
23846           in jamboree
23847         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
23848         (vorbis_handle_type_packet), (vorbis_dec_chain),
23849         (vorbis_dec_change_state):
23850           fix some format strings
23851
23852 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
23853
23854         * docs/libs/tmpl/gstcolorbalance.sgml:
23855         * docs/libs/tmpl/gstmixer.sgml:
23856         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
23857         (gst_alsasink_set_property), (gst_alsasink_get_property):
23858         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
23859         (gst_alsasrc_set_property), (gst_alsasrc_get_property):
23860           add device property
23861
23862 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
23863
23864         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
23865         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
23866         (audiocast_register_listener), (audiocast_thread_run),
23867         (gst_gnomevfssrc_send_additional_headers_callback),
23868         (gst_gnomevfssrc_received_headers_callback),
23869         (gst_gnomevfssrc_push_callbacks), (gst_gnomevfssrc_pop_callbacks),
23870         (gst_gnomevfssrc_get_icy_metadata), (gst_gnomevfssrc_create),
23871         (gst_gnomevfssrc_get_size):
23872           add/clean up debugging
23873         * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
23874           cleanups
23875
23876 2005-07-07  Andy Wingo  <wingo@pobox.com>
23877
23878         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Also fixate the
23879         framerate. Need to get a handle on when exactly this function is
23880         called, tho.
23881
23882         * sys/v4l/v4lsrc_calls.h:
23883         * sys/v4l/v4lsrc_calls.c: Remove sync-related stuff.
23884         (gst_v4lsrc_get_fps_list): Moved here from gstv4lsrc.c.
23885         (gst_v4lsrc_buffer_new): Totally derive from GstBuffer.
23886
23887         * sys/v4l/v4l_calls.h: Cast to V4lElement.
23888         * sys/v4l/v4l_calls.c: Header loc fixen, don't load mjpeg, all
23889         v4lelements are sources.
23890
23891         * sys/v4l/gstv4lxoverlay.h:
23892         * sys/v4l/gstv4lxoverlay.c:
23893         * sys/v4l/gstv4ltuner.h:
23894         * sys/v4l/gstv4ltuner.c: Header loc fixen.
23895         
23896         * sys/v4l/gstv4lsrc.h:
23897         * sys/v4l/gstv4lsrc.c: Crucial GPL update. Clean up a bit, port to
23898         PushSrc/BaseSrc. Removed most sync-related properties, videorate
23899         or something should handle that. Made a live source.
23900
23901         * sys/v4l/gstv4lelement.h:
23902         * sys/v4l/gstv4lelement.c: Derive from GstPushSrc. No more
23903         signals. Some cleanups.
23904
23905         * sys/v4l/gstv4lcolorbalance.h: Interface header update.
23906
23907         * sys/v4l/gstv4l.c: Don't register v4lelement, or the jpeg/mjpeg
23908         stuff.
23909
23910         * sys/v4l/Makefile.am: Build everything except the jpeg/mjpeg
23911         stuff.
23912
23913         * sys/Makefile.am (SUBDIRS): Hit the V4L crack pipe.
23914
23915 2005-07-07  Wim Taymans  <wim@fluendo.com>
23916
23917         * ext/theora/theoradec.c: (theora_get_query_types),
23918         (theora_dec_src_getcaps), (theora_dec_push):
23919         * ext/vorbis/vorbisdec.c: (vorbis_get_query_types):
23920         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types):
23921         Remove deprecated/unused query types.
23922
23923 2005-07-06  Wim Taymans  <wim@fluendo.com>
23924
23925         * ext/alsa/Makefile.am:
23926         * ext/alsa/gstalsaplugin.c: (plugin_init):
23927         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
23928         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
23929         (gst_alsasrc_dispose), (gst_alsasrc_base_init),
23930         (gst_alsasrc_class_init), (gst_alsasrc_init),
23931         (gst_alsasrc_getcaps), (set_hwparams), (set_swparams),
23932         (alsasrc_parse_spec), (gst_alsasrc_open), (gst_alsasrc_close),
23933         (xrun_recovery), (gst_alsasrc_read), (gst_alsasrc_delay),
23934         (gst_alsasrc_reset):
23935         * ext/alsa/gstalsasrc.h:
23936         * gst-libs/gst/audio/Makefile.am:
23937         * gst-libs/gst/audio/gstaudiosink.c:
23938         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
23939         (gst_audioringbuffer_start):
23940         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
23941         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
23942         (gst_audioringbuffer_init), (gst_audioringbuffer_dispose),
23943         (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
23944         (gst_audioringbuffer_release), (gst_audioringbuffer_start),
23945         (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
23946         (gst_audiosrc_base_init), (gst_audiosrc_class_init),
23947         (gst_audiosrc_init), (gst_audiosrc_create_ringbuffer):
23948         * gst-libs/gst/audio/gstaudiosrc.h:
23949         * gst-libs/gst/audio/gstbaseaudiosink.c:
23950         (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
23951         (gst_baseaudiosink_get_time), (gst_baseaudiosink_setcaps),
23952         (gst_baseaudiosink_preroll), (gst_baseaudiosink_render):
23953         * gst-libs/gst/audio/gstbaseaudiosrc.c:
23954         (gst_baseaudiosrc_base_init), (gst_baseaudiosrc_class_init),
23955         (gst_baseaudiosrc_init), (gst_baseaudiosrc_get_clock),
23956         (gst_baseaudiosrc_get_time), (gst_baseaudiosrc_set_property),
23957         (gst_baseaudiosrc_get_property), (gst_baseaudiosrc_fixate),
23958         (gst_baseaudiosrc_setcaps), (gst_baseaudiosrc_get_times),
23959         (gst_baseaudiosrc_event), (gst_baseaudiosrc_create),
23960         (gst_baseaudiosrc_create_ringbuffer), (gst_baseaudiosrc_callback),
23961         (gst_baseaudiosrc_change_state):
23962         * gst-libs/gst/audio/gstbaseaudiosrc.h:
23963         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
23964         (gst_ringbuffer_debug_spec_caps), (gst_ringbuffer_debug_spec_buff),
23965         (gst_ringbuffer_parse_caps), (gst_ringbuffer_start),
23966         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
23967         (gst_ringbuffer_samples_done), (gst_ringbuffer_set_sample),
23968         (wait_segment), (gst_ringbuffer_commit), (gst_ringbuffer_read),
23969         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance):
23970         * gst-libs/gst/audio/gstringbuffer.h:
23971         Added audiosource base classes.
23972         Ported alsasrc, still very basic.
23973
23974 2005-07-06  Wim Taymans  <wim@fluendo.com>
23975
23976         * ext/theora/theoradec.c: (theora_dec_src_getcaps),
23977         (theora_dec_push), (theora_handle_data_packet):
23978         Prepare for better timestamp fix later.
23979
23980         * gst/audioconvert/gstaudioconvert.c:
23981         List most accurate caps first
23982
23983         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_loop):
23984         Use proper pad task function.
23985
23986         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
23987         (gst_xvimagesink_show_frame):
23988         Fix deadlock when alloc failed.
23989
23990 2005-07-05  Andy Wingo  <wingo@pobox.com>
23991
23992         * ext/gnomevfs/gstgnomevfssrc.c:
23993         * gst/sine/gstsinesrc.c:
23994         * gst/tcp/gsttcpserversrc.c:
23995         * gst/tcp/gsttcpclientsrc.c: s/BASESRC/BASE_SRC/.
23996
23997         * sys/v4l/: Port from 0.8.
23998
23999         * Many files: Null if we got it....
24000
24001 2005-07-05  Andy Wingo  <wingo@pobox.com>
24002
24003         * gst/tcp/gsttcpserversink.c (gst_tcpserversink_handle_server_read): 
24004         * gst/tcp/gstmultifdsink.c (gst_multifdsink_client_queue_data):
24005         Signedness fixes.
24006
24007 2005-07-05  Wim Taymans  <wim@fluendo.com>
24008
24009         * configure.ac:
24010         * gst/tcp/Makefile.am:
24011         * gst/tcp/README:
24012         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
24013         (gst_multifdsink_base_init), (gst_multifdsink_class_init),
24014         (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
24015         (is_sync_frame), (gst_multifdsink_handle_client_write),
24016         (gst_multifdsink_render), (gst_multifdsink_start),
24017         (gst_multifdsink_stop), (gst_multifdsink_change_state):
24018         * gst/tcp/gstmultifdsink.h:
24019         * gst/tcp/gsttcp.c: (gst_tcp_host_to_ip),
24020         (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps),
24021         (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
24022         * gst/tcp/gsttcp.h:
24023         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
24024         (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
24025         (gst_tcpclientsink_render), (gst_tcpclientsink_start),
24026         (gst_tcpclientsink_stop), (gst_tcpclientsink_change_state):
24027         * gst/tcp/gsttcpclientsink.h:
24028         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
24029         (gst_tcpclientsrc_base_init), (gst_tcpclientsrc_class_init),
24030         (gst_tcpclientsrc_init), (gst_tcpclientsrc_getcaps),
24031         (gst_tcpclientsrc_create), (gst_tcpclientsrc_start),
24032         (gst_tcpclientsrc_stop), (gst_tcpclientsrc_unlock):
24033         * gst/tcp/gsttcpclientsrc.h:
24034         * gst/tcp/gsttcpplugin.c: (plugin_init):
24035         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init):
24036         * gst/tcp/gsttcpserversink.h:
24037         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
24038         (gst_tcpserversrc_base_init), (gst_tcpserversrc_class_init),
24039         (gst_tcpserversrc_init), (gst_tcpserversrc_finalize),
24040         (gst_tcpserversrc_create), (gst_tcpserversrc_start),
24041         (gst_tcpserversrc_stop):
24042         * gst/tcp/gsttcpserversrc.h:
24043         * gst/tcp/gsttcpsink.c:
24044         * gst/tcp/gsttcpsink.h:
24045         * gst/tcp/gsttcpsrc.c:
24046         * gst/tcp/gsttcpsrc.h:
24047         Ported tcp plugins to 0.9. 
24048         
24049
24050 2005-07-05  Andy Wingo  <wingo@pobox.com>
24051
24052         * gst/playback/gstplaybasebin.c (fill_buffer):
24053         message_new_application fixen.
24054
24055         * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_caps):
24056         Style fix.
24057
24058 2005-07-04  Wim Taymans  <wim@fluendo.com>
24059
24060         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
24061         Set caps on output buffer.
24062
24063 2005-07-04  Andy Wingo  <wingo@pobox.com>
24064
24065         * ext/gnomevfs/gstgnomevfssrc.c
24066         (gst_gnomevfssrc_received_headers_callback) 
24067         (audiocast_thread_kill, audiocast_thread_run): FORTIFY fixen,
24068         hopefully.
24069
24070         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_fixate):
24071         No refcount leakage.
24072
24073         * configure.ac: Enable -Werror.
24074         
24075         * ext/theora/theoradec.c (theora_dec_src_getcaps):
24076         * gst/audioconvert/bufferframesconvert.c
24077         (buffer_frames_convert_fixate):
24078         * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int)
24079         (gst_audio_convert_fixate):
24080         * gst/sine/gstsinesrc.c (gst_sinesrc_src_fixate)
24081         (gst_sinesrc_create): Fixate func changes.
24082         
24083         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
24084         (gst_ximagesink_buffer_alloc): Unused var.
24085
24086 2005-07-01  Andy Wingo  <wingo@pobox.com>
24087
24088         * ext/theora/theoradec.c (theora_dec_src_getcaps): Implement a
24089         getcaps to do explicit caps. Needs to be done in all decoders,
24090         possibly via a base class.
24091
24092         * configure.ac (GST_PLUGIN_LDFLAGS): Add videoscale.
24093
24094         * ext/ogg/gstoggdemux.c (gst_ogg_pad_typefind): No need to set
24095         caps on the sink pad, just rely on the pad template. Also, setting
24096         ANY caps on a pad is not valid because the caps are not fixed.
24097
24098         * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc): Set the
24099         caps on the buffer, and get the width from the desired_caps if
24100         they're set.
24101         (gst_ximagesink_renegotiate_size): Implement via setting the
24102         desired_caps on the ximagesink.
24103         (gst_ximagesink_setcaps): Only reset the width of the player if it
24104         wasn't already set. Not sure if this is right.
24105         (gst_ximagesink_show_frame): Memcpy only for normal buffers.
24106
24107         * sys/ximage/ximagesink.h (desired_caps): New field, is the caps
24108         that the user wants. NULL unless the window has been resized.
24109
24110         * gst/volume/gstvolume.c (volume_transform): Adapt to
24111         basetransform refcount changes.
24112         
24113 2005-07-01  Andy Wingo  <wingo@pobox.com>
24114
24115         * gst/videoscale/gstvideoscale.c:
24116         * gst/videoscale/gstvideoscale.h: Clean up, port to 0.9. Derives
24117         from BaseTransform, implements a transform_caps. Removed dead code
24118         including some PAR stuff that was never reached -- should probably
24119         be added back somehow.
24120
24121 2005-07-01  Andy Wingo  <wingo@pobox.com>
24122
24123         * gst/videoscale: Merge David's work from 0.8 branch. Changes to
24124         come later.
24125
24126 2005-06-30  Thomas Vander Stichele  <thomas at apestaart dot org>
24127
24128         * configure.ac:
24129         * docs/libs/Makefile.am:
24130         * docs/libs/gst-plugins-libs.types:
24131         * ext/alsa/Makefile.am:
24132         * ext/alsa/gstalsamixer.h:
24133         * ext/alsa/gstalsamixeroptions.h:
24134         * ext/alsa/gstalsamixertrack.h:
24135         * gst-libs/gst/Makefile.am:
24136         * gst-libs/gst/colorbalance/.cvsignore:
24137         * gst-libs/gst/colorbalance/Makefile.am:
24138         * gst-libs/gst/colorbalance/colorbalance-marshal.list:
24139         * gst-libs/gst/colorbalance/colorbalance.c:
24140         * gst-libs/gst/colorbalance/colorbalance.h:
24141         * gst-libs/gst/colorbalance/colorbalance.vcproj:
24142         * gst-libs/gst/colorbalance/colorbalancechannel.c:
24143         * gst-libs/gst/colorbalance/colorbalancechannel.h:
24144         * gst-libs/gst/interfaces/Makefile.am:
24145         * gst-libs/gst/interfaces/colorbalance.c:
24146         (gst_color_balance_class_init):
24147         * gst-libs/gst/interfaces/colorbalance.h:
24148         * gst-libs/gst/interfaces/interfaces-marshal.list:
24149         * gst-libs/gst/interfaces/mixer.c: (gst_mixer_class_init):
24150         * gst-libs/gst/interfaces/mixer.h:
24151         * gst-libs/gst/interfaces/mixeroptions.h:
24152         * gst-libs/gst/interfaces/navigation.c:
24153         * gst-libs/gst/interfaces/tuner.c: (gst_tuner_class_init):
24154         * gst-libs/gst/interfaces/tuner.h:
24155         * gst/volume/Makefile.am:
24156         * gst/volume/gstvolume.c:
24157         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
24158         * sys/ximage/Makefile.am:
24159         * sys/ximage/ximagesink.c:
24160         * sys/xvimage/Makefile.am:
24161         * sys/xvimage/xvimagesink.c:
24162           fold in all interfaces into an interfaces dir, preserving CVS
24163           history
24164
24165 2005-06-30  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24166
24167         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
24168           Fix build after riff changes.
24169
24170 2005-06-30  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24171
24172         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
24173         (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
24174         (gst_riff_create_video_template_caps),
24175         (gst_riff_create_audio_template_caps),
24176         (gst_riff_create_iavs_template_caps):
24177         * gst-libs/gst/riff/riff-media.h:
24178         * gst-libs/gst/riff/riff-read.h:
24179         * gst-libs/gst/riff/riff.c: (gst_riff_init):
24180           Add gst_riff_init() to initialize the debug category, instead
24181           of plugin_init(). Port riff-media.[ch] from -THREADED to HEAD.
24182
24183 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24184
24185         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init):
24186           Oops, I shouldn't apply hacks.
24187
24188 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24189
24190         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init):
24191           Remove pad_loop function which doesn't work.
24192
24193 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24194
24195         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain):
24196           Send EOS when deactivating.
24197         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
24198         (check_queue), (queue_threshold_reached), (queue_out_of_data),
24199         (gen_preroll_element), (probe_triggered), (mute_stream),
24200         (silence_stream), (new_decoded_pad), (setup_substreams),
24201         (set_active_source):
24202         * gst/playback/gstplaybin.c: (gst_play_bin_get_property),
24203         (remove_sinks), (add_sink):
24204         * gst/playback/gststreaminfo.c: (cb_probe), (gst_stream_info_new):
24205           Change for new probe API.
24206
24207 2005-06-29  Wim Taymans  <wim@fluendo.com>
24208
24209         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_init):
24210         * gst-libs/gst/audio/gstbaseaudiosink.c:
24211         (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
24212         (gst_baseaudiosink_change_state):
24213         * gst-libs/gst/audio/gstbaseaudiosink.h:
24214         * gst-libs/gst/audio/gstringbuffer.c:
24215         (gst_ringbuffer_set_callback):
24216         Fix compilation error.
24217         Ringbuffer starts out as not running.
24218         Free our clock in dispose.
24219         When releasing the ringbuffer we need to renegotiate so
24220         clear the pad caps.
24221
24222 2005-06-29  Thomas Vander Stichele  <thomas at apestaart dot org>
24223
24224         * autogen.sh:
24225         * configure.ac:
24226         * docs/Makefile.am:
24227         * docs/libs/Makefile.am:
24228         * docs/libs/gst-plugins-libs-docs.sgml:
24229         * docs/libs/gst-plugins-libs-sections.txt:
24230         * docs/libs/gst-plugins-libs.types:
24231         * docs/libs/tmpl/gstaudio.sgml:
24232         * docs/libs/tmpl/gstcolorbalance.sgml:
24233         * docs/libs/tmpl/gstringbuffer.sgml:
24234         * gst-libs/gst/audio/gstringbuffer.c:
24235         (gst_ringbuffer_set_callback):
24236           reinstate gtk-doc docs for plugin libs
24237
24238 2005-06-28  Wim Taymans  <wim@fluendo.com>
24239
24240         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
24241         (gst_ogg_demux_init):
24242         Removed pad loop function.
24243
24244 2005-06-28  Wim Taymans  <wim@fluendo.com>
24245
24246         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
24247         If we're building a chain we are not in an error case
24248         when we queue a buffer.
24249
24250 2005-06-28  Andy Wingo  <wingo@pobox.com>
24251
24252         * *.c: Don't cast to GstObject before reffing/unreffing.
24253
24254 2005-06-27  Andy Wingo  <wingo@pobox.com>
24255
24256         * gst/videotestsrc/gstvideotestsrc.c
24257         (gst_videotestsrc_activate_push): Activation API changes.
24258
24259         * gst/playback/gstdecodebin.c (gst_decode_bin_change_state) 
24260         (gst_decode_bin_dispose): Free dynamics in READY->NULL, because
24261         they have refs on the decodebin.
24262
24263         * ext/ogg/gstoggdemux.c (gst_ogg_pad_class_init): Ref the right
24264         parent class.
24265         (gst_ogg_pad_typefind): Don't leak a pad ref.
24266         (gst_ogg_chain_new_stream): gst_object_unref, not g_object_unref.
24267         (gst_ogg_demux_sink_activate, gst_ogg_demux_sink_activate_push) 
24268         (gst_ogg_demux_sink_activate_pull): Changes for activation API.
24269
24270 2005-06-27  Edward Hervey  <edward@fluendo.com>
24271
24272         * ext/theora/theoradec.c: (theora_dec_change_state): 
24273         re-arranged call to parent's state change in order to avoid locks (or
24274         worse).
24275
24276 2005-06-26  Edward Hervey  <edward@fluendo.com>
24277
24278         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
24279         2nd argument of 'unknow-type' signal is a GstCaps and not a
24280         GstMiniObject
24281
24282 2005-06-25  Jan Schmidt  <thaytan@mad.scientist.com>
24283         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_acquire):
24284           Set the worker thread's running flag to TRUE before starting the
24285           thread.
24286         * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
24287           Catch a failure to add typefind to the bin.
24288
24289 2005-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
24290
24291         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
24292         (gst_sinesrc_init), (gst_sinesrc_create),
24293         (gst_sinesrc_set_property), (gst_sinesrc_get_property),
24294         (gst_sinesrc_start):
24295         * gst/sine/gstsinesrc.h:
24296           add num-buffers and timestamp-offset properties
24297         * gst/videotestsrc/gstvideotestsrc.c:
24298         (gst_videotestsrc_class_init), (gst_videotestsrc_set_property),
24299         (gst_videotestsrc_get_property):
24300           add timestamp-offset property
24301
24302 2005-06-23  Christian Schaller  <uraeus@gnome.org>
24303
24304         * configure.ac: add videorate
24305         * gst-plugins-base.spec.in: add videorate
24306
24307 2005-06-23  Wim Taymans  <wim@fluendo.com>
24308
24309         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
24310         (gst_videorate_getcaps), (gst_videorate_setcaps),
24311         (gst_videorate_event), (gst_videorate_chain):
24312         Fixed videorate, fixating an already fixated caps is not
24313         an error.
24314
24315 2005-06-23  Wim Taymans  <wim@fluendo.com>
24316
24317         * ext/ogg/README:
24318         * ext/ogg/gstoggmux.c: (gst_ogg_mux_set_header_on_caps):
24319         Buffer on caps is not boxed anymore.
24320
24321 2005-06-22  Wim Taymans  <wim@fluendo.com>
24322
24323         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
24324         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
24325         Set buffers on caps as miniobjects and not as boxed.
24326
24327 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
24328
24329         * configure.ac:
24330           back to HEAD
24331
24332 === release 0.9.1 ===
24333
24334 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
24335
24336         * .cvsignore:
24337         * NEWS:
24338         * README:
24339         * RELEASE:
24340         * configure.ac:
24341         * po/af.po:
24342         * po/az.po:
24343         * po/cs.po:
24344         * po/en_GB.po:
24345         * po/hu.po:
24346         * po/it.po:
24347         * po/nb.po:
24348         * po/nl.po:
24349         * po/or.po:
24350         * po/sq.po:
24351         * po/sr.po:
24352         * po/sv.po:
24353         * po/uk.po:
24354         * po/vi.po:
24355           updates for release
24356
24357 2005-06-09  Andy Wingo  <wingo@pobox.com>
24358
24359         * gst-libs/gst/net/Makefile.am (lib_LTLIBRARIES): Install gstnet.
24360         
24361 2005-06-09  Andy Wingo  <wingo@pobox.com>
24362
24363         * configure.ac:
24364         * gst-libs/gst/Makefile.am:
24365         * gst-libs/gst/net/Makefile.am:
24366         Add gstnet to build.
24367
24368 2005-06-09  Andy Wingo  <wingo@pobox.com>
24369
24370         * gst-libs/gst/gconf/gconf.c:
24371         * gst/playback/test.c:
24372         * gst/playback/gstplaybin.c (gen_video_element): Ghost pad API
24373         fixes.
24374
24375         * gst/audioconvert/gstaudioconvert.c: RPAD fixes.
24376
24377         * ext/theora/theoraenc.c (theora_enc_chain): 
24378         * ext/theora/theoradec.c (theora_handle_data_packet): GCC4 fixes.
24379
24380         * ext/ogg/gstoggdemux.c (GstOggPad): Derive from GstPad, not
24381         RealPad.
24382
24383 2005-06-02  Wim Taymans  <wim@fluendo.com>
24384
24385         * gst-libs/gst/net/Makefile.am:
24386         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
24387         * pkgconfig/gstreamer-libs.pc.in:
24388         Added net stuff, version net lib.
24389
24390 2005-06-02  Wim Taymans  <wim@fluendo.com>
24391
24392         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
24393         (query_rates), (query_positions_elems), (query_positions_pads),
24394         (do_seek):
24395         Updated seek example.
24396
24397 2005-06-02  Andy Wingo  <wingo@pobox.com>
24398
24399         * pkgconfig/gstreamer-libs-uninstalled.pc.in (prefix):
24400         * pkgconfig/gstreamer-libs.pc.in (prefix): Add gst/tag to the -L
24401         list.
24402
24403         * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Don't
24404         remove the typefind, the bin dispose will do it for us. When it's
24405         removed and unreffed, the signal handler will be disconnected,
24406         too.
24407         (unlinked): It's too difficult to disconnect from unlinked
24408         handlers, as they are on pads not elements. Just punt if the pads
24409         aren't grandkids of the bin.
24410
24411 2005-06-02  Wim Taymans  <wim@fluendo.com>
24412
24413         * ext/ogg/README:
24414         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
24415         (gst_ogg_demux_activate_chain), (gst_ogg_demux_clear_chains):
24416         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
24417         * ext/theora/theoradec.c: (theora_dec_src_query),
24418         (theora_handle_data_packet):
24419         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
24420         (theora_enc_chain):
24421         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
24422         (vorbis_handle_data_packet):
24423         * gst/audioconvert/bufferframesconvert.c:
24424         (buffer_frames_convert_chain):
24425         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
24426         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
24427         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
24428         (gst_ffmpegcsp_chain):
24429         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
24430         (gst_videorate_getcaps), (gst_videorate_setcaps),
24431         (gst_videorate_event), (gst_videorate_chain):
24432         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_activate),
24433         (gst_videotestsrc_src_query), (gst_videotestsrc_loop):
24434         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
24435         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
24436         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
24437         (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
24438         (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
24439         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
24440         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
24441         Cleanups and buffer alloc.
24442
24443 2005-05-31  Wim Taymans  <wim@fluendo.com>
24444
24445         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_delay):
24446         Don't try to call the delay method when the device is not
24447         opened.
24448
24449 2005-05-31  Wim Taymans  <wim@fluendo.com>
24450
24451         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_open):
24452         Get actual segment size and buffer size after opening
24453         the device.
24454
24455 2005-05-30  Wim Taymans  <wim@fluendo.com>
24456
24457         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
24458         (gst_ogg_demux_perform_seek), (gst_ogg_demux_clear_chains):
24459         Also FLUSH upstream, makes the loop function exit faster.
24460         
24461         * ext/theora/theoradec.c: (theora_dec_src_query):
24462         Some more debug info in the query.
24463         
24464         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
24465         (gst_ximagesink_setcaps):
24466         Release lock on par error, better error reporting.
24467
24468 2005-05-26  Wim Taymans  <wim@fluendo.com>
24469
24470         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
24471         (gst_ogg_demux_activate_chain), (gst_ogg_demux_chain),
24472         (gst_ogg_demux_clear_chains), (gst_ogg_demux_change_state):
24473         Clear chains in READY
24474         Queue packets until the chain is activated.
24475
24476 2005-05-25  Wim Taymans  <wim@fluendo.com>
24477
24478         * gst-libs/gst/audio/gstaudiosink.c:
24479         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
24480         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
24481         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
24482         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
24483         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
24484         (gst_audiosink_create_ringbuffer):
24485         * gst-libs/gst/audio/gstbaseaudiosink.c:
24486         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
24487         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
24488         (gst_baseaudiosink_set_property), (build_linear_format),
24489         (debug_spec_caps), (debug_spec_buffer),
24490         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
24491         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
24492         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
24493         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
24494         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
24495         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
24496         (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
24497         (gst_ringbuffer_play), (gst_ringbuffer_pause),
24498         (gst_ringbuffer_stop), (gst_ringbuffer_delay),
24499         (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
24500         (wait_segment), (gst_ringbuffer_commit),
24501         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
24502         (gst_ringbuffer_clear):
24503         Various small cleanups.
24504
24505         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
24506         (gst_audio_convert_change_state):
24507         * gst/subparse/gstsubparse.c: (gst_subparse_chain):
24508         No need to take the locks anymore.
24509
24510 2005-05-25  Wim Taymans  <wim@fluendo.com>
24511
24512         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
24513         (gst_decode_bin_dispose), (try_to_link_1), (get_our_ghost_pad),
24514         (remove_element_chain), (no_more_pads), (unlinked), (close_link),
24515         (type_found):
24516         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_dispose),
24517         (group_destroy), (group_commit), (queue_overrun),
24518         (gen_preroll_element), (no_more_pads), (preroll_unlinked),
24519         (mute_stream), (new_decoded_pad), (setup_substreams),
24520         (setup_source), (mute_group_type), (set_active_source),
24521         (gst_play_base_bin_change_state):
24522         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
24523         (gen_video_element), (gen_text_element), (gen_audio_element),
24524         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks):
24525         * gst/playback/gststreaminfo.c: (gst_stream_info_new),
24526         (gst_stream_info_dispose), (gst_stream_info_set_mute):
24527         * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
24528         Some playbin cleanups mostly refcounting sloppyness.
24529
24530 2005-05-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24531
24532         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
24533           Work with streaming input.
24534
24535 2005-05-25  Wim Taymans  <wim@fluendo.com>
24536
24537         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
24538         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
24539         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
24540         (gst_ffmpegcsp_chain), (gst_ffmpegcsp_change_state):
24541         No need to take the STREAM lock anymore.
24542
24543 2005-05-25  Wim Taymans  <wim@fluendo.com>
24544
24545         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
24546         (gst_ogg_pad_typefind), (gst_ogg_pad_submit_packet),
24547         (gst_ogg_chain_new_stream), (gst_ogg_demux_perform_seek),
24548         (gst_ogg_demux_chain), (gst_ogg_demux_loop),
24549         (gst_ogg_demux_sink_activate):
24550         * ext/theora/theoradec.c: (theora_dec_src_event),
24551         (theora_handle_comment_packet), (theora_dec_chain),
24552         (theora_dec_change_state):
24553         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
24554         (vorbis_handle_data_packet), (vorbis_dec_chain),
24555         (vorbis_dec_change_state):
24556         Remove STREAM locks as they are taken in core now.
24557         Never set bogus granulepos on vorbis/theora.
24558         Fix leaks in theoradec tag parsing.
24559
24560 2005-05-25  Wim Taymans  <wim@fluendo.com>
24561
24562         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
24563         Fix memleaks, GST_BUFFER_DATA() is not freed.
24564
24565 2005-05-25  Wim Taymans  <wim@fluendo.com>
24566
24567         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
24568         Open non-blocking, set to blocking mode afterwards to avoid
24569         lockups when audio device is busy.
24570
24571 2005-05-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24572
24573         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_clear):
24574           This can't be good.
24575
24576 2005-05-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24577
24578         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
24579         (gst_audio_convert_chain), (gst_audio_convert_link_src),
24580         (gst_audio_convert_setcaps):
24581           Implement instant setup switching.
24582
24583 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24584
24585         * gst/playback/gstplaybasebin.c: (probe_triggered):
24586           Fix missing unlock.
24587         * gst/playback/gstplaybin.c: (add_sink):
24588           First add, then link (otherwise pad link fails).
24589
24590 2005-05-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
24591
24592         * examples/Makefile.am:
24593         fix buildbot (make distcheck)
24594
24595 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24596
24597         * gst/playback/gstplaybin.c: (gen_vis_element):
24598           Remove some wrong code. Doesn't work yet.
24599
24600 2005-05-19  Wim Taymans  <wim@fluendo.com>
24601
24602         * gst-libs/gst/net/Makefile.am:
24603         * gst-libs/gst/net/README:
24604         * gst-libs/gst/net/gstnetbuffer.c: (gst_netbuffer_get_type),
24605         (gst_netbuffer_class_init), (gst_netbuffer_init),
24606         (gst_netbuffer_finalize), (gst_netbuffer_copy),
24607         (gst_netbuffer_new), (gst_netaddress_set_ip4_address),
24608         (gst_netaddress_set_ip6_address), (gst_netaddress_get_net_type),
24609         (gst_netaddress_get_ip4_address), (gst_netaddress_get_ip6_address):
24610         * gst-libs/gst/net/gstnetbuffer.h:
24611         Added buffer subclass to store extra to/from addresses for
24612         network sources/sinks.
24613
24614 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24615
24616         * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
24617           Don't lock an unassigned variable.
24618
24619 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24620
24621         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
24622           Increase buffer for video, decrease buffer for other media types.
24623         * gst/playback/gstplaybin.c: (gen_video_element),
24624         (gen_audio_element):
24625           Change names for debugging purposes.
24626
24627 2005-05-18  Wim Taymans  <wim@fluendo.com>
24628
24629         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
24630         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
24631         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
24632         (gst_ffmpegcsp_chain):
24633         Enable buffer alloc passthrough if the source and dest
24634         formats are the same.
24635
24636 2005-05-17  Wim Taymans  <wim@fluendo.com>
24637
24638         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
24639         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
24640         (gst_ogg_demux_chain_unlocked):
24641         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
24642         (gst_audio_convert_caps_remove_format_info),
24643         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
24644         (gst_audio_convert_fixate), (gst_audio_convert_change_state):
24645         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
24646         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
24647         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_init),
24648         (gst_ffmpegcsp_bufferalloc), (gst_ffmpegcsp_chain),
24649         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
24650         (gst_ffmpegcsp_get_property):
24651         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
24652         (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
24653         (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
24654         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
24655         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_imagepool_clear),
24656         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
24657         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_free),
24658         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id):
24659         Leak fixes in oggdemux.
24660         Some cleanups in audioconvert.
24661         Make passthrough work along with buffer_alloc etc.
24662         Make buffer_alloc and buffer recycling actually work in
24663         xvimagesink.
24664
24665 2005-05-17  Thomas Vander Stichele  <thomas at apestaart dot org>
24666
24667         * gst/subparse/gstsubparse.c: (parse_subrip), (parse_mpsub):
24668           make the compiler happy
24669
24670 2005-05-17  Wim Taymans  <wim@fluendo.com>
24671
24672         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
24673         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
24674         (gst_xvimage_buffer_init), (gst_xvimage_buffer_class_init),
24675         (gst_xvimage_buffer_get_type), (gst_xvimagesink_check_xshm_calls),
24676         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
24677         (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_setcaps),
24678         (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
24679         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
24680         (gst_xvimagesink_set_xwindow_id):
24681         * sys/xvimage/xvimagesink.h:
24682         Port xvimagesink to new MiniObject.
24683
24684 2005-05-17  Wim Taymans  <wim@fluendo.com>
24685
24686         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
24687         (gst_audiofilter_chain):
24688         * gst-libs/gst/audio/gstaudiosink.c:
24689         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
24690         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
24691         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
24692         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
24693         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
24694         (gst_audiosink_create_ringbuffer):
24695         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
24696         (gst_audio_convert_caps_remove_format_info),
24697         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
24698         (gst_audio_convert_fixate), (gst_audio_convert_channels):
24699         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
24700         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
24701         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
24702         Fix passthrough in ffmpegcolorspace.
24703         Fix memset in audiosink on wrong memory.
24704
24705 2005-05-16  David Schleef  <ds@schleef.org>
24706
24707         * gst/playback/gststreaminfo.c: (cb_probe): Port from GstData
24708         to GstMiniObject.
24709
24710 2005-05-16  David Schleef  <ds@schleef.org>
24711
24712         Port from GstData to GstMiniObject.
24713         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
24714         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
24715         (gst_ogg_mux_queue_pads), (gst_ogg_mux_set_header_on_caps),
24716         (gst_ogg_mux_collected):
24717         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
24718         * ext/theora/theoradec.c: (theora_handle_comment_packet),
24719         (theora_handle_data_packet):
24720         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
24721         (theora_set_header_on_caps), (theora_enc_chain):
24722         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
24723         (vorbis_handle_comment_packet):
24724         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
24725         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
24726         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_chain):
24727         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_chain):
24728         * gst/audioconvert/gstaudioconvert.c:
24729         (gst_audio_convert_get_buffer):
24730         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
24731         * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
24732         (mute_stream), (silence_stream):
24733         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
24734         * gst/volume/gstvolume.c: (volume_transform):
24735         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
24736         (gst_ximage_buffer_init), (gst_ximage_buffer_class_init),
24737         (gst_ximage_buffer_get_type), (gst_ximagesink_check_xshm_calls),
24738         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
24739         (gst_ximagesink_ximage_put), (gst_ximagesink_imagepool_clear),
24740         (gst_ximagesink_show_frame), (gst_ximagesink_buffer_free),
24741         (gst_ximagesink_buffer_alloc):
24742         * sys/ximage/ximagesink.h:
24743
24744 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24745
24746         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
24747         (fill_buffer), (check_queue), (queue_threshold_reached),
24748         (queue_out_of_data):
24749         * gst/playback/gstplaybasebin.h:
24750           Post buffer-fullness on the bus.
24751
24752 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24753
24754         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
24755         (try_to_link_1):
24756         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
24757         (group_commit), (probe_triggered), (setup_source),
24758         (gst_play_base_bin_change_state):
24759         * gst/playback/gstplaybasebin.h:
24760         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
24761         (gst_play_bin_init), (remove_sinks), (setup_sinks),
24762         (gst_play_bin_change_state):
24763           Move setup_output_pads into a virtual function, remove
24764           group-switch (no longer needed) and redirect (handled by bus
24765           now) signals.
24766
24767 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24768
24769         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
24770         (gst_play_base_bin_class_init), (gst_play_base_bin_finalize),
24771         (get_active_group), (get_building_group), (group_destroy),
24772         (group_commit), (check_queue), (queue_overrun),
24773         (queue_threshold_reached), (queue_out_of_data),
24774         (gen_preroll_element), (remove_groups), (unknown_type),
24775         (add_element_stream), (no_more_pads), (probe_triggered),
24776         (preroll_unlinked), (new_decoded_pad), (setup_subtitle),
24777         (setup_substreams), (setup_source), (finish_source),
24778         (prepare_output), (muted_group_change_state),
24779         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
24780         (gst_play_base_bin_change_state):
24781         * gst/playback/gstplaybasebin.h:
24782         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
24783         (gst_play_bin_init), (gst_play_bin_set_property),
24784         (gen_video_element), (gen_text_element), (gen_audio_element),
24785         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
24786         (gst_play_bin_change_state):
24787         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
24788         (cb_probe), (gst_stream_info_new), (gst_stream_info_dispose),
24789         (stream_info_change_state), (gst_stream_info_set_mute),
24790         (gst_stream_info_get_property):
24791         * gst/playback/gststreaminfo.h:
24792         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
24793         (gst_stream_selector_get_linked_pad),
24794         (gst_stream_selector_getcaps),
24795         (gst_stream_selector_get_linked_pads),
24796         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
24797         * gst/playback/gststreamselector.h:
24798           Rough port of playbin. Needs some more work, but is mostly done,
24799           and uses a few locks in important places, which should make stuff
24800           like chain-switches clean. Still uses GST_STATE() in a few places,
24801           which isn't all that good an idea, subtitles/elements disabled
24802           because no elements to test with and thus probably broken, query
24803           and event handling moved to GstBin, internal thread removed
24804           alltogether because the pipeline does that for us now. Can play
24805           Ogg/Vorbis files. Haven't tested anything else yet.
24806
24807 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24808
24809         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
24810           Do no-more-pads (needed for autoplugging).
24811
24812 2005-05-10  Andy Wingo  <wingo@pobox.com>
24813
24814         * ext/vorbis/vorbisdec.c (vorbis_handle_comment_packet): Post a
24815         message to the bus with the tags. Still not sent downstream tho.
24816
24817         * gst/playback/gstdecodebin.c (remove_element_chain): Unref after
24818         get_parent.
24819         (remove_element_chain): Use OBJECT_PARENT instead of get_parent to
24820         avoid refcounting hassles.
24821
24822 2005-05-09  Andy Wingo  <wingo@pobox.com>
24823
24824         * gst/volume/Makefile.am:
24825         * gst/volume/demo.c
24826         * gst/volume/gstvolume.h
24827         * gst/volume/gstvolume.c: Port to 0.9 API, derive from
24828         basetransform. Probably need an audio filter base class.
24829
24830 2005-05-09  Wim Taymans  <wim@fluendo.com>
24831
24832         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_setcaps),
24833         (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
24834         (gst_vorbisenc_set_header_on_caps), (gst_vorbisenc_sink_event),
24835         (gst_vorbisenc_chain):
24836         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
24837         (gst_audio_convert_caps_remove_format_info),
24838         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
24839         (gst_audio_convert_fixate), (gst_audio_convert_channels):
24840         Make caps writable before writing to it.
24841         Fix negotiation in audioconvert some more.
24842
24843 2005-05-09  Wim Taymans  <wim@fluendo.com>
24844
24845         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
24846         (gst_videorate_getcaps), (gst_videorate_setcaps),
24847         (gst_videorate_event), (gst_videorate_chain):
24848         Better negotiation.
24849
24850 2005-05-09  Wim Taymans  <wim@fluendo.com>
24851
24852         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
24853         (gst_videorate_getcaps), (gst_videorate_setcaps),
24854         (gst_videorate_blank_data), (gst_videorate_init),
24855         (gst_videorate_event), (gst_videorate_chain),
24856         (gst_videorate_change_state):
24857         Port videorate, do a better job at negotiation while we're at
24858         it.
24859
24860 2005-05-09  Jan Schmidt  <thaytan@mad.scientist.com>
24861
24862         * configure.ac:
24863           Disable libvisual
24864
24865         * examples/Makefile.am:
24866         * gst-libs/gst/audio/Makefile.am:
24867         * gst-libs/gst/riff/Makefile.am:
24868         * gst-libs/gst/tag/Makefile.am:
24869         * gst-libs/gst/video/Makefile.am:
24870           Fixups for missing variables.
24871
24872 2005-05-09  Wim Taymans  <wim@fluendo.com>
24873
24874         * examples/seeking/seek.c: (make_theora_pipeline),
24875         (make_vorbis_theora_pipeline), (make_avi_msmpeg4v3_mp3_pipeline),
24876         (query_rates), (query_positions_elems), (query_positions_pads),
24877         (update_scale), (play_cb), (pause_cb), (stop_cb), (main):
24878         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
24879         (gst_ogg_pad_query_types), (gst_ogg_pad_src_query),
24880         (gst_ogg_pad_typefind), (gst_ogg_demux_init),
24881         (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
24882         (gst_ogg_demux_read_end_chain), (gst_ogg_demux_sink_activate):
24883         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
24884         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
24885         (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
24886         (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
24887         (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
24888         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
24889         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
24890         (gst_ogm_parse_sink_query), (gst_ogm_parse_chain):
24891         * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
24892         (theora_dec_src_convert), (theora_dec_sink_convert),
24893         (theora_dec_src_query), (theora_dec_sink_query),
24894         (theora_dec_src_event), (theora_dec_sink_event),
24895         (theora_handle_comment_packet), (theora_handle_type_packet),
24896         (theora_handle_header_packet), (theora_handle_data_packet),
24897         (theora_dec_chain):
24898         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
24899         (vorbis_dec_convert), (vorbis_dec_src_query),
24900         (vorbis_dec_sink_query), (vorbis_dec_src_event),
24901         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
24902         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
24903         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
24904         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
24905         (gst_vorbisenc_sink_query), (gst_vorbisenc_init),
24906         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain):
24907         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
24908         (gst_play_bin_query):
24909         * gst/playback/test3.c: (update_scale):
24910         * gst/sine/gstsinesrc.c: (gst_sinesrc_setcaps),
24911         (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start):
24912         * gst/subparse/gstsubparse.c: (gst_subparse_init):
24913         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
24914         (gst_videotestsrc_src_query):
24915         * gst/videotestsrc/videotestsrc.c: (paint_hline_I420),
24916         (paint_hline_Y41B), (paint_hline_Y42B), (paint_hline_Y800),
24917         (paint_hline_YUV9):
24918         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
24919         Port to new query API.
24920         Updated seek.
24921         Cleanups in x[v]imagesink
24922
24923 2005-05-09  Andy Wingo  <wingo@pobox.com>
24924
24925         * ext/alsa/gstalsasink.h:
24926         * ext/gnomevfs/gstgnomevfssrc.c:
24927         (gst_gnomevfssrc_get_icy_metadata):
24928         * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek)
24929         (gst_ogg_demux_read_chain, gst_ogg_demux_read_end_chain)
24930         * ext/theora/theoradec.c (theora_dec_src_query)
24931         (theora_dec_src_event, theora_dec_sink_event)
24932         (theora_handle_comment_packet, theora_handle_data_packet):
24933         * ext/theora/theoraenc.c (theora_enc_chain):
24934         * ext/vorbis/vorbisdec.c (vorbis_dec_src_event)
24935         (vorbis_dec_sink_event, vorbis_handle_comment_packet):
24936         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
24937         * gst/typefind/gsttypefindfunctions.c (mp3_type_find)
24938         (qt_type_find):
24939         * gst/videotestsrc/videotestsrc.c (paint_setup_I420)
24940         (paint_setup_YV12, paint_setup_YUY2, paint_setup_UYVY)
24941         (paint_setup_YVYU, paint_setup_IYU2, paint_setup_Y41B)
24942         (paint_setup_Y42B, paint_setup_Y800, paint_setup_IMC1)
24943         (paint_setup_IMC2, paint_setup_IMC3, paint_setup_IMC4)
24944         (paint_setup_YVU9, paint_setup_YUV9, paint_setup_xRGB8888)
24945         (paint_setup_xBGR8888, paint_setup_RGBx8888)
24946         (paint_setup_BGRx8888, paint_setup_RGB888, paint_setup_BGR888)
24947         (paint_setup_RGB565, paint_setup_xRGB1555):
24948         * gst/videotestsrc/videotestsrc.h:
24949         * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc):
24950         * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support)
24951         (gst_xvimagesink_setcaps, gst_xvimagesink_buffer_alloc):
24952         GCC4 fixes.
24953         
24954         * ext/ogg/gstoggdemux.c (gst_ogg_demux_find_chains): Use the new
24955         gst_pad_query_position. Fixes oggdemux.
24956
24957 2005-05-08  David Schleef  <ds@schleef.org>
24958
24959         * configure.ac: Require liboil.
24960         * gst/videotestsrc/gstvideotestsrc.c: Fix up liboil calls, add
24961         a few more.
24962         * gst/videotestsrc/videotestsrc.c:
24963         * gst/videotestsrc/videotestsrc.h:
24964
24965 2005-05-06  Wim Taymans  <wim@fluendo.com>
24966
24967         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
24968         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
24969         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
24970         Well, unreffing a buffer right before pushing it is asking
24971         for trouble..
24972
24973 2005-05-06  Christian Schaller  <uraeus@gnome.org>
24974
24975         * pkgconfig/gstreamer-libs.pc.in: add missing library calls
24976
24977 2005-05-06  Wim Taymans  <wim@fluendo.com>
24978
24979         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
24980         (gst_audio_convert_caps_remove_format_info),
24981         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
24982         (gst_audio_convert_fixate), (gst_audio_convert_channels):
24983         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
24984         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
24985         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
24986         * gst/sine/Makefile.am:
24987         * gst/sine/gstsinesrc.c: (gst_sinesrc_get_type),
24988         (gst_sinesrc_class_init), (gst_sinesrc_init),
24989         (gst_sinesrc_src_fixate), (gst_sinesrc_setcaps),
24990         (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start),
24991         (gst_sinesrc_update_freq):
24992         * gst/sine/gstsinesrc.h:
24993         * gst/tcp/gstmultifdsink.c:
24994         * sys/xvimage/xvimagesink.c:
24995         Fixed negotiation wrt _peer_get_caps()
24996         Some cleanups.
24997
24998
24999 2005-05-06  Wim Taymans  <wim@fluendo.com>
25000
25001         * gst-libs/gst/audio/gstaudiosink.c:
25002         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
25003         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
25004         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
25005         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
25006         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
25007         (gst_audiosink_create_ringbuffer):
25008         * gst-libs/gst/audio/gstbaseaudiosink.c:
25009         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
25010         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
25011         (gst_baseaudiosink_set_property), (build_linear_format),
25012         (debug_spec_caps), (debug_spec_buffer),
25013         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
25014         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
25015         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
25016         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
25017         * gst-libs/gst/audio/gstbaseaudiosink.h:
25018         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
25019         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
25020         (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
25021         (gst_ringbuffer_play), (gst_ringbuffer_pause),
25022         (gst_ringbuffer_stop), (gst_ringbuffer_delay),
25023         (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
25024         (wait_segment), (gst_ringbuffer_commit),
25025         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
25026         (gst_ringbuffer_clear):
25027         * gst-libs/gst/audio/gstringbuffer.h:
25028         Make the base audiosink return an error when there is no
25029         audiobuffer negotiated.
25030
25031 2005-05-06  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
25032
25033         * ext/Makefile.am:
25034         Disable cdparanoia until someone ports it!
25035
25036 2005-05-06  Wim Taymans  <wim@fluendo.com>
25037
25038         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
25039         (gst_ogg_demux_sink_activate):
25040         And revert after wingo's revert.. sigh..
25041
25042 2005-05-05  Andy Wingo  <wingo@pobox.com>
25043
25044         * gst/audiorate/gstaudiorate.c (gst_audiorate_class_init): Pacify
25045         GObject.
25046         * configure.ac: Return audiorate and subparse from the ghetto.
25047         Re-enable -Wall -Werror.
25048         * gst/subparse/gstsubparse.c:
25049         * gst/subparse/gstsubparse.h: Port to 0.9. Can operate loop-based
25050         or chain-based. Cleaned up a bit. Not tested.
25051         
25052 2005-05-05  Christian Schaller <christian@fluendo.com> 
25053
25054         * Makefile.am: remove stuff that is not building
25055         * configure.ac: remove stuff that is not building
25056         * examples/Makefile.am: remove stuff that is not building
25057         * ext/alsa/gstalsasink.c: add alsa/ before the alsalib.h file
25058         * ext/alsa/gstalsasink.h: add alsa/ before the alsalib.h file
25059         * sys/Makefile.am: remove stuff that is not building
25060         * testsuite/Makefile.am: remove stuff that is not building
25061
25062 2005-05-05  Andy Wingo  <wingo@pobox.com>
25063
25064         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
25065         * gst-libs/gst/tag/gstvorbistag.c:
25066         (gst_tag_list_from_vorbiscomment_buffer), (gst_vorbis_tag_chain):
25067         * gst/adder/gstadder.h:
25068         * gst/audioconvert/gstchannelmix.c:
25069         (gst_audio_convert_fill_one_other):
25070         * gst/audiorate/gstaudiorate.c: (gst_audiorate_setcaps),
25071         (gst_audiorate_init), (gst_audiorate_chain):
25072         * gst/playback/gstplaybasebin.c: (setup_source):
25073         * gst/playback/test3.c: (update_scale):
25074         Some GCC4 fixes
25075         
25076         * po/af.po:
25077         * po/az.po:
25078         * po/cs.po:
25079         * po/en_GB.po:
25080         * po/hu.po:
25081         * po/it.po:
25082         * po/nb.po:
25083         * po/nl.po:
25084         * po/or.po:
25085         * po/sq.po:
25086         * po/sr.po:
25087         * po/sv.po:
25088         * po/uk.po:
25089         * po/vi.po: Foo
25090
25091 2005-05-05  Wim Taymans  <wim@fluendo.com>
25092
25093         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
25094         (gst_audio_convert_caps_remove_format_info),
25095         (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
25096         (gst_audio_convert_change_state), (gst_audio_convert_channels):
25097         * gst/videotestsrc/gstvideotestsrc.c:
25098         (gst_videotestsrc_src_negotiate), (gst_videotestsrc_src_link),
25099         (gst_videotestsrc_parse_caps), (gst_videotestsrc_src_accept_caps),
25100         (gst_videotestsrc_setcaps), (gst_videotestsrc_activate),
25101         (gst_videotestsrc_init), (gst_videotestsrc_loop):
25102         Don't ignore _push() return values.
25103         Make sure no processing is done when shutting down.
25104         Videotestsrc pad activation fix.
25105
25106 2005-05-05  Wim Taymans  <wim@fluendo.com>
25107
25108         * gst/adder/Makefile.am:
25109         * gst/adder/gstadder.c: (gst_adder_setcaps),
25110         (gst_adder_class_init), (gst_adder_init),
25111         (gst_adder_request_new_pad), (gst_adder_collected),
25112         (gst_adder_change_state):
25113         * gst/adder/gstadder.h:
25114         Ported adder as an example of a mixer element using
25115         collect pads. Needs more negotiation work.
25116
25117 2005-05-05  Wim Taymans  <wim@fluendo.com>
25118
25119         * ext/theora/theoradec.c: (_inc_granulepos),
25120         (theora_dec_src_event), (theora_dec_sink_event),
25121         (theora_handle_comment_packet), (theora_handle_type_packet),
25122         (theora_handle_header_packet), (theora_handle_data_packet),
25123         (theora_dec_chain):
25124         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
25125         (gst_theora_enc_init), (theora_enc_sink_setcaps),
25126         (theora_push_buffer), (theora_push_packet),
25127         (theora_enc_sink_event), (theora_enc_chain),
25128         (theora_enc_change_state), (theora_enc_set_property),
25129         (theora_enc_get_property):
25130         Added stream lock to decoder so that we can serialize
25131         the discont event.
25132         More theoraenc porting, recover from errors, do clean
25133         shutdown.
25134
25135 2005-05-05  Wim Taymans  <wim@fluendo.com>
25136
25137         * ext/ogg/Makefile.am:
25138         * ext/ogg/README:
25139         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
25140         (gst_ogg_pad_submit_packet), (gst_ogg_demux_sink_activate),
25141         (gst_ogg_print):
25142         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
25143         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
25144         (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
25145         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
25146         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected),
25147         (gst_ogg_mux_change_state):
25148         Ported ogg muxer.
25149
25150 2005-05-05  Wim Taymans  <wim@fluendo.com>
25151
25152         * docs/design-audiosinks.txt:
25153         * gst-libs/gst/audio/TODO:
25154         * gst-libs/gst/audio/gstaudiosink.c:
25155         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
25156         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
25157         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
25158         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
25159         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
25160         (gst_audiosink_create_ringbuffer):
25161         * gst-libs/gst/audio/gstbaseaudiosink.c:
25162         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
25163         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
25164         (gst_baseaudiosink_set_property), (build_linear_format),
25165         (debug_spec_caps), (debug_spec_buffer),
25166         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
25167         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
25168         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
25169         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
25170         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
25171         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
25172         (gst_ringbuffer_release), (gst_ringbuffer_play),
25173         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
25174         (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
25175         (gst_ringbuffer_set_sample), (wait_segment),
25176         (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
25177         (gst_ringbuffer_advance), (gst_ringbuffer_clear):
25178         More work on the audiosink, mostly debugging and a race in
25179         shutdown.
25180
25181 2005-04-28  Wim Taymans  <wim@fluendo.com>
25182
25183         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
25184         (gst_ogg_demux_perform_seek), (gst_ogg_demux_sink_activate):
25185         * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
25186         (vorbis_dec_src_query), (vorbis_dec_src_event),
25187         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
25188         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
25189         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
25190         Don't crap out when seeking back to position 0.
25191
25192 2005-04-28  Wim Taymans  <wim@fluendo.com>
25193
25194         * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
25195         (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
25196         (make_vorbis_pipeline), (make_vorbis_theora_pipeline),
25197         (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
25198         (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline):
25199         Make audio sink configurable, use alsasink as default.
25200
25201 2005-04-28  Wim Taymans  <wim@fluendo.com>
25202
25203         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
25204         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
25205         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
25206         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain),
25207         (vorbis_dec_change_state):
25208         * ext/vorbis/vorbisdec.h:
25209         Refactor, use STREAM_LOCK.
25210
25211 2005-04-28  Wim Taymans  <wim@fluendo.com>
25212
25213         * ext/theora/theoradec.c: (_inc_granulepos),
25214         (theora_dec_sink_event), (theora_handle_comment_packet),
25215         (theora_handle_type_packet), (theora_handle_header_packet),
25216         (theora_handle_data_packet), (theora_dec_chain),
25217         (theora_dec_change_state):
25218         Refactor a bit, use STREAM_LOCK.
25219
25220 2005-04-28  Wim Taymans  <wim@fluendo.com>
25221
25222         * ext/alsa/Makefile.am:
25223         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_get_caps),
25224         (gst_alsa_fixate_to_mimetype), (gst_alsa_fixate_field_nearest_int),
25225         (gst_alsa_link), (gst_alsa_close_audio):
25226         * ext/alsa/gstalsaplugin.c: (plugin_init):
25227         * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
25228         (gst_alsasink_dispose), (gst_alsasink_base_init),
25229         (gst_alsasink_class_init), (gst_alsasink_init),
25230         (gst_alsasink_getcaps), (set_hwparams), (set_swparams),
25231         (alsasink_parse_spec), (gst_alsasink_open), (gst_alsasink_close),
25232         (xrun_recovery), (gst_alsasink_write), (gst_alsasink_delay),
25233         (gst_alsasink_reset):
25234         * ext/alsa/gstalsasink.h:
25235         Implement alsasink with simple open/write/close API. 
25236         Make alsa dir build by disabling compilation of code.
25237
25238 2005-04-28  Wim Taymans  <wim@fluendo.com>
25239
25240         * gst-libs/gst/audio/Makefile.am:
25241         * gst-libs/gst/audio/audio.h:
25242         * gst-libs/gst/audio/audioclock.c:
25243         * gst-libs/gst/audio/audioclock.h:
25244         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_get_type),
25245         (gst_audio_clock_class_init), (gst_audio_clock_init),
25246         (gst_audio_clock_new), (gst_audio_clock_get_internal_time):
25247         * gst-libs/gst/audio/gstaudioclock.h:
25248         * gst-libs/gst/audio/gstaudiosink.c:
25249         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
25250         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
25251         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
25252         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
25253         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
25254         (gst_audiosink_create_ringbuffer):
25255         * gst-libs/gst/audio/gstbaseaudiosink.c:
25256         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
25257         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
25258         (gst_baseaudiosink_set_property), (gst_baseaudiosink_get_property),
25259         (build_linear_format), (debug_spec_caps), (debug_spec_buffer),
25260         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
25261         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
25262         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
25263         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
25264         * gst-libs/gst/audio/gstbaseaudiosink.h:
25265         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
25266         (gst_ringbuffer_init), (gst_ringbuffer_finalize),
25267         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
25268         (gst_ringbuffer_release), (gst_ringbuffer_play),
25269         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
25270         (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
25271         (gst_ringbuffer_set_sample), (wait_segment),
25272         (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
25273         (gst_ringbuffer_advance), (gst_ringbuffer_clear):
25274         * gst-libs/gst/audio/gstringbuffer.h:
25275         Make ringbuffer faster and more simple by removing the locks
25276         in the playback thread.
25277         Add sample accurate playback based on buffer sample offsets.
25278         Make the baseaudiosink provide a clock.
25279         Parse caps in the base class.
25280         Correctly handle seeking, flushing and state changes.
25281
25282 2005-04-25  Thomas Vander Stichele  <thomas at apestaart dot org>
25283
25284         * configure.ac:
25285         * gst/audioconvert/Makefile.am:
25286         * gst/audioscale/Makefile.am:
25287           Fix part of the build.  Come on guys, autogen didn't even work :)
25288
25289 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25290
25291         * configure.ac:
25292         * gst-libs/gst/Makefile.am:
25293         * gst-libs/gst/media-info/.cvsignore:
25294         * gst-libs/gst/media-info/Makefile.am:
25295         * gst-libs/gst/media-info/README:
25296         * gst-libs/gst/media-info/media-info-priv.c:
25297         * gst-libs/gst/media-info/media-info-priv.h:
25298         * gst-libs/gst/media-info/media-info-test.c:
25299         * gst-libs/gst/media-info/media-info.c:
25300         * gst-libs/gst/media-info/media-info.h:
25301         * gst-libs/gst/media-info/media-info.vcproj:
25302         * pkgconfig/Makefile.am:
25303         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
25304         * pkgconfig/gstreamer-media-info.pc.in:
25305           Remove media-info, which is also successed by playbin (see Totem
25306           implementation).
25307
25308 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25309
25310         * configure.ac:
25311         * examples/Makefile.am:
25312         * examples/gstplay/.cvsignore:
25313         * examples/gstplay/Makefile.am:
25314         * examples/gstplay/player.c:
25315         * gst-libs/gst/Makefile.am:
25316         * gst-libs/gst/play/.cvsignore:
25317         * gst-libs/gst/play/Makefile.am:
25318         * gst-libs/gst/play/play.c:
25319         * gst-libs/gst/play/play.h:
25320         * gst-libs/gst/play/play.vcproj:
25321         * pkgconfig/Makefile.am:
25322         * pkgconfig/gstreamer-play-uninstalled.pc.in:
25323         * pkgconfig/gstreamer-play.pc.in:
25324           Remove libgstplay, playbin is now the official successor.
25325
25326 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25327
25328         * configure.ac:
25329         * gst-libs/gst/Makefile.am:
25330         * gst-libs/gst/xwindowlistener/Makefile.am:
25331         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
25332         * gst-libs/gst/xwindowlistener/xwindowlistener.h:
25333           Remove deprecated xwindowlistener (I've moved xwindowlistening
25334           in the v4l/v4l2 plugins over to serverside).
25335
25336 2005-04-25  David Schleef  <ds@schleef.org>
25337
25338         * examples/dynparams/Makefile.am: Move demo-dparams from gst/sine
25339         to examples/dynparams.  Examples do not belong interspersed with
25340         source code.
25341         * examples/dynparams/demo-dparams.c:
25342         * gst/sine/Makefile.am:
25343         * gst/sine/demo-dparams.c:
25344
25345 2005-04-25  David Schleef  <ds@schleef.org>
25346
25347         Don't use GST_PLUGIN_LDFLAGS, because these aren't plugins.
25348         * gst-libs/gst/audio/Makefile.am:
25349         * gst-libs/gst/riff/Makefile.am:
25350         * gst-libs/gst/tag/Makefile.am:
25351         * gst-libs/gst/video/Makefile.am:
25352         * gst-libs/gst/xwindowlistener/Makefile.am:
25353
25354         Convert to 0.9 API, seems to work:
25355         * sys/ximage/Makefile.am:
25356         * sys/ximage/ximagesink.c:
25357
25358 2005-04-24  David Schleef  <ds@schleef.org>
25359
25360         Link plugins against libraries:
25361         * ext/alsa/Makefile.am:
25362         * gst/tcp/Makefile.am:
25363
25364         Remove asm code that should be in liboil
25365         * gst/videoscale/Makefile.am:
25366         * gst/videoscale/videoscale_x86_asm.s:
25367
25368         gettext wants these checked in:
25369         * po/af.po:
25370         * po/az.po:
25371         * po/cs.po:
25372         * po/en_GB.po:
25373         * po/hu.po:
25374         * po/it.po:
25375         * po/nb.po:
25376         * po/nl.po:
25377         * po/or.po:
25378         * po/sq.po:
25379         * po/sr.po:
25380         * po/sv.po:
25381         * po/uk.po:
25382         * po/vi.po:
25383
25384 2005-04-24  David Schleef  <ds@schleef.org>
25385
25386         Convert gst_main() to g_main_loop_run()
25387         * gst/playback/decodetest.c: (main):
25388         * gst/playback/test2.c: (main):
25389         * gst/playback/test3.c: (main):
25390         * gst/playback/test4.c: (main):
25391
25392         Link plugins against libraries:
25393         * ext/libvisual/Makefile.am:
25394         * sys/xvimage/Makefile.am:
25395
25396 2005-04-24  David Schleef  <ds@schleef.org>
25397
25398         * configure.ac: Remove idct and resample libs
25399         * gst-libs/gst/Makefile.am: same
25400
25401         Remove usage of gst_library_load():
25402         * ext/alsa/gstalsaplugin.c: (plugin_init):
25403         * ext/libvisual/visual.c: (plugin_init):
25404         * ext/ogg/gstogg.c: (plugin_init):
25405         * ext/theora/theora.c: (plugin_init):
25406         * ext/vorbis/vorbis.c: (plugin_init):
25407         * gst-libs/gst/audio/gstaudiofiltertemplate.c: (plugin_init):
25408         * gst/audioscale/gstaudioscale.c:
25409         * gst/adder/gstadder.c: (plugin_init):
25410         * gst/audioconvert/plugin.c: (plugin_init):
25411         * sys/ximage/ximagesink.c: (plugin_init):
25412         * sys/xvimage/xvimagesink.c: (plugin_init):
25413         * gst/tcp/gsttcpplugin.c: (plugin_init):
25414
25415         Link plugins against libraries:
25416         * ext/ogg/Makefile.am:
25417         * ext/theora/Makefile.am:
25418         * ext/vorbis/Makefile.am:
25419         * gst/audioconvert/Makefile.am:
25420
25421         Create proper libraries:
25422         * gst-libs/gst/riff/Makefile.am:
25423         * gst-libs/gst/audio/Makefile.am:
25424         * gst-libs/gst/video/Makefile.am:
25425
25426         Move resample library to audioscale plugin directory:
25427         * gst-libs/gst/resample/Makefile.am:
25428         * gst-libs/gst/resample/README:
25429         * gst-libs/gst/resample/dtof.c:
25430         * gst-libs/gst/resample/dtos.c:
25431         * gst-libs/gst/resample/functable.c:
25432         * gst-libs/gst/resample/private.h:
25433         * gst-libs/gst/resample/resample.c:
25434         * gst-libs/gst/resample/resample.h:
25435         * gst-libs/gst/resample/resample.vcproj:
25436         * gst-libs/gst/resample/test.c:
25437         * gst/audioscale/Makefile.am:
25438         * gst/audioscale/README:
25439         * gst/audioscale/dtof.c:
25440         * gst/audioscale/dtos.c:
25441         * gst/audioscale/functable.c:
25442         * gst/audioscale/private.h:
25443         * gst/audioscale/resample.c:
25444         * gst/audioscale/resample.h:
25445         * gst/audioscale/test.c:
25446
25447         Move tagedit library to gst-libs:
25448         * gst-libs/gst/tag/Makefile.am:
25449         * gst-libs/gst/tag/gstid3tag.c:
25450         * gst-libs/gst/tag/gsttagediting.c:
25451         * gst-libs/gst/tag/gsttageditingprivate.h:
25452         * gst-libs/gst/tag/gstvorbistag.c:
25453         * gst/tags/Makefile.am:
25454         * gst/tags/gstid3tag.c:
25455         * gst/tags/gstvorbistag.c:
25456
25457         Fix for core changes:
25458         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
25459         (gst_sinesrc_init), (gst_sinesrc_src_fixate), (gst_sinesrc_link),
25460         (gst_sinesrc_getrange):
25461
25462 2005-04-23  David Schleef  <ds@schleef.org>
25463
25464         * gst-libs/gst/Makefile.am: Remove idct.  It hasn't been used
25465         in gst-plugins in a long time, and properly belongs in liboil.
25466         * gst-libs/gst/idct/Makefile.am:
25467         * gst-libs/gst/idct/README:
25468         * gst-libs/gst/idct/dct.h:
25469         * gst-libs/gst/idct/doieee:
25470         * gst-libs/gst/idct/fastintidct.c:
25471         * gst-libs/gst/idct/floatidct.c:
25472         * gst-libs/gst/idct/idct.c:
25473         * gst-libs/gst/idct/idct.h:
25474         * gst-libs/gst/idct/idtc.vcproj:
25475         * gst-libs/gst/idct/ieeetest.c:
25476         * gst-libs/gst/idct/intidct.c:
25477
25478 2005-04-20  Wim Taymans  <wim@fluendo.com>
25479
25480         * docs/design-audiosinks.txt:
25481         * gst-libs/gst/audio/Makefile.am:
25482         * gst-libs/gst/audio/TODO:
25483         * gst-libs/gst/audio/gstaudiosink.c:
25484         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
25485         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
25486         (gst_audioringbuffer_dispose), (gst_audioringbuffer_finalize),
25487         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
25488         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
25489         (gst_audioringbuffer_delay), (gst_audiosink_base_init),
25490         (gst_audiosink_class_init), (gst_audiosink_init),
25491         (gst_audiosink_create_ringbuffer):
25492         * gst-libs/gst/audio/gstaudiosink.h:
25493         * gst-libs/gst/audio/gstbaseaudiosink.c:
25494         (gst_baseaudiosink_base_init), (gst_baseaudiosink_class_init),
25495         (gst_baseaudiosink_init), (gst_baseaudiosink_set_property),
25496         (gst_baseaudiosink_get_property), (gst_baseaudiosink_setcaps),
25497         (gst_baseaudiosink_get_times), (gst_baseaudiosink_event),
25498         (gst_baseaudiosink_preroll), (gst_baseaudiosink_render),
25499         (gst_baseaudiosink_create_ringbuffer),
25500         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
25501         * gst-libs/gst/audio/gstbaseaudiosink.h:
25502         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
25503         (gst_ringbuffer_class_init), (gst_ringbuffer_init),
25504         (gst_ringbuffer_dispose), (gst_ringbuffer_finalize),
25505         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
25506         (gst_ringbuffer_release), (gst_ringbuffer_play_unlocked),
25507         (gst_ringbuffer_play), (gst_ringbuffer_pause),
25508         (gst_ringbuffer_resume), (gst_ringbuffer_stop),
25509         (gst_ringbuffer_callback), (gst_ringbuffer_delay),
25510         (gst_ringbuffer_played_samples), (gst_ringbuffer_commit),
25511         (gst_ringbuffer_prepare_read), (gst_ringbuffer_clear):
25512         * gst-libs/gst/audio/gstringbuffer.h:
25513         An attempt at a set of audio base classes together with some
25514         design docs.
25515
25516 2005-04-20  Wim Taymans  <wim@fluendo.com>
25517
25518         * gst/audioconvert/Makefile.am:
25519         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
25520         (gst_audio_convert_caps_remove_format_info),
25521         (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
25522         (gst_audio_convert_channels):
25523         Link against audio libs.
25524         Fix audio convert plugin.
25525
25526 2005-04-20  Wim Taymans  <wim@fluendo.com>
25527
25528         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter),
25529         (gst_ogg_demux_sink_activate):
25530         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
25531         (theora_set_header_on_caps), (theora_enc_sink_event),
25532         (theora_enc_chain):
25533         Fix theora encoder.
25534
25535 2005-04-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25536
25537         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter):
25538         * gst/playback/gstdecodebin.c: (find_compatibles):
25539           Work with staticpadtemplates in elementfactories.
25540
25541 2005-04-12  Wim Taymans  <wim@fluendo.com>
25542
25543         * gst/playback/README:
25544         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
25545         (compare_ranks), (print_feature), (gst_decode_bin_init),
25546         (dynamic_create), (dynamic_free), (find_compatibles),
25547         (mimetype_is_raw), (close_pad_link), (got_redirect),
25548         (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
25549         (new_pad), (no_more_pads), (unlinked), (close_link), (type_found),
25550         (gst_decode_bin_change_state):
25551         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
25552         (gst_play_base_bin_init), (group_destroy), (group_commit),
25553         (check_queue), (queue_overrun), (queue_threshold_reached),
25554         (queue_out_of_data), (gen_preroll_element), (unknown_type),
25555         (new_decoded_pad), (setup_subtitle), (gen_source_element),
25556         (got_redirect), (setup_source), (play_base_eos),
25557         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
25558         (gst_play_base_bin_remove_element):
25559         * gst/playback/gstplaybasebin.h:
25560         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
25561         (gst_play_bin_init), (gst_play_bin_dispose),
25562         (gst_play_bin_set_property), (gen_video_element),
25563         (gen_text_element), (gen_audio_element), (remove_sinks),
25564         (gst_play_bin_send_event):
25565         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
25566         (stream_info_change_state), (gst_stream_info_set_mute):
25567         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
25568         (gst_stream_selector_get_caps), (gst_stream_selector_setcaps),
25569         (gst_stream_selector_request_new_pad), (gst_stream_selector_event),
25570         (gst_stream_selector_chain):
25571         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
25572         (main):
25573         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
25574         (gst_xvimagesink_setcaps), (gst_xvimagesink_get_times),
25575         (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
25576         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_class_init):
25577         Raw and crude port of decodebin. 
25578         Make playbin compile.
25579
25580 2005-04-06  Wim Taymans  <wim@fluendo.com>
25581
25582         * ext/gnomevfs/Makefile.am:
25583         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
25584         (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
25585         (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
25586         (gst_gnomevfssrc_create), (gst_gnomevfssrc_is_seekable),
25587         (gst_gnomevfssrc_get_size), (gst_gnomevfssrc_start),
25588         (gst_gnomevfssrc_stop):
25589         * ext/ogg/Makefile.am:
25590         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_get_data),
25591         (gst_ogg_demux_find_chains), (gst_ogg_demux_sink_activate):
25592         * ext/theora/Makefile.am:
25593         * ext/theora/theoradec.c: (_inc_granulepos),
25594         (theora_dec_sink_event), (theora_dec_chain):
25595         * ext/vorbis/Makefile.am:
25596         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
25597         (vorbis_dec_sink_event), (vorbis_dec_chain):
25598         * gst-libs/gst/audio/Makefile.am:
25599         * sys/xvimage/Makefile.am:
25600         Make gnomevfssrc extend the source base class.
25601         Fix linking against libs in various plugins.
25602
25603 2005-04-06  Andy Wingo  <wingo@pobox.com>
25604
25605         * gst-libs/gst/video/Makefile.am (libgstvideo_la_LDFLAGS): Use
25606         GST_BASE_LIBS.
25607
25608         * configure.ac: Add check and AC_SUBST for libgstbase.
25609
25610 2005-03-31  Wim Taymans  <wim@fluendo.com>
25611
25612         * examples/seeking/Makefile.am:
25613         * examples/seeking/cdparanoia.c: (main):
25614         * examples/seeking/cdplayer.c: (update_scale), (stop_seek),
25615         (play_cb), (pause_cb), (stop_cb), (main):
25616         * examples/seeking/playbin.c:
25617         * examples/seeking/seek.c: (dynamic_link), (make_mod_pipeline),
25618         (make_dv_pipeline), (make_wav_pipeline), (make_flac_pipeline),
25619         (make_sid_pipeline), (make_vorbis_pipeline),
25620         (make_theora_pipeline), (make_vorbis_theora_pipeline),
25621         (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
25622         (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline),
25623         (make_playerbin_pipeline), (update_scale), (end_scrub), (do_seek),
25624         (seek_cb), (start_seek), (stop_seek), (play_cb), (pause_cb),
25625         (stop_cb), (main):
25626         * examples/seeking/spider_seek.c:
25627         * examples/seeking/vorbisfile.c:
25628         * ext/gnomevfs/Makefile.am:
25629         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
25630         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_base_init),
25631         (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
25632         (gst_gnomevfssrc_get_property), (gst_gnomevfssrc_get),
25633         (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file),
25634         (gst_gnomevfssrc_getrange), (gst_gnomevfssrc_loop),
25635         (gst_gnomevfssrc_activate), (gst_gnomevfssrc_change_state),
25636         (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
25637         * ext/ogg/README:
25638         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_get_type),
25639         (gst_ogg_pad_class_init), (gst_ogg_pad_init),
25640         (gst_ogg_pad_dispose), (gst_ogg_pad_finalize),
25641         (gst_ogg_pad_formats), (gst_ogg_pad_event_masks),
25642         (gst_ogg_pad_query_types), (gst_ogg_pad_getcaps),
25643         (gst_ogg_pad_src_convert), (gst_ogg_pad_src_query),
25644         (gst_ogg_pad_event), (gst_ogg_pad_reset),
25645         (gst_ogg_demux_factory_filter), (compare_ranks),
25646         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
25647         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
25648         (gst_ogg_chain_new), (gst_ogg_chain_free),
25649         (gst_ogg_chain_new_stream), (gst_ogg_chain_get_stream),
25650         (gst_ogg_chain_has_stream), (gst_ogg_demux_base_init),
25651         (gst_ogg_demux_class_init), (gst_ogg_demux_init),
25652         (gst_ogg_demux_finalize), (gst_ogg_demux_handle_event),
25653         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_seek),
25654         (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
25655         (gst_ogg_demux_get_prev_page),
25656         (gst_ogg_demux_deactivate_current_chain),
25657         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
25658         (gst_ogg_demux_bisect_forward_serialno),
25659         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
25660         (gst_ogg_demux_find_pad), (gst_ogg_demux_find_chain),
25661         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain_unlocked),
25662         (gst_ogg_demux_chain), (gst_ogg_demux_send_eos),
25663         (gst_ogg_demux_loop), (gst_ogg_demux_sink_activate),
25664         (gst_ogg_demux_change_state), (gst_ogg_print):
25665         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
25666         (gst_ogg_mux_init), (gst_ogg_mux_sinkconnect),
25667         (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
25668         (gst_ogg_mux_push_page), (gst_ogg_mux_send_headers),
25669         (gst_ogg_mux_loop):
25670         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
25671         * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
25672         (theora_dec_src_convert), (theora_dec_sink_convert),
25673         (theora_dec_src_query), (theora_dec_src_event),
25674         (theora_dec_sink_event), (theora_dec_chain),
25675         (theora_dec_change_state):
25676         * ext/theora/theoraenc.c: (gst_theora_enc_init),
25677         (theora_enc_sink_setcaps), (theora_buffer_from_packet),
25678         (theora_push_buffer), (theora_enc_sink_event), (theora_enc_chain),
25679         (theora_enc_change_state):
25680         * ext/vorbis/Makefile.am:
25681         * ext/vorbis/oggvorbisenc.c:
25682         * ext/vorbis/oggvorbisenc.h:
25683         * ext/vorbis/vorbis.c: (plugin_init):
25684         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
25685         (vorbis_dec_src_query), (vorbis_dec_src_event),
25686         (vorbis_dec_sink_event), (vorbis_dec_chain),
25687         (vorbis_dec_change_state):
25688         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
25689         (gst_vorbisenc_sink_setcaps), (gst_vorbisenc_init),
25690         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
25691         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
25692         (gst_vorbisenc_change_state):
25693         * ext/vorbis/vorbisenc.h:
25694         * ext/vorbis/vorbisparse.c: (vorbis_parse_chain):
25695         * gst-libs/gst/audio/audioclock.c:
25696         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
25697         (gst_audiofilter_init), (gst_audiofilter_chain):
25698         * gst-libs/gst/audio/testchannels.c: (main):
25699         * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
25700         * gst-libs/gst/media-info/media-info-priv.c: (gmip_reset),
25701         (gmip_find_type), (gmip_find_stream), (gmip_find_track_metadata),
25702         (gmip_find_track_streaminfo), (gmip_find_track_format):
25703         * gst-libs/gst/media-info/media-info.c:
25704         (gst_media_info_read_idler):
25705         * gst-libs/gst/play/play.c: (gst_play_get_sink_element),
25706         (gst_play_get_all_by_interface):
25707         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
25708         (gst_riff_parse_chunk), (gst_riff_parse_file_header),
25709         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
25710         (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
25711         (gst_riff_parse_info):
25712         * gst-libs/gst/riff/riff-read.h:
25713         * gst-libs/gst/riff/riff.c: (plugin_init):
25714         * gst-libs/gst/video/Makefile.am:
25715         * gst-libs/gst/video/gstvideosink.c: (gst_videosink_init),
25716         (gst_videosink_class_init), (gst_videosink_get_type):
25717         * gst-libs/gst/video/videosink.h:
25718         * gst/audioconvert/bufferframesconvert.c:
25719         (buffer_frames_convert_init), (buffer_frames_convert_fixate),
25720         (buffer_frames_convert_setcaps), (buffer_frames_convert_chain):
25721         * gst/audioconvert/channelmixtest.c: (main):
25722         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
25723         (gst_audio_convert_chain),
25724         (gst_audio_convert_caps_remove_format_info),
25725         (gst_audio_convert_getcaps), (gst_audio_convert_parse_caps),
25726         (gst_audio_convert_setcaps), (_fixate_caps_to_int),
25727         (gst_audio_convert_fixate), (gst_audio_convert_get_buffer),
25728         (gst_audio_convert_buffer_to_default_format),
25729         (gst_audio_convert_buffer_from_default_format),
25730         (gst_audio_convert_channels):
25731         * gst/audioconvert/gstchannelmix.h:
25732         * gst/ffmpegcolorspace/avcodec.h:
25733         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
25734         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
25735         (gst_ffmpegcsp_configure_context), (gst_ffmpegcsp_setcaps),
25736         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain):
25737         * gst/tags/gstid3tag.c: (gst_tag_extract_id3v1_string):
25738         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
25739         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
25740         (mp3_type_find), (mpeg2_sys_type_find), (mpeg1_sys_type_find),
25741         (mpeg_video_type_find), (mpeg_video_stream_type_find),
25742         (dv_type_find):
25743         * gst/videotestsrc/gstvideotestsrc.c:
25744         (gst_videotestsrc_class_init), (gst_videotestsrc_src_negotiate),
25745         (gst_videotestsrc_src_link), (gst_videotestsrc_parse_caps),
25746         (gst_videotestsrc_src_accept_caps), (gst_videotestsrc_setcaps),
25747         (gst_videotestsrc_src_unlink), (gst_videotestsrc_activate),
25748         (gst_videotestsrc_change_state), (gst_videotestsrc_getcaps),
25749         (gst_videotestsrc_init), (gst_videotestsrc_src_query),
25750         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_loop):
25751         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
25752         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_fixate),
25753         (gst_xvimagesink_getcaps), (gst_xvimagesink_setcaps),
25754         (gst_xvimagesink_change_state), (gst_xvimagesink_get_times),
25755         (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
25756         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
25757         (gst_xvimagesink_navigation_send_event),
25758         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_expose),
25759         (gst_xvimagesink_set_property), (gst_xvimagesink_finalize),
25760         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
25761         * sys/xvimage/xvimagesink.h:
25762         Plugin port to 0.9, ogg/theora playback should work in the seek
25763         example now.
25764         Removed old examples.
25765         Removed old oggvorbisenc, renamed rawvorbisenc to vorbisenc as
25766         explained in 0.9 TODO doc.
25767
25768
25769 2005-02-23  Thomas Vander Stichele  <thomas at apestaart dot org>
25770
25771         * autogen.sh:
25772         * configure.ac:
25773         * ext/Makefile.am:
25774         * gst/Makefile.am:
25775         * po/POTFILES.in:
25776         * po/af.po:
25777         * po/az.po:
25778         * po/cs.po:
25779         * po/en_GB.po:
25780         * po/hu.po:
25781         * po/it.po:
25782         * po/nb.po:
25783         * po/nl.po:
25784         * po/or.po:
25785         * po/sq.po:
25786         * po/sr.po:
25787         * po/sv.po:
25788         * po/uk.po:
25789         * po/vi.po:
25790         * sys/Makefile.am:
25791         * testsuite/Makefile.am:
25792           remove a whole bunch of plugins.  This module now contains a set
25793           of free reference plugins/elements as agreed.
25794
25795 2005-02-22  Thomas Vander Stichele  <thomas at apestaart dot org>
25796
25797         * configure.ac:
25798           hunting season on 0.9 is now OPEN
25799
25800 2005-02-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25801
25802         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
25803           Kick the hell out of gcc for not warning me about a symbol conflict.
25804
25805 2005-02-22  Luca Ognibene  <luogni@tin.it>
25806
25807         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
25808
25809         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link):
25810           Don't leak caps string (fixes #168134)
25811
25812         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init),
25813         (gst_jpegenc_init), (gst_jpegenc_finalize),
25814         (gst_jpegenc_change_state):
25815           Don't leak line buffers and context struct (fixes #168133).
25816
25817 2005-02-21  Tim-Philipp Müller  <tim at centricular dot net>
25818
25819         * configure.ac:
25820         * ext/dirac/gstdiracdec.cc:
25821         (gst_diracdec_chain):
25822           Since dirac 0.5.0 the framerate in dirac is expressed as a
25823           rational number. Fix build and up requirement to 0.5.0, and
25824           also pass parameters to gst_diracdec_link in the right order
25825           (fixes #167959).
25826
25827 2005-02-21  Maciej Katafiasz  <mathrick@freedesktop.org>
25828
25829         * ext/faad/gstfaad.c: (gst_faad_sinkconnect), (gst_faad_chain):
25830         * ext/faad/gstfaad.h:
25831         TEH LONGEST DEBUGGING SESSION EVAR is over. Fix interaction with 
25832         certain invalid muxed streams, where some packets will contain 
25833         junk after decoder data. Partially fixes #149158.
25834
25835 2005-02-21  Jan Schmidt <thaytan@mad.scientist.com>
25836         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_chain):
25837           Make sure we only write to writable buffers
25838
25839 2005-02-20  Tim-Philipp Müller  <tim at centricular dot net>
25840
25841         * gst-libs/gst/riff/riff-media.c:
25842         (gst_riff_create_audio_caps_with_data):
25843           Do actually fix invalid RIFF fmt header values for alaw
25844           and mulaw audio instead of just saying so.
25845
25846         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
25847           Give gst_riff_create_audio_caps_with_data() a chance to
25848           fix up broken format header fields before extracting any
25849           parameters from the header. (fixes #167633)
25850
25851 2005-02-19  Martin Holters  <martin.holters@gmx.de>
25852
25853         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
25854
25855         * gst/audioconvert/bufferframesconvert.c:
25856         (buffer_frames_convert_link):
25857           Don't leak othercaps. (fixes #167878)
25858
25859 2005-02-19  Arwed v. Merkatz  <v.merkatz@gmx.net>
25860
25861         * configure.ac:
25862         * ext/libvisual/visual.c: (gst_visual_srclink),
25863         (gst_visual_change_state):
25864           Support libvisual 0.2.0.
25865
25866 2005-02-18  Tim-Philipp Müller  <tim at centricular dot net>
25867
25868         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_chain):
25869         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_resync), (gst_jpegenc_chain):
25870           Use same rowstrides for I420 as used everywhere else.
25871
25872 2005-02-17  Tim-Philipp Müller  <tim at centricular dot net>
25873
25874         * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
25875           Declare variables at beginning of block and make gcc-2.95 happy
25876           (fixes # 167482, patch by Gergely Nagy).
25877           
25878         * gst/tcp/gsttcpclientsrc.c:
25879         * gst/tcp/gsttcpclientsrc.h:
25880           Move some includes into the header, so that struct sockaddr_in is
25881           defined when it should be defined on FreeBSD as well (fixes
25882           #167483).
25883           
25884         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
25885           Don't pass uninitialised values to setsockopt() here either.
25886
25887 2005-02-17  Luca Ognibene  <luogni at tin dot it>
25888
25889         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
25890
25891         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send):
25892           Don't pass uninitialised values to setsockopt(). (fixes #167704)
25893
25894 2005-02-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25895
25896         * gst/playback/gstplaybin.c: (add_sink):
25897           Invert bin_add/link order to workaround deadlock in opt.
25898
25899 2005-02-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25900
25901         * gst/modplug/gstmodplug.cc:
25902           Add missing break causing position queries to fail.
25903
25904 2005-02-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25905
25906         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_populate):
25907           Granpos can apparently be -1, which screws up calculations...
25908
25909 2005-02-16  Jan Schmidt  <thaytan@mad.scientist.com>
25910
25911         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
25912         (gst_ximagesink_send_pending_navigation),
25913         (gst_ximagesink_navigation_send_event), (gst_ximagesink_finalize),
25914         (gst_ximagesink_init):
25915         * sys/ximage/ximagesink.h:
25916         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
25917         (gst_xvimagesink_send_pending_navigation),
25918         (gst_xvimagesink_navigation_send_event),
25919         (gst_xvimagesink_finalize), (gst_xvimagesink_init):
25920         * sys/xvimage/xvimagesink.h:
25921           Use a mutex protected list to marshal navigation
25922           events into the stream thread from whichever thread
25923           sends them.
25924
25925 2005-02-15  Tim-Philipp Müller  <tim at centricular dot net>
25926
25927         * gst/speed/demo-mp3.c: (time_tick_cb), (main):
25928           Display current position and track length; misc. clean-ups.
25929           
25930         * gst/speed/gstspeed.c: (speed_get_query_types), (speed_src_query),
25931         (speed_init), (speed_chain):
25932           Add query function, so that the stream length and current position
25933           get adjusted when queried (note that current position queries may
25934           still be wrong if the audio sink returns values based on buffer
25935           timestamps instead of passing on the query).
25936
25937 2005-02-13  Benjamin Otte  <otte@gnome.org>
25938
25939         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
25940         (gst_audio_convert_channels):
25941           create channel conversion matrix when linking
25942         * gst/audioconvert/.cvsignore:
25943         * gst/audioconvert/Makefile.am:
25944         * gst/audioconvert/channelmixtest.c: (main):
25945           add (ugly) test that ensures stereo <=> mono conversion works
25946           correctly
25947
25948 2005-02-13  Benjamin Otte  <otte@gnome.org>
25949
25950         * gst/audioconvert/gstchannelmix.h:
25951           include missing header file
25952         * gst/audioconvert/gstchannelmix.c:
25953         (gst_audio_convert_fill_compatible):
25954           use same sign for both channels when converting to/from compatible
25955           channel. Previously used different signs made the signals cancel
25956           each other out and appear like silence. (fixes #167269)
25957
25958 2005-02-12  Tim-Philipp Müller  <tim at centricular dot net>
25959
25960         * gst/ffmpegcolorspace/avcodec.h:
25961         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
25962         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
25963         (gst_ffmpegcsp_avpicture_fill):
25964         * gst/ffmpegcolorspace/imgconvert.c:
25965           Convert to and from YV12 (fixes #156379).
25966
25967 2005-02-12  Julien MOUTTE  <julien@moutte.net>
25968
25969         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
25970         (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
25971         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
25972         (gst_ximagesink_expose), (gst_ximagesink_set_property),
25973         (gst_ximagesink_finalize), (gst_ximagesink_init): Protect interface
25974         methods from chain and negotiation and vice versa (Fixes #166142).
25975         * sys/ximage/ximagesink.h: Add stream_lock.
25976         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
25977         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
25978         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
25979         (gst_xvimagesink_expose): Check for xcontext before trying to link.
25980
25981 2005-02-12  Tim-Philipp Müller  <tim at centricular dot net>
25982
25983         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_open):
25984           Don't send "Hey! You gave me a NULL pointer you naughty person" as
25985           error message when we can't open the DVD device (when dvdnav_open()
25986           fails, src->dvdnav is NULL, so dvdnav_err_to_string() will return
25987           the above). Send something more useful instead (fixes #167117).
25988
25989 2005-02-11  Julien MOUTTE  <julien@moutte.net>
25990
25991         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
25992         (gst_xvimagesink_sink_link), (gst_xvimagesink_change_state),
25993         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
25994         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
25995         (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
25996         (gst_xvimagesink_finalize), (gst_xvimagesink_init): Protect interface
25997         methods from chain and negotiation and vice versa (Fixes #166142).
25998         Fix a possible bug of images in the buffer pool being discarded because
25999         we are looking at the wrong geometry.
26000         * sys/xvimage/xvimagesink.h: Add stream_lock.
26001
26002 2005-02-11  David Schleef  <ds@schleef.org>
26003
26004         * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer): Change uint to
26005         unsigned int. (fixes #167128)
26006
26007 2005-02-11  David Schleef  <ds@schleef.org>
26008
26009         * gst/librfb/Makefile.am: Testing stuff before committing is
26010           for wimps... and people with fast machines.  Fix stupid
26011           mistake.
26012
26013 2005-02-11  David Schleef  <ds@schleef.org>
26014
26015         * configure.ac: Pull in librfb from my CVS tree, because it is
26016           too small and annoying to be separate.  Move rfbsrc plugin
26017           to gst/.
26018         * ext/Makefile.am:
26019         * ext/librfb/Makefile.am:
26020         * ext/librfb/gstrfbsrc.c:
26021         * gst/librfb/Makefile.am:
26022         * gst/librfb/gstrfbsrc.c:
26023         * gst/librfb/rfb.c:
26024         * gst/librfb/rfb.h:
26025         * gst/librfb/rfbbuffer.c:
26026         * gst/librfb/rfbbuffer.h:
26027         * gst/librfb/rfbbytestream.c:
26028         * gst/librfb/rfbbytestream.h:
26029         * gst/librfb/rfbcontext.h:
26030         * gst/librfb/rfbdecoder.c:
26031         * gst/librfb/rfbdecoder.h:
26032         * gst/librfb/rfbutil.h:
26033
26034 2005-02-10  Tim-Philipp Müller  <tim at centricular dot net>
26035
26036         * gst/speed/Makefile.am:
26037         * gst/speed/demo-mp3.c: (main):
26038         * gst/speed/filter.func:
26039         * gst/speed/gstspeed.c: (speed_link), (speed_parse_caps),
26040         (speed_class_init), (speed_init), (speed_chain_int16),
26041         (speed_chain_float32), (speed_chain), (speed_set_property),
26042         (speed_get_property), (speed_change_state):
26043         * gst/speed/gstspeed.h:
26044           Fix speed element and make it chain-based (fixes #156467),
26045           and make it handle more than one channel.
26046
26047 2005-02-10  Jan Schmidt  <thaytan@mad.scientist.com>
26048
26049         * ext/dts/gstdtsdec.c: (gst_dtsdec_init), (gst_dtsdec_channels),
26050         (gst_dtsdec_handle_event), (gst_dtsdec_handle_frame),
26051         (gst_dtsdec_chain), (gst_dtsdec_change_state):
26052         * ext/dts/gstdtsdec.h:
26053           Don't clobber the stack constructing the channels array.
26054           Make the element chain-based. DTS tracks can now be played.
26055           
26056 2005-02-09  Tim-Philipp Müller  <tim at centricular dot net>
26057
26058         * gst-libs/gst/audio/multichannel.h:
26059         * gst-libs/gst/gconf/gconf.h:
26060         * gst-libs/gst/idct/idct.h:
26061         * gst-libs/gst/media-info/media-info-priv.h:
26062         * gst-libs/gst/play/play.h:
26063         * gst-libs/gst/resample/private.h:
26064         * gst-libs/gst/resample/resample.h:
26065         * gst-libs/gst/riff/riff-ids.h:
26066         * gst-libs/gst/video/video.h:
26067         * gst-libs/gst/video/videosink.h:
26068           Add G_BEGIN_DECLS and G_END_DECLS around headers where
26069           missing, so that they work when included from C++ code.
26070
26071 2005-02-09  David Schleef  <ds@schleef.org>
26072
26073         * testsuite/gst-lint: Check for non-statically scoped
26074           parent_class variables.  This won't be a problem once
26075           plugins are loaded with RTLD_LOCAL.
26076
26077 2005-02-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26078
26079         * ext/mplex/gstmplexibitstream.cc:
26080           gcc madness.
26081
26082 2005-02-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26083
26084         * ext/ogg/gstogmparse.c:
26085         * gst/debug/gstnavigationtest.c:
26086           Die, thou faulty symbol pollutors (non-static parent_class).
26087
26088 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26089
26090         * ext/mplex/gstmplexibitstream.cc:
26091           Fix event handling (#165525).
26092
26093 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26094
26095         * ext/mikmod/gstmikmod.c:
26096         * gst/modplug/gstmodplug.cc:
26097           Add missing endianness to template (fixes #165509).
26098
26099 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26100
26101         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_data):
26102           Fix wrong order of reading of optional bytes (#165290).
26103
26104 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26105
26106         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
26107           Implement FILLER event awareness.
26108
26109 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26110
26111         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_convert):
26112           Fix track calculations (#166208).
26113
26114 2005-02-08  Gergely Nagy  <algernon@bonehunter.rulez.org>
26115
26116         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26117
26118         * ext/libpng/gstpngdec.c: (gst_pngdec_init), (gst_pngdec_chain):
26119         * ext/libpng/gstpngenc.c:
26120           Fix byte-order, use proper fixed caps. Fixes #164197.
26121
26122 2005-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
26123
26124         * configure.ac:
26125           Add dvdlpcmdec 
26126
26127         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_reset),
26128         (free_all_buffers), (gst_mpeg2dec_alloc_buffer):
26129           Don't push buffers if the src pad isn't negotiated yet.
26130           
26131         * gst/audioconvert/gstaudioconvert.c:
26132         (gst_audio_convert_buffer_to_default_format),
26133         (gst_audio_convert_buffer_from_default_format):
26134           Add support for 24-bit width.
26135
26136         * gst/dvdlpcmdec/.cvsignore:
26137         * gst/dvdlpcmdec/Makefile.am:
26138         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_get_type),
26139         (gst_dvdlpcmdec_base_init), (gst_dvdlpcmdec_class_init),
26140         (gst_dvdlpcm_reset), (gst_dvdlpcmdec_init), (gst_dvdlpcmdec_link),
26141         (gst_dvdlpcmdec_chain), (gst_dvdlpcmdec_change_state),
26142         (plugin_init):
26143         * gst/dvdlpcmdec/gstdvdlpcmdec.h:
26144           New decoder for rearranging DVD LPCM into our audio/x-raw-int
26145           format. Needs support for the channels maps if someone can find 
26146           a DVD LPCM track with > 2 channels.
26147
26148         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_handle_dvd_event),
26149         (gst_dvd_demux_send_discont), (gst_dvd_demux_handle_discont),
26150         (gst_dvd_demux_get_audio_stream), (gst_dvd_demux_process_private):
26151         * gst/mpegstream/gstdvddemux.h:
26152         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
26153         (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_init_stream),
26154         (gst_mpeg_demux_send_subbuffer), (gst_mpeg_demux_handle_src_query):
26155         * gst/mpegstream/gstmpegdemux.h:
26156         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_reset),
26157         (gst_mpeg_parse_parse_packhead), (gst_mpeg_parse_loop),
26158         (gst_mpeg_parse_get_rate), (gst_mpeg_parse_convert_src),
26159         (gst_mpeg_parse_handle_src_query),
26160         (gst_mpeg_parse_handle_src_event):
26161           Use audio/x-dvd-lpcm for LPCM output.
26162           Add DTS output.
26163
26164 2005-02-08  Gergely Nagy  <algernon@bonehunter.rulez.org>
26165
26166         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26167
26168         * gst/alpha/gstalphacolor.c: (gst_alpha_color_sink_link),
26169         (transform_rgb), (transform_bgr), (gst_alpha_color_chain):
26170           Add BGRA handling (#165736).
26171
26172 2005-02-08  Francis Labonte  <francis_labonte@hotmail.com>
26173
26174         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26175
26176         * gst/law/alaw-decode.c: (alawdec_link):
26177         * gst/law/alaw-encode.c: (alawenc_link):
26178         * gst/law/mulaw-decode.c: (mulawdec_link):
26179         * gst/law/mulaw-encode.c: (mulawenc_link):
26180           Fix caps memleaks (#166600).
26181
26182 2005-02-08  Tim-Philipp Müller  <tim at centricular dot net>
26183
26184         * ext/tarkin/mem.h:
26185         * ext/tarkin/wavelet.h:
26186         * ext/tarkin/yuv.h:
26187         * gst/ffmpegcolorspace/avcodec.h:
26188           Include "_stdint.h" instead of <stdint.h>. Fixes build on
26189           systems that don't have stdint.h, like Solaris9 (fixes #166631).
26190
26191 2005-02-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26192
26193         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state):
26194         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_clear),
26195         (gst_xvimagesink_change_state):
26196           Clear window on PAUSED->READY instead of READY->PAUSED. Stop
26197           Xv video (and thereby regenerate Xv colourkey) in clear() so
26198           that PLAY -> READY -> PLAY works (fixes #162504).
26199
26200 2005-02-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26201
26202         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_getcaps):
26203           Switch to list instead of range, since MJPEG-devices really just
26204           support decimations, not any size.
26205
26206 2005-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
26207         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_open_decoder),
26208         (gst_mpeg2dec_reset), (free_all_buffers),
26209         (gst_mpeg2dec_alloc_buffer), (handle_sequence):
26210         * ext/mpeg2dec/gstmpeg2dec.h:
26211           The libmpeg2 user-allocated buffer management is awkward, 
26212           to say the least. Hopefully this fixes things.
26213
26214 2005-02-04  Andy Wingo  <wingo@pobox.com>
26215
26216         * gst/audioconvert/bufferframesconvert.c
26217         (buffer_frames_convert_fixate): New function, fixates to 256
26218         frames per buffer by default. (Much better than 1.)
26219         (buffer_frames_convert_init): Set the fixate function for both src
26220         and sink pad.
26221         (buffer_frames_convert_link): After success setting nonfixed caps,
26222         get the negotiated caps so we can know how many buffer-frames it
26223         will be. No idea how this worked at all before.
26224
26225 2005-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
26226
26227         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
26228         (gst_mpeg2dec_close_decoder), (put_buffer), (check_buffer),
26229         (free_buffer), (free_all_buffers), (gst_mpeg2dec_alloc_buffer),
26230         (handle_sequence), (handle_picture):
26231         * ext/mpeg2dec/gstmpeg2dec.h:
26232           Rearrange buffer tracking and refcounting and refactor
26233           a little for readability. 
26234
26235 2005-02-04  Jan Schmidt  <thaytan@mad.scientist.com>
26236         * sys/v4l/gstv4l.c: (plugin_init):
26237         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_get_type),
26238         (gst_v4ljpegsrc_base_init), (gst_v4ljpegsrc_class_init),
26239         (gst_v4ljpegsrc_init), (gst_v4ljpegsrc_src_link),
26240         (gst_v4ljpegsrc_getcaps), (gst_v4ljpegsrc_get):
26241         * sys/v4l/gstv4ljpegsrc.h:
26242         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_open), (gst_v4lsrc_src_link):
26243         * sys/v4l/v4l_calls.h:
26244         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_palette_name),
26245         (gst_v4lsrc_get_fps):
26246         * sys/v4l/v4lsrc_calls.h:
26247           Add new v4ljpegsrc for handling the ov51x hacky "I'll give
26248           you jpeg inside rgb frames" driver.
26249           Don't error in the v4lsrc link function, just return 
26250           REFUSED.
26251
26252 2005-02-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26253
26254         * sys/qcam/gstqcamsrc.c: (gst_qcamsrc_change_state),
26255         (gst_qcamsrc_open):
26256           Use GST_ELEMENT_ERROR, not g_warning, if open failed.
26257
26258 2005-02-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26259
26260         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
26261           Change caps on MJPEG-B so it doesn't interfere with MJPEG/JPEG.
26262
26263 2005-02-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26264
26265         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_change_state):
26266           Reset negotiated state on PAUSED->READY.
26267
26268 2005-02-02  David Schleef  <ds@schleef.org>
26269
26270         * configure.ac: Put DEFAULT_AUDIOSINK in config.h and use
26271         whereever possible.  (Fixes #165997)
26272         * examples/capsfilter/capsfilter1.c: (main):
26273         * examples/dynparams/filter.c: (create_ui):
26274         * examples/seeking/cdparanoia.c: (get_track_info), (main):
26275         * examples/seeking/chained.c: (main):
26276         * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
26277         (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
26278         (make_vorbis_pipeline), (make_mp3_pipeline), (make_avi_pipeline),
26279         (make_mpeg_pipeline), (make_mpegnt_pipeline):
26280         * examples/seeking/spider_seek.c: (make_spider_pipeline):
26281         * examples/switch/switcher.c: (main):
26282         * ext/dv/demo-play.c: (main):
26283         * ext/faad/gstfaad.c: (gst_faad_change_state):
26284         * ext/mad/gstmad.c: (gst_mad_chain):
26285         * ext/smoothwave/demo-osssrc.c: (main):
26286         * gst-libs/gst/gconf/gconf.c: (gst_gconf_set_string),
26287         (gst_gconf_render_bin_from_description),
26288         (gst_gconf_get_default_audio_sink),
26289         (gst_gconf_get_default_video_sink),
26290         (gst_gconf_get_default_audio_src),
26291         (gst_gconf_get_default_video_src),
26292         (gst_gconf_get_default_visualization_element):
26293         * gst/level/demo.c: (main):
26294         * gst/level/plot.c: (main):
26295         * gst/playback/gstplaybin.c: (gen_video_element),
26296         (gen_audio_element):
26297         * gst/playback/test.c: (gen_video_element), (gen_audio_element):
26298         * gst/playondemand/demo-mp3.c: (setup_pipeline):
26299         * gst/sine/demo-dparams.c: (main):
26300         * gst/spectrum/demo-osssrc.c: (main):
26301         * gst/speed/demo-mp3.c: (main):
26302         * gst/volume/demo.c: (main):
26303         * testsuite/embed/embed.c: (main):
26304
26305 2005-02-02  Jan Schmidt  <thaytan@mad.scientist.com>
26306
26307         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
26308         (gst_tcpclientsink_finalize):
26309         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
26310         (gst_tcpclientsrc_finalize):
26311         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
26312         (gst_tcpserversink_init), (gst_tcpserversink_finalize):
26313         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
26314         (gst_tcpserversrc_init), (gst_tcpserversrc_finalize):
26315           Don't leak the hostname when shutting down.
26316           In tcpserversrc, take a copy of the default hostname.
26317
26318 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26319
26320         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_iso_receive):
26321           Set caps to systemstream=TRUE.
26322
26323 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26324
26325         * testsuite/Makefile.am:
26326           Fix more OSX buildbots.
26327
26328 2005-02-02  Jan Schmidt  <thaytan@mad.scientist.com>
26329
26330         * ext/mpeg2dec/gstmpeg2dec.c:
26331           Don't send things to NULL PAD_PEERs
26332
26333         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_chain):
26334           Copy-on-write the incoming buffer.
26335
26336         * gst/mpegstream/gstdvddemux.h:
26337         * gst/mpegstream/gstmpegclock.h:
26338         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
26339         (normal_seek), (gst_mpeg_demux_handle_src_event):
26340         * gst/mpegstream/gstmpegdemux.h:
26341         * gst/mpegstream/gstmpegpacketize.h:
26342         * gst/mpegstream/gstmpegparse.c:
26343         (gst_mpeg_parse_update_streaminfo), (gst_mpeg_parse_reset),
26344         (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead),
26345         (gst_mpeg_parse_loop), (gst_mpeg_parse_get_rate),
26346         (gst_mpeg_parse_convert_src), (gst_mpeg_parse_handle_src_query),
26347         (gst_mpeg_parse_handle_src_event), (gst_mpeg_parse_change_state):
26348         * gst/mpegstream/gstmpegparse.h:
26349         * gst/mpegstream/gstrfc2250enc.h:
26350           Various changes to the way time is computed that make seeking and
26351           total time estimation much better here.
26352           Use G_BEGIN/END_DECLS instead of __cplusplus
26353
26354         * gst/videocrop/gstvideocrop.c: (gst_video_crop_chain):
26355           Use gst_buffer_stamp instead of only copying the TIMESTAMP
26356
26357 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26358
26359         * gst/subparse/gstsubparse.c:
26360           Fix OSX buildbot.
26361
26362 2005-01-31  Tim-Philipp Müller  <tim at centricular dot net>
26363
26364         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
26365         (theora_enc_chain), (theora_enc_change_state):
26366         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
26367         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_chain),
26368         (gst_vorbisenc_change_state):
26369         * ext/vorbis/vorbisenc.h:
26370           Set granulepos and timestamp correctly for streams not
26371           starting at 0, taking into account the initial delay.
26372
26373 2005-01-31  Tim-Philipp Müller  <tim at centricular dot net>
26374
26375         * gst/mpegstream/gstdvddemux.c:
26376           Add audio/x-dts to audio pad template caps
26377
26378 2005-01-30  David Schleef  <ds@schleef.org>
26379
26380         * ext/polyp/polypsink.c: (gst_polypsink_base_init),
26381         (create_context), (gst_polypsink_link): Fix silly endianness
26382         bug.  Add some debugging.  Remove float from caps; it doesn't
26383         work.  Attempt to get remote audio working.
26384
26385 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26386
26387         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
26388           Add 3IV2 fourcc.
26389
26390 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26391
26392         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream), (swap_line),
26393         (gst_avi_demux_invert), (gst_avi_demux_process_next_entry),
26394         (gst_avi_demux_stream_data):
26395         * gst/avi/gstavidemux.h:
26396           Invert DIB images. Fixes #132341.
26397
26398 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26399
26400         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26401         (gst_ffmpegcsp_chain):
26402           D'oh, reference the palette data, not the palette structure.
26403           Fixes color distortion in #132341.
26404
26405 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26406
26407         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
26408           PAR can be non-fixed when not provided as argument (#162626).
26409
26410 2005-01-29  David Moore  <dcm@acm.org>
26411
26412         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26413
26414         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
26415         (gst_qtdemux_loop_header):
26416           Re-apply patch from #142272 that allows non-seekable sources,
26417           re-proposed by Daniel Drake <dsd@gentoo.org>.
26418
26419 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26420
26421         * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_init):
26422           Use the src template for creating the src pad (#162330).
26423
26424 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26425
26426         * configure.ac:
26427         * ext/musepack/Makefile.am:
26428         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_class_init),
26429         (gst_musepackdec_init), (gst_musepackdec_dispose),
26430         (gst_musepackdec_src_query), (gst_musepackdec_src_convert),
26431         (gst_musepack_stream_init), (gst_musepackdec_loop),
26432         (gst_musepackdec_change_state):
26433         * ext/musepack/gstmusepackdec.cpp:
26434         * ext/musepack/gstmusepackdec.h:
26435         * ext/musepack/gstmusepackreader.c: (gst_musepack_reader_peek),
26436         (gst_musepack_reader_read), (gst_musepack_reader_seek),
26437         (gst_musepack_reader_tell), (gst_musepack_reader_get_size),
26438         (gst_musepack_reader_canseek), (gst_musepack_init_reader):
26439         * ext/musepack/gstmusepackreader.cpp:
26440         * ext/musepack/gstmusepackreader.h:
26441           Update to 1.1 API (#165446).
26442
26443 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26444
26445         * ext/Makefile.am:
26446           Unbreak buildbot.
26447
26448 2005-01-28  Andy Wingo  <wingo@pobox.com>
26449
26450         * ext/dv/gstdvdec.c: Change the pixel aspect ratio of dvdec output
26451         to reflect a different dubious internet source. Add a reference
26452         and some commentary.
26453
26454 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26455
26456         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
26457         (gst_stream_selector_get_caps), (gst_stream_selector_chain):
26458         * gst/playback/gststreamselector.h:
26459           Be more selective when we're redoing caps negotiation from
26460           within the chain function on a stream change.
26461
26462 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26463
26464         * configure.ac:
26465         * ext/Makefile.am:
26466         * ext/amrnb/Makefile.am:
26467         * ext/amrnb/amrnb.c: (plugin_init):
26468         * ext/amrnb/amrnbdec.c: (gst_amrnbdec_get_type),
26469         (gst_amrnbdec_base_init), (gst_amrnbdec_class_init),
26470         (gst_amrnbdec_init), (gst_amrnbdec_link), (gst_amrnbdec_chain),
26471         (gst_amrnbdec_state_change):
26472         * ext/amrnb/amrnbdec.h:
26473         * ext/amrnb/amrnbparse.c: (gst_amrnbparse_get_type),
26474         (gst_amrnbparse_base_init), (gst_amrnbparse_class_init),
26475         (gst_amrnbparse_init), (gst_amrnbparse_formats),
26476         (gst_amrnbparse_querytypes), (gst_amrnbparse_query),
26477         (gst_amrnbparse_handle_event), (gst_amrnbparse_reserve),
26478         (gst_amrnbparse_loop), (gst_amrnbparse_state_change):
26479         * ext/amrnb/amrnbparse.h:
26480           Add support for AMR-NB (mobile phone audio format; #155163, #163286).
26481         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
26482           Add AMR-NB/-WB raw formats.
26483         * ext/alsa/gstalsa.c: (gst_alsa_link):
26484           Keep valid time when changing format.
26485         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
26486         (qtdemux_parse_trak):
26487           Add some more format-specific options (#140141, #143555, #155163).
26488
26489 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26490
26491         * gst/matroska/matroska-demux.c:
26492         (gst_matroska_demux_parse_blockgroup):
26493           Fix logic error in timing of subtitle stream synchronization.
26494         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
26495           Add skip-chunk, which is found in kodak-camera streams.
26496
26497 2005-01-27  Thomas Vander Stichele  <thomas at apestaart dot org>
26498
26499         * po/LINGUAS:
26500         * po/vi.po:
26501           Adding Vietnamese translation (submitted by Clytie Siddall)
26502
26503 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26504
26505         * gst/playback/gstdecodebin.c: (try_to_link_1):
26506           Use realpad for signal.
26507
26508 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26509
26510         * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_base_init):
26511           Fix category so decodebin picks it up.
26512
26513 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26514
26515         * ext/mad/Makefile.am:
26516         * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_get_type),
26517         (gst_id3demux_bin_base_init), (gst_id3demux_bin_class_init),
26518         (gst_id3demux_bin_init), (gst_id3demux_bin_remove_pad),
26519         (found_type), (gst_id3demux_bin_change_state):
26520         * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
26521         (gst_id3_tag_init), (gst_id3_tag_handle_event),
26522         (gst_id3_tag_src_link), (gst_id3_tag_chain),
26523         (gst_id3_tag_change_state), (plugin_init):
26524         * ext/mad/gstmad.h:
26525           Add id3demuxbin (which is a simple bin consisting of id3demux
26526           and typefind), take over rank from id3demux, remove typefind
26527           code from id3demux. Makes all broken mp3s that I know of work,
26528           and thereby fixes #152688.
26529
26530 2005-01-27  Edward Hervey  <bilboed@bilboed.com>
26531
26532         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26533
26534         * ext/mad/gstmad.c: (gst_mad_src_event):
26535         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
26536           Allow seeks on audio pad, make mad forward those (#164826).
26537         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
26538           Set duration (#165335).
26539
26540 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26541
26542         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
26543         (gst_asf_demux_commit_taglist), (gst_asf_demux_process_comment),
26544         (gst_asf_demux_process_ext_content_desc),
26545         (gst_asf_demux_change_state), (gst_asf_demux_add_audio_stream),
26546         (gst_asf_demux_add_video_stream), (gst_asf_demux_setup_pad):
26547         * gst/asfdemux/gstasfdemux.h:
26548           Improve metadata display, e.g. if the metadata comes before the
26549           streams are loaded (which is perfectly valid).
26550
26551 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26552
26553         * tools/gst-launch-ext-m.m:
26554           Fix AVI/ASF pipelines (#165340).
26555
26556 2005-01-26  Amaury Jacquot  <sxpert@esitcom.org>
26557         * ext/cairo/gsttextoverlay.c: include  string.h and strings.h to fix
26558         build failure on amd64
26559
26560 2005-01-26  Tim-Philipp Müller  <tim at centricular dot net>
26561
26562         * ext/mad/gstid3tag.c: (mad_id3_parse_latin1_string),
26563         (mad_id3_parse_comment_frame), (gst_mad_id3_to_tag_list):
26564           Check environment variables GST_ID3V2_TAG_ENCODING,
26565           GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
26566           list of character encodings to force interpretation of non-unicode
26567           strings stored in an ID3v2 tag to a particular encoding. If none
26568           is specified, try to use current locale's encoding, then fall back
26569           to ISO-8859-1 (which will always succeed). (Resolves #149274)
26570         * gst/tags/gstid3tag.c: (gst_tag_from_id3_tag),
26571         (gst_tag_extract_id3v1_string), (gst_tag_list_new_from_id3v1):
26572           Check environment variables GST_ID3V1_TAG_ENCODING,
26573           GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
26574           list of character encodings to use in case a string encountered
26575           in an ID3v1 tag is not valid UTF-8 already. If no encoding is
26576           specified, try to use the current locale's encoding, then fall
26577           back to ISO-8859-1 (which will always succeed).
26578
26579 2005-01-25  Benjamin Otte  <otte@gnome.org>
26580
26581         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
26582           - on half framerate, compute the rate in advance so the comparisons
26583             don't compare wrong values
26584           - don't use mad_synth/frame_mute anymore, this mirrors mad_decoder
26585             behaviour
26586           - don't use mad_header_decode anymore, mad_frame_decode does that
26587             automatically
26588           - when getting rid of consumed bytes, reset the stream's skiplen
26589           (fixes #163867)
26590
26591 2005-01-26  Jan Schmidt  <thaytan@mad.scientist.com>
26592
26593         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init)
26594           Use 1/2 a second for default max_discont, as PES streams from DVB
26595           seem to have larger spacings in the SCR. 
26596           Fix a typo.
26597
26598 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26599
26600         * gst/playback/gstplaybasebin.c: (group_commit):
26601           Notify delayed stream-info availability.
26602
26603 2005-01-26  Jan Schmidt  <thaytan@mad.scientist.com>
26604         * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
26605         (gst_a52dec_handle_event), (gst_a52dec_chain):
26606         Add some debug output. Check that a discont has a valid
26607         time associated.
26608         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
26609         (gst_alsa_sink_loop):
26610         Ignore TAG events. A little extra debug for broken timestamps.
26611         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init), (dvdnavsrc_loop),
26612         (dvdnavsrc_change_state):
26613         Ensure we send a discont to engage the link before we send any
26614         other events.
26615         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_init),
26616         (dvdreadsrc_finalize), (_close), (_open), (_seek_title),
26617         (_seek_chapter), (seek_sector), (dvdreadsrc_get),
26618         (dvdreadsrc_uri_get_uri), (dvdreadsrc_uri_set_uri):
26619         Handle URI of the form dvd://title[,chapter[,angle]]. Currently only
26620         dvd://title works in totem because typefinding sends a seek that ends
26621         up going back to chapter 1 regardless.
26622         * ext/mpeg2dec/gstmpeg2dec.c:
26623         * ext/mpeg2dec/gstmpeg2dec.h:
26624         Output correct timestamps and handle disconts.
26625         * ext/ogg/gstoggdemux.c: (get_relative):
26626         Small guard against a null dereference.
26627         * ext/pango/gsttextoverlay.c: (gst_textoverlay_finalize),
26628         (gst_textoverlay_set_property):
26629         Free memory when done. Don't call gst_event_filler_get_duration on
26630         EOS events. Use GST_LOG and GST_WARNING instead of g_message and
26631         g_warning.
26632         * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_init),
26633         (draw_line), (gst_smoothwave_dispose), (gst_sw_sinklink),
26634         (gst_sw_srclink), (gst_smoothwave_chain):
26635         Draw solid lines, prettier colours.
26636         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_init):
26637         Add a default palette that'll work for some movies.
26638         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_init),
26639         (gst_dvd_demux_handle_dvd_event), (gst_dvd_demux_send_discont),
26640         (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_reset):
26641         * gst/mpegstream/gstdvddemux.h:
26642         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
26643         (gst_mpeg_demux_parse_syshead), (gst_mpeg_demux_parse_pes):
26644         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
26645         (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead):
26646         * gst/mpegstream/gstmpegparse.h:
26647         Use PTM/NAV events when for timestamp adjustment when connected to 
26648         dvdnavsrc. Don't use many discont events where one suffices.
26649         * gst/playback/gstplaybasebin.c: (group_destroy),
26650         (gen_preroll_element), (gst_play_base_bin_add_element):
26651         * gst/playback/gstplaybasebin.h:
26652         Make sure we remove subtitles from the same bin we put them in.
26653         * gst/subparse/gstsubparse.c: (convert_encoding), (parse_subrip),
26654         (gst_subparse_buffer_format_autodetect),
26655         (gst_subparse_change_state):
26656         Fix some memleaks and invalid accesses.
26657         * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find),
26658         (oggskel_type_find), (cmml_type_find), (plugin_init):
26659         Some typefind functions for Annodex v3.0 files
26660         * gst/wavparse/gstwavparse.h:
26661         GstRiffReadClass is the correct parent class.
26662
26663 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26664
26665         * gst-libs/gst/riff/riff-media.c:
26666         (gst_riff_create_video_caps_with_data):
26667           Add extradata to huffyuv (fixes #165013).
26668         * gst-libs/gst/riff/riff-read.c:
26669         (gst_riff_read_strf_vids_with_data):
26670           Fix extradata extraction if it is in the chunk size.
26671
26672 2005-01-25  Edward Hervey  <bilboed@bilboed.com>
26673
26674         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26675
26676         * gst/effectv/gstquark.c: (gst_quarktv_class_init),
26677         (gst_quarktv_change_state), (gst_quarktv_dispose):
26678           Memory free'ing location fix (#164708).
26679
26680 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26681
26682         * gst/playback/gstplaybasebin.c: (group_commit),
26683         (gen_preroll_element), (probe_triggered), (gen_source_element),
26684         (setup_source), (gst_play_base_bin_change_state),
26685         (gst_play_base_bin_add_element):
26686           Don't block for streams.
26687         * gst/playback/gststreaminfo.c: (stream_info_change_state),
26688         (gst_stream_info_set_mute):
26689           Use gst_pad_set_active_recursive.
26690
26691 2005-01-25  Andy Wingo  <wingo@pobox.com>
26692
26693         * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Fix compile
26694         for #ifndef HAVE_XVIDEO.
26695
26696 2005-01-24  Jeffrey C. Ollie
26697
26698         reviewed by: Maciej Katafiasz  <mathrick@freedesktop.org>
26699
26700         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_chain):
26701         * ext/gsm/gstgsmdec.h:
26702         * ext/gsm/gstgsmenc.c: (gst_gsmenc_init), (gst_gsmenc_chain):
26703         * ext/gsm/gstgsmenc.h:
26704         Fix rate to 8kHz as per spec, removes obscure errors when no rate
26705         was given by property. Add proper buffer timestamps and offsets.
26706
26707 2005-01-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26708
26709         * gst-libs/gst/riff/riff-media.c:
26710         (gst_riff_create_audio_caps_with_data):
26711           Audio can be <8000Hz.
26712
26713 2005-01-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26714
26715         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
26716           Explicit state change to workaround refcount bugs.
26717
26718 2005-01-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26719
26720         * gst/avi/gstavimux.c: (gst_avimux_write_tag),
26721         (gst_avimux_riff_get_avi_header):
26722           Fix...
26723
26724 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26725
26726         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_element_data),
26727         (gst_riff_read_element_data):
26728         * gst-libs/gst/riff/riff-read.h:
26729           Add _peek version (req'ed in CDXA).
26730         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_init),
26731         (gst_cdxaparse_loop):
26732           Fix parsing in playbin.
26733         * gst/playback/gstdecodebin.c: (close_pad_link):
26734           Ignore current_ pads, they cause major annoyance.
26735
26736 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26737
26738         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
26739           Safety guard.
26740
26741 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26742
26743         * gst/avi/gstavimux.c: (gst_avimux_write_tag):
26744           Fix padding...
26745
26746 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26747
26748         * gst/matroska/ebml-read.c: (gst_ebml_read_buffer):
26749           Allow for 0-sized buffers. Fixes length query problems in
26750           starwars.mkv from the testsuite.
26751
26752 2005-01-19  Tim-Philipp Müller  <tim at centricular dot net>
26753
26754         * gst/videobox/gstvideobox.c: (gst_video_box_copy_plane_i420),
26755         (gst_video_box_i420), (gst_video_box_chain):
26756           Fix row strides for I420 (fixes #163159)
26757           
26758 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26759
26760         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
26761           MPEG2 has a useful rate property, so we can actually use that.
26762           For MPEG-1, continue using the bytes/time properties.
26763
26764 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26765
26766         * gst-libs/gst/riff/riff-media.c:
26767         (gst_riff_create_video_caps_with_data),
26768         (gst_riff_create_video_template_caps):
26769           Add intel-h263.
26770
26771 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26772
26773         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
26774           Fail if caps negotiation fails. Should fix #162184, and should
26775           definately be in there regardless of it fixing the actual bug.
26776         * gst/avi/gstavimux.c: (gst_avimux_get_type), (gst_avimux_init),
26777         (gst_avimux_write_tag), (gst_avimux_riff_get_avi_header),
26778         (gst_avimux_riff_get_avix_header),
26779         (gst_avimux_riff_get_video_header),
26780         (gst_avimux_riff_get_audio_header), (gst_avimux_write_index),
26781         (gst_avimux_start_file), (gst_avimux_handle_event),
26782         (gst_avimux_change_state):
26783         * gst/avi/gstavimux.h:
26784           Refactor structure writing to use GST_WRITE_UINT macros, add
26785           metadata writing support.
26786
26787 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26788
26789         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
26790           Elements may already be destroyed when this function is called.
26791
26792 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26793
26794         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
26795         (gst_qtdemux_loop_header), (gst_qtdemux_handle_esds):
26796           More memory leak fixes (#149162).
26797
26798 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26799
26800         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
26801         (gst_qtdemux_add_stream):
26802           Fix two memleaks.
26803
26804 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26805
26806         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
26807           Argh...
26808
26809 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26810
26811         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
26812           Fix off-by-one bug. Fixes warnings during playback of sincity.mp4
26813           when fixating to six channels in Totem.
26814
26815 2005-01-17  Tim-Philipp Müller  <tim at centricular dot net>
26816
26817         * ext/dvdread/dvdreadsrc.c: (get_next_cell_for):
26818           Fix compile warnings on Solaris 10 buildbot
26819
26820 2005-01-17  Tim-Philipp Müller  <tim at centricular dot net>
26821
26822         * ext/dvdread/dvdreadsrc.c: (_read):
26823           Don't read beyond the last cell in a chapter (fixes 
26824           invalid memory access)
26825
26826 2005-01-17  Tim-Philipp Müller  <tim at centricular dot net>
26827
26828         * ext/dvdread/stream_labels.c:
26829         (dvdreadsrc_get_audio_stream_labels):
26830           Use NULL for an empty GList instead of g_list_alloc(); fix 
26831           memory leaks; s/LCPM/LPCM/; use g_strdup_printf() instead 
26832           of GString (easier to bulk free later)
26833
26834 2005-01-17  Gergely Nagy  <algernon@bonehunter.rulez.org>
26835
26836         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26837
26838         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
26839         (gst_ffmpeg_pixfmt_to_caps):
26840           Fix BGRA32 caps (#164209).
26841
26842 2005-01-17  Gergely Nagy  <algernon@bonehunter.rulez.org>
26843
26844         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26845
26846         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
26847         (gst_ffmpeg_caps_to_pixfmt):
26848           alpha_mask can be RGBA/ABGR. Fixes #164265.
26849
26850 2005-01-17  Francis Labonte  <francis_labonte@hotmail.com>
26851
26852         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26853
26854         * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer),
26855         (gst_mpeg2dec_alloc_buffer):
26856         * ext/mpeg2dec/gstmpeg2dec.h:
26857           Crop if decoding size is not the actual image size (#163676).
26858
26859 2005-01-17  Steve Baker  <steve@stevebaker.org>
26860
26861         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26862
26863         * gst/typefind/gsttypefindfunctions.c: (aiff_type_find),
26864         (svx_type_find), (sds_type_find), (ircam_type_find), (plugin_init):
26865           Add libsndfile typefind functions (#163309).
26866
26867 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26868
26869         * tools/gst-launch-ext-m.m:
26870           Add .aac, fix .m1v/.m2v (#163891).
26871
26872 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26873
26874         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_wait):
26875           Sanity check, don't wait endlessly since the clock might not
26876           actually run at this point (which is a deadlock). Fixes #164069.
26877
26878 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26879
26880         * gst/playback/gstplaybasebin.c: (probe_triggered):
26881           Of course, only pause if group is done...
26882
26883 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26884
26885         * gst/playback/gstplaybasebin.c: (probe_triggered):
26886           Thread safety.
26887
26888 2005-01-16  Jan Schmidt  <thaytan@mad.scientist.com>
26889
26890         * ext/swfdec/gstswfdec.c: (gst_swfdec_change_state):
26891           Don't return state change success when the parent
26892           failed.
26893
26894 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26895
26896         * gst/avi/gstavimux.c: (gst_avimux_handle_event):
26897           Free events (fix memleak in #162905).
26898
26899 2005-01-15  Gergely Nagy  <algernon@bonehunter.rulez.org>
26900
26901         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26902
26903         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
26904         (gst_ffmpeg_caps_to_pixfmt):
26905           Fix for depth = 15. Fixes #161675.
26906
26907 2005-01-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26908
26909         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
26910           Set FPS correctly, even for webcams and the like.
26911         * sys/v4l/v4l_calls.c: (gst_v4l_set_chan_norm):
26912           Don error on setting while capturing.
26913
26914 2005-01-14  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
26915
26916         * ext/dv/gstdvdec.c:
26917         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
26918         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
26919           I'm a bad boy. using /1001. to force C to do float division
26920           and not integer division (as it did in my last commit)
26921           Thanks to David I. Lehn for pointing this mistake.
26922
26923 2005-01-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26924
26925         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
26926           Revert Johan's 1.35->1.36 since it breaks compat.
26927
26928 2005-01-14  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
26929
26930         * ext/dv/gstdvdec.c:
26931         * ext/libfame/gstlibfame.c:
26932         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
26933         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
26934           replace framerate aproximations by their real value
26935           (24000/1001, 30000/1001, 60000/1001)
26936           Finish fixing bug #164049
26937
26938 2005-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
26939
26940         * ext/ogg/gstoggmux.c:
26941           eos/bos debugging
26942         * gst/tcp/gstmultifdsink.c:
26943         * gst/tcp/gstmultifdsink.h:
26944         * gst/tcp/gsttcp.c:
26945         * gst/tcp/gsttcp.h:
26946         * gst/tcp/gsttcpclientsink.c:
26947         * gst/tcp/gsttcpclientsrc.c:
26948         * gst/tcp/gsttcpserversink.c:
26949         * gst/tcp/gsttcpserversrc.c:
26950           improve reusability of elements after state changes and errors
26951           make multifdsink throw away streamheaders when receiving new ones
26952
26953 2005-01-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26954
26955         * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
26956           Fix for if items are already in list...
26957
26958 2005-01-12  Benjamin Otte  <otte@gnome.org>
26959
26960         * gst/adder/gstadder.c: (gst_adder_loop):
26961           fix adder a bit so it doesn't screw up with events as much anymore
26962
26963 2005-01-12  Jan Schmidt  <thaytan@mad.scientist.com>
26964
26965         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link),
26966         (pixbufscale_scale), (gst_pixbufscale_chain):
26967         * ext/gdk_pixbuf/pixbufscale.h:
26968           Incorporate changes from Tim-Philipp Mueller <t.i.m@orange.net>
26969           to ensure rowstrides are calculated the same way as 
26970           ffmpegcolorspace
26971           Use gst_buffer_stamp instead of copying TIMESTAMP manually, so
26972           that we pick up duration and offset also.
26973
26974 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26975
26976         * gst/avi/gstavimux.c: (gst_avimux_class_init),
26977         (gst_avimux_pad_unlink), (gst_avimux_release_pad):
26978           Reusability fixes.
26979
26980 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26981
26982         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
26983         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
26984         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
26985         (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
26986           Update flags when requested.
26987
26988 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26989
26990         * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
26991           Fix dmix.
26992
26993 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26994
26995         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
26996         (gst_play_base_bin_init), (gst_play_base_bin_dispose),
26997         (probe_triggered), (new_decoded_pad), (gen_source_element),
26998         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
26999         * gst/playback/gstplaybasebin.h:
27000         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
27001         (gst_play_bin_init), (group_switch), (remove_sinks), (setup_sinks),
27002         (gst_play_bin_change_state):
27003           Implement group-switch signal for use in apps to clear metadata
27004           cache, clean up subtitle, add suburi property instead of # hack,
27005           some error-out fixes.
27006
27007 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27008
27009         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
27010           Debug.
27011         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame):
27012           If we got a state change in the _get handler, don't return success.
27013
27014 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27015
27016         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_my_output_message),
27017         (gst_jpegdec_my_emit_message), (gst_jpegdec_init):
27018           Make jpegdec quiet on MJPEG decoding
27019         * gst/asfdemux/README:
27020           Fix mimetypes for MJPEG and H263
27021
27022 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27023
27024         * ext/theora/theoradec.c: (theora_dec_chain):
27025           Fix broken code generation by gcc by swapping arguments.
27026         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
27027           Fix \n in debug.
27028
27029 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27030
27031         * TODO:
27032           delete this file, it is by far outdated
27033         * ext/alsa/gstalsa.1: remove
27034         * ext/alsa/gstalsa.c: (add_rates), (add_channels), (gst_alsa_caps),
27035         (gst_alsa_check_sample_rates), (gst_alsa_rates_probe),
27036         (gst_alsa_get_caps):
27037           Add HW probing for supported sample rates. Fixes #161704
27038
27039 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27040
27041         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
27042           Don't crash, biatch! :).
27043
27044 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27045
27046         * ext/musepack/gstmusepackreader.cpp:
27047         * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
27048           Some work on tags - still doesn't work in playbin...
27049         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
27050           Handle events...
27051
27052 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27053
27054         * gst/qtdemux/qtdemux.c: (qtdemux_parse_tree):
27055           Also shove tags on kid pads.
27056
27057 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27058
27059         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
27060           Don't bail on unknown events.
27061         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
27062           Don't crash on events before negotiation.
27063         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
27064           Send tags on pads, too.
27065         * gst/playback/gststreamselector.c:
27066         (gst_stream_selector_request_new_pad):
27067           Forward events on first pad if no input was selected yet.
27068
27069 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27070
27071         * gst/playback/gstplaybasebin.c: (setup_substreams):
27072           Don't disable streamtype if the stream doesn't exist, since
27073           then playing a video after audio will disable both and nothing
27074           will happen. Fixes the testsuite.
27075
27076 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27077
27078         * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_interface_init),
27079         (gst_v4l_xoverlay_set_xwindow_id):
27080         * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_interface_init),
27081         (gst_v4l2_xoverlay_set_xwindow_id):
27082           Add debug categories, fix overlay disabling.
27083
27084 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27085
27086         * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_get_caps):
27087         * ext/alsa/gstalsa.h:
27088           Add HW probing for period_count/size and buffer_size MIX/MAX
27089           Adjust default/user defined value if out of bounds
27090           Should fix bug #162024
27091
27092 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27093
27094         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event):
27095           Fix warning (#161191).
27096
27097 2005-01-09  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27098
27099         * ext/dvdread/stream_labels.c:
27100         (dvdreadsrc_get_audio_stream_labels):
27101           Fix warning (init the good variable in switch default)
27102
27103 2005-01-09  Koop Mast  <kwm@rainbow-runner.nl>
27104
27105         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27106
27107         * gst/tta/gstttaparse.c: (gst_tta_src_event):
27108           Fix gcc-2.95 compile (#163485).
27109
27110 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27111
27112         * configure.ac:
27113         * ext/flac/gstflacenc.c: (gst_flacenc_init),
27114         (gst_flacenc_seek_callback), (gst_flacenc_write_callback),
27115         (gst_flacenc_tell_callback), (gst_flacenc_chain),
27116         (gst_flacenc_change_state):
27117         * ext/flac/gstflacenc.h:
27118           Update for API change in flac-1.1.1. Update requirement in
27119           configure.ac. Fixes #162974.
27120
27121 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27122
27123         * gst/playback/gstplaybasebin.c: (group_destroy):
27124           Remove hack to get rid of assert and get rid of unlinked
27125           signals properly.
27126
27127 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27128
27129         * gst/playback/gstplaybasebin.c: (setup_source):
27130           Set source to NULL so that resources are free'ed. Fixes issues
27131           with playback of CDDA and similar device-accessing things.
27132
27133 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27134
27135         * testsuite/embed/Makefile.am:
27136           test->noinst, fix make test in buildbot.
27137
27138 2005-01-09  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27139
27140         * ext/dvdread/stream_labels.c: new file
27141         * ext/dvdread/stream_labels.h: new file
27142         * ext/dvdread/Makefile.am:
27143         * ext/dvdread/dvdreadsrc.c: (_seek_title):
27144           Extract audio stream label from DVD IFO files.
27145           It only dump them on the console for now, still have to
27146           make playbin aware of them.
27147
27148 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27149
27150         * gst/playback/gstplaybasebin.c: (setup_source):
27151           Fix hanging subs.
27152
27153 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27154
27155         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
27156         (gen_preroll_element), (remove_groups), (setup_subtitle),
27157         (gen_source_element), (setup_source):
27158         * gst/playback/gstplaybasebin.h:
27159           Multiple .sub files is just a stupid idea... Fix some threading
27160           mistakes. Interestingly, external .sub files cause playbin to
27161           hang, I don't know why... Parsing fixes contributed by Fran??ois
27162           Kooman <fkooman@tuxed.net>.
27163
27164 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27165
27166         * testsuite/embed/Makefile.am:
27167           Fix buildbot.
27168
27169 2005-01-09  Gergely Nagy  <algernon@bonehunter.rulez.org>
27170
27171         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27172
27173         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
27174         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
27175         (gst_pngenc_set_property):
27176         * ext/libpng/gstpngenc.h:
27177           Add compression level property (#163323).
27178
27179 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27180
27181         * configure.ac:
27182         * examples/capsfilter/capsfilter1.c: (main):
27183         * examples/seeking/spider_seek.c: (make_spider_pipeline):
27184         * ext/dvdread/Makefile.am:
27185         * ext/dvdread/demo-play:
27186         * ext/dvdread/demo-play.c:
27187         * gconf/gstreamer.schemas.in:
27188         * gst-libs/gst/gconf/gconf.c:
27189         * sys/v4l/TODO:
27190         * testsuite/Makefile.am:
27191         * testsuite/embed/Makefile.am:
27192         * testsuite/embed/embed.c: (cb_expose), (main):
27193           Remove all references to xvideosink, fix examples (#140845).
27194         * gst/playback/gstplaybasebin.c: (group_destroy):
27195           Apparently, disposal does not unlink - so do explicitely.
27196         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
27197           Add debug.
27198
27199 2005-01-09  Maciej Katafiasz <mathrick@freedesktop.org>
27200
27201         * README: fix PKG_CONFIG_PATH instructions, what was there
27202         previously was breaking default search path, not nice. 
27203         Fixes #163358
27204
27205 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27206
27207         * gst/audioscale/gstaudioscale.c: (gst_audioscale_init),
27208         (gst_audioscale_chain):
27209           %#^@^#@^@#^#@^#@^@#^@#^@#^@#^#@^#@^#@^@#^#@ fix seeking
27210           when resampling - how the ^@$^!@^! is this possible?!?
27211
27212 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27213
27214         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
27215           Reset variables on READY.
27216         * gst/matroska/matroska-mux.c: (gst_matroska_mux_request_new_pad),
27217         (gst_matroska_mux_loop):
27218           Require data before writing header.
27219
27220 2005-01-09  Francis Labonte  <francis_labonte@hotmail.com>
27221
27222         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27223
27224         * ext/mad/gstmad.c: (gst_mad_chain):
27225           Don't call mad_stream_sync() directly after recovering sync.
27226           Fixes #151661.
27227
27228 2005-01-09  Martin Eikermann  <meiker@upb.de>
27229
27230         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27231
27232         * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init),
27233         (snapshot_handler), (gst_snapshot_sinkconnect),
27234         (gst_snapshot_chain):
27235           Allocate resources when required, fix recursive signal emission
27236           and fix caps. Fixes #161667.
27237
27238 2005-01-09  Gergely Nagy  <algernon@bonehunter.rulez.org>
27239
27240         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27241
27242         * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps),
27243         (gst_pngdec_chain):
27244           Handle only 8-bppc (bits-per-pixel-component) images, better
27245           error handling and correct strides. Fixes #163177.
27246         * ext/libpng/gstpngenc.c: (gst_pngenc_sinklink),
27247         (gst_pngenc_chain):
27248           Better error handling. Fixes #163348.
27249
27250 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27251
27252         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_get_type),
27253         (dvdnavsrc_uri_get_type), (dvdnavsrc_uri_get_protocols),
27254         (dvdnavsrc_uri_get_uri), (dvdnavsrc_uri_set_uri),
27255         (dvdnavsrc_uri_handler_init):
27256           Add DVD-nav URI (dvdnav://) for Totem testing purposes.
27257         * gst/playback/gstplaybasebin.c: (gen_source_element):
27258           Add MMS to streaming URIs.
27259
27260 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27261
27262         * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
27263         * sys/xvimage/xvimagesink.c:
27264         (gst_xvimagesink_navigation_send_event):
27265           Check for pad availability before sending event.
27266
27267 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27268
27269         * gst-plugins.spec.in:
27270           Add subparse.
27271
27272 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27273
27274         * configure.ac:
27275           Since we use functions from CVS, up requirement.
27276
27277 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27278
27279         * gst/playback/Makefile.am:
27280         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
27281         (group_destroy), (group_commit), (group_is_muted),
27282         (gen_preroll_element), (add_stream), (unknown_type),
27283         (probe_triggered), (preroll_unlinked), (mute_stream),
27284         (silence_stream), (new_decoded_pad), (setup_substreams),
27285         (setup_source), (get_active_source), (mute_group_type),
27286         (muted_group_change_state), (set_active_source),
27287         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
27288         (play_base_eos), (gst_play_base_bin_change_state):
27289         * gst/playback/gstplaybasebin.h:
27290         * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
27291         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
27292         (gst_stream_info_dispose), (stream_info_mute_pad),
27293         (stream_info_change_state), (gst_stream_info_set_mute):
27294         * gst/playback/gststreamselector.c: (gst_stream_selector_get_type),
27295         (gst_stream_selector_base_init), (gst_stream_selector_class_init),
27296         (gst_stream_selector_init), (gst_stream_selector_dispose),
27297         (gst_stream_selector_get_linked_pad),
27298         (gst_stream_selector_get_caps), (gst_stream_selector_link),
27299         (gst_stream_selector_get_linked_pads),
27300         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
27301         * gst/playback/gststreamselector.h:
27302           Adding stream selection support plus required properties for
27303           applications to use this. Fully fixes #100931.
27304
27305 2005-01-08  Benjamin Otte  <otte@gnome.org>
27306
27307         * gst/games/gstpuzzle.c: (nav_event_handler):
27308           - handle nav events differently: forward every event no matter if it
27309             was handled or not.
27310           - translate events
27311           You can now cheat by using navigationtest ! puzzle and moving the
27312           mouse close to the edge of a tile. ;)
27313
27314 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27315
27316         * configure.ac:
27317         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
27318         * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_get_type),
27319         (gst_ogm_text_parse_base_init), (gst_ogm_text_parse_init),
27320         (gst_ogm_parse_get_sink_querytypes), (gst_ogm_parse_sink_convert),
27321         (gst_ogm_parse_sink_query), (gst_ogm_parse_chain),
27322         (gst_ogm_parse_plugin_init):
27323         * ext/pango/gsttextoverlay.c: (gst_textoverlay_linkedpads),
27324         (gst_textoverlay_link), (gst_textoverlay_getcaps),
27325         (gst_textoverlay_event), (gst_textoverlay_video_chain),
27326         (gst_textoverlay_loop), (gst_textoverlay_init), (plugin_init):
27327         * ext/pango/gsttextoverlay.h:
27328         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
27329         (gst_matroska_demux_handle_seek_event),
27330         (gst_matroska_demux_sync_streams),
27331         (gst_matroska_demux_parse_blockgroup),
27332         (gst_matroska_demux_subtitle_caps),
27333         (gst_matroska_demux_plugin_init):
27334         * gst/matroska/matroska-ids.h:
27335         * gst/playback/gstdecodebin.c: (close_pad_link):
27336         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
27337         (gen_preroll_element), (remove_groups), (add_stream),
27338         (new_decoded_pad), (setup_subtitles), (gen_source_element),
27339         (setup_source):
27340         * gst/playback/gstplaybasebin.h:
27341         * gst/playback/gstplaybin.c: (gen_text_element), (setup_sinks):
27342         * gst/subparse/Makefile.am:
27343         * gst/subparse/gstsubparse.c: (gst_subparse_get_type),
27344         (gst_subparse_base_init), (gst_subparse_class_init),
27345         (gst_subparse_init), (gst_subparse_formats),
27346         (gst_subparse_eventmask), (gst_subparse_event),
27347         (gst_subparse_handle_event), (convert_encoding), (get_next_line),
27348         (parse_mdvdsub), (parse_mdvdsub_init), (parse_subrip),
27349         (parse_subrip_deinit), (parse_subrip_init), (parse_mpsub),
27350         (parse_mpsub_deinit), (parse_mpsub_init),
27351         (gst_subparse_buffer_format_autodetect),
27352         (gst_subparse_format_autodetect), (gst_subparse_loop),
27353         (gst_subparse_change_state), (gst_subparse_type_find),
27354         (plugin_init):
27355         * gst/subparse/gstsubparse.h:
27356         * gst/typefind/gsttypefindfunctions.c: (ogmtext_type_find),
27357         (plugin_init):
27358           Add subtitle support, .sub parser (supports SRT and MPsub),
27359           OGM text support, Matroska UTF-8 text support, deadlock fixes
27360           all over the place, subtitle awareness in decodebin/playbin
27361           and some fixes to textoverlay to handle subtitles in a stream
27362           correctly. Fixes #100931.
27363
27364 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27365
27366         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
27367           Check for pad availability before doing a query on it.
27368
27369 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27370
27371         * ext/dv/gstdvdec.c:
27372           really fix bpp24/32 dvdec caps (classic rgba indeed)
27373         * gst/asfdemux/gstasfdemux.c:
27374         (gst_asf_demux_process_ext_content_desc):
27375           don't send text tags if they are empty (bis repetita)
27376
27377 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27378
27379         * ext/dv/gstdvdec.c:
27380          remove unneeded comment from dvdec
27381           (related to DV 4CC codes in AVI files)
27382           moved them in gstreamer/docs/random/mimetypes
27383         * gst/asfdemux/gstasfdemux.c:
27384         (gst_asf_demux_process_ext_content_desc):
27385          don't send text tags if they are empty
27386          fix mem leak on error path
27387         * gst/ffmpegcolorspace/avcodec.h:
27388         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
27389         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
27390         (gst_ffmpegcsp_avpicture_fill):
27391         * gst/ffmpegcolorspace/imgconvert.c: (img_get_alpha_info):
27392         * gst/ffmpegcolorspace/imgconvert_template.h:
27393          adds BGR32 and BGRA32 to ffmpegcolorspace
27394           (still bad colors, fixing it on next commit)
27395           helps with dvdec outputing BGR32
27396
27397 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27398
27399         * ext/dv/gstdvdec.c:
27400          Fix audio caps i just broke (missing ',')
27401         * gst/matroska/matroska-mux.c: (gst_matroska_mux_get_type),
27402         (gst_matroska_mux_reset):
27403          Fix typo + add FIXME about old "x-gst-metadata" crap
27404
27405 2005-01-07  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27406
27407         * ext/dv/demo-play.c: (main):
27408          xvideosink -> xvimagesink
27409         * ext/dv/gstdvdec.c:
27410          change rgb 32/32 caps to 24/32 (no alpha)
27411          change nb of channels to be a list (2 or 4, not 2)
27412          change sample rate to be a list (32, 44.1, 48 kHz) not a range
27413         * gst/asfdemux/gstasfdemux.c:
27414         (gst_asf_demux_process_ext_content_desc):
27415          Add 'date/year' to extracted metadata list
27416
27417 2005-01-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27418
27419         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
27420           The return value of fixate_to does not imply that the requested
27421           value was set, so don't assume.
27422
27423 2005-01-07  Gergely Nagy  <algernon@bonehunter.rulez.org>
27424
27425         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27426
27427         * ext/libpng/gstpngdec.c:
27428         * ext/libpng/gstpngenc.c: (gst_pngenc_base_init),
27429         (gst_pngenc_sinklink), (gst_pngenc_init), (gst_pngenc_chain):
27430         * ext/libpng/gstpngenc.h:
27431           Alpha support (encoder; #163161), mime fixage.
27432
27433 2005-01-07  Sebastien Cote  <sc5@hermes.usherb.ca>
27434
27435         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27436
27437         * ext/faac/gstfaac.c: (gst_faac_outputformat_get_type),
27438         (gst_faac_class_init), (gst_faac_init), (gst_faac_srcconnect),
27439         (gst_faac_set_property), (gst_faac_get_property):
27440         * ext/faac/gstfaac.h:
27441           Allow for ADTS output (#153434).
27442
27443 2005-01-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27444
27445         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
27446           Fix against template (#150576).
27447
27448 2005-01-06  Benjamin Otte  <otte@gnome.org>
27449
27450         * gst/games/gstpuzzle.c: (draw_puzzle):
27451           don't draw a puzzle if either width or height of tiles would be 0.
27452
27453 2005-01-06  Benjamin Otte  <otte@gnome.org>
27454
27455         * gst/games/gstpuzzle.c: (gst_puzzle_get_type),
27456         (gst_puzzle_class_init), (gst_puzzle_finalize):
27457           no memleaks, please
27458         (gst_puzzle_create), (gst_puzzle_init),
27459         (gst_puzzle_set_property), (gst_puzzle_setup):
27460           change initialization code around so we don't reshuffle on resize
27461         (draw_puzzle):
27462           fix another stupid typo
27463
27464 2005-01-06  Benjamin Otte  <otte@gnome.org>
27465
27466         * gst/games/gstvideoimage.c: (copy_hline_YUY2):
27467           fix stupid typo that borked copying on YUY2
27468
27469 2005-01-06  Benjamin Otte  <otte@gnome.org>
27470
27471         * gst/games/gstpuzzle.c: (draw_puzzle):
27472           fix edges when image sizes aren't multiples of tile sizes
27473
27474 2005-01-06  Benjamin Otte  <otte@gnome.org>
27475
27476         * gst/games/gstpuzzle.c: (gst_puzzle_base_init):
27477           make RGB endianness work correctly
27478         (gst_puzzle_show), (gst_puzzle_swap), (gst_puzzle_move):
27479           refactor and fix race with initial shuffling
27480         (nav_event_handler):
27481           allow using the mouse to puzzle
27482         (draw_puzzle):
27483           insist on tiles having width and height as multiples of 4 to get
27484           clean YUV image handling
27485         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
27486         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_buffer_alloc):
27487           s/DEBUG/LOG/ for common messages
27488         (gst_xvimagesink_navigation_send_event):
27489           fix mouse event translation to not include screen PAR
27490         * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
27491           fix mouse event translation to actually work
27492
27493 2005-01-06  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27494
27495         * gst/asfdemux/gstasfdemux.c:
27496         (gst_asf_demux_process_ext_content_desc):
27497          Extract TrackNumber metadata + clean up code
27498         * gst/games/gstvideoimage.c: (gst_video_image_draw_rectangle):
27499          Hope this is the good fix (var used unitialised)
27500
27501 2005-01-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27502
27503         * ext/faad/gstfaad.c: (gst_faad_chain):
27504           Only increment timestamp if it's valid. Fixes raw AAC streams.
27505
27506 2005-01-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
27507
27508         * configure.ac:
27509         * gst/games/Makefile.am:
27510         * gst/games/gstpuzzle.c:
27511           add a puzzle game with...
27512         * gst/games/gstvideoimage.c:
27513         * gst/games/gstvideoimage.h:
27514           ... full colorspace support (that includes YUV9 and RGB16)) stolen
27515           from videotestsrc and made into something that would be a nice
27516           library for a lot of other plugins.
27517
27518 2005-01-06  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27519
27520         * configure.ac:
27521          don't compile faad plugin if a RC of 2.0 is found
27522          Fixes #155346 (and FC1 buildbot)
27523         * gst/asfdemux/gstasfdemux.c:
27524         (gst_asf_demux_process_ext_content_desc):
27525          try to make Solaris compiler happier
27526
27527 2005-01-06  Paul Jack  <pjack@sfaf.org>
27528
27529         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27530
27531         * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init):
27532           Fix segfault (#161667).
27533
27534 2005-01-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27535
27536         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
27537           Fix framerate reporting.
27538
27539 2005-01-05  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27540
27541         * gst-libs/gst/riff/riff-ids.h:
27542         * gst/wavenc/riff.h:
27543          Add AMR (VBR and CBR) ids to riff.h audio codec list
27544         * gst/asfdemux/gstasfdemux.c:
27545         (gst_asf_demux_process_ext_content_desc),
27546         (gst_asf_demux_process_object):
27547           Retrieve more tags from ASF files (Genre, AlbumTitle, Artist)
27548
27549 2005-01-05  Martin Eikermann  <meiker@upb.de>
27550
27551         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27552
27553         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
27554         (gst_dvd_demux_handle_discont):
27555         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_class_init),
27556         (gst_mpeg_demux_handle_discont):
27557           Recreate pads on new-media (#160730).
27558         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_new_pad):
27559           Send discont even if manager changes timestamps (#161929).
27560
27561 2005-01-05  Sebastien Cote  <sc5@hermes.usherb.ca>
27562
27563         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27564
27565         * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16):
27566           Fix invalid memory access (#159211).
27567
27568 2005-01-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27569
27570         * examples/gstplay/player.c: (main):
27571           Don't iterate.
27572         * examples/seeking/seek.c: (fixate), (make_playerbin_pipeline):
27573           Add visualizations.
27574         * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
27575         (gst_a52dec_handle_frame):
27576           Set duration.
27577         * ext/dvdnav/gst-dvd:
27578           Add audioconvert. Fixes #161325.
27579         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get):
27580           Explicitely case to gint64. Possible valgrind error.
27581         * gst-libs/gst/play/play.c: (caps_set), (setup_size),
27582         (gst_play_tick_callback), (gst_play_change_state),
27583         (gst_play_dispose), (gst_play_init), (gst_play_class_init),
27584         (gst_play_set_location), (gst_play_get_location),
27585         (gst_play_seek_to_time), (gst_play_set_data_src),
27586         (gst_play_set_video_sink), (gst_play_set_audio_sink),
27587         (gst_play_set_visualization), (gst_play_connect_visualization),
27588         (gst_play_get_framerate), (gst_play_get_all_by_interface),
27589         (gst_play_new):
27590           Use playbin. Fixes #139749 and #147744.
27591         * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags):
27592           Add genre tag.
27593         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
27594         (audioscale_get_type), (gst_audioscale_base_init),
27595         (gst_audioscale_class_init), (gst_audioscale_expand_caps),
27596         (gst_audioscale_getcaps), (gst_audioscale_fixate),
27597         (gst_audioscale_link), (gst_audioscale_get_buffer),
27598         (gst_audioscale_decrease_rate), (gst_audioscale_increase_rate),
27599         (gst_audioscale_init), (gst_audioscale_dispose),
27600         (gst_audioscale_chain), (gst_audioscale_set_property),
27601         (gst_audioscale_get_property), (plugin_init):
27602           Indent properly.
27603         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
27604           Fix LPCM.
27605         * gst/qtdemux/qtdemux.c: (qtdemux_parse_udta),
27606         (qtdemux_tag_add_str), (qtdemux_tag_add_num),
27607         (qtdemux_tag_add_gnre), (qtdemux_video_caps):
27608           Add more metadata (fixes #162656).
27609
27610 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
27611
27612         * configure.ac:
27613           back to cvs
27614
27615 === release 0.8.7 ===
27616
27617 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
27618
27619         * NEWS:
27620         * RELEASE:
27621         * configure.ac:
27622           releasing 0.8.7, "Hyperspace"
27623
27624 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
27625
27626         patch by: Tim-Philipp Müller  <t.i.m@zen.co.uk>
27627
27628         * gst/playback/gstplaybasebin.c:
27629          Fix for #162924 - free caps after use, not before
27630
27631 2005-01-04  Thomas Vander Stichele  <thomas at apestaart dot org>
27632
27633         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
27634
27635         * gst/playback/gstplaybasebin.c:
27636         * gst/wavparse/gstwavparse.c:
27637           Fix for #154773 - fixes playback of small .wav files
27638
27639 2005-01-03  Thomas Vander Stichele  <thomas at apestaart dot org>
27640
27641         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
27642
27643         * gst/audioscale/gstaudioscale.c:
27644           Fix for #162819 - make audioscale reusable
27645           Fixes playback of more than one file with playbin/totem
27646
27647 2004-12-29  Thomas Vander Stichele  <thomas at apestaart dot org>
27648
27649         * gst/ffmpegcolorspace/avcodec.h:
27650         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
27651         * gst/ffmpegcolorspace/imgconvert.c:
27652           clean up the mess that made me cry and avoid needless duplication
27653
27654 2004-12-29  Thomas Vander Stichele  <thomas at apestaart dot org>
27655
27656         * gst/ffmpegcolorspace/imgconvert.c:
27657           give some indication of why we're segfaulting
27658
27659 2004-12-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27660
27661         * configure.ac:
27662           Fix indentation, fix v4l2 plugin detection.
27663         * ext/Makefile.am:
27664           Fix libmms location (Maciej, use diff -u!).
27665         * ext/alsa/gstalsa.c: (gst_alsa_init):
27666           Initialize caps cache to NULL.
27667         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
27668           Only change state on audiosink if it exists.
27669
27670 2004-12-28  Maciej Katafiasz  <mathrick@mathrick.org>
27671
27672         * gst/matroska/matroska-demux.c:
27673         * gst/matroska/matroska-ids.h:
27674         * gst/matroska/matroska-demux.h:
27675         Fix Vorbis streams failing to decode in some files, where cluster_time
27676         isn't 0, because then it doesn't send codec_priv before actual data.
27677         Remove time-based test and replace it with marker set on beginning of
27678         new stream
27679
27680 2004-12-28  David Schleef  <ds@schleef.org>
27681
27682         Merge patch from Ronald fixing problems with streaming
27683         text.
27684         * ext/cairo/gstcairo.c: (plugin_init):
27685         * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
27686         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
27687         (gst_textoverlay_video_chain), (gst_textoverlay_loop),
27688         (gst_textoverlay_font_init), (gst_textoverlay_init),
27689         (gst_textoverlay_set_property):
27690         * ext/cairo/gsttextoverlay.h:
27691
27692 2004-12-27  David Schleef  <ds@schleef.org>
27693
27694         * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
27695         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
27696         (gst_textoverlay_video_chain), (gst_textoverlay_loop),
27697         (gst_textoverlay_font_init), (gst_textoverlay_init),
27698         (gst_textoverlay_set_property): Improvements to actually
27699         render text as white on black outline on video, including
27700         font selection and horizontal/vertical alignment.  (Ronald's
27701         christmas present)
27702         * ext/cairo/gsttextoverlay.h:
27703
27704 2004-12-26  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
27705
27706         * ext/ogg/gstogg.c:
27707         * ext/ogg/gstogmparse.c:
27708           fix ogm[audio/video]parse plugin registration
27709           (riff won't load if bytestream is already loaded)
27710
27711 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
27712
27713         * gst/audioconvert/gstchannelmix.c:
27714           fix for GLIB < 2.4
27715
27716 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
27717
27718         * Makefile.am:
27719         * configure.ac:
27720           disable docs again until it actually passes make distcheck.
27721
27722 2004-12-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27723
27724         * gst/qtdemux/qtdemux.c: (qtdemux_type_get), (qtdemux_audio_caps):
27725         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
27726         (plugin_init):
27727           Add 3GP (variables name Q3GP because they can't start with a
27728           number). Add samr audio fourcc (used in .3gp files), decoder
27729           is work in progress. Also do a GST_WARNING instead of ERROR
27730           in case of unknown nodes, to decrease output.
27731
27732 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
27733
27734         * Makefile.am:
27735           really fix dist
27736
27737 2004-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
27738
27739         * configure.ac:
27740         * ext/speex/gstspeexdec.h:
27741         * ext/speex/gstspeexenc.h:
27742           Fixes #158382.  Make speex plugin compatible with both 1.0 and 1.1.
27743           Fix detection code in configure.ac
27744
27745 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27746
27747         * gst/matroska/matroska-demux.c:
27748         (gst_matroska_demux_parse_blockgroup):
27749           Save position, so that queries give proper return values. Don't
27750           know how this could ever have worked before...
27751
27752 2004-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
27753
27754         * configure.ac:
27755           Put additional LAME check inside the conditional.  Fixes #152339
27756
27757 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27758
27759         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
27760         (gst_avi_demux_stream_scan):
27761           Add some more debug. Fix logic error when setting movi offset
27762           while reading index.
27763
27764 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27765
27766         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
27767         (gst_avi_demux_stream_scan), (gst_avi_demux_handle_seek),
27768         (gst_avi_demux_process_next_entry):
27769           Add some debugging. Better detection of broken indexes and the
27770           accompanying index recovery. No infinite loops on state changes
27771           when we're still in our loopfunction.
27772
27773 2004-12-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27774
27775         * configure.ac:
27776           Fix up.
27777
27778 2004-12-22  Archana Shah  <archana.shah@wipro.com>
27779
27780         Reviewed by:  Ronald S. Bultje <rbultje@ronald.bitfreak.net>
27781
27782         * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_volume):
27783           Normalizing the value before setting
27784         (gst_sunaudiomixer_get_volume):
27785           Normalizing the value after getting. Fixes bug# 161980
27786
27787 2004-12-22  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
27788
27789         * Makefile.am: Make sure docs gets disted
27790         * docs/Makefile.am: Make sure all needed files get disted
27791         * gst-plugins.spec.in: latest updates
27792
27793 2004-12-22  Wim Taymans  <wim@fluendo.com>
27794
27795         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
27796         Revert patch 1.38 as clock distribution over schedulers does
27797         not work correcly in the core yet.
27798
27799 2004-12-21  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
27800
27801         * sys/oss/README: remove this file, which predates my birth
27802           (and which content is by far outdated)
27803
27804 2004-12-20  Stefan Kost  <ensonic@users.sf.net>
27805
27806         * Makefile.am:
27807         * configure.ac:
27808         * docs/Makefile.am:
27809         * docs/libs/Makefile.am:
27810         * docs/libs/gst-plugins-libs-docs.sgml:
27811         * docs/libs/gst-plugins-libs-sections.txt:
27812         * docs/libs/tmpl/gstgconf.sgml:
27813         * docs/upload.mak:
27814         * docs/version.entities.in:
27815           Added boilerplate gtk-doc files for plugin-libs documentation.
27816
27817 2004-12-19  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
27818
27819         * gst/auparse/gstauparse.c: fix int and float audio caps
27820
27821 2004-12-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27822
27823         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
27824         * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
27825           g_assert() can be a macro, don't use #ifdef inside it.
27826
27827 2004-12-19  Edward Hervey  <bilboed@bilboed.com>
27828
27829         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27830
27831         * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
27832         (gst_videorate_init), (gst_videorate_chain),
27833         (gst_videorate_change_state):
27834           Event handling (fixes #159986).
27835
27836 2004-12-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27837
27838         * gst-libs/gst/riff/riff-media.c:
27839         (gst_riff_create_video_caps_with_data):
27840           Add BLZ0 (Blizzard's version of DivX) fourcc.
27841
27842 2004-12-18  David Schleef  <ds@schleef.org>
27843
27844         * gst/tta/gstttadec.c: (gst_tta_dec_link): And yet another
27845         portability fix.
27846
27847 2004-12-18  David Schleef  <ds@schleef.org>
27848
27849         * gst/tta/ttadec.h: Disable some header code that isn't used
27850         and clearly isn't portable.
27851
27852 2004-12-18  David Schleef  <ds@schleef.org>
27853
27854         * gst/ffmpegcolorspace/imgconvert.c: (get_pix_fmt_info),
27855         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
27856         (avcodec_get_pix_fmt), (avpicture_layout),
27857         (avcodec_get_pix_fmt_loss), (avg_bits_per_pixel), (img_copy),
27858         (get_convert_table_entry), (img_convert), (img_get_alpha_info):
27859         Fix code to not use GCC extensions (and c99 extensions that
27860         Forte does not like.)
27861
27862 2004-12-19  Tim-Philipp Müller  <t.i.m@zen.co.uk>
27863
27864         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27865
27866         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
27867         (gst_deinterlace_chain):
27868           Rowstride fixes. Fixes #161039.
27869         * gst/videocrop/gstvideocrop.c: (gst_video_crop_init),
27870         (gst_video_crop_get_property), (gst_video_crop_add_to_struct_val),
27871         (gst_video_crop_getcaps), (gst_video_crop_link),
27872         (gst_video_crop_i420), (gst_video_crop_chain),
27873         (gst_video_crop_change_state):
27874           Rework of negotiation. Actually works now. Fixes #158650.
27875
27876 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27877
27878         * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_sint):
27879           That was very stupid.
27880
27881 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27882
27883         * gst/matroska/matroska-demux.c:
27884         (gst_matroska_demux_parse_blockgroup):
27885           Fix possible crasher.
27886
27887 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27888
27889         * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_uint),
27890         (gst_matroska_ebmlnum_sint), (gst_matroska_demux_parse_blockgroup):
27891           Lace sizes can be zero.
27892
27893 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27894
27895         * ext/musepack/gstmusepackdec.cpp:
27896           Fetch error return values. Fixes #161624.
27897         * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
27898           Really EOS.
27899
27900 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27901
27902         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index):
27903           Work for truncated (unfinished download etc.) files. Fixes #160514.
27904
27905 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27906
27907         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
27908           Fix for integer overflow. Makes #156001 not crash. Probably masks
27909           the real bug.
27910
27911 2004-12-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27912
27913         * gst/ac3parse/gstac3parse.c: (plugin_init):
27914           Parsers never have ranks. Fixes #159651.
27915
27916 2004-12-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
27917
27918         * gst/playback/gstdecodebin.c: (compare_ranks):
27919           make sure the facotries are ordered the same every time even if they
27920           have the same rank by using the name
27921         * gst/playback/gstdecodebin.c: (find_compatibles):
27922           make sure we don't add factories to the list twice
27923
27924 2004-12-16  David Schleef  <ds@schleef.org>
27925
27926         * configure.ac: look for musepack headers as musepack/*.h
27927         (fixes #159847)
27928         * ext/musepack/gstmusepackdec.h: use <musepack/*.h>
27929         * ext/musepack/gstmusepackreader.h: same
27930
27931 2004-12-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27932
27933         * gst-libs/gst/riff/riff-read.c:
27934         (gst_riff_read_strf_auds_with_data):
27935           Read extradata correctly (fixes #155879).
27936
27937 2004-12-16  David Schleef  <ds@schleef.org>
27938
27939         * gst/audioscale/gstaudioscale.c: allow passthru of >2 channel
27940         audio.  does _not_ attempt or allow conversion unless channels
27941         is 1 or 2.
27942
27943 2004-12-16  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
27944
27945         * tools/gst-launch-ext-m.m: fix mpeg and vob pipelines
27946
27947 2004-12-16  David Schleef  <ds@schleef.org>
27948
27949         * gst/audioscale/gstaudioscale.c: the resample library only
27950         handles 1 or 2 channels.  Change caps to compensate.
27951
27952 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27953
27954         * gst/matroska/matroska-demux.c: (aac_rate_idx), (aac_profile_idx),
27955         (gst_matroska_demux_audio_caps):
27956           Some MPEG-AAC hacks, because else it doesn't work...
27957
27958 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27959
27960         * gst-libs/gst/riff/riff-media.c:
27961         (gst_riff_create_video_caps_with_data),
27962         (gst_riff_create_video_template_caps):
27963           Add h264.
27964
27965 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27966
27967         * gst-libs/gst/audio/Makefile.am:
27968           Try to fix buildbot.
27969
27970 2004-12-16  Thomas Vander Stichele  <thomas at apestaart dot org>
27971
27972         * gst/tcp/gstmultifdsink.c:
27973           Clean up and uniformize debugging.
27974
27975 2004-12-16  Edward Hervey  <bilboed@bilboed.com>
27976
27977         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27978
27979         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
27980         (gst_dvd_demux_reset), (gst_dvd_demux_change_state):
27981         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_reset),
27982         (gst_mpeg_demux_change_state):
27983           Reset on ready. Fixes 160276.
27984
27985 2004-12-16  Sebastien Cote  <sc5@hermes.usherb.ca>
27986
27987         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27988
27989         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
27990         (gst_ffmpegcsp_pad_link):
27991           Fix memleak (#154815).
27992
27993 2004-12-16  James Bowes  <bowes@cs.dal.ca>
27994
27995         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27996
27997         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init),
27998         (gst_musicbrainz_init), (gst_musicbrainz_chain),
27999         (gst_musicbrainz_set_property), (gst_musicbrainz_get_property):
28000         * ext/musicbrainz/gsttrm.h:
28001           Add support for using a proxy server when getting a trm id from
28002           the MusicBrainz database (#149613).
28003
28004 2004-12-16  Christophe Fergeau  <teuf@gnome.org>
28005
28006         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28007
28008         * gst/playback/gstdecodebin.c: (new_pad), (close_link):
28009         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
28010           Fix memleaks (#157233).
28011
28012 2004-12-16  Sebastien Cote  <sc5@hermes.usherb.ca>
28013
28014         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28015
28016         * gst-libs/gst/resample/resample.c: (gst_resample_close):
28017         * gst-libs/gst/resample/resample.h:
28018         * gst/audioscale/gstaudioscale.c:
28019           Fix memleak (#159215).
28020
28021 2004-12-16  Toni Willberg  <toniw@iki.fi>
28022
28023         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28024
28025         * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
28026         * sys/oss/oss_probe.c: (main):
28027           Check for mono/stereo support (similar to samplerate probing),
28028           fixes #159433. Also add missing copyright header to oss_probe.c.
28029
28030 2004-12-15  David Schleef  <ds@schleef.org>
28031
28032         * configure.ac: add audioresample and cairo plugins.  Remove
28033         HAVE_MMX stuff, because it's not used.
28034         * ext/Makefile.am: same
28035         * ext/audioresample/Makefile.am: You are not ready for an
28036         audio resampling element based on audioresample.
28037         * ext/audioresample/gstaudioresample.c:
28038         * ext/audioresample/gstaudioresample.h:
28039         * ext/cairo/Makefile.am: You are not ready for overlay elements
28040         based on cairo.  Don't look too closely, these elements kinda
28041         suck right now.
28042         * ext/cairo/gstcairo.c: new
28043         * ext/cairo/gsttextoverlay.c: new
28044         * ext/cairo/gsttextoverlay.h: new
28045         * ext/cairo/gsttimeoverlay.c: new
28046         * ext/cairo/gsttimeoverlay.h: new
28047         * gst-libs/gst/media-info/media-info-priv.h: fix compile
28048         problem with compilers that don't support variadic macros.
28049
28050 2004-12-15  Balamurali Viswanathan  <balamurali.viswanathan@wipro.com>
28051
28052         Reviewed by:  David Schleef  <ds@schleef.org>
28053
28054         * sys/sunaudio/gstsunaudio.c: (plugin_init):  Apply patch from
28055         Bala, registering sunaudiosrc (oops!), and cleaning up code a
28056         bit.  Also ran indent-gst.
28057         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_init),
28058         (gst_sunaudiosrc_change_state), (gst_sunaudiosrc_get),
28059         (gst_sunaudiosrc_setparams):
28060
28061 2004-12-14  David Schleef  <ds@schleef.org>
28062
28063         * gst/festival/gstfestival.c: (gst_festival_chain): Set the
28064         output rate to 16000.  Should fix #160235.
28065
28066 2004-12-14  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
28067
28068         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
28069         Add typefinding for mpeg2 pes streams
28070
28071 2004-12-13  David Schleef  <ds@schleef.org>
28072
28073         * configure.ac:  Applied patch from bug #143659, making default
28074         sources and sinks OS-dependent (for Solaris), and added code
28075         for OS/X.
28076         * gconf/gstreamer.schemas.in: use OS-dependent sinks in gconf.
28077
28078 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
28079
28080         * gst-libs/gst/riff/riff-media.c:
28081           forgot to add h2.64 to avidemux template caps
28082
28083 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
28084
28085         * gst/wavenc/riff.h:
28086         * gst-libs/gst/riff/riff-media.c:
28087         * gst-libs/gst/riff/riff-ids.h:
28088         * gst/avi/gstavimux.c
28089         add 4CC code for VideoSoft h264 in AVI (VSSH)
28090           fixes bug #160655
28091         remove s323 from riff, it's quicktime specific :(
28092
28093 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
28094
28095         * gst/asfdemux/README
28096         * gst/wavenc/riff.h
28097         * gst-libs/gst/riff/riff-ids.h
28098         * gst-libs/gst/riff/riff-media.c
28099         * gst/qtdemux/qtdemux.c:
28100           add new 4CC codes for h263 related codecs
28101           fixes partially bug #155163
28102
28103 2004-12-12  Christian Fredrik Kalager Schaller  <christian at fluendo dot com>
28104
28105         * configure.ac: Update polyaudio requirement to 0.7
28106         * ext/polyp/polypsink.c: (create_stream): add patch from iain (158258)
28107
28108 2004-12-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
28109
28110         * gst/interleave/deinterleave.c:
28111         fix my name's spelling! :)
28112
28113 2004-12-11  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
28114
28115         * AUTHORS ChangeLog
28116         * gst/auparse/gstauparse.c
28117         * gst/interleave/deinterleave.c
28118         * gst/law/:
28119                 alaw-decode.c alaw-encode.c
28120                 mulaw-decode.c mulaw-encode.c
28121         * gst/oneton/gstoneton.c
28122         * sys/osxaudio/:
28123                 gstosxaudioelement.c gstosxaudiosink.c gstosxaudiosrc.c
28124         * sys/osxvideo/:
28125                 cocoawindow.h cocoawindow.m
28126                 osxvideosink.h osxvideosink.m
28127
28128         put the same mail address for Zaheer Abbas Merali everywhere
28129
28130 2004-12-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28131
28132         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_loop):
28133           Align by packetsize, and assert that we a packet available before
28134           playing. The first makes webstreams work (they often include
28135           trailing padding data in a packet), the second allows pausing a
28136           ASF stream in totem without getting demux errors afterwards.
28137
28138 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28139
28140         * ext/ogg/gstoggdemux.c: (get_relative):
28141           Check for non-NULL before accessing member (end-of-chain).
28142
28143 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28144
28145         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
28146         (cdparanoia_set_property), (cdparanoia_get_property):
28147         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
28148         (dvdnavsrc_set_property), (dvdnavsrc_get_property):
28149         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
28150         (dvdreadsrc_init), (dvdreadsrc_set_property),
28151         (dvdreadsrc_get_property):
28152         * sys/vcd/vcdsrc.c: (gst_vcdsrc_class_init),
28153         (gst_vcdsrc_set_property), (gst_vcdsrc_get_property):
28154           Synchronize property names where not yet the case. Devices are
28155           now device=X, other versions are deprecated (but still exist).
28156           Also use g_free() unconditionally.
28157         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
28158         (setup_source), (gst_play_base_bin_get_property):
28159           Expose source.
28160
28161 2004-12-09  Thomas Vander Stichele  <thomas at apestaart dot org>
28162
28163         * configure.ac: move GCONF macro outside conditional for the am
28164           conditional. Fixes #160439
28165
28166 2004-12-08  David Schleef  <ds@schleef.org>
28167
28168         * tools/gst-visualise-m.m: Switch to elements that currently
28169         exist.
28170
28171 2004-12-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28172
28173         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
28174           We love wrong commas.
28175
28176 2004-12-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28177
28178         * gst/matroska/matroska-demux.c:
28179         (gst_matroska_demux_handle_src_query):
28180           Don't set DEFAULT, unsupported - makes length display incorrectly
28181           in some cases.
28182
28183 2004-12-07  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
28184
28185         * gst/monoscope/README: remove blurb about files being GPL
28186         * gst/monoscope/gstmonoscope.c: Change license field to LGPL
28187         * gst/monoscope/monoscope.c: Change license to BSD with explanation
28188           monoscope is now effectively LGPL licensed
28189
28190 2004-12-07  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
28191
28192         * gst/monoscope/README: Update information to be more correct
28193         * gst/monoscope/convolve.c: Relicense to LGPL
28194         * gst/monoscope/convolve.h: Relicense to LGPL
28195
28196 2004-12-06  Arwed v. Merkatz <v.merkatz@gmx.net>
28197
28198         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
28199           set BUFFER_DURATION to correct values (mpeg1 audio frame length is fixed)
28200         * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link):
28201           set default_duration for mpeg1 audio
28202
28203 2004-12-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28204
28205         * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_close_audio):
28206         * ext/alsa/gstalsa.h:
28207           refactor big chunks of the core caps negotiation code to make it
28208           a lot faster, because people claim it's really slow
28209           (actually, just cache the getcaps when the device is opened)
28210
28211 2004-12-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28212
28213         * ext/a52dec/gsta52dec.c: (gst_a52dec_init),
28214         (gst_a52dec_handle_event), (gst_a52dec_update_streaminfo),
28215         (gst_a52dec_handle_frame), (gst_a52dec_chain),
28216         (gst_a52dec_change_state), (plugin_init):
28217         * ext/a52dec/gsta52dec.h:
28218           Do something useful with timestamps. Make chain-based (since
28219           there's really no reason to be loopbased).
28220         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
28221           Update current_byte/frame correctly.
28222
28223 2004-12-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28224
28225         * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags),
28226         (gst_ape_demux_stream_init):
28227           Forward tags, too.
28228
28229 2004-12-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28230
28231         * gst/apetag/apedemux.c: (gst_ape_demux_stream_init):
28232           Let's make sure we're done typefinding when detecting tags.
28233
28234 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28235
28236         * gst/matroska/ebml-read.c: (gst_ebml_read_class_init),
28237         (gst_ebml_read_init), (gst_ebml_read_use_event),
28238         (gst_ebml_read_element_id), (gst_ebml_peek_id),
28239         (gst_ebml_read_seek), (gst_ebml_read_skip),
28240         (gst_ebml_read_reserve), (gst_ebml_read_buffer),
28241         (gst_ebml_read_master):
28242         * gst/matroska/ebml-read.h:
28243         * gst/matroska/matroska-demux.c:
28244         (gst_matroska_demux_parse_contents),
28245         (gst_matroska_demux_loop_stream), (gst_matroska_demux_audio_caps):
28246           Disgustingly evil hack for working around INTERRUPT events and
28247           their extremely annoying habit of being a pain in the ass. We
28248           simply peek a cluster before reading any of it.
28249
28250 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28251
28252         * ext/musepack/gstmusepackdec.cpp:
28253           There's also floating point libmusepacks.
28254
28255 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28256
28257         * ext/faad/gstfaad.c: (gst_faad_chanpos_from_gst),
28258         (gst_faad_chanpos_to_gst), (gst_faad_chain):
28259           Set DURATION even if source buffer didn't. Also use increasing
28260           timestamps.
28261         * gst-libs/gst/riff/riff-media.c:
28262         (gst_riff_create_audio_caps_with_data):
28263           Block_align can have larger values than 8192.
28264
28265 2004-12-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28266
28267         * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link):
28268         * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link):
28269         * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link):
28270         * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link):
28271           Fix caps.
28272
28273 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28274
28275         * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
28276           Fix logic bug.
28277
28278 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28279
28280         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
28281           Yay, another one.
28282
28283 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28284
28285         * ext/esd/esdsink.c: (gst_esdsink_chain):
28286           Make error actually say something useful (fixes #156798).
28287         * gst-libs/gst/riff/riff-media.c:
28288         (gst_riff_create_video_caps_with_data),
28289         (gst_riff_create_video_template_caps):
28290           Add Intel Video 5.0 fourcc (IV50).
28291
28292 2004-12-01  Christophe Fergeau  <teuf@gnome.org>
28293
28294         * ext/mad/gstmad.c: (mpg123_parse_xing_header): fix xing header
28295         detection on mono and stereo mp3 files.
28296
28297 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28298
28299         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
28300           Don't crash on EMPTY caps (e.g. when the demuxer didn't recognize
28301           the contained stream).
28302
28303 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28304
28305         * ext/faad/gstfaad.c: (gst_faad_srcconnect), (gst_faad_chain):
28306           Oops, remove debug.
28307
28308 2004-12-01  Sebastien Cote  <sc5@hermes.usherb.ca>
28309
28310         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28311
28312         * gst/law/alaw-decode.c: (alawdec_getcaps):
28313         * gst/law/mulaw-decode.c: (mulawdec_getcaps):
28314           Prevent warnings when negotiating caps (fixes #159338).
28315
28316 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28317
28318         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
28319         (gst_ffmpegcsp_chain):
28320           Remove old leftover that shouldn't be there...
28321
28322 2004-12-01  Sebastien Cote  <sc5@hermes.usherb.ca>
28323
28324         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28325
28326         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
28327           Don't forward DISCONT events (fixes #159684).
28328
28329 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28330
28331         * gst/playback/gstplaybin.c: (remove_sinks), (setup_sinks):
28332           Unlink manually since sometimes bin disposal (and therefore
28333           pad unlinking) is delayed, which will cause a new media file
28334           to not be able to start playing instantly.
28335
28336 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28337
28338         * gst/playback/gststreaminfo.c: (stream_info_mute_pad):
28339           On mute of an unlinked stream, check for pad availability so
28340           we don't crash on unlinked pad.
28341
28342 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28343
28344         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
28345         (gst_avi_demux_massage_index):
28346           Fix quite humiliating bug in omitting 0-sized index chunks but
28347           forgetting to count them for timestamps.
28348
28349 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28350
28351         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
28352           Actually leave the loop if we failed to sync. Don't crash.
28353
28354 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28355
28356         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream),
28357         (gst_dvd_demux_process_private):
28358         * gst/mpegstream/gstdvddemux.h:
28359           Fix crash (#159759). Doesn't work, though. :-(.
28360
28361 2004-11-28  Benjamin Otte  <otte@gnome.org>
28362
28363         * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
28364           more overwriting protection due to modifying channels one by one
28365           instead of all at once
28366
28367 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28368
28369         * gst/audioconvert/gstchannelmix.c:
28370         (gst_audio_convert_fill_normalize):
28371           Normalize using absolute values.
28372
28373 2004-11-28  Julien MOUTTE  <julien@moutte.net>
28374
28375         * configure.ac:
28376         * ext/Makefile.am:
28377         * ext/directfb/Makefile.am:
28378         * ext/directfb/directfbvideosink.c: (gst_directfbvideosink_create),
28379         (gst_directfbvideosink_get_pixel_format),
28380         (gst_directfbvideosink_get_format_from_fourcc),
28381         (gst_directfbvideosink_fixate), (gst_directfbvideosink_getcaps),
28382         (gst_directfbvideosink_sink_link),
28383         (gst_directfbvideosink_change_state),
28384         (gst_directfbvideosink_chain), (gst_directfbvideosink_buffer_free),
28385         (gst_directfbvideosink_buffer_alloc),
28386         (gst_directfbvideosink_interface_supported),
28387         (gst_directfbvideosink_interface_init),
28388         (gst_directfbvideosink_navigation_send_event),
28389         (gst_directfbvideosink_navigation_init),
28390         (gst_directfbvideosink_set_property),
28391         (gst_directfbvideosink_get_property),
28392         (gst_directfbvideosink_finalize), (gst_directfbvideosink_init),
28393         (gst_directfbvideosink_base_init),
28394         (gst_directfbvideosink_class_init),
28395         (gst_directfbvideosink_get_type), (plugin_init):
28396         * ext/directfb/directfbvideosink.h: Adding a first version of
28397         directfbvideosink.
28398         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): Initializing some
28399         more.
28400
28401 2004-11-28  Benjamin Otte  <otte@gnome.org>
28402
28403         * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
28404           walk the samples backwards if out_channels > in_channels so we don't
28405           overwrite data
28406
28407 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28408
28409         * gst/audioconvert/Makefile.am:
28410         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
28411         (gst_audio_convert_link), (gst_audio_convert_change_state),
28412         (gst_audio_convert_channels):
28413         * gst/audioconvert/gstchannelmix.c:
28414         (gst_audio_convert_unset_matrix),
28415         (gst_audio_convert_fill_identical),
28416         (gst_audio_convert_fill_compatible),
28417         (gst_audio_convert_detect_pos), (gst_audio_convert_fill_one_other),
28418         (gst_audio_convert_fill_others),
28419         (gst_audio_convert_fill_normalize),
28420         (gst_audio_convert_fill_matrix), (gst_audio_convert_setup_matrix),
28421         (gst_audio_convert_passthrough), (gst_audio_convert_mix):
28422         * gst/audioconvert/gstchannelmix.h:
28423           Implement a channel mixer.
28424
28425 2004-11-28  Martin Soto  <martinsoto@users.sourceforge.net>
28426
28427         * ext/alsa/gstalsasink.c (gst_alsa_sink_loop):
28428         * ext/alsa/gstalsa.h:
28429         * ext/alsa/gstalsa.c (gst_alsa_set_clock):
28430         Make alsasink actually honor gst_element_set_clock and use that
28431         clock instead of its internal one.
28432
28433 2004-11-27  Christophe Fergeau  <teuf@gnome.org>
28434
28435         * gst/playback/gstplaybasebin.c: (setup_source): fixed a caps leak
28436         (gst_play_base_bin_change_state): nullify source and decoder when
28437         going from READY to NULL so that we don't try to do weird stuff with
28438         them when going from NULL to READY
28439         * gst/playback/gstplaybin.c: (gst_play_bin_init): use gst_object_unref
28440         instead of g_object_unref
28441         (gen_video_element), (gen_audio_element): more refcounting fixes, now
28442         it should be correct
28443         (gst_play_bin_change_state): don't call remove_sinks if we are
28444         currently disposing the object
28445
28446 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28447
28448         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
28449           Don't forget bass if it's there. Else left channel is silent...
28450
28451 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28452
28453         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop),
28454         (gst_a52dec_change_state):
28455           Don't do sample adjusting anymore, we use float audio now.
28456         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
28457           Don't fixate to non-existing properties.
28458
28459 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28460
28461         * ext/a52dec/gsta52dec.c: (gst_a52dec_channels),
28462         (gst_a52dec_change_state):
28463           Advertise that we can do surround sound.
28464
28465 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28466
28467         * ext/a52dec/gsta52dec.c: (gst_a52dec_reneg):
28468           Add buffer-frames=0.
28469         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get_type),
28470         (dvdreadsrc_init), (dvdreadsrc_get_event_mask),
28471         (dvdreadsrc_get_query_types), (dvdreadsrc_get_formats),
28472         (dvdreadsrc_srcpad_event), (dvdreadsrc_srcpad_query),
28473         (_seek_title), (_seek_chapter), (get_next_cell_for), (_read),
28474         (seek_sector), (dvdreadsrc_get), (dvdreadsrc_open_file),
28475         (dvdreadsrc_change_state), (dvdreadsrc_uri_get_type),
28476         (dvdreadsrc_uri_get_protocols), (dvdreadsrc_uri_get_uri),
28477         (dvdreadsrc_uri_set_uri), (dvdreadsrc_uri_handler_init):
28478         * ext/dvdread/dvdreadsrc.h:
28479           Add seeking, querying for bytes, sectors, title, angle and
28480           chapter. Handle multiple chapters. Relicense to LGPL because
28481           Billy agreed on that (thanks Billy!).
28482
28483 2004-11-27  Christophe Fergeau  <teuf@gnome.org>
28484
28485         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose):
28486         call parent dispose method
28487
28488 2004-11-27  Martin Soto  <martinsoto@users.sourceforge.net>
28489
28490         * gst-libs/gst/audio/audioclock.c (gst_audio_clock_set_active)
28491         (gst_audio_clock_get_internal_time):
28492         Fix active <-> inactive transitions: ensure time value always
28493         grows and avoid abrupt value changes.
28494
28495 2004-11-27  Arwed v. Merkatz <v.merkatz@gmx.net>
28496
28497         * configure.ac:
28498         * gst/tta/Makefile.am:
28499         * gst/tta/crc32.h:
28500         * gst/tta/filters.h:
28501         * gst/tta/gsttta.c:
28502         * gst/tta/gstttadec.c:
28503         * gst/tta/gstttadec.h:
28504         * gst/tta/gstttaparse.c:
28505         * gst/tta/gstttaparse.h:
28506         * gst/tta/ttadec.h:
28507           added TTA parser and decoder
28508
28509 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28510
28511         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
28512         (probe_triggered), (check_queue), (buffer_underrun),
28513         (buffer_running), (buffer_overrun), (gen_source_element),
28514         (setup_source):
28515         * gst/playback/gstplaybasebin.h:
28516           Implement buffering. Needs some more work.
28517
28518 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28519
28520         * ext/theora/theoradec.c: (theora_dec_chain):
28521           Fix ilog mask range overflow.
28522
28523 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28524
28525         * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
28526           Don't omit the last (which in case of dmix is the only :) )
28527           channel count. Don't set channels if <= 2.
28528
28529 2004-11-26  Christophe Fergeau  <teuf@gnome.org>
28530
28531         * gst/playback/gstplaybin.c: (gen_video_element),
28532         (gen_audio_element): Removed 2 obsolete comments
28533
28534 2004-11-26  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
28535
28536         * ext/vorbis/oggvorbisenc.c
28537         * ext/vorbis/vorbisenc.c :
28538           change description fields of those plugins to differentiate them
28539           (pitivi show Encoders by description, they had the same one)
28540
28541 2004-11-25  Christophe Fergeau  <teuf@gnome.org>
28542
28543         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28544
28545         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
28546         (gst_play_bin_set_property), (gen_video_element),
28547         (gen_audio_element):
28548           Refcounting fixes for provided audio-/videosinks.
28549
28550 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28551
28552         * gst/playback/gstplaybin.c: (gen_video_element),
28553         (gen_audio_element), (setup_sinks), (gst_play_bin_change_state):
28554           Don't reference all sinks, but only the video- and audiosinks.
28555           The vis. element should be disposed when we're done with it.
28556           We don't have any reason to keep it around. This fixes warnings
28557           when reusing playbin for playing multiple audio files with
28558           vis. enabled. Also release audio device on pause - idea stolen
28559           from Rhythmbox.
28560
28561 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28562
28563         * ext/a52dec/gsta52dec.c: (gst_a52dec_channels), (gst_a52dec_push),
28564         (gst_a52dec_reneg), (gst_a52dec_loop), (plugin_init):
28565         * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
28566         * ext/alsa/gstalsaplugin.c: (plugin_init):
28567         * ext/dts/gstdtsdec.c: (gst_dtsdec_channels),
28568         (gst_dtsdec_renegotiate), (gst_dtsdec_loop), (plugin_init):
28569         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_chanpos_from_gst),
28570         (gst_faad_chanpos_to_gst), (gst_faad_sinkconnect),
28571         (gst_faad_srcgetcaps), (gst_faad_srcconnect), (gst_faad_chain),
28572         (gst_faad_change_state), (plugin_init):
28573         * ext/faad/gstfaad.h:
28574         * ext/vorbis/vorbis.c: (plugin_init):
28575         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
28576         * gst-libs/gst/audio/Makefile.am:
28577         * gst-libs/gst/audio/audio.c: (plugin_init):
28578         * gst-libs/gst/audio/multichannel.c:
28579         (gst_audio_check_channel_positions),
28580         (gst_audio_get_channel_positions),
28581         (gst_audio_set_channel_positions),
28582         (gst_audio_set_structure_channel_positions_list),
28583         (add_list_to_struct), (gst_audio_set_caps_channel_positions_list),
28584         (gst_audio_fixate_channel_positions):
28585         * gst-libs/gst/audio/multichannel.h:
28586         * gst-libs/gst/audio/testchannels.c: (main):
28587         * gst/audioconvert/gstaudioconvert.c:
28588         (gst_audio_convert_class_init), (gst_audio_convert_init),
28589         (gst_audio_convert_dispose), (gst_audio_convert_getcaps),
28590         (gst_audio_convert_parse_caps), (gst_audio_convert_link),
28591         (gst_audio_convert_fixate), (gst_audio_convert_channels):
28592         * gst/audioconvert/plugin.c: (plugin_init):
28593           Surround sound support.
28594
28595 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28596
28597         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
28598           Fix position for discont if we're close as well. Nitpicking, but
28599           saves a few milliseconds of extra waiting or skipping.
28600
28601 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28602
28603         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter):
28604           We sometimes need parsers for playback, so add those too.
28605
28606 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28607
28608         * configure.ac:
28609         * gst/apetag/Makefile.am:
28610         * gst/apetag/apedemux.c: (gst_ape_demux_get_type),
28611         (gst_ape_demux_base_init), (gst_ape_demux_class_init),
28612         (gst_ape_demux_init), (gst_ape_demux_get_src_formats),
28613         (gst_ape_demux_get_src_query_types),
28614         (gst_ape_demux_handle_src_query), (gst_ape_demux_get_event_mask),
28615         (gst_ape_demux_handle_src_event), (gst_ape_demux_handle_event),
28616         (gst_ape_demux_typefind_peek), (gst_ape_demux_typefind_get_length),
28617         (gst_ape_demux_typefind_suggest), (gst_ape_demux_typefind),
28618         (gst_ape_demux_parse_tags), (gst_ape_demux_stream_init),
28619         (gst_ape_demux_stream_data), (gst_ape_demux_loop),
28620         (gst_ape_demux_change_state):
28621         * gst/apetag/apedemux.h:
28622         * gst/apetag/apetag.c: (plugin_init):
28623         * gst/typefind/gsttypefindfunctions.c: (apetag_type_find),
28624         (plugin_init):
28625           APE v1/2 tag reader plus typefind function.
28626
28627 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28628
28629         * configure.ac:
28630         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
28631         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
28632           Remove hacks for older core. Require newer core version
28633           accordingly.
28634
28635 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28636
28637         * gst/cdxaparse/Makefile.am:
28638         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_get_type),
28639         (gst_cdxaparse_class_init), (gst_cdxaparse_init),
28640         (gst_cdxaparse_loop), (gst_cdxaparse_change_state), (plugin_init):
28641         * gst/cdxaparse/gstcdxaparse.h:
28642         * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_get_type),
28643         (gst_cdxastrip_base_init), (gst_cdxastrip_class_init),
28644         (gst_cdxastrip_init), (gst_cdxastrip_get_src_formats),
28645         (gst_cdxastrip_get_src_query_types),
28646         (gst_cdxastrip_handle_src_query), (gst_cdxastrip_get_event_mask),
28647         (gst_cdxastrip_handle_src_event), (gst_cdxastrip_strip),
28648         (gst_cdxastrip_sync), (gst_cdxastrip_handle_event),
28649         (gst_cdxastrip_chain), (gst_cdxastrip_change_state):
28650         * gst/cdxaparse/gstcdxastrip.h:
28651           SVCD/VCD header stripping separated from CDXA image parsing.
28652         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
28653         (plugin_init):
28654           Add VCD/SVCD header typefinding for VCD/SVCD.
28655         * sys/vcd/vcdsrc.c: (gst_vcdsrc_get_type), (gst_vcdsrc_base_init),
28656         (gst_vcdsrc_class_init), (gst_vcdsrc_init),
28657         (gst_vcdsrc_set_property), (gst_vcdsrc_get_property),
28658         (gst_vcdsrc_get_event_mask), (gst_vcdsrc_get_query_types),
28659         (gst_vcdsrc_get_formats), (gst_vcdsrc_srcpad_event),
28660         (gst_vcdsrc_srcpad_query), (gst_vcdsrc_get),
28661         (gst_vcdsrc_open_file), (gst_vcdsrc_close_file),
28662         (gst_vcdsrc_change_state), (gst_vcdsrc_msf),
28663         (gst_vcdsrc_recalculate), (gst_vcdsrc_uri_get_type),
28664         (gst_vcdsrc_uri_get_protocols), (gst_vcdsrc_uri_get_uri),
28665         (gst_vcdsrc_uri_set_uri), (gst_vcdsrc_uri_handler_init):
28666         * sys/vcd/vcdsrc.h:
28667           Fix up, add seeking, querying, URI interface. Works in totem now.
28668
28669 2004-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
28670
28671         * configure.ac:
28672           back to CVS
28673
28674 === release 0.8.6 ===
28675
28676 2004-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
28677
28678         * NEWS:
28679         * RELEASE:
28680         * configure.ac:
28681         * po/af.po:
28682         * po/az.po:
28683         * po/cs.po:
28684         * po/en_GB.po:
28685         * po/hu.po:
28686         * po/it.po:
28687         * po/nb.po:
28688         * po/nl.po:
28689         * po/or.po:
28690         * po/sq.po:
28691         * po/sr.po:
28692         * po/sv.po:
28693         * po/uk.po:
28694           releasing 0.8.6, "IOU Love"
28695
28696 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
28697
28698         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
28699
28700         * gst/playback/gstplaybasebin.c:
28701           Fix unplayable files error handling.  Fixes #158365
28702
28703 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
28704
28705         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
28706
28707         * gst/typefind/gsttypefindfunctions.c:
28708           Fix broken mp3 typefinding.  Fixes #158375
28709
28710 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
28711
28712         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
28713
28714         * ext/ogg/gstoggdemux.c:
28715           Fix sync on broken files.  Fixes #158976
28716
28717 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
28718
28719         patch by: Edward Hervey <bilboed@bilboed.com>
28720
28721         * ext/libpng/gstpngenc.c:
28722           Copy over buffer properties.  Fixes #158832
28723
28724 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
28725
28726         patch by: Tim-Philipp Müller <t.i.m@zen.co.uk>
28727
28728         * ext/dvdread/dvdreadsrc.c:
28729           Fixes invalid reads (#158462)
28730
28731 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
28732
28733         * sys/v4l/gstv4lsrc.c:
28734         * sys/v4l/gstv4lsrc.h:
28735         * sys/v4l/v4lsrc_calls.c:
28736           Probe less and cache it.  Fixes #159187.
28737
28738 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
28739
28740         * gst/videorate/gstvideorate.c:
28741           Handle all video formats. Fixes #159186.
28742
28743 2004-11-16  Jan Schmidt  <thaytan@mad.scientist.com>
28744         * gst/synaesthesia/gstsynaesthesia.c:
28745         (gst_synaesthesia_class_init), (gst_synaesthesia_init),
28746         (gst_synaesthesia_dispose), (gst_synaesthesia_finalize),
28747         (gst_synaesthesia_sink_link), (gst_synaesthesia_src_getcaps),
28748         (gst_synaesthesia_src_link), (gst_synaesthesia_chain),
28749         (gst_synaesthesia_change_state), (plugin_init):
28750         Fix up synaesthesia to work under different samplerates/ buffer sizes.
28751         Force 320x200 output, as that's the only thing the underlying
28752         synaesthesia implementation supports. Still needs to be made
28753         re-entrant.
28754
28755 2004-11-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28756
28757         * configure.ac:
28758           Fix mpeg2enc configure check (similar to mplex check below).
28759
28760 2004-11-14  Koop Mast  <kwm@rainbow-runner.nl>
28761
28762         reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28763
28764         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
28765           Fix for gcc-2.95 (fixes #158221).
28766
28767 2004-11-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28768
28769         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
28770           Re-add clock distribution hack (until new core is released).
28771           Fixes #158125.
28772
28773 2004-11-13  Arwed v. Merkatz  <v.merkatz@gmx.net>
28774         * configure.ac:
28775           fix mplex configure check segfaulting on some systems (bug #140994)
28776
28777 2004-11-13  Benjamin Otte  <otte@gnome.org>
28778
28779         * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait):
28780           add debugging
28781         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
28782           do a wait when we enter the loop func with no data available to
28783           write instead of getting into an 100% CPU loop by just returning and
28784           being called again by the scheduler
28785
28786 2004-11-13  Jan Schmidt  <thaytan@mad.scientist.com>
28787
28788         * configure.ac:
28789         * ext/libvisual/visual.c: (gst_visual_get_type),
28790         (libvisual_log_handler), (gst_visual_getcaps),
28791         (gst_visual_srclink), (gst_visual_change_state), (make_valid_name),
28792         (plugin_init):
28793           Update libvisual to 0.1.7. Link in the debug handling to gstreamer
28794         * ext/smoothwave/Makefile.am:
28795         * ext/smoothwave/demo-osssrc.c: (main):
28796         * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_class_init),
28797         (gst_smoothwave_init), (gst_smoothwave_dispose), (gst_sw_sinklink),
28798         (gst_sw_srclink), (gst_smoothwave_chain), (gst_sw_change_state),
28799         (plugin_init):
28800         * ext/smoothwave/gstsmoothwave.h:
28801           Make gstsmoothwave a working element in the 20th century.
28802
28803         * gst/chart/gstchart.c: (gst_chart_init), (gst_chart_srcconnect):
28804           Fix incorrect link function
28805
28806 2004-11-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28807
28808         * gst/volume/gstvolume.c:
28809           Allow buffer-frames=0.
28810
28811 2004-11-12 Iain <iaingnome@gmail.com>
28812
28813         * configure.ac: Check for polypaudio
28814
28815         * ext/Makefile.am: Build the polyp dir
28816
28817         * ext/polyp: The polypsink sources.
28818
28819 2004-10-30 Iain <iaingnome@gmail.com>
28820
28821         * gst/interleave/interleave.c (interleave_unlink): Change the src pads
28822         caps to reflect the new number of channels.
28823
28824 2004-11-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28825
28826         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
28827           Fix for negotiation order problem. This would show when the
28828           ALSA loopfuction was called before any other function. ALSA
28829           wouldn't do anything because we're not negotiated yet, leading
28830           to an infinite loop. Showed in e.g. Rhythmbox. Fixes #158006.
28831
28832 2004-11-11  Tim-Philipp Müller  <t.i.m@zen.co.uk>
28833
28834         reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28835
28836         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
28837           No warnings (#157986).
28838
28839 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28840
28841         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
28842           Prefer apev1/2 and id3v1 (at end of file) over musepack.
28843
28844 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28845
28846         * gst/matroska/matroska-demux.c: (gst_matroska_demux_loop_stream):
28847           Signal no-more-pads (so it works in playbin).
28848
28849 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28850
28851         * ext/musepack/gstmusepackreader.cpp:
28852           Workaround for older core.
28853
28854 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28855
28856         * gst/ffmpegcolorspace/imgconvert.c: (yuv420p_to_yuv422):
28857           Actually test for odd width/height rather than testing whether
28858           a temporary variable that was 0 before we subtracted 1 is now
28859           not equal to zero (which it always is).
28860
28861 2004-11-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
28862
28863         * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
28864         Fix compilation if HAVE_XVIDEO is not defined
28865
28866 2004-11-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
28867
28868         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
28869         Fix compilation if HAVE_XVIDEO is not defined
28870
28871 2004-11-11  Jan Schmidt  <thaytan@mad.scientist.com>
28872
28873         * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
28874         (gst_goom_dispose), (gst_goom_sinkconnect), (gst_goom_chain),
28875         (gst_goom_change_state), (plugin_init):
28876         Use the bytestream adapter so goom doesn't depend on the input
28877         buffer size.
28878         Add a debug category
28879
28880 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28881
28882         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
28883           Only set hardware parameters *after* negotiation. Before
28884           negotiation, it will set ANY and that seems to cause crashes
28885           (see e.g. #151288, #153227).
28886
28887 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28888
28889         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
28890           This seems to be antique leftover. It needs to pass error
28891           checking.
28892         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
28893         (gst_sdlvideosink_deinitsdl), (gst_sdlvideosink_initsdl),
28894         (gst_sdlvideosink_destroy), (gst_sdlvideosink_create),
28895         (gst_sdlvideosink_sinkconnect), (gst_sdlvideosink_chain):
28896           Fix GstXOverlay implementation (#151059).
28897
28898 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28899
28900         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
28901           Don't assert (#157853).
28902
28903 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28904
28905         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
28906           Fix bytes/samples confustion.
28907         (gst_alsa_sink_mmap), (gst_alsa_sink_loop):
28908           Fix for underrun (#144389).
28909
28910 2004-11-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28911
28912         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
28913           Disable halfway-seek for pending release (since it needs a new
28914           core release).
28915
28916 2004-11-09  Thomas Vander Stichele  <thomas at apestaart dot org>
28917
28918         * sys/v4l/gstv4lsrc.c:
28919         * sys/v4l/gstv4lsrc.h:
28920         * sys/v4l/v4lsrc_calls.c:
28921           add autoprobe-fps property so we can separate autoprobing parts
28922
28923 2004-11-09  Thomas Vander Stichele  <thomas at apestaart dot org>
28924
28925         * sys/v4l/gstv4lsrc.c:
28926         * sys/v4l/v4lsrc_calls.c:
28927         initialise fourcc to catch unset fourcc's, and debug
28928
28929 2004-11-09  Wim Taymans  <wim@fluendo.com>
28930
28931         * gst/playback/README:
28932         * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
28933         * gst/playback/gstplaybin.c: (gst_play_bin_init),
28934         (gst_play_bin_dispose), (gst_play_bin_set_property),
28935         (remove_sinks), (setup_sinks), (gst_play_bin_change_state),
28936         (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
28937         (gst_play_bin_get_formats), (gst_play_bin_convert),
28938         (gst_play_bin_get_query_types), (gst_play_bin_query):
28939         Cleanups and some more documentation.
28940
28941 2004-11-09  Jan Schmidt  <thaytan@mad.scientist.com>
28942
28943         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
28944         (gst_cacasink_init), (gst_cacasink_chain):
28945         * ext/libcaca/gstcacasink.h:
28946         Cacasink inherits from VideoSink, so let that store the clock.
28947
28948 2004-11-09  Wim Taymans  <wim@fluendo.com>
28949
28950         * gst/playback/README:
28951         * gst/playback/gstplaybasebin.c: (group_destroy), (group_is_muted),
28952         (add_stream), (unknown_type), (add_element_stream), (no_more_pads),
28953         (probe_triggered), (preroll_unlinked), (new_decoded_pad),
28954         (gst_play_base_bin_change_state), (gst_play_base_bin_found_tag):
28955         * gst/playback/gstplaybin.c: (gen_vis_element), (remove_sinks),
28956         (setup_sinks):
28957         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute),
28958         (gst_stream_info_is_mute), (gst_stream_info_set_property):
28959         * gst/playback/gststreaminfo.h:
28960         Updated README.
28961         Only switch groups if all streams have muted (EOSed).
28962         Send Tags in sync with the stream playback instead of in
28963         the playback/preroll phase.
28964         Some cleanups, free the fakesrc elements.
28965
28966 2004-11-09  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28967
28968         * ext/alsa/gstalsa.c: (gst_alsa_get_caps_internal):
28969           buffer-frames property was missing
28970         * ext/arts/gst_arts.c:
28971           rate missing from sinkcaps
28972         * ext/audiofile/gstafparse.c:
28973         * ext/audiofile/gstafsink.c:
28974         * ext/audiofile/gstafsrc.c:
28975         * ext/swfdec/gstswfdec.c:
28976           int audio doesn't know buffer-frames
28977         * ext/cdparanoia/gstcdparanoia.c:
28978           int audio doesn't know chunksize either
28979         * ext/nas/nassink.c:
28980           it's endianness, not endianess
28981         * gst-libs/gst/audio/audio.h:
28982           make float standard pad template caps really describe float
28983         * gst/law/mulaw.c: (linear_factory):
28984           signed only, please
28985         * gst/mpegstream/gstdvddemux.c:
28986           widths of 20 are not valid
28987
28988 2004-11-08  Thomas Vander Stichele  <thomas at apestaart dot org>
28989
28990         Submitted by: Luca Ferretti <elle.uca@infinito.it>
28991
28992         * po/LINGUAS:
28993         * po/it.po:
28994           Add Italian
28995
28996 2004-11-08  Wim Taymans  <wim@fluendo.com>
28997
28998         * gst/playback/README:
28999         * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
29000         * gst/playback/gstplaybasebin.c: (probe_triggered),
29001         (gst_play_base_bin_change_state):
29002         Updated README, added more comments for fixmes etc..
29003
29004 2004-11-08  Wim Taymans  <wim@fluendo.com>
29005
29006         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
29007         We can remove this hack now.
29008
29009 2004-11-08  Wim Taymans  <wim@fluendo.com>
29010
29011         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_ayuv),
29012         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
29013         (gst_videomixer_blend_buffers), (gst_videomixer_loop):
29014         Only mix AYUV for maximum quality.
29015
29016 2004-11-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29017
29018         * ext/ogg/gstoggdemux.c: (get_relative), (gst_ogg_demux_src_query),
29019         (gst_ogg_demux_push), (gst_ogg_pad_push):
29020           Let's act as if we're synchronized now! :).
29021         * ext/theora/theoradec.c: (theora_dec_chain):
29022           Add some debug.
29023
29024 2004-11-08  Wim Taymans  <wim@fluendo.com>
29025
29026         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
29027         (gst_alpha_set_property), (gst_alpha_sink_link),
29028         (gst_alpha_set_ayuv), (gst_alpha_set_i420),
29029         (gst_alpha_chroma_key_ayuv), (gst_alpha_chroma_key_i420),
29030         (gst_alpha_init_params), (gst_alpha_chain):
29031         Implement alpha functions for AYUV too, this increases
29032         accuracy quite a bit.
29033
29034 2004-11-08  Wim Taymans  <wim@fluendo.com>
29035
29036         * gst/ffmpegcolorspace/avcodec.h:
29037         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
29038         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
29039         (gst_ffmpegcsp_avpicture_fill):
29040         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
29041         (gst_ffmpegcsp_caps_remove_format_info):
29042         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
29043         (shrink12), (img_get_alpha_info), (deinterlace_line),
29044         (deinterlace_line_inplace):
29045         * gst/ffmpegcolorspace/imgconvert_template.h:
29046         Added AYUV colorspace and handle RGBA a bit more respectful.
29047
29048 2004-11-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29049
29050         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
29051           Actually always send a discont (cornercase when resending the
29052           same serial-tagged chain twice).
29053
29054 2004-11-08  Julien MOUTTE  <julien@moutte.net>
29055
29056         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_clear),
29057         (gst_ximagesink_finalize):
29058         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
29059         (gst_xvimagesink_finalize): Some more cleanups, leaks fixed and checks.
29060
29061 2004-11-08  Wim Taymans  <wim@fluendo.com>
29062
29063         * gst/typefind/gsttypefindfunctions.c: (aac_type_find):
29064         Don't segfault on NULL data.
29065
29066 2004-11-08  Wim Taymans  <wim@fluendo.com>
29067
29068         * gst/playback/gstdecodebin.c: (unlinked):
29069         * gst/playback/gstplay-marshal.list:
29070         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
29071         (gst_play_base_bin_init), (group_create), (get_active_group),
29072         (get_building_group), (group_destroy), (group_commit),
29073         (queue_overrun), (remove_groups), (add_stream), (unknown_type),
29074         (add_element_stream), (no_more_pads), (probe_triggered),
29075         (preroll_unlinked), (new_decoded_pad), (removed_decoded_pad),
29076         (state_change), (setup_source), (gst_play_base_bin_get_property),
29077         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
29078         (gst_play_base_bin_link_stream),
29079         (gst_play_base_bin_get_streaminfo):
29080         * gst/playback/gstplaybasebin.h:
29081         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
29082         (remove_sinks), (setup_sinks), (gst_play_bin_change_state):
29083         Add support for chained ogg files. Prepare for playlist
29084         support. This patch introduces the concept of pad groups, which
29085         together compose one playable media file.
29086
29087 2004-11-07  David Schleef  <ds@schleef.org>
29088
29089         * testsuite/gst-lint: Check for pad templates that aren't statically
29090         scoped.
29091
29092 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29093
29094         * configure.ac:
29095         * ext/Makefile.am:
29096         * ext/musepack/Makefile.am:
29097         * ext/musepack/gstmusepackdec.cpp:
29098         * ext/musepack/gstmusepackdec.h:
29099         * ext/musepack/gstmusepackreader.cpp:
29100         * ext/musepack/gstmusepackreader.h:
29101           Add musepack decoder.
29102         * ext/faad/gstfaad.c: (gst_faad_base_init):
29103           Make pad templates static.
29104         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
29105         (plugin_init):
29106           Add musepack typefinder, make mp3 typefinding work halfway stream,
29107           which doesn't actually work yet because id3demux doesn't implement
29108           _get_length().
29109
29110 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29111
29112         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
29113         (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop):
29114           Fix interrupt event handling (#144436).
29115
29116 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29117
29118         * ext/mad/gstid3tag.c: (gst_id3_tag_do_typefind):
29119           Hide unused glory.
29120
29121 2004-11-06  Tim-Philipp Müller  <t.i.m@zen.co.uk>
29122
29123         reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29124
29125         * ext/vorbis/vorbisenc.c: (raw_caps_factory):
29126           Fix weird caps (#157548).
29127
29128 2004-11-06  Tim-Philipp Müller  <t.i.m@zen.co.uk>
29129
29130         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29131
29132         * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsm_caps_nego):
29133           Add missing NULL terminator (#157543).
29134
29135 2004-11-05  Thomas Vander Stichele  <thomas at apestaart dot org>
29136
29137         * gst/tcp/gsttcp.h:
29138         * gst/tcp/gsttcpclientsink.c:
29139         * gst/tcp/gsttcpclientsrc.c:
29140         * gst/tcp/gsttcpserversink.c:
29141         * gst/tcp/gsttcpserversrc.c:
29142           ports can go up to 65535.  Move common defines to gsttcp.h
29143
29144 2004-11-05  Wim Taymans  <wim@fluendo.com>
29145
29146         * gst/videotestsrc/videotestsrc.c: (paint_setup_Y41B),
29147         (paint_hline_Y41B), (paint_setup_Y42B), (paint_hline_Y42B):
29148         Added two more colorspaces.
29149
29150 2004-11-05  Wim Taymans  <wim@fluendo.com>
29151
29152         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
29153         (gst_ffmpegcsp_avpicture_fill):
29154         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
29155         (yuv422p_to_yuv422), (yuv420p_to_yuv422), (shrink12),
29156         (img_convert), (deinterlace_line), (deinterlace_line_inplace):
29157         More stride fixes.
29158
29159 2004-11-05  Wim Taymans  <wim@fluendo.com>
29160
29161         * gst/alpha/gstalpha.c: (gst_alpha_set_property), (gst_alpha_add),
29162         (gst_alpha_chroma_key), (gst_alpha_init_params), (gst_alpha_chain):
29163         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
29164         (gst_videomixer_fill_checker), (gst_videomixer_blend_buffers),
29165         (gst_videomixer_loop):
29166         More stride fixes.
29167
29168 2004-11-05  Benjamin Otte  <otte@gnome.org>
29169
29170         * ext/mad/gstmad.c: (gst_mad_chain):
29171           don't overflow data buffer. Flush not needed sync data when syncing
29172           failed.
29173
29174 2004-11-04  Wim Taymans  <wim@fluendo.com>
29175
29176         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
29177         (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
29178         (gst_alpha_get_property), (gst_alpha_add), (gst_alpha_chroma_key),
29179         (gst_alpha_init_params), (gst_alpha_chain),
29180         (gst_alpha_change_state):
29181         Updated the chroma keying algorithm with something more
29182         sophisticated.
29183
29184 2004-11-03  Wim Taymans  <wim@fluendo.com>
29185
29186         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
29187         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
29188         (gst_videomixer_blend_buffers), (gst_videomixer_loop):
29189         Fix stride issues. Does not completely work for odd
29190         heights.
29191
29192 2004-11-03  Wim Taymans  <wim@fluendo.com>
29193
29194         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
29195         (gst_alpha_chroma_key), (gst_alpha_chain):
29196         Fix stride issues. Does not completely work for odd
29197         heights.
29198
29199 2004-11-03  Christophe Fergeau  <teuf@gnome.org>
29200
29201         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
29202         * gst/videoscale/videoscale.c: (videoscale_find_by_structure):
29203         leak fixes
29204
29205 2004-11-03  Wim Taymans  <wim@fluendo.com>
29206
29207         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
29208         (gst_ffmpegcsp_avpicture_fill):
29209         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
29210         (avpicture_alloc):
29211         * gst/ffmpegcolorspace/imgconvert_template.h:
29212         Use correct _fill function to get correct strides.
29213
29214 2004-11-02  David Schleef  <ds@schleef.org>
29215
29216         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
29217         (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_parse_tree),
29218         (qtdemux_parse_udta), (qtdemux_tag_add), (gst_qtdemux_handle_esds):
29219         Change all g_print()s to debugging.  Add a bunch of consistency
29220         checks.
29221
29222 2004-11-02  Wim Taymans  <wim@fluendo.com>
29223
29224         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
29225         (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
29226         (unlinked), (no_more_pads), (close_link):
29227         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
29228         (unknown_type), (add_element_stream), (new_decoded_pad),
29229         (removed_decoded_pad), (setup_source):
29230         * gst/playback/gststreaminfo.c: (gst_stream_info_get_type),
29231         (gst_stream_info_class_init), (gst_stream_info_init),
29232         (gst_stream_info_new), (gst_stream_info_dispose),
29233         (stream_info_mute_pad), (gst_stream_info_set_property),
29234         (gst_stream_info_get_property):
29235         * gst/playback/gststreaminfo.h:
29236         Fix playback of multiple files.
29237         a slightly different approach to handling dynamic pad removals.
29238         This one only looks at pads that we have linked.
29239
29240 2004-11-01  Christophe Fergeau  <teuf@gnome.org>
29241
29242         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_finalize): fix an "invalid
29243         free" warning from libc.
29244
29245 2004-11-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29246
29247         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
29248         (get_unconnected_element), (remove_starting_from), (pad_removed),
29249         (close_link):
29250           Implement support for dynamic pad changing. We listen to "live"
29251           pad removals (i.e. while playing) and re-setup autoplugging
29252           after that. Playbasebin/playbin need some more work for this
29253           to finally work, but decodebin supports (and replugs) chained
29254           ogg now.
29255
29256 2004-11-02  Jan Schmidt  <thaytan@mad.scientist.com>
29257
29258         * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_dispose),
29259         (gst_alsa_finalize):
29260         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init),
29261         (gst_cdaudio_finalize):
29262         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
29263         (cdparanoia_finalize):
29264         * ext/divx/gstdivxdec.c: (gst_divxdec_dispose):
29265         * ext/divx/gstdivxenc.c: (gst_divxenc_dispose):
29266         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
29267         (dvdreadsrc_finalize):
29268         * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
29269         (gst_flacdec_finalize):
29270         * ext/flac/gstflacenc.c: (gst_flacenc_class_init),
29271         (gst_flacenc_finalize):
29272         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_class_init),
29273         (gst_gnomevfssink_finalize):
29274         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_class_init),
29275         (gst_gnomevfssrc_finalize):
29276         * ext/libfame/gstlibfame.c: (gst_fameenc_class_init),
29277         (gst_fameenc_finalize):
29278         * ext/nas/nassink.c: (gst_nassink_class_init),
29279         (gst_nassink_finalize):
29280         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_finalize),
29281         (gst_sdlvideosink_class_init):
29282         * ext/sndfile/gstsf.c: (gst_sf_dispose):
29283         * gst-libs/gst/mixer/mixertrack.c: (gst_mixer_track_dispose):
29284         * gst-libs/gst/tuner/tunerchannel.c: (gst_tuner_channel_dispose):
29285         * gst-libs/gst/tuner/tunernorm.c: (gst_tuner_norm_dispose):
29286         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
29287         (gst_x_window_listener_dispose):
29288         * gst/audioscale/gstaudioscale.c:
29289         * gst/playondemand/gstplayondemand.c: (play_on_demand_class_init),
29290         (play_on_demand_finalize):
29291         * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose):
29292         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
29293         * sys/cdrom/gstcdplayer.c: (cdplayer_class_init),
29294         (cdplayer_finalize):
29295         * sys/glsink/glimagesink.c: (gst_glimagesink_finalize),
29296         (gst_glimagesink_class_init):
29297         * sys/oss/gstosselement.c: (gst_osselement_class_init),
29298         (gst_osselement_finalize):
29299         * sys/oss/gstosssink.c: (gst_osssink_dispose):
29300         * sys/oss/gstosssrc.c: (gst_osssrc_dispose):
29301         * sys/v4l/gstv4lelement.c: (gst_v4lelement_dispose):
29302           Fixes a bunch of problems with finalize and dispose functions,
29303           either assumptions that dispose is only called once, or not calling
29304           the parent class dispose/finalize function
29305
29306 2004-11-01  Stefan Kost  <ensonic@users.sf.net>
29307
29308         * ext/esd/esdsink.c: (gst_esdsink_init), (gst_esdsink_link):
29309           added two api precondition guards
29310           use g_strdup with getenv to fix crash when using ENVVAR
29311
29312 2004-11-01  Jan Schmidt  <thaytan@mad.scientist.com>
29313         * ext/esd/esdsink.c: (gst_esdsink_class_init),
29314         (gst_esdsink_finalize):
29315         Use a finalize function, not dispose, and more importantly,
29316         call the parent class finalize function too
29317
29318 2004-11-01  Johan Dahlin  <johan@gnome.org>
29319
29320         * ext/ogg/gstoggdemux.c:
29321         * gst/tags/gstvorbistag.c:
29322         Plug leaks.
29323
29324 2004-10-31  Benjamin Otte  <otte@gnome.org>
29325
29326         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
29327           lotsa memleaks today. But they're all small...
29328
29329 2004-10-31  Benjamin Otte  <otte@gnome.org>
29330
29331         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
29332           another memleak crushed
29333
29334 2004-10-31  Benjamin Otte  <otte@gnome.org>
29335
29336         * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
29337           fix memleak
29338
29339 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29340
29341         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
29342           Hack to prevent crash when going to READY inside signal handler
29343           while this function is active.
29344
29345 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29346
29347         * gst/ffmpegcolorspace/Makefile.am:
29348         * gst/ffmpegcolorspace/avcodec.h:
29349         * gst/ffmpegcolorspace/common.h:
29350         * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
29351         * gst/ffmpegcolorspace/dsputil.h:
29352         * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
29353         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
29354         (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
29355         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps),
29356         (gst_ffmpegcsp_codectype_to_caps), (gst_ffmpeg_caps_to_smpfmt),
29357         (gst_ffmpeg_caps_to_pixfmt), (gst_ffmpegcsp_caps_with_codectype),
29358         (gst_ffmpegcsp_avpicture_fill):
29359         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
29360         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
29361         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
29362         (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_get_type),
29363         (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
29364         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
29365         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
29366         (gst_ffmpegcsp_get_property), (gst_ffmpegcolorspace_register):
29367         * gst/ffmpegcolorspace/imgconvert.c:
29368         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
29369         (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
29370         (avpicture_get_size), (avcodec_get_pix_fmt_loss),
29371         (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
29372         (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
29373         (yuv422_to_yuv420p), (uyvy422_to_yuv420p), (uyvy422_to_yuv422p),
29374         (yuv422_to_yuv422p), (yuv422p_to_yuv422), (yuv422p_to_uyvy422),
29375         (uyvy411_to_yuv411p), (yuv420p_to_yuv422), (C_JPEG_TO_CCIR),
29376         (img_convert_init), (img_apply_table), (shrink41), (shrink21),
29377         (shrink12), (shrink22), (shrink44), (grow21_line), (grow41_line),
29378         (grow21), (grow22), (grow41), (grow44), (conv411),
29379         (gif_clut_index), (build_rgb_palette), (bitcopy_n), (mono_to_gray),
29380         (monowhite_to_gray), (monoblack_to_gray), (gray_to_mono),
29381         (gray_to_monowhite), (gray_to_monoblack), (avpicture_alloc),
29382         (avpicture_free), (is_yuv_planar), (img_convert),
29383         (get_alpha_info_pal8), (img_get_alpha_info), (deinterlace_line),
29384         (deinterlace_line_inplace), (deinterlace_bottom_field),
29385         (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
29386         * gst/ffmpegcolorspace/imgconvert_template.h:
29387         * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
29388         * gst/ffmpegcolorspace/mmx.h:
29389         * gst/ffmpegcolorspace/utils.c: (av_mallocz), (av_strdup),
29390         (av_fast_realloc), (av_mallocz_static), (av_free_static),
29391         (av_freep), (avcodec_get_context_defaults),
29392         (avcodec_alloc_context), (avcodec_init):
29393           Sync back from gst-ffmpeg. Deprecates ffcolorspace. Adds palette
29394           handling plus update from ffmpeg CVS. Large clean-up.
29395
29396 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29397
29398         * gst/playback/Makefile.am:
29399           We need the marshallers for decodebin, too.
29400
29401 2004-10-30  David Schleef  <ds@schleef.org>
29402
29403         * gst/typefind/gsttypefindfunctions.c: (qt_type_find): Make
29404           quicktime typefinding work with 64-bit offsets.
29405
29406 2004-10-30  Jan Schmidt  <thaytan@mad.scientist.com>
29407
29408         * ext/dv/gstdvdec.c: (gst_dvdec_handle_sink_event):
29409           Set EOS on the element when processing an EOS event.
29410         * ext/speex/gstspeexdec.h:
29411         * ext/speex/gstspeexenc.h:
29412           Only keep a const ptr to the mode
29413         * gst-libs/gst/riff/riff-media.c:
29414         (gst_riff_create_audio_caps_with_data),
29415         (gst_riff_create_audio_template_caps):
29416           Allow WMAV3, with up to 6 channels.
29417         * gst/asfdemux/gstasfmux.c: (gst_asfmux_request_new_pad):
29418           Don't call gst_pad_set_event_function on a sink pad.
29419         * gst/mpegstream/gstdvddemux.c:
29420         (gst_dvd_demux_get_subpicture_stream),
29421         (gst_dvd_demux_set_cur_audio), (gst_dvd_demux_set_cur_subpicture):
29422           Copy the explicit caps that were set across to the cur_* pads,
29423           instead of trying to use a possibly non-existent negotiated caps.
29424           Reset the type of subpicture pads to UNKNOWN after calling
29425           init_stream, so that the caps get set.
29426
29427 2004-10-29  Martin Pitt  <martin.pitt@canonical.com>
29428
29429         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29430
29431         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
29432           Don't touch buffer if it is of size 0 (fixes #151064).
29433
29434 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29435
29436         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push), (gst_ogg_pad_push):
29437           Synchronized discont handling.
29438
29439 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29440
29441         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
29442         (gst_ogg_demux_push):
29443           Make seeking sort-of exact again (fixes #156387).
29444
29445 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29446
29447         * gst/playback/gstplaybasebin.c: (unknown_type),
29448         (add_element_stream), (new_decoded_pad),
29449         (gst_play_base_bin_change_state):
29450         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
29451         (gst_stream_info_init), (gst_stream_info_new),
29452         (gst_stream_info_dispose), (gst_stream_info_get_property):
29453         * gst/playback/gststreaminfo.h:
29454           Make caps explicitely available. Makes testing for unsupported
29455           types possible. Improves error reporting.
29456
29457 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29458
29459         * gst/audioconvert/gstaudioconvert.c:
29460         (gst_audio_convert_buffer_to_default_format):
29461           Really don't touch read-only buffers (#156563).
29462
29463 2004-10-29  Sebastien Cote  <sc5@hermes.usherb.ca>
29464
29465         Reviewd by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29466
29467         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
29468           Fix memleak (#155223).
29469
29470 2004-10-29  Wim Taymans  <wim@fluendo.com>
29471
29472         * gst/tcp/.cvsignore:
29473         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
29474         (gst_multifdsink_class_init), (gst_multifdsink_init),
29475         (gst_multifdsink_add), (gst_multifdsink_remove),
29476         (gst_multifdsink_remove_client_link), (is_sync_frame),
29477         (gst_multifdsink_new_client),
29478         (gst_multifdsink_handle_client_write),
29479         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
29480         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
29481         (gst_multifdsink_get_property):
29482         * gst/tcp/gstmultifdsink.h:
29483         Added burst on connect sync_method, deprecated sync_clients,
29484         streamlined the sync code some more.
29485
29486 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29487
29488         * gst/playback/gstplaybasebin.c: (thread_error), (setup_source),
29489         (gst_play_base_bin_change_state):
29490           Improve error reporting.
29491
29492 2004-10-28  Wim Taymans  <wim@fluendo.com>
29493
29494         * gst/tcp/Makefile.am:
29495         * gst/tcp/fdsetstress.c: (mess_some_more), (run_test), (main):
29496         * gst/tcp/gstfdset.c: (nearest_pow), (resize), (ensure_size),
29497         (gst_fdset_new), (gst_fdset_free), (gst_fdset_set_mode),
29498         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
29499         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
29500         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
29501         (gst_fdset_wait):
29502         Added more locks around fdset structures. Fixed/reworked
29503         the poll array resizing code.
29504         Added stress test for fdset.
29505
29506 2004-10-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
29507
29508         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
29509         fix build
29510
29511 2004-10-28  Benjamin Otte  <otte@gnome.org>
29512
29513         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
29514           fix link function to always query channels and query width for
29515           floats
29516         * configure.ac:
29517           add equalizer dir
29518         * gst/equalizer/Makefile.am:
29519         * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_get_type),
29520         (gst_iir_equalizer_base_init), (gst_iir_equalizer_class_init),
29521         (gst_iir_equalizer_init), (gst_iir_equalizer_finalize),
29522         (arg_to_scale), (setup_filter),
29523         (gst_iir_equalizer_compute_frequencies),
29524         (gst_iir_equalizer_set_property), (gst_iir_equalizer_get_property),
29525         (gst_iir_equalizer_filter_inplace), (gst_iir_equalizer_setup),
29526         (plugin_init):
29527           add an equalizer
29528
29529 2004-10-27  Thomas Vander Stichele  <thomas at apestaart dot org>
29530
29531         Submitted by: Kjartan Maraas <kmaraas@broadpark.no>
29532
29533         * po/LINGUAS:
29534         * po/nb.po:
29535           Added Norwegian Bokmaal translation
29536
29537 2004-10-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29538
29539         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
29540           Don't break on options (fixes #156488).
29541
29542 2004-10-27  Thomas Vander Stichele  <thomas at apestaart dot org>
29543
29544         * configure.ac:
29545         * ext/cdaudio/Makefile.am:
29546         * sys/Makefile.am:
29547           fix build on older automake
29548
29549 2004-10-26  Wim Taymans  <wim@fluendo.com>
29550
29551         * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
29552         (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
29553         Allow a little margin when negotiating the framerate.
29554
29555 2004-10-26  Stefan Kost  <ensonic@users.sf.net>
29556
29557         * gst/level/gstlevel.c:
29558           synchonised naming of pads and pad-templates
29559
29560 2004-10-26  Wim Taymans  <wim@fluendo.com>
29561
29562         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
29563         (gst_ogg_demux_handle_event), (_find_chain_get_unknown_part),
29564         (_find_streams_check), (gst_ogg_demux_push):
29565         Fix EOS again. Needs to be done in a better way. We should not
29566         remove the pad if there is no new chained stream.
29567
29568 2004-10-26 Iain <iaingnome@gmail.com>
29569
29570         * ext/ogg/gstoggdemux.c (gst_ogg_pad_new): Free the tag list.
29571         * gst/audioscale/gstaudioscale.c (gst_audioscale_link): Free the copy
29572         of the caps.
29573         * gst/interleave/interleave.c (interleave_class_init): Hook up release
29574         pad.
29575         (interleave_release_pad): Remove the pad.
29576         * gst/level/gstlevel.c: Allow the level to take 1 or 2 channels.
29577         * sys/sunaudio/gstsunaudio.c (gst_sunaudio_setparams): Pay attention to
29578         the set device.
29579         * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support): Free the
29580         attrs
29581         (gst_xvimagesink_xcontext_clear): Free the xcontext.
29582         (gst_xvimagesink_finalize): Free the par.
29583
29584 2004-10-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29585
29586         * gst/avi/gstavimux.c: (gst_avimux_audsinkconnect),
29587         (gst_avimux_stop_file):
29588           First calculate the rate, and only then use it. Hdr.rate is a
29589           multiple and not a derivative of hdr.scale. Scale is not the
29590           same as blockalign but is solely related to rate.
29591
29592 2004-10-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29593
29594         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
29595         (gst_gnomevfssink_handle_event), (gst_gnomevfssink_chain):
29596           Implement seeking.
29597
29598 2004-10-25  James Henstridge  <james@jamesh.id.au>
29599
29600         Reviewed by:  David Schleef  <ds@schleef.org>
29601
29602         * examples/gstplay/player.c: (got_stream_length), (main):
29603         * examples/seeking/cdplayer.c: (update_scale):
29604         * examples/seeking/seek.c: (format_value), (update_scale):
29605         * examples/seeking/spider_seek.c: (format_value), (update_scale),
29606         (stop_seek):
29607         Build fixes on AMD64.
29608
29609 2004-10-25  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
29610
29611         reviewed by: Ronald Bultje <rbultje at gnome dot org>
29612
29613         * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
29614         Fix for some v4l cards which hang in v4lsrc
29615
29616 2004-10-25  Wim Taymans  <wim@fluendo.com>
29617
29618         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_remove),
29619         (gst_ogg_demux_push), (gst_ogg_chains_clear):
29620         Make sure to remove the pad when a new chain is
29621         encountered. Set some vars to NULL so we don't try
29622         to reference freed memory.
29623
29624 2004-10-25  Wim Taymans  <wim@fluendo.com>
29625
29626         * examples/seeking/Makefile.am:
29627         * examples/seeking/cdplayer.c: (update_scale):
29628         * examples/seeking/chained.c: (unlinked), (new_pad), (main):
29629         * examples/seeking/playbin.c: (make_playerbin_pipeline),
29630         (format_value), (update_scale), (iterate), (start_seek),
29631         (stop_seek), (print_media_info), (play_cb), (pause_cb), (stop_cb),
29632         (print_usage), (main):
29633         Added some more examples, update others.
29634
29635 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29636
29637         * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
29638         * ext/speex/gstspeexdec.c: (speex_dec_chain):
29639         * ext/theora/theoradec.c: (theora_dec_chain):
29640         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
29641           Add codec-name metadata.
29642
29643 2004-10-25  Takao Fujiwara  <Takao.Fujiwara@Sun.COM>
29644
29645         Reviewd by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29646
29647         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
29648         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
29649         * ext/alsa/gstalsamixertrack.h:
29650         * po/POTFILES.in:
29651           ALSA mixer track label internationalization (#154054).
29652
29653 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29654
29655         * ext/theora/theoradec.c: (theora_dec_chain):
29656           Export bitrate as metadata.
29657
29658 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29659
29660         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
29661         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
29662         * ext/alsa/gstalsamixertrack.h:
29663           Fix names, fix loop.
29664
29665 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29666
29667         * ext/speex/gstspeexdec.c: (gst_speex_dec_init),
29668         (speex_dec_convert):
29669           sinkconvert function so oggdemux can get the file length (totem).
29670
29671 2004-10-25  James Morrison  <ja2morri@csclub.uwaterloo.ca>
29672
29673         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29674
29675         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
29676           Don't push incomplete packets.
29677         * gst/typefind/gsttypefindfunctions.c: (m4a_type_find):
29678           Fix MPEG-4 audio typefinding.
29679
29680 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29681
29682         * sys/v4l/Makefile.am:
29683         * sys/v4l/gstv4l.c: (plugin_init):
29684         * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_type),
29685         (gst_v4lelement_init), (gst_v4lelement_dispose),
29686         (gst_v4lelement_change_state):
29687         * sys/v4l/gstv4lelement.h:
29688         * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_open),
29689         (gst_v4l_xoverlay_close), (idle_refresh),
29690         (gst_v4l_xoverlay_set_xwindow_id):
29691         * sys/v4l/gstv4lxoverlay.h:
29692         * sys/v4l/v4l-overlay_calls.c:
29693         * sys/v4l/v4l_calls.h:
29694         * sys/v4l2/Makefile.am:
29695         * sys/v4l2/gstv4l2.c: (plugin_init):
29696         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_type),
29697         (gst_v4l2element_init), (gst_v4l2element_dispose),
29698         (gst_v4l2element_change_state):
29699         * sys/v4l2/gstv4l2element.h:
29700         * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_open),
29701         (gst_v4l2_xoverlay_close), (idle_refresh),
29702         (gst_v4l2_xoverlay_set_xwindow_id):
29703         * sys/v4l2/gstv4l2xoverlay.h:
29704         * sys/v4l2/v4l2-overlay_calls.c:
29705         * sys/v4l2/v4l2_calls.h:
29706           Remove client-side overlay handling, use the X-server v4l plugin
29707           for that. Nicer overlay, less code. Also make the plugin
29708           compileable without X (but then without overlay, obviously).
29709           Makes xwindowlistener obsolete, should we remove that?
29710
29711 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29712
29713         * sys/oss/gstosssrc.c: (gst_osssrc_get_time), (gst_osssrc_get),
29714         (gst_osssrc_src_query):
29715         * sys/oss/gstosssrc.h:
29716           OK, so people want offset in DEFAULT. This time, actually fix all
29717           cases.
29718         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
29719           Add FPS properly.
29720
29721 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29722
29723         * gst/asfdemux/gstasfmux.c:
29724         * gst/avi/gstavimux.c:
29725           Framerate.
29726
29727 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29728
29729         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_set_property):
29730           Fix properties (channel, norm, frequency).
29731
29732 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29733
29734         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_property):
29735           Flag typo.
29736         * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults):
29737           No warnings.
29738
29739 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29740
29741         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_clear_format_list):
29742           Fix hang.
29743
29744 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29745
29746         * sys/v4l2/gstv4l2element.h:
29747           Yet Another Hack (tm) for kernel header borkedness.
29748         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
29749         (gst_v4l2src_v4l2fourcc_to_caps), (gst_v4l2_fourcc_from_structure),
29750         (gst_v4l2src_link), (gst_v4l2src_getcaps),
29751         (gst_v4l2src_change_state):
29752         * sys/v4l2/gstv4l2src.h:
29753         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_capture_init),
29754         (gst_v4l2src_capture_start), (gst_v4l2src_capture_stop):
29755           Fix caps, keep track of state, work.
29756
29757 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29758
29759         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
29760           Quiet.
29761
29762 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29763
29764         * sys/oss/gstosssrc.c: (gst_osssrc_get):
29765           Don't mix bytes and samples.
29766
29767 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29768
29769         * ext/ogg/gstoggmux.c:
29770           Basic pad template which accepts OGM tracks, speex, flac, vorbis
29771           and theora. Any is incorrect.
29772         * gst/asfdemux/gstasfmux.c: (gst_asfmux_vidsink_link):
29773           Fix caps.
29774         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
29775         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
29776         (gst_v4lmjpegsrc_init), (gst_v4lmjpegsrc_srcconnect),
29777         (gst_v4lmjpegsrc_getcaps), (gst_v4lmjpegsrc_change_state):
29778         * sys/v4l/gstv4lmjpegsrc.h:
29779         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
29780         (gst_v4lsrc_change_state):
29781         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_start),
29782         (gst_v4lmjpegsrc_capture_stop):
29783           Fix caps. Keep track of internal state. Work.
29784
29785 2004-10-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29786
29787         * ext/Makefile.am:
29788           Fix the build fixes.
29789
29790 2004-10-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29791
29792         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
29793         (gst_ogg_demux_src_event), (_find_chain_seek),
29794         (gst_ogg_pad_push):
29795           Check for pad availability before using it.
29796         * ext/ogg/gstoggdemux.c: (_find_chain_process):
29797           Fix parsing of chained ogg. Needs more work on the decoder side.
29798
29799 2004-10-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29800
29801         * gst/spectrum/Makefile.am:
29802         * gst/spectrum/demo-osssrc.c: (spectrum_chain), (main),
29803         (idle_func):
29804           Fix demo and reenable it. Yes, I'm currently playing with audio
29805           analysis tools
29806
29807 2004-10-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29808
29809         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
29810           We love it if files that start at zero work too...
29811
29812 2004-10-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29813
29814         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
29815           Handle files with missing EOS headers.
29816
29817 2004-10-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
29818
29819         * gst/tcp/gsttcpserversink.c:
29820         (gst_tcpserversink_handle_server_read),
29821         (gst_tcpserversink_init_send):
29822         Zero some variables first (need for accept not to return EINVAL)
29823
29824 2004-10-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29825
29826         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
29827         (gst_ogg_demux_src_event), (gst_ogg_pad_push):
29828         * ext/theora/theoradec.c: (theora_dec_sink_convert),
29829         (theora_dec_chain):
29830         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
29831         (gst_vorbis_dec_init), (vorbis_dec_convert), (vorbis_dec_chain):
29832           Seeking and querying finetune.
29833
29834 2004-10-20  Thomas Vander Stichele  <thomas at apestaart dot org>
29835
29836         * configure.ac:
29837         * ext/Makefile.am:
29838         * ext/raw1394/Makefile.am:
29839           fix the build
29840
29841 2004-10-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29842
29843         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
29844           Wrong return.
29845         * gst/playback/Makefile.am:
29846         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
29847         * gst/playback/gstplay-marshal.list:
29848         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
29849           Fix marshallers.
29850
29851 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29852
29853         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event):
29854           Silence.
29855
29856 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29857
29858         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
29859         (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
29860         (gst_ogg_pad_push):
29861           Yay for non-lineair granulepos in theora.
29862
29863 2004-10-18  Wim Taymans  <wim@fluendo.com>
29864
29865         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
29866         (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
29867         * ext/dv/gstdvdec.h:
29868         Make sure we renegotiate aspect ratio when the camera switches.
29869
29870 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29871
29872         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
29873         (gst_ogg_demux_src_event), (gst_ogg_pad_push):
29874           Start at zero.
29875         * ext/theora/theoradec.c: (theora_dec_chain):
29876           Skip headers. Bad idea for chained ogg, but fixes seeking.
29877
29878 2004-10-18  Wim Taymans  <wim@fluendo.com>
29879
29880         * configure.ac:
29881         I swear, this is the last time I touch this.
29882
29883 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29884
29885         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
29886         (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
29887         (_read_bos_process), (gst_ogg_demux_iterate), (gst_ogg_pad_new):
29888           Faster seeking.
29889         * ext/theora/theoradec.c: (theora_dec_sink_convert):
29890           Time-to-default conversion.
29891         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
29892           Don't error on unknown packets, just skip. We should probably
29893           read them if we want to support chained ogg.
29894
29895 2004-10-18  Wim Taymans  <wim@fluendo.com>
29896
29897         * configure.ac:
29898         Added cdaudio to wrong list.
29899
29900 2004-10-18  Wim Taymans  <wim@fluendo.com>
29901
29902         * configure.ac:
29903         Revive cdaudio.
29904
29905 2004-10-18  Wim Taymans  <wim@fluendo.com>
29906
29907         * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
29908         (gst_dvdec_video_link), (gst_dvdec_push):
29909         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
29910         (gst_smokeenc_resync), (gst_smokeenc_chain):
29911         Fix mimetype on smoke encoder.
29912         Add aspect ratio to dvdec. Not sure if these
29913         values are correct though....
29914
29915 2004-10-18  Wim Taymans  <wim@fluendo.com>
29916
29917         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
29918         Fix vorbis property descriptions and ranges.
29919
29920 2004-10-18  Wim Taymans  <wim@fluendo.com>
29921
29922         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
29923         Really do nothing when no data is available.
29924         Go to the playing state when the stream is not seekable
29925         instead of failing.
29926
29927 2004-10-18  Wim Taymans  <wim@fluendo.com>
29928
29929         * ext/cdaudio/gstcdaudio.c: (_do_init), (gst_cdaudio_base_init),
29930         (gst_cdaudio_get_event_masks), (gst_cdaudio_send_event),
29931         (gst_cdaudio_query), (plugin_init), (cdaudio_uri_get_type),
29932         (cdaudio_uri_get_protocols), (cdaudio_uri_get_uri),
29933         (cdaudio_uri_set_uri), (cdaudio_uri_handler_init):
29934         Added uri handler for cd://
29935         Port to new API.
29936
29937 2004-10-18  Wim Taymans  <wim@fluendo.com>
29938
29939         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
29940         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
29941         (try_to_link_1), (no_more_pads), (close_link), (type_found):
29942         * gst/playback/gstplaybasebin.c: (gen_preroll_element),
29943         (remove_prerolls), (unknown_type), (add_element_stream),
29944         (new_decoded_pad), (setup_source), (gst_play_base_bin_add_element),
29945         (gst_play_base_bin_remove_element),
29946         (gst_play_base_bin_link_stream):
29947         * gst/playback/gstplaybin.c: (gen_video_element),
29948         (gen_vis_element), (remove_sinks), (setup_sinks):
29949         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
29950         (gst_stream_info_get_type), (gst_stream_info_class_init),
29951         (gst_stream_info_init), (gst_stream_info_new),
29952         (gst_stream_info_dispose), (stream_info_mute_pad),
29953         (gst_stream_info_set_property), (gst_stream_info_get_property):
29954         * gst/playback/gststreaminfo.h:
29955         Add sink padtemplate to decodebin.
29956         Added some more comments.
29957         Make queue size configurable in playbasebin.
29958         Added possibility to use elements as sinks (ex cdaudio).
29959
29960 2004-10-15  Wim Taymans  <wim@fluendo.com>
29961
29962         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init),
29963         (gst_speexenc_chain):
29964         Fix speex timestamps so that it gets muxed properly.
29965
29966 2004-10-15  Wim Taymans  <wim@fluendo.com>
29967
29968         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_get_type),
29969         (gst_dv1394src_base_init), (gst_dv1394src_class_init),
29970         (gst_dv1394src_init), (gst_dv1394src_dispose),
29971         (gst_dv1394src_iso_receive), (gst_dv1394src_discover_avc_node),
29972         (gst_dv1394src_change_state), (gst_dv1394src_get_event_mask),
29973         (gst_dv1394src_event), (gst_dv1394src_get_formats),
29974         (gst_dv1394src_convert), (gst_dv1394src_get_query_types),
29975         (gst_dv1394src_query), (gst_dv1394src_uri_get_type),
29976         (gst_dv1394src_uri_get_protocols), (gst_dv1394src_uri_get_uri),
29977         (gst_dv1394src_uri_set_uri), (gst_dv1394src_uri_handler_init):
29978         * ext/raw1394/gstdv1394src.h:
29979         Added conversion/query functions.
29980         Update buffer timestamps,
29981         Added signals.
29982         Added uri dv:// so it might play from the firewire in playbin.
29983         Fix a possible leak.
29984         Added debugging.
29985
29986 2004-10-15  Wim Taymans  <wim@fluendo.com>
29987
29988         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_class_init),
29989         (gst_dv1394src_init), (gst_dv1394src_set_property),
29990         (gst_dv1394src_get_property), (gst_dv1394src_iso_receive),
29991         (gst_dv1394src_discover_avc_node), (gst_dv1394src_change_state):
29992         * ext/raw1394/gstdv1394src.h:
29993         Added AV/C VTR control support needed for some cameras.
29994         Added automatic port detection.
29995         Added properties for selecting the channel.
29996         The configure.ac script is not yet updated to reflect the
29997         new libavc1394 and librom1394 dependencies.
29998
29999 2004-10-15  Wim Taymans  <wim@fluendo.com>
30000
30001         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
30002         (qtdemux_parse), (gst_qtdemux_handle_esds):
30003         An esds box is not a container.
30004         Fix parsing of mp4v boxes.
30005         Do not try to renegotiate fps for each frame. Need to
30006         find a better method. This should fix mp4 playback.
30007
30008 2004-10-14  David Schleef  <ds@schleef.org>
30009
30010         * configure.ac: update for swfdec-0.3 and liboil-0.2
30011         * ext/swfdec/gstswfdec.c: update for swfdec-0.3
30012         * ext/swfdec/gstswfdec.h: same
30013         * gst/videofilter/gstvideobalance.c: update for liboil-0.2
30014         * gst/videotestsrc/videotestsrc.c: same
30015
30016 2004-10-14  Wim Taymans  <wim@fluendo.com>
30017
30018         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
30019         (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
30020         (is_sync_frame), (gst_multifdsink_new_client),
30021         (gst_multifdsink_handle_client_write),
30022         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
30023         (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
30024         Turn warnings into info.
30025         Don't allow a state change in the streaming thread.
30026
30027 2004-10-14  Thomas Vander Stichele  <thomas at apestaart dot org>
30028
30029         * ext/vorbis/oggvorbisenc.c:
30030         * ext/vorbis/vorbisdec.c:
30031           fix template sample rate
30032
30033 2004-10-13  Wim Taymans  <wim@fluendo.com>
30034
30035         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
30036         Decoding the header first fixes some problems in resyncing
30037         in more mp3s.
30038
30039 2004-10-12  Wim Taymans  <wim@fluendo.com>
30040
30041         * gst/playback/gstplaybin.c: (gen_video_element),
30042         (gen_vis_element), (remove_sinks), (setup_sinks):
30043         Added vis plugin support, need to configure the vis
30044         element to activate it.
30045
30046 2004-10-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30047
30048         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get),
30049         (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
30050           Some debug.
30051         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
30052         (gst_avi_demux_handle_src_event), (gst_avi_demux_read_superindex),
30053         (gst_avi_demux_read_subindexes), (gst_avi_demux_add_stream),
30054         (gst_avi_demux_stream_index), (gst_avi_demux_skip),
30055         (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
30056         (gst_avi_demux_massage_index), (gst_avi_demux_stream_header):
30057         * gst/avi/gstavidemux.h:
30058           Support for openDML-2.0 indx/ix## chunks. Support for broken index
30059           recovery (where, if part of the index is broken, we will still read
30060           the rest of the index and recover the broken part by stream
30061           scanning). More broken media support. EOS workarounds. General AVI
30062           braindamage headache recovery. Aspirin included.
30063
30064 2004-10-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30065
30066         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_open),
30067         (cdparanoia_event), (cdparanoia_query):
30068           Get rid of hideous lead-in.
30069
30070 2004-10-11  Wim Taymans  <wim@fluendo.com>
30071
30072         * gst/playback/gstplaybasebin.c: (setup_source):
30073         Wrong var used to get g_list_next.
30074
30075 2004-10-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30076
30077         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
30078         (cdparanoia_get), (cdparanoia_open):
30079           Report discid as metadata, add duration.
30080
30081 2004-10-11  Wim Taymans  <wim@fluendo.com>
30082
30083         * gst/playback/gstplaybasebin.c: (setup_source):
30084         Cleanup the previous pipeline a little earlier for the
30085         case that a source element provides raw data.
30086
30087 2004-10-11  Benjamin Otte  <otte@gnome.org>
30088
30089         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
30090           reset v1 tag offset when there is no v1 tag. Fixes id3demux always
30091           consuming the last 128 bytes, even though it was valid mp3 data.
30092
30093 2004-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
30094
30095         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
30096         (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
30097         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
30098         Change g_warnings to GST_WARNING_OBJECT and fix colourspace issue
30099
30100 2004-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
30101
30102         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps):
30103         Fix for webcams that support only specific width or height
30104
30105 2004-10-09  Tim-Philipp Müller  <t.i.m@zen.co.uk>
30106
30107         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30108
30109         * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file):
30110           Fix wrong discont event setup (fixes #154967).
30111
30112 2004-10-09  Sebastien Cote  <sc5@hermes.usherb.ca>
30113
30114         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30115
30116         * gst/auparse/gstauparse.c: (gst_auparse_chain):
30117           Error out on invalid data (fixes #154807).
30118
30119 2004-10-09  Tim-Philipp Müller  <t.i.m@zen.co.uk>
30120
30121         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30122
30123         * ext/dvdread/dvdreadsrc.c: (_read):
30124           Make titles > 0 work again (fixes #154834).
30125
30126 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30127
30128         * gst-libs/gst/riff/riff-media.c:
30129         (gst_riff_create_video_template_caps):
30130           WMV3 missing in template caps.
30131
30132 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30133
30134         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
30135           OK, so the original code was too strict. It makes random AVI files
30136           hang for seconds upon opening, which is unacceptable and is far
30137           beyond the original goal of getting multiple chunks for one-chunk
30138           sounc stream files. So now do just that.
30139
30140 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30141
30142         * gst/playback/gstplaybasebin.c: (setup_source),
30143         (gst_play_base_bin_change_state):
30144           Actually clean up streaminfo if output fails. This would trigger
30145           if, for example, there was no CD in the drive. No preroll, so
30146           a streaminfo structure is created, but the subsequent state change
30147           of the thread fails.
30148         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
30149           Don't change state if parent failed.
30150
30151 2004-10-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30152
30153         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
30154         (gst_play_bin_init), (gst_play_bin_get_property), (handoff),
30155         (gen_video_element), (remove_sinks):
30156           Add small bits of code for screenshot handling.
30157
30158 2004-10-08  Wim Taymans  <wim@fluendo.com>
30159
30160         * gst/playback/gstplaybin.c: (gst_play_bin_set_property),
30161         (gen_video_element), (gen_audio_element), (setup_sinks):
30162         Don't assume the user provided sinks are named "sink"...
30163
30164 2004-10-08  Wim Taymans  <wim@fluendo.com>
30165
30166         * gst/playback/gstplaybasebin.c: (gen_preroll_element),
30167         (unknown_type), (setup_source), (gst_play_base_bin_remove_element),
30168         (gst_play_base_bin_link_stream):
30169         Do not try to autoplug sources that generate raw streams like
30170         cdparanoia.
30171         disconnect the preroll overrun signal when we don't need it anymore.
30172
30173 2004-10-08  Milosz Derezynski  <internalerror.rez@fhtw-berlin.de>
30174
30175         * ext/cdparanoia/gstcdparanoia.c: (_do_init),
30176         Added reworked patch from #154903 from milosz derezynski (deadchip).
30177
30178 2004-10-08  Wim Taymans  <wim@fluendo.com>
30179
30180         * ext/cdparanoia/gstcdparanoia.c: (_do_init),
30181         (cdparanoia_base_init), (cdparanoia_class_init), (cdparanoia_init),
30182         (cdparanoia_dispose), (cdparanoia_get), (cdparanoia_change_state),
30183         (cdparanoia_convert), (cdparanoia_uri_get_type),
30184         (cdparanoia_uri_get_protocols), (cdparanoia_uri_get_uri),
30185         (cdparanoia_uri_set_uri), (cdparanoia_uri_handler_init):
30186         * ext/cdparanoia/gstcdparanoia.h:
30187         This adds the cdda://<tracknum> uri.
30188
30189 2004-10-08  Wim Taymans  <wim@fluendo.com>
30190
30191         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
30192         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
30193         (try_to_link_1), (no_more_pads), (close_link), (type_found):
30194         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
30195         (unknown_type), (gst_play_base_bin_remove_element),
30196         (gst_play_base_bin_link_stream):
30197         * gst/playback/gstplaybasebin.h:
30198         * gst/playback/gstplaybin.c: (gst_play_bin_init),
30199         (gst_play_bin_set_property), (gen_video_element),
30200         (gen_audio_element), (setup_sinks):
30201         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
30202         (gst_stream_info_get_type), (gst_stream_info_class_init),
30203         (gst_stream_info_init), (gst_stream_info_new),
30204         (gst_stream_info_dispose), (stream_info_mute_pad),
30205         (gst_stream_info_set_property), (gst_stream_info_get_property):
30206         * gst/playback/gststreaminfo.h:
30207         Reuse the audio and video bins.
30208         Some internal cleanups in the stream selection code.
30209
30210 2004-10-08  Julien MOUTTE  <julien@moutte.net>
30211
30212         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
30213         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
30214         * sys/ximage/ximagesink.h:
30215         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
30216         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
30217         * sys/xvimage/xvimagesink.h: Reverting Ronald's changes as the issue is
30218         not coming from those elements. Moreover these elements should not keep
30219         the xid they have been given when in NULL state.
30220
30221 2004-10-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30222
30223         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
30224         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
30225         * sys/ximage/ximagesink.h:
30226         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
30227         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
30228         * sys/xvimage/xvimagesink.h:
30229           Actually only create a new toplevel window if we're not gonna
30230           embed it right after.
30231
30232 2004-10-07  Wim Taymans  <wim@fluendo.com>
30233
30234         * gst/playback/gstplaybasebin.c: (play_base_bin_mute_pad),
30235         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream):
30236         * gst/playback/gstplaybin.c: (setup_sinks):
30237         Implement muting/unmuting of streams, mute streams that are not
30238         used.
30239
30240 2004-10-07  Wim Taymans  <wim@fluendo.com>
30241
30242         * gst/typefind/gsttypefindfunctions.c: (ac3_type_find),
30243         (plugin_init):
30244         Added lame audio/x-ac3 typefind function.
30245
30246 2004-10-06  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
30247
30248         * configure.ac:
30249           bump nano to cvs
30250
30251 === release 0.8.5 ===
30252
30253 2004-10-06  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
30254
30255         * NEWS:
30256         * RELEASE:
30257         * configure.ac:
30258           releasing 0.8.5, "Take You On"
30259
30260 2004-10-06  Wim Taymans  <wim@fluendo.com>
30261
30262         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
30263         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
30264         (no_more_pads), (close_link), (type_found):
30265         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
30266         * gst/playback/gstplaybin.c: (gen_video_element):
30267         Do not signal the no_more_pads after the first pad when
30268         we are plugging a non dynamic element with multiple
30269         output pads (like swfdec, dvdec, ...).
30270
30271 2004-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
30272
30273         * configure.ac:
30274           bump for prerelease
30275
30276 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
30277
30278         * gst/wavparse/gstwavparse.c:
30279           add ATRAC3 to STATIC CAPS to fix a warning
30280
30281         * gst/matroska/ebml-read.c:
30282         * gst-libs/gst/riff/riff-read.c:
30283           fix typos
30284
30285 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
30286
30287         * gst-libs/gst/riff/riff-media.c:
30288           generate caps for ATRAC3 audio streams
30289
30290         * gst/realmedia/rmdemux.c:
30291           generate caps for ATRAC3 audio streams
30292
30293 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
30294
30295         * gst/wavparse/Makefile.am
30296         * gst/wavparse/riff.h
30297         * gst/wavparse/wavparse.vcproj
30298           riff.h removal (unused and duplication with riff-ids.h)
30299
30300 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
30301
30302         * gst/wavparse/gstwavparse.h
30303           remove duplicated defines for audio codec codes
30304
30305         * gst-libs/gst/riff/riff-ids.h
30306         * gst/wavenc/riff.h:
30307           add "4CC" code for ATRAC3 audio streams
30308           add "4CC" code for ITU_G721_ADPCM (unused for now)
30309
30310 2004-10-06  Wim Taymans  <wim@fluendo.com>
30311
30312         * gst/flx/gstflxdec.c: (gst_flxdec_init), (gst_flxdec_loop):
30313         Actually _do_ negotiation. Pass gdouble as arg instead
30314         of guint64 for the framerate.
30315
30316 2004-10-06  Wim Taymans  <wim@fluendo.com>
30317
30318         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
30319         (find_compatibles), (close_pad_link), (try_to_link_1),
30320         (no_more_pads), (close_link), (type_found):
30321         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
30322         * gst/playback/gstplaybin.c: (gen_video_element),
30323         (gen_audio_element):
30324         Set state on newly added element to READY so that negotiation
30325         can happen ASAP.
30326         Addes some more debug info.
30327         Do not try to plug pads with multiple caps structures or ANY
30328         because it is too dangerous since we do not do dynamic
30329         replugging.
30330
30331 2004-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
30332
30333         written by: Gora Mohanty <gora_mohanty@yahoo.co.in>
30334
30335         * po/LINGUAS:
30336         * po/or.po:
30337           add Oriya translation
30338
30339 2004-10-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30340
30341         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
30342           Prevent overwrite of size member. Makes audio sound crappy.
30343
30344 2004-10-05  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
30345
30346         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
30347         Add rmvb to the list of known RealMedia extensions
30348
30349 2004-10-05  Wim Taymans  <wim@fluendo.com>
30350
30351         * ext/libmng/gstmngdec.c: (gst_mngdec_loop), (mngdec_error),
30352         (mngdec_openstream), (mngdec_closestream),
30353         (mngdec_handle_sink_event), (mngdec_readdata),
30354         (mngdec_gettickcount), (mngdec_settimer), (mngdec_processheader),
30355         (mngdec_getcanvasline), (mngdec_refresh),
30356         (gst_mngdec_change_state):
30357         Set the framerate correctly.
30358
30359 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30360
30361         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
30362           There was something wrong with the index massaging.
30363
30364 2004-10-04  Wim Taymans  <wim@fluendo.com>
30365
30366         * ext/jpeg/gstjpeg.c: (smoke_type_find), (plugin_init):
30367         * ext/jpeg/gstsmokedec.c: (gst_smokedec_init),
30368         (gst_smokedec_chain):
30369         * ext/jpeg/gstsmokedec.h:
30370         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
30371         (gst_smokeenc_init), (gst_smokeenc_resync), (gst_smokeenc_chain):
30372         * ext/jpeg/gstsmokeenc.h:
30373         * ext/jpeg/smokecodec.c: (smokecodec_encode_new),
30374         (smokecodec_decode_new), (smokecodec_info_free),
30375         (smokecodec_set_quality), (smokecodec_get_quality),
30376         (smokecodec_set_threshold), (smokecodec_get_threshold),
30377         (smokecodec_set_bitrate), (smokecodec_get_bitrate),
30378         (find_best_size), (abs_diff), (put), (smokecodec_encode_id),
30379         (smokecodec_encode), (smokecodec_parse_id),
30380         (smokecodec_parse_header), (smokecodec_decode):
30381         * ext/jpeg/smokecodec.h:
30382         * ext/jpeg/smokeformat.h:
30383         Updated smoke, new bitstream, allows embedding in ogg.
30384
30385 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30386
30387         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
30388           Fix seeking in some files. All this code is no longer needed (and
30389           actually breaks stuff) because we now synchronize the full index
30390           right when reading the header.
30391
30392 2004-10-04  Wim Taymans  <wim@fluendo.com>
30393
30394         * configure.ac:
30395         configure update for libmng.
30396
30397 2004-10-04  Wim Taymans  <wim@fluendo.com>
30398
30399         * ext/libmng/Makefile.am:
30400         * ext/libmng/gstmng.c: (plugin_init):
30401         * ext/libmng/gstmng.h:
30402         * ext/libmng/gstmngdec.c: (gst_mngdec_get_type),
30403         (gst_mngdec_base_init), (gst_mngdec_class_init),
30404         (gst_mngdec_sinklink), (gst_mngdec_init), (gst_mngdec_src_getcaps),
30405         (gst_mngdec_loop), (gst_mngdec_get_property),
30406         (gst_mngdec_set_property), (mngdec_error), (mngdec_openstream),
30407         (mngdec_closestream), (mngdec_handle_sink_event),
30408         (mngdec_readdata), (mngdec_gettickcount), (mngdec_settimer),
30409         (mngdec_processheader), (mngdec_getcanvasline), (mngdec_refresh),
30410         (gst_mngdec_change_state):
30411         * ext/libmng/gstmngdec.h:
30412         * ext/libmng/gstmngenc.c: (gst_mngenc_get_type),
30413         (mng_caps_factory), (raw_caps_factory), (gst_mngenc_base_init),
30414         (gst_mngenc_class_init), (gst_mngenc_sinklink), (gst_mngenc_init),
30415         (gst_mngenc_chain), (gst_mngenc_get_property),
30416         (gst_mngenc_set_property):
30417         * ext/libmng/gstmngenc.h:
30418         Added basic MNG decoder. Needs more work. The encoder does
30419         not work yet.
30420
30421 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30422
30423         * gst/realmedia/rmdemux.c: (gst_rmdemux_handle_sink_event),
30424         (gst_rmdemux_loop), (gst_rmdemux_add_stream),
30425         (gst_rmdemux_parse_mdpr), (gst_rmdemux_dump_mdpr):
30426           Don't hang on length=0 chunks. Some negotiation fixes. Signal
30427           no-more-pads.
30428
30429 2004-10-04  Thomas Vander Stichele  <thomas at apestaart dot org>
30430
30431         * configure.ac:
30432           you need at least 1.0.4 of speex
30433
30434 2004-10-04 Iain <iaingnome@gmail.com>
30435
30436         * ext/speex/gstspeexdec.h: Revert the includes changes.
30437
30438         * ext/speex/gstspeexenc.[ch]: Revert the includes changes.
30439
30440 2004-09-30 Iain <iaingnome@gmail.com>
30441
30442         * sys/sunaudio/gstsunaudio.c (gst_sunaudiosink_open): Use the device
30443         found during init or set as a property instead of hardcoding /dev/audio
30444
30445 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30446
30447         * gst/realmedia/rmdemux.c: (gst_rmdemux_class_init),
30448         (gst_rmdemux_init), (gst_rmdemux_handle_sink_event),
30449         (gst_rmdemux_loop), (gst_rmdemux_add_stream), (re_hexdump_bytes),
30450         (re_dump_pascal_string), (gst_rmdemux_dump__rmf),
30451         (gst_rmdemux_dump_prop), (gst_rmdemux_parse_mdpr),
30452         (gst_rmdemux_dump_mdpr), (gst_rmdemux_dump_indx),
30453         (gst_rmdemux_dump_data):
30454           Use debug category, fix EOS handling. filesrc ! rmdemux now
30455           works.
30456
30457 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30458
30459         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
30460         (gst_avi_demux_stream_scan), (sort), (gst_avi_demux_massage_index),
30461         (gst_avi_demux_stream_header), (gst_avi_demux_stream_data):
30462           Improve allocation, cutting and sorting of the index. How takes a
30463           few seconds instead of minutes.
30464
30465 2004-10-03  Christophe Fergeau  <teuf@gnome.org>
30466
30467         * gst/realmedia/rmdemux.c: (gst_rmdemux_parse_mdpr):
30468           fixed compilation
30469
30470 2004-10-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30471
30472         * gst-libs/gst/riff/riff-media.c:
30473         (gst_riff_create_video_caps_with_data),
30474         (gst_riff_create_video_template_caps):
30475           Add wing commander format mimetype/fourccs.
30476         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
30477           Don't crash if some value is 0.
30478
30479 2004-10-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30480
30481         * gst-libs/gst/riff/riff-media.c:
30482         (gst_riff_create_video_caps_with_data),
30483         (gst_riff_create_video_template_caps):
30484           Add DIB fourcc (raw, palettized 8-bit RGB).
30485         * gst-libs/gst/riff/riff-read.c:
30486         (gst_riff_read_strf_vids_with_data):
30487           Oops, fix strf_data reading bug.
30488         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
30489           Use a non-NULL tag.
30490         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
30491           Time for hacks. Sorry Dave. At least one quicktime movie (a
30492           trailer) that I've encountered contains multiple video tracks.
30493           One of those is the actual video track, the other are one-frame
30494           tracks (images). Unfortunately, the number of frames according
30495           to the trak header is 1 for each, so that doesn't help. So
30496           instead, I look at the duration and discard tracks with a
30497           duration shorter than 20% of the length of the stream. Better
30498           than nothing.
30499
30500 2004-10-01  Christian Schaller <christian@fluendo.com>
30501
30502         * ext/ivorbis/vorbis.c:
30503           Patch from Phil Blundell (Bug 152341)
30504
30505 2004-10-01  Wim Taymans  <wim@fluendo.com>
30506
30507         * ext/speex/gstspeexdec.c: (gst_speex_dec_class_init),
30508         (speex_dec_get_formats), (speex_dec_convert),
30509         (speex_dec_src_query), (speex_dec_src_event), (speex_dec_event),
30510         (speex_dec_chain), (gst_speexdec_get_property),
30511         (gst_speexdec_set_property):
30512         Small cleanups.
30513
30514 2004-10-01  Wim Taymans  <wim@fluendo.com>
30515
30516         * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
30517         (gst_wavparse_stream_init), (gst_wavparse_fmt),
30518         (gst_wavparse_other), (gst_wavparse_loop),
30519         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
30520         (gst_wavparse_srcpad_event):
30521         * gst/wavparse/gstwavparse.h:
30522         Added some more debugging info.
30523         Fix the case where the length of the file is 0.
30524         Make sure we seek to sample borders.
30525
30526 2004-10-01  Wim Taymans  <wim@fluendo.com>
30527
30528         * gst/playback/README:
30529         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
30530         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
30531         (try_to_link_1), (no_more_pads), (close_link), (type_found):
30532         Add some debug info to decodebin, update README
30533
30534 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30535
30536         * ext/dvdnav/dvdnavsrc.c: (dvdnav_handle_navigation_event):
30537           Don't use g_print(); use GST_DEBUG().
30538
30539 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30540
30541         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
30542         (gst_ogg_mux_queue_pads):
30543           Handle EOS properly.
30544
30545 2004-10-01  Sebastien Cote  <sc5@hermes.usherb.ca>
30546
30547         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30548
30549         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_sinkconnect),
30550         (gst_faad_chain), (gst_faad_change_state):
30551         * ext/faad/gstfaad.h:
30552           Allow playback of raw (unframed) MPEG AAC files (#148993).
30553
30554 2004-10-01  Sebastien Cote  <sc5@hermes.usherb.ca>
30555
30556         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30557
30558         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
30559           Throw error if we didn't recognize the stream. Fixes #152289.
30560
30561 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30562
30563         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
30564           Fix negotiation.
30565
30566 2004-10-01  Francis Labonte  <francis_labonte@hotmail.com>
30567
30568         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30569
30570         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
30571           Fix memleak.
30572
30573 2004-10-01  Balamurali Viswanathan  <balamurali.viswanathan@wipro.com>
30574
30575         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30576
30577         * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_setparams):
30578           Solve #152805.
30579         * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_mute):
30580           Solve 152806.
30581
30582 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30583
30584         * gst-libs/gst/riff/riff-media.c:
30585         (gst_riff_create_video_caps_with_data),
30586         (gst_riff_create_audio_caps_with_data):
30587           Add codec_data handling (like asfdemux used to do).
30588         * gst/asfdemux/gstasf.c: (plugin_init):
30589         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
30590         (gst_asf_demux_add_audio_stream), (gst_asf_demux_add_video_stream):
30591           Use riff-media for caps creation instead of our own (mostly
30592           broken) copy of its functions.
30593
30594 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30595
30596         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_capture):
30597           Don't actually error out if we get another return value than
30598           -EINVAL. Opposite to what I first thought, drivers have random
30599           return values for this, although -EINVAL is the expected return
30600           value. Since this is not fatal, we shouldn't use
30601           GST_ELEMENT_ERROR() but just GST_ERROR_OBJECT().
30602
30603 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30604
30605         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
30606         (dvdreadsrc_init), (dvdreadsrc_dispose), (dvdreadsrc_set_property),
30607         (dvdreadsrc_get_property), (_open), (_seek), (_read),
30608         (dvdreadsrc_get), (dvdreadsrc_open_file),
30609         (dvdreadsrc_change_state):
30610           Fix. Don't do one big huge loop around the whole DVD, that will
30611           cache all data and thus eat sizeof(dvd) (several GB) before we
30612           see something.
30613         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
30614           Actually NULL'ify event after using it.
30615         * gst/matroska/ebml-read.c: (gst_ebml_read_use_event),
30616         (gst_ebml_read_handle_event), (gst_ebml_read_element_id),
30617         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
30618         (gst_ebml_read_seek), (gst_ebml_read_skip):
30619           Handle events.
30620         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_base_init),
30621         (gst_dvd_demux_init), (gst_dvd_demux_get_audio_stream),
30622         (gst_dvd_demux_get_subpicture_stream), (gst_dvd_demux_plugin_init):
30623           Fix timing (this will probably break if I seek using menus, but
30624           I didn't get there yet). VOBs and normal DVDs should now work.
30625           Add a mpeg2-only pad with high rank so this get autoplugged for
30626           MPEG-2 movies.
30627         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_base_init),
30628         (gst_mpeg_demux_class_init), (gst_mpeg_demux_init),
30629         (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_get_video_stream),
30630         (gst_mpeg_demux_get_audio_stream),
30631         (gst_mpeg_demux_get_private_stream), (gst_mpeg_demux_parse_packet),
30632         (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_plugin_init):
30633           Use this as second rank for MPEG-1 and MPEG-2. Still use this for
30634           MPEG-1 but use dvddemux for MPEG-2.
30635         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
30636         (gst_mpeg_parse_init), (gst_mpeg_parse_new_pad),
30637         (gst_mpeg_parse_parse_packhead):
30638           Timing. Only add pad template if it exists. Add sink template from
30639           class and not from ourselves. This means we will always use the
30640           correct sink template even if it is not the one defined in this
30641           file.
30642
30643 2004-09-29  Wim Taymans  <wim@fluendo.com>
30644
30645         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_packet),
30646         (gst_mpeg_demux_parse_pes):
30647         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
30648         Fix playback of mpeg again, timestamps where screwed up by
30649         patch 1.61.
30650
30651 2004-09-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30652
30653         * ext/flac/gstflacdec.c: (gst_flacdec_src_query):
30654           Only return true if we actually filled something in. Prevents
30655           player applications from showing a random length for flac files.
30656         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
30657         (gst_riff_read_use_event), (gst_riff_read_handle_event),
30658         (gst_riff_read_seek), (gst_riff_read_skip), (gst_riff_read_strh),
30659         (gst_riff_read_strf_vids_with_data),
30660         (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_iavs):
30661           OK, ok, so I implemented event handling. Apparently it's normal
30662           that we receive random events at random points without asking
30663           for it.
30664         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
30665         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
30666         (gst_avi_demux_handle_src_event), (gst_avi_demux_stream_index),
30667         (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
30668         (gst_avi_demux_massage_index), (gst_avi_demux_stream_header),
30669         (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
30670         (gst_avi_demux_stream_data), (gst_avi_demux_loop):
30671         * gst/avi/gstavidemux.h:
30672           Implement non-lineair chunk handling and subchunk processing.
30673           The first solves playback of AVI files where the audio and video
30674           data of individual buffers that we read are not synchronized.
30675           This should not happen according to the wonderful AVI specs, but
30676           of course it does happen in reality. It is also a prerequisite for
30677           the second. Subchunk processing allows us to cut chunks in small
30678           pieces and process each of these pieces separately. This is
30679           required because I've seen several AVI files with incredibly large
30680           audio chunks, even some files with only one audio chunk for the
30681           whole file. This allows for proper playback including seeking.
30682           This patch is supposed to fix all AVI A/V sync issues.
30683         * gst/flx/gstflxdec.c: (gst_flxdec_class_init),
30684         (flx_decode_chunks), (flx_decode_color), (gst_flxdec_loop):
30685           Work.
30686         * gst/modplug/gstmodplug.cc:
30687           Proper return value setting for the query() function.
30688         * gst/playback/gstplaybasebin.c: (setup_source):
30689           Being in non-playing state (after, e.g., EOS) is not necessarily
30690           a bad thing. Allow for that. This fixes playback of short files.
30691           They don't actually playback fully now, because the clock already
30692           runs. This means that small files (<500kB) with a small length
30693           (<2sec) will still not or barely play. Other files, such as mod
30694           or flx, will work correctly, however.
30695
30696 2004-09-28  Wim Taymans  <wim@fluendo.com>
30697
30698         * ext/speex/gstspeex.c: (plugin_init):
30699         * ext/speex/gstspeexdec.c: (gst_speex_dec_base_init),
30700         (gst_speex_dec_class_init), (speex_dec_get_formats),
30701         (speex_get_event_masks), (speex_get_query_types),
30702         (gst_speex_dec_init), (speex_dec_convert), (speex_dec_src_query),
30703         (speex_dec_src_event), (speex_dec_event), (speex_dec_chain),
30704         (gst_speexdec_get_property), (gst_speexdec_set_property),
30705         (speex_dec_change_state):
30706         * ext/speex/gstspeexdec.h:
30707         * ext/speex/gstspeexenc.c: (gst_speexenc_get_formats),
30708         (gst_speexenc_get_type), (speex_caps_factory), (raw_caps_factory),
30709         (gst_speexenc_base_init), (gst_speexenc_class_init),
30710         (gst_speexenc_sinkconnect), (gst_speexenc_convert_src),
30711         (gst_speexenc_convert_sink), (gst_speexenc_get_query_types),
30712         (gst_speexenc_src_query), (gst_speexenc_init),
30713         (gst_speexenc_get_tag_value), (comment_init), (comment_add),
30714         (gst_speexenc_metadata_set1), (gst_speexenc_set_metadata),
30715         (gst_speexenc_setup), (gst_speexenc_buffer_from_data),
30716         (gst_speexenc_push_buffer), (gst_speexenc_set_header_on_caps),
30717         (gst_speexenc_chain), (gst_speexenc_get_property),
30718         (gst_speexenc_set_property), (gst_speexenc_change_state):
30719         * ext/speex/gstspeexenc.h:
30720         Rewrote speex encoder, make sure it can be embedded in ogg.
30721         Implemented speex decoder.
30722
30723 2004-09-28  Christian Schaller <christian@fluendo.com>
30724
30725         * configure.ac:
30726         Remove kioslave plugin. Markey is brewing a new working one
30727         * ext/Makefile.am: Remove kioslave plugin
30728         * ext/kio: remove
30729         * gst-plugins.spec.in: remove kio plugin from spec
30730
30731 2004-09-27  Wim Taymans  <wim@fluendo.com>
30732
30733         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
30734         (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
30735         (is_sync_frame), (gst_multifdsink_client_queue_buffer),
30736         (gst_multifdsink_new_client),
30737         (gst_multifdsink_handle_client_write),
30738         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
30739         (gst_multifdsink_handle_clients):
30740         * gst/tcp/gstmultifdsink.h:
30741         Make syncing to keyframes actually work for new clients and lagging
30742         clients.
30743
30744 2004-09-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30745
30746         * gst/debug/gstnavigationtest.c: (gst_navigationtest_class_init),
30747         (gst_navigationtest_handle_src_event), (draw_box_planar411),
30748         (gst_navigationtest_planar411), (gst_navigationtest_change_state):
30749         * gst/debug/gstnavigationtest.h:
30750           make navigationtest display button-press and button-release events
30751
30752 2004-09-26 Iain <iaingnome@gmail.com>
30753
30754         * gst/interleave/interleave.c (all_channels_new_media): Checks if all
30755         the channels have received a new media event.
30756         (interleave_buffered_loop): Compresses a new media event on all
30757         channels into one.
30758
30759 2004-09-26 Iain <iaingnome@gmail.com>
30760
30761         * gst/wavenc/gstwavenc.c (gst_wavenc_chain): Company says we need to
30762         call the sinkpad's default event handler and not the srcpads. He also
30763         says this is confusing :)
30764         (gst_wavenc_stop_file): Company says that seek events only go upstream
30765         we should send a discontinuous downstream instead.
30766
30767 2004-09-25  Christian Schaller <christian@fluendo.com>
30768
30769         * Update SPEC file to be usable in conjunction with Fedora Core,
30770           Fedora.us and freshrpms packages
30771         * Fix typo in multifilesrc test Makefile
30772
30773 2004-09-24  Wim Taymans  <wim@fluendo.com>
30774
30775         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
30776         Only signal the no_more_pads signal when we have
30777         added the stream to our list.
30778
30779 2004-09-24  Wim Taymans  <wim@fluendo.com>
30780
30781         * gst/playback/gstplaybasebin.c: (remove_prerolls),
30782         (new_decoded_pad):
30783         * gst/playback/gstplaybasebin.h:
30784         * gst/playback/gstplaybin.c: (setup_sinks):
30785         Don't try to preroll or decode more than one audio/video
30786         track.
30787
30788 2004-09-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30789
30790         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
30791           Throw error if we failed to find a suitable output. This should
30792           throw an error if we successfully set up a pipeline (e.g. because
30793           we recognized a media file) but found no decodable streams in it
30794           (e.g. because it contains only media stream types for which we
30795           have no decoders, or because it's not a media type).
30796
30797 2004-09-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30798
30799         * ext/dirac/Makefile.am:
30800         * ext/dirac/gstdirac.cc:
30801         * ext/dirac/gstdiracdec.cc:
30802         * ext/dirac/gstdiracdec.h:
30803           Do something. Don't actually know if this works because I don't
30804           have a demuxer yet.
30805         * ext/gsm/gstgsmdec.c: (gst_gsmdec_getcaps):
30806           Add channels=1 to caps returned from _getcaps().
30807         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_get_type),
30808         (gst_ogm_video_parse_get_type), (gst_ogm_audio_parse_base_init),
30809         (gst_ogm_video_parse_base_init), (gst_ogm_parse_init),
30810         (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
30811         (gst_ogm_parse_sink_convert), (gst_ogm_parse_chain),
30812         (gst_ogm_parse_change_state):
30813           Separate between audio/video so ogmaudioparse actually uses the
30814           audio pad templates. Both audio and video work now, including
30815           autoplugging. Also use sometimes-srcpad hack.
30816         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
30817           Handle events better. Don't hang on infinite loops.
30818         * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
30819         (gst_avi_demux_init), (gst_avi_demux_reset),
30820         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
30821         (gst_avi_demux_stream_header), (gst_avi_demux_stream_data),
30822         (gst_avi_demux_change_state):
30823         * gst/avi/gstavidemux.h:
30824           Improve A/V sync. Still not perfect.
30825         * gst/matroska/ebml-read.c: (gst_ebml_read_seek),
30826         (gst_ebml_read_skip):
30827           Handle events better.
30828         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
30829         (gst_qtdemux_loop_header), (qtdemux_parse_trak),
30830         (qtdemux_audio_caps):
30831           Add IMA4. Improve event handling. Save offset after a seek when
30832           the headers are at the end of the file so that we don't end up in
30833           an infinite loop.
30834         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
30835           Add low-priority typefind support for files with no length.
30836
30837 2004-09-23  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
30838
30839         * testsuite/multifilesink/Makefile.am:
30840         fix typo
30841
30842 2004-09-22  Julien MOUTTE  <julien@moutte.net>
30843
30844         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
30845         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls): Fix
30846         mistakes from thaytan's patches.
30847
30848 2004-09-23  Jan Schmidt  <thaytan@mad.scientist.com>
30849
30850         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
30851           For completeness, XSync in the destroy function as xvimage does.
30852
30853 2004-09-23  Jan Schmidt  <thaytan@mad.scientist.com>
30854
30855         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
30856            Correct caps negotiation
30857         * gst/volume/gstvolume.c: (volume_chain_float),
30858         (volume_chain_int16):
30859            Modify debug output to be little more informative
30860         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
30861         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
30862         (gst_xvimagesink_xvimage_destroy):
30863           Add XSync calls after detaching from the shared memory segment to
30864           avoid a crash.
30865
30866 2004-09-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
30867
30868         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
30869         (gst_ogg_mux_next_buffer), (gst_ogg_mux_loop):
30870         * ext/vorbis/vorbis.c: (plugin_init):
30871         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
30872         (gst_vorbisenc_chain):
30873         * ext/vorbis/vorbisenc.h:
30874         remove explicit newmedia support from oggmux and vorbisenc
30875         add debug category to vorbisenc
30876         * gst/multifilesink/gstmultifilesink.c:
30877         (gst_multifilesink_class_init), (gst_multifilesink_init),
30878         (gst_multifilesink_dispose), (gst_multifilesink_set_location),
30879         (gst_multifilesink_set_property), (gst_multifilesink_next_file),
30880         (gst_multifilesink_handle_event), (gst_multifilesink_chain),
30881         (plugin_init):
30882         * gst/multifilesink/gstmultifilesink.h:
30883         add support for streamheader in multifilesink
30884
30885 2004-09-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30886
30887         * gst/asfdemux/gstasfdemux.c: (_read_var_length), (_read_guid),
30888         (gst_asf_demux_process_segment), (gst_asf_demux_handle_data),
30889         (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event):
30890           Prevent infinite loops. More correct error reporting.
30891         * gst/auparse/gstauparse.c: (gst_auparse_chain):
30892           Error out if negotiation fails.
30893         * gst/playback/gstplaybasebin.c: (setup_source),
30894         (gst_play_base_bin_change_state), (gst_play_base_bin_error),
30895         (gst_play_base_bin_found_tag):
30896           Error/tag forwarding. Pre-roll fixes for source errors on state
30897           changes (e.g. "file does not exist") to prevent hangs.
30898
30899 2004-09-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
30900
30901         * testsuite/multifilesink/Makefile.am:
30902         * testsuite/multifilesink/lame_test.c: (gst_newmedia_base_init),
30903         (gst_newmedia_class_init), (gst_newmedia_init),
30904         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
30905         (newfile_signal), (test_signal), (main):
30906         * testsuite/multifilesink/multifilesrc_test.c: (main):
30907         * testsuite/multifilesink/oggtheora_test.c:
30908         (gst_newmedia_base_init), (gst_newmedia_class_init),
30909         (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
30910         (test_format), (newfile_signal), (test_signal), (main):
30911         * testsuite/multifilesink/oggvorbis_test.c:
30912         (gst_newmedia_base_init), (gst_newmedia_class_init),
30913         (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
30914         (test_format), (newfile_signal), (test_signal), (main):
30915         * testsuite/multifilesink/wavenc_test.c: (gst_newmedia_base_init),
30916         (gst_newmedia_class_init), (gst_newmedia_init),
30917         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
30918         (newfile_signal), (test_signal), (main):
30919         New media tests
30920
30921 2004-09-20  Christian Schaller <christian@fluendo.com>
30922
30923         * Fix mikmod license to LGPL as they have relicensed
30924         * Move Dirac and Effectv into LGPL section of README_license
30925
30926 2004-09-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30927
30928         * ext/mad/gstmad.c: (gst_mad_check_caps_reset),
30929         (gst_mad_change_state):
30930           Allow for mp3 rate/channels changes. However, only very
30931           conservatively. Reason that we *have* to enable this is smiply
30932           because the mad find_sync() function is not good enough, it will
30933           regularly sync on random data as valid frames and therefore make
30934           us provide random caps as *final* caps of the stream. The best fix
30935           I could think of is to simply require several of the same stream
30936           changes in a row before we change caps.
30937           The actual testcase that works now is #
30938         * ext/ogg/Makefile.am:
30939         * ext/ogg/gstogg.c: (plugin_init):
30940         * ext/ogg/gstogmparse.c:
30941           OGM support (video only for now; I need an audio sample file).
30942         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
30943         (gst_asf_demux_process_stream), (gst_asf_demux_video_caps),
30944         (gst_asf_demux_add_video_stream):
30945           WMV extradata.
30946         * gst/playback/gstplaybasebin.c: (unknown_type):
30947           Don't error out on single unknown-types after all. It's wrong.
30948           If we found type of video and audio but not of a subtitle stream,
30949           it will still error out (which is unwanted). Will find a better fix
30950           later on.
30951         * gst/typefind/gsttypefindfunctions.c: (ogmvideo_type_find),
30952         (ogmaudio_type_find), (plugin_init):
30953           OGM support.
30954
30955 2004-09-20  Johan Dahlin  <johan@gnome.org>
30956
30957         * ext/jpeg/gstjpegdec.c (gst_jpegdec_chain): Allocate the buffer
30958         after setting caps.
30959
30960 2004-09-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
30961
30962         * gst/wavenc/gstwavenc.c: (gst_wavenc_init), (gst_wavenc_chain):
30963         * gst/wavenc/gstwavenc.h:
30964         Added newmedia support to wavenc
30965
30966 2004-09-17  Wim Taymans  <wim@fluendo.com>
30967
30968         * gst/tcp/gstfdset.c: (gst_fdset_fd_has_closed),
30969         (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
30970         (gst_fdset_fd_can_write), (gst_fdset_wait):
30971         * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type),
30972         (gst_multifdsink_init), (gst_multifdsink_add),
30973         (gst_multifdsink_remove), (gst_multifdsink_get_stats),
30974         (gst_multifdsink_remove_client_link),
30975         (gst_multifdsink_client_queue_buffer),
30976         (gst_multifdsink_handle_client_write),
30977         (gst_multifdsink_recover_client), (gst_multifdsink_handle_clients),
30978         (gst_multifdsink_close), (gst_multifdsink_change_state):
30979         * gst/tcp/gstmultifdsink.h:
30980         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
30981         (gst_tcpserversink_removed):
30982         Small cleanups in fdset.c
30983         Use a hastable to map fd to the client structure for faster
30984         lookup in _remove and get_stats.
30985         Added virtual function to close the fds.
30986         Handle clients even when the select/poll call was unblocked because
30987         of a command.
30988         Implement syncing to keyframe in the recovery procedure.
30989
30990 2004-09-16 Iain <iaingnome@gmail.com>
30991
30992         * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int): Free the
30993         try caps.
30994
30995 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30996
30997         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream):
30998           Caps are only set if the type of the stream is unknown, but this
30999           is initialized in ->init_stream(), so set to UNKNOWN after calling
31000           ->init_stream() so that capsnego starts.
31001
31002 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31003
31004         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
31005         (gst_avi_demux_stream_data):
31006           Just hardcode for raw audio then. AVI audio sucks.
31007
31008 2004-09-15  Arwed v. Merkatz  <v.merkatz@gmx.net>
31009
31010         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
31011         * gst/matroska/matroska-mux.c: (audiosink_templ),
31012         (gst_matroska_mux_audio_pad_link):
31013         * gst/typefind/gsttypefindfunctions.c: (tta_caps), (plugin_init):
31014         Use audio/x-ttafile for tta files and audio/x-tta for raw tta frames.
31015
31016 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31017
31018         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
31019         (gst_avi_demux_stream_data):
31020           Try to fix a/v sync issues.
31021
31022 2004-09-15  David Schleef  <ds@schleef.org>
31023
31024         * configure.ac: remove NASM check, since we don't use it.  Update
31025         dirac check to 0.4
31026         * ext/dirac/gstdiracdec.cc: update to current 0.4 API
31027         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
31028         Initialized variables.
31029         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
31030         (gst_qtdemux_loop_header), (qtdemux_parse), (qtdemux_parse_trak),
31031         (gst_qtdemux_handle_esds), (qtdemux_audio_caps): Fix seeking, add
31032         SVQ3 format
31033
31034 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31035
31036         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
31037         (gst_avi_demux_add_stream), (gst_avi_demux_stream_data):
31038         * gst/avi/gstavidemux.h:
31039           Fix for compressed audio (mp3) timestamp generation. How did this
31040           ever work?
31041
31042 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31043
31044         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
31045           Volume is a double not a float.
31046
31047 2004-09-15  Wim Taymans  <wim@fluendo.com>
31048
31049         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_remove_client_link),
31050         (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
31051         Don't close the fd in multifdsink as we didn't open it in the
31052         first place. Some cleanups.
31053
31054 2004-09-15  Wim Taymans  <wim@fluendo.com>
31055
31056         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
31057         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
31058         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
31059         Fix the case where the muxer would mark pages as delta
31060         frames when they are not (vorbis only ogg).
31061
31062 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31063
31064         * gst/playback/gstplaybasebin.c: (state_change), (setup_source),
31065         (gst_play_base_bin_change_state):
31066           Handle the case where we failed to setup a clear pipeline. This
31067           will throw an error (or EOS, another nice case) and if you don't
31068           catch that, the app will wait for the signal forever (and thus
31069           hang).
31070
31071 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31072
31073         * ext/gnomevfs/gstgnomevfssink.c:
31074         (gst_gnomevfssink_uri_get_protocols):
31075         * ext/gnomevfs/gstgnomevfssrc.c:
31076         (gst_gnomevfssrc_uri_get_protocols):
31077         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
31078         * ext/gnomevfs/gstgnomevfsuri.h:
31079           Use _uri_new() instead of _open(), so it doesn't take as long and
31080           Christophe's computer won't hang.
31081         * gst/playback/gstplaybasebin.c: (unknown_type):
31082           Throw error on unknown media type, so apps actually display it.
31083
31084 2004-09-14  Brian Cameron  <brian.cameron@sun.com
31085
31086         * tools/gst-launch-ext-m.m:  Changed ~ to $ENV{HOME} to allow
31087           this script to work on Solaris since bash shell handles echo
31088           differenly than bash.
31089
31090 2004-09-17  Wim Taymans  <wim@fluendo.com>
31091
31092         * gst/playback/gstplaybasebin.c: (queue_overrun), (no_more_pads),
31093         (setup_source), (gst_play_base_bin_set_property),
31094         (gst_play_base_bin_add_element):
31095         * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
31096         Some more work on making sure seeking pauses the pipeline and
31097         that changing the uri actually does something.
31098
31099 2004-09-17  Wim Taymans  <wim@fluendo.com>
31100
31101         * gst/tcp/gstfdset.c: (gst_fdset_wait):
31102         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_close):
31103         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send),
31104         (gst_tcpserversink_close):
31105         Be a bit more paranoid when freeing memory.
31106
31107 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31108
31109         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
31110         (qtdemux_parse_trak):
31111           Don't crash by dividing by zero (see sample movie in #126922).
31112
31113 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31114
31115         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
31116           Don't touch non-existing data (fixes crash on file in #140147).
31117
31118 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31119
31120         * gst/playback/gstplaybasebin.c:
31121         (gst_play_base_bin_dispose), (gst_play_base_bin_set_property):
31122           Handle double disposals, and proper change of URIs.
31123
31124 2004-09-13  Martin Eikermann <meiker@upb.de>
31125
31126         * gst/mpegstream/gstmpegparse.c:
31127           fix synchronistation for streams recorded from digital PCR
31128           fixes bug #119376
31129
31130 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31131
31132         * ext/gnomevfs/Makefile.am:
31133         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
31134         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_get_type),
31135         (gst_gnomevfssink_dispose), (gst_gnomevfssink_init),
31136         (gst_gnomevfssink_uri_get_type),
31137         (gst_gnomevfssink_uri_get_protocols),
31138         (gst_gnomevfssink_uri_get_uri), (gst_gnomevfssink_uri_set_uri),
31139         (gst_gnomevfssink_uri_handler_init),
31140         (gst_gnomevfssink_set_property), (gst_gnomevfssink_get_property),
31141         (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file):
31142         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
31143         (gst_gnomevfssrc_init), (gst_gnomevfssrc_dispose),
31144         (gst_gnomevfssrc_uri_get_type),
31145         (gst_gnomevfssrc_uri_get_protocols), (gst_gnomevfssrc_uri_get_uri),
31146         (gst_gnomevfssrc_uri_set_uri), (gst_gnomevfssrc_uri_handler_init),
31147         (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
31148         (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file):
31149         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
31150         * ext/gnomevfs/gstgnomevfsuri.h:
31151           Add URI support to Gnome-VFS plugins. Tries to load a fixed list
31152           of fake URIs to see which this version of Gnome-VFS likes, and
31153           uses that for the Gst-URI interface. Makes playbin support http://
31154           streams. Also fix up some stupid behaviour in gnomevfssrc.
31155
31156 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31157
31158         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
31159         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
31160         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
31161         (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
31162           Update mixer (to sync with other sessions) if we try to obtain
31163           a new value. This makes alsamixer work accross applications.
31164         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
31165           Only call sync functions if we're running, else alsalib asserts.
31166         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
31167           Sometimes fails to compile. Possibly a gcc bug.
31168         * gst/playback/gstplaybin.c: (gen_video_element),
31169         (gen_audio_element):
31170           Add a reference to an application-provided object, because we lose
31171           this same reference if we add it to the bin. If we don't do this,
31172           we can only use this object once and thus crash if we go from
31173           ready to playing, back to ready and back to playing again.
31174           Also add an audioscale element because several cheap soundcards -
31175           like mine - don't support all samplerates.
31176         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
31177         (gst_ximagesink_xcontext_clear), (gst_ximagesink_change_state):
31178           Fix wrong order or PAR calls. Makes automatically obtained PAR
31179           from the X server atually being used.
31180
31181 2004-09-12  David Schleef  <ds@schleef.org>
31182
31183         Fixes: #151879, #151881, #151882, #151883, #151884, #151886,
31184         #151887, #152102, #152247.
31185         * examples/indexing/indexmpeg.c: 64-bit warning fixes.
31186         * examples/seeking/cdparanoia.c: same
31187         * examples/seeking/cdplayer.c: same
31188         * examples/seeking/seek.c: same
31189         * examples/seeking/spider_seek.c: same
31190         * examples/seeking/vorbisfile.c: same
31191         * examples/stats/mp2ogg.c: same
31192         * ext/esd/esdsink.c: (gst_esdsink_class_init),
31193         (gst_esdsink_dispose): Dispose of element properly.
31194         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_seek): 64-bit warning
31195         fixes.
31196         * ext/nas/nassink.c: (gst_nassink_class_init),
31197         (gst_nassink_dispose): Dispose of element correctly.
31198         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Fix leak.
31199         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
31200         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
31201         Fix 64-bit warning.
31202         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
31203         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
31204         Fix 64-bit warning.
31205
31206 2004-09-12  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
31207
31208         * configure.ac : change speex detection as 1.1.6 now uses
31209           .pc/pkg-config and they changed their headers location.
31210
31211 2004-09-09  Arwed v. Merkatz  <v.merkatz@gmx.net>
31212
31213         * gst/matroska/matroska-mux.h:
31214         * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
31215         (gst_matroska_mux_start), (gst_matroska_mux_finish),
31216         (gst_matroska_mux_write_data):
31217           Write multiple blocks/frames per cluster.
31218                 Write meta-seek information (seek heads).
31219
31220 2004-09-09  Scott Wheeler <wheeler@kde.org>
31221
31222         * gst/gstplaybin.c: (gst_play_bin_class_init), (gst_play_bin_init),
31223         (gst_play_bin_set_property), (gst_play_bin_get_property),
31224         (gen_audio_element), (gen_audio_element):
31225           Add a volume element / property to the pipeline.
31226
31227 2004-09-07  Wim Taymans  <wim@fluendo.com>
31228
31229         * gst/videomixer/videomixer.c: (gst_videomixer_blend_buffers):
31230         Copy timestamps from the master pad to the output buffers.
31231
31232 2004-09-03  Thomas Vander Stichele  <thomas at apestaart dot org>
31233
31234         * ext/raw1394/gstdv1394src.c:
31235           throw errors when applicable
31236
31237 2004-09-01  Arwed v. Merkatz  <v.merkatz@gmx.net>
31238
31239         * gst/matroska/ebml-ids.h:
31240         * gst/matroska/ebml-read.c: (gst_ebml_read_date):
31241         * gst/matroska/ebml-write.c: (gst_ebml_write_date):
31242         * gst/matroska/matroska-mux.c: (gst_matroska_mux_finish):
31243           automatically convert unix time <-> ebml time when reading/writing
31244           a date, use gst_ebml_write_uint to write CUETIME,
31245           not gst_ebml_write_date.
31246         * gst/matroska/matroska-ids.h:
31247         * gst/matroska/matroska-mux.c: (gst_matroska_mux_create_uid),
31248         (gst_matroska_mux_reset), (gst_matroska_mux_audio_pad_link),
31249         (gst_matroska_mux_track_header), (gst_matroska_mux_start),
31250         (gst_matroska_mux_write_data):
31251           Write track and segment UIDs, write muxing date, write
31252           TRACKDEFAULTDURATION for TTA audio, write BLOCKDURATION if known.
31253           Create cues for audio only files.
31254
31255 2004-08-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31256
31257         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
31258         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
31259           Re-commit ALSA switches.
31260         * gst/adder/gstadder.c: (gst_adder_loop):
31261           64-bit fix (#151416).
31262         * gst/debug/progressreport.c: (gst_progressreport_report):
31263           64-bit fix (#151419).
31264         * gst/matroska/matroska-demux.c:
31265         (gst_matroska_demux_parse_contents):
31266           64-bit fix (#151420).
31267         * gst/playback/test3.c: (update_scale):
31268           64-bit fix (#151421).
31269
31270 2004-08-31  Thomas Vander Stichele  <thomas at apestaart dot org>
31271
31272         * configure.ac:
31273           bump nano to cvs
31274
31275 === release 0.8.4 ===
31276
31277 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
31278
31279         * configure.ac: releasing 0.8.4, "Alias"
31280
31281 2004-08-31  Thomas Vander Stichele  <thomas at apestaart dot org>
31282
31283         * ext/theora/Makefile.am:
31284           fix makefile.  Fixes #151462.
31285
31286 2004-08-30  Wim Taymans  <wim@fluendo.com>
31287
31288         * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_wait):
31289         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
31290         (gst_multifdsink_remove_client_link),
31291         (gst_multifdsink_client_queue_buffer),
31292         (gst_multifdsink_handle_client_write):
31293         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
31294         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
31295         Fix some memory leaks.
31296
31297 2004-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
31298
31299         Patch by: David Schleef
31300
31301         * configure.ac:
31302         * sys/Makefile.am:
31303           rename our detection macro for V4L2.  Fixes #151236.
31304
31305 2004-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
31306
31307         Patch by: David Schleef
31308
31309         * configure.ac:
31310           check to define LAMEPRESET.  Fixes #151232.
31311
31312 2004-08-27  David Schleef  <ds@schleef.org>
31313
31314         * sys/glsink/glimagesink.c: (gst_glimagesink_ximage_put),
31315         (gst_glimagesink_xwindow_new), (gst_glimagesink_xcontext_get),
31316         (gst_glimagesink_fixate):  Move local variable declarations to
31317         make gcc-2.95 happy.
31318
31319 2004-08-27  Thomas Vander Stichele  <thomas at apestaart dot org>
31320
31321         * configure.ac:
31322           bump nano for prerelease
31323
31324 2004-08-27  David Schleef  <ds@schleef.org>
31325
31326         * sys/sunaudio/Makefile.am: Add sunaudiosrc patch from Bala
31327         * sys/sunaudio/gstsunaudiosrc.c:
31328         * sys/sunaudio/gstsunaudiosrc.h:
31329
31330 2004-08-27 Arwed v. Merkatz <v.merkatz@gmx.net>
31331
31332         * gst/matroska/ebml-read.c: (gst_ebml_peed_id), (gst_ebml_read_element_id),
31333         handle EOS correctly
31334         * gst/matroska/matroska-mux.c: (gst_matroska_mux_video_pad_link):
31335         * gst/matroska/matroska-mux.h:
31336         added BITMAPINFOHEADER structure, mux video/x-divx and video/x-xvid in
31337         VFW compatibility mode
31338
31339 2004-08-27  Thomas Vander Stichele  <thomas at apestaart dot org>
31340
31341         patch by: Zaheer Abbas Merali
31342
31343         * ext/ogg/gstoggmux.c:
31344         * ext/vorbis/vorbisenc.c:
31345         * ext/vorbis/vorbisenc.h:
31346           handle NEWMEDIA
31347
31348 2004-08-26 Arwed v. Merkatz <v.merkatz@gmx.net>
31349
31350         * gst/matroska/ebml-write.c: (gst_ebml_write_float),
31351         fix byte order reversion on little endian machines.
31352         * gst/matroska/matroska-mux.c: (audiosink_templ),
31353         (gst_matroska_mux_audio_pad_link):
31354         add TTA codec to the list of supported codecs.
31355         * gst/matroska/matroska-mux.c: (gst_matroska_mux_init),
31356         (gst_matroska_mux_start), (gst_matroska_mux_finish),
31357         (gst_matroska_mux_write_data):
31358         * gst/matroska/matroska-mux.h:
31359         write segment duration correctly, write muxing app string, fixes bugs
31360         #140897 and #140898.
31361         * gst/matroska/matroska-mux.c: (gst_matroska_mux_loop),
31362         wait for all pads to be negotiated before starting to mux.
31363
31364 2004-08-26  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31365
31366         * ext/lame/gstlame.c: (gst_lame_init), (gst_lame_chain):
31367         * ext/lame/gstlame.h:
31368         Added new media support to lame
31369
31370 2004-08-25 Arwed v. Merkatz <v.merkatz@gmx.net>
31371
31372         * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_blockgroup),
31373         send vorbis headers at the beginning of a stream, fixes bug #141554.
31374         Interpret BLOCKDURATION and set buffer duration accordingly, fixes
31375         bug #148950.
31376         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps),
31377         (gst_matroska_demux_plugin_init):
31378         * gst/matroska/matroska-ids.h:
31379         enable demuxing of TTA audio streams, fixes bug #148951.
31380         * gst/typefind/gsttypefindfunctions.c: (tta_type_find), (plugin_init),
31381         enable typefinding for TTA audio files, fixes bug #148711.
31382         * ext/xvid/gstxviddec.c: (gst_xviddec_chain),
31383         set XVID_LOWDELAY flag for decoding so xvid always returns an image,
31384         fixes playback of packed bitstream and xvid with bframes, bug #135407.
31385
31386 2004-08-24  Sebastien Cote  <sc5@hermes.usherb.ca>
31387
31388         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
31389         (gst_riff_read_element_data), (gst_riff_read_seek),
31390         (gst_riff_read_skip): fix infinite loop in wavparse, fixes bug
31391         #144616, patch reviewed by Ronald and committed by Christophe Fergeau
31392         <teuf@gnome.org>
31393
31394 2004-08-23 Iain <iaingnome@gmail.com>
31395
31396         * ext/mad/gstid3tag.c (gst_mad_id3_to_tag_list): Special case COMM
31397         tags. They appear to be handled differently to normal.
31398         (tag_list_to_id3_tag_foreach): Ditto.
31399
31400 2004-08-22  Wim Taymans  <wim@fluendo.com>
31401
31402         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
31403         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
31404         Make sure we never send -1 granulepos.
31405
31406 2004-08-20  Wim Taymans  <wim@fluendo.com>
31407
31408         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
31409         (gst_ogg_mux_loop):
31410         I will accept bitchslappings with non sharp objects.
31411
31412 2004-08-20  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31413
31414         * configure.ac:
31415         Clean up the test for lame presets
31416
31417 2004-08-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31418
31419         * configure.ac:
31420         * ext/lame/Makefile.am:
31421         * ext/lame/gstlame.c: (gst_lame_class_init),
31422         (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
31423         Only enable lame presets if version of lame has presets in API
31424
31425 2004-08-19  Jan Schmidt  <thaytan@mad.scientist.com>
31426         * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_get):
31427         * gst/udp/gstudpsrc.h:
31428           Don't call gst_pad_push in a get function. Fixes #150449
31429
31430 2004-08-18  Wim Taymans  <wim@fluendo.com>
31431
31432         * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_set_mode),
31433         (gst_fdset_get_mode), (gst_fdset_add_fd), (gst_fdset_remove_fd),
31434         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
31435         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
31436         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
31437         (gst_fdset_wait):
31438         * gst/tcp/gstfdset.h:
31439         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
31440         (gst_multifdsink_client_queue_buffer),
31441         (gst_multifdsink_handle_client_write):
31442         * gst/tcp/gstmultifdsink.h:
31443         Some extra checks in gstfdset.
31444         Only use send() when the fd is a socket. Don't try to
31445         read from write only fds.
31446
31447 2004-08-18  Wim Taymans  <wim@fluendo.com>
31448
31449         * gst/tcp/gstfdset.c: (gst_fdset_add_fd), (gst_fdset_remove_fd),
31450         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
31451         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
31452         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
31453         (gst_fdset_wait):
31454         Add more locking and bounds checking.
31455
31456 2004-08-18  Wim Taymans  <wim@fluendo.com>
31457
31458         * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_wait):
31459         Realloc test fdset in the lock and right before starting
31460         the poll call. Bump the limit to 4096.
31461
31462 2004-08-17  David Schleef  <ds@schleef.org>
31463
31464         * sys/sunaudio/Makefile.am:
31465         * sys/sunaudio/gstsunaudio.c: Fix caps to handle full range
31466         of rates and channels.  Make debugging less obnoxious.
31467
31468         Patch from Balamurali Viswanathan implementing a mixer for
31469         Sun audio.  (bug #144091):
31470         * sys/sunaudio/gstsunelement.c:
31471         * sys/sunaudio/gstsunelement.h:
31472         * sys/sunaudio/gstsunmixer.c:
31473         * sys/sunaudio/gstsunmixer.h:
31474
31475 2004-08-17  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31476
31477         * gst/audioscale/gstaudioscale.c:
31478         * gst/audioscale/gstaudioscale.h:
31479         made audioscale resample from any sample rate to any sample rate
31480
31481 2004-08-17  Thomas Vander Stichele  <thomas at apestaart dot org>
31482
31483         * ext/libpng/gstpngdec.c:
31484           error out on unsupported types
31485
31486 2004-08-17  Iain <iaingnome@gmail.com>
31487
31488         * ext/flac/gstflacenc.c (gst_flacenc_update_quality): Only set the
31489         mid_side and loose_mid_side properties if its a stereo stream.
31490
31491 2004-08-17  Wim Taymans  <wim@fluendo.com>
31492
31493         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
31494         (theora_get_formats), (theora_dec_src_convert),
31495         (theora_dec_sink_convert), (theora_dec_src_query),
31496         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
31497         Add a debug line.
31498
31499 2004-08-17  Wim Taymans  <wim@fluendo.com>
31500
31501         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate),
31502         (gst_ogg_pad_push):
31503         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
31504         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
31505         (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_page),
31506         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
31507         Mark delta units in the muxer.
31508         Try to decode the packet after an out-of-sync error from
31509         libogg.
31510
31511 2004-08-17  Wim Taymans  <wim@fluendo.com>
31512
31513         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
31514         (gst_multifdsink_init), (gst_multifdsink_add),
31515         (gst_multifdsink_client_queue_buffer),
31516         (gst_multifdsink_set_property), (gst_multifdsink_get_property):
31517         * gst/tcp/gstmultifdsink.h:
31518         Added option to send a keyframe to clients as the first buffer.
31519         Make timeout property writable.
31520
31521 2004-08-17  Thomas Vander Stichele  <thomas at apestaart dot org>
31522
31523         patch by: Wim Taymans
31524
31525         * gst/tcp/gstfdset.c:
31526         * gst/tcp/gstmultifdsink.c:
31527           fix index comparison, should include 0
31528
31529 2004-08-16  Wim Taymans  <wim@fluendo.com>
31530
31531         * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_new),
31532         (gst_fdset_add_fd), (gst_fdset_remove_fd),
31533         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
31534         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
31535         (gst_fdset_wait):
31536           copy when reallocing for poll so the select arguments don't get
31537           changed during the call
31538
31539 2004-08-16  Wim Taymans  <wim@fluendo.com>
31540
31541         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
31542         (gst_theora_enc_class_init), (theora_enc_sink_link),
31543         (theora_buffer_from_packet), (theora_enc_chain):
31544         Fix bug where buffers were not marked as keyframes
31545         correctly.
31546
31547 2004-08-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31548
31549         * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
31550         (gst_lame_preset_get_type), (gst_lame_class_init):
31551         describe the enum values for vbr mode and presets more verbosely
31552
31553 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31554
31555         * ext/lame/gstlame.c: (gst_lame_mode_get_type),
31556         (gst_lame_quality_get_type), (gst_lame_padding_get_type),
31557         (gst_lame_preset_get_type), (gst_lame_class_init), (gst_lame_init),
31558         (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
31559         * ext/lame/gstlame.h:
31560         add preset property to lame so it can use lame presets
31561
31562 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31563
31564         * ext/lame/gstlame.c: (gst_lame_get_property):
31565         whoops forgot break, thanks teuf
31566
31567 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31568
31569         * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
31570         (gst_lame_class_init), (gst_lame_src_getcaps),
31571         (gst_lame_sink_link), (gst_lame_init), (gst_lame_set_property),
31572         (gst_lame_get_property), (gst_lame_setup):
31573         * ext/lame/gstlame.h:
31574         fix lame's broken vbr stuff, allow it to resample if need be, and also
31575         make xing header optional
31576
31577 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31578
31579         * ext/lame/gstlame.c: (gst_lame_src_getcaps), (gst_lame_init):
31580         added getcaps function so samplerate doesnt get fixated to silly values
31581
31582 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31583
31584         * ext/lame/gstlame.c: (gst_lame_src_link):
31585         revert previous fix
31586
31587 2004-08-12  Johan Dahlin  <johan@gnome.org>
31588
31589         * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Remove bogus
31590         checks. Doesn't matter what state we are in. Interfaces are a
31591         compile time thing, not runtime. It also broke the python bindings.
31592
31593 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31594
31595         * ext/lame/gstlame.c: (gst_lame_src_link):
31596         made source pad link function check if sinkpad is ok..fixes the problem
31597         where core fixates the output rate of lame stupidly
31598
31599 2004-08-12  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
31600
31601         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_fixate):
31602         * sys/v4l/v4l_calls.c:
31603         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_set_capture):
31604           fix fixate function to handle nonsimple caps.
31605           remove bogus check in _link
31606           cleanups
31607
31608 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31609
31610         * ext/lame/gstlame.c: (gst_lame_class_init), (gst_lame_init):
31611         set default compression ratio parameter to 0.0 so bitrate parameter
31612         works :)
31613
31614 2004-08-11  David Schleef  <ds@schleef.org>
31615
31616         * gst/tcp/gstfdset.c: Fix compile problem on OS/X.
31617
31618 2004-08-11  David Schleef  <ds@schleef.org>
31619
31620         * gst/mpeg1sys/gstmpeg1systemencode.c: Oops, this was correct
31621         before.
31622
31623 2004-08-11  David Schleef  <ds@schleef.org>
31624
31625         * gst-libs/gst/video/videosink.h: Change copyright block to LGPL.
31626
31627 2004-08-11  David Schleef  <ds@schleef.org>
31628
31629         * ext/pango/gsttextoverlay.c: Add copyright block and fix plugin
31630           license field
31631         * gst-libs/gst/idct/Makefile.am: Remove mmx/sse code
31632         * gst-libs/gst/video/gstvideosink.c: Change copyright block to
31633           LGPL.
31634         * gst/auparse/gstauparse.c: Fix plugin license field.
31635         * gst/monoscope/gstmonoscope.c: Fix plugin license field.
31636         * gst/mpeg1sys/gstmpeg1systemencode.c: Fix plugin license field.
31637         * gst/rtp/gstrtp.c: Fix plugin license field.
31638
31639 2004-08-11  Wim Taymans  <wim@fluendo.com>
31640
31641         * gst/tcp/Makefile.am:
31642         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type), (nearest_pow),
31643         (ensure_size), (gst_fdset_new), (gst_fdset_free),
31644         (gst_fdset_set_mode), (gst_fdset_get_mode), (gst_fdset_add_fd),
31645         (gst_fdset_remove_fd), (gst_fdset_fd_ctl_write),
31646         (gst_fdset_fd_ctl_read), (gst_fdset_fd_has_closed),
31647         (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
31648         (gst_fdset_fd_can_write), (gst_fdset_wait):
31649         * gst/tcp/gstfdset.h:
31650         * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
31651         (gst_multifdsink_class_init), (gst_multifdsink_init),
31652         (gst_multifdsink_add), (gst_multifdsink_remove),
31653         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
31654         (gst_multifdsink_remove_client_link),
31655         (gst_multifdsink_handle_client_read),
31656         (gst_multifdsink_client_queue_data),
31657         (gst_multifdsink_client_queue_caps),
31658         (gst_multifdsink_client_queue_buffer),
31659         (gst_multifdsink_handle_client_write),
31660         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
31661         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
31662         (gst_multifdsink_get_property), (gst_multifdsink_init_send),
31663         (gst_multifdsink_close):
31664         * gst/tcp/gstmultifdsink.h:
31665         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
31666         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
31667         (gst_tcpserversink_handle_wait), (gst_tcpserversink_init_send),
31668         (gst_tcpserversink_close):
31669         * gst/tcp/gsttcpserversink.h:
31670         Abstracted away the select call, implemented poll (yes we ran into
31671         the 1024 limit in production).
31672
31673 2004-08-11  Thomas Vander Stichele  <thomas at apestaart dot org>
31674
31675         * gst/tcp/gsttcp.c:
31676         * gst/tcp/gsttcpplugin.c:
31677           improve debuggging, remove assert
31678
31679 2004-08-10  Wim Taymans  <wim@fluendo.com>
31680
31681         * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
31682         (gst_client_status_get_type), (gst_multifdsink_class_init),
31683         (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
31684         (gst_multifdsink_handle_client_read),
31685         (gst_multifdsink_handle_client_write),
31686         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
31687         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
31688         (gst_multifdsink_get_property):
31689         * gst/tcp/gstmultifdsink.h:
31690         * gst/tcp/gsttcp-marshal.list:
31691         Starting to prepare for specifying buffer time in other units
31692         than buffers. Expose remove reason in signal.
31693
31694 2004-08-10  Wim Taymans  <wim@fluendo.com>
31695
31696         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
31697         (gst_multifdsink_remove), (gst_multifdsink_clear),
31698         (gst_multifdsink_remove_client_link),
31699         (gst_multifdsink_handle_client_read),
31700         (gst_multifdsink_client_queue_data),
31701         (gst_multifdsink_client_queue_buffer),
31702         (gst_multifdsink_handle_client_write),
31703         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
31704         (gst_multifdsink_chain), (gst_multifdsink_close):
31705         * gst/tcp/gstmultifdsink.h:
31706         Added more debugging info. Changed the way clients are
31707         removed from the lists. Fixed a bug where a bad file descriptor
31708         could cause many clients to be removed.
31709
31710 2004-08-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31711
31712         * gst/videotestsrc/gstvideotestsrc.c: (generate_capslist):
31713           allow all pixel-aspect-ratios, not just 1:1
31714
31715 2004-08-09  David Schleef  <ds@schleef.org>
31716
31717         * sys/glsink/ARB_multitexture.h:  Remove old files.
31718         * sys/glsink/EXT_paletted_texture.h:
31719         * sys/glsink/NV_register_combiners.h:
31720         * sys/glsink/gstgl_nvimage.c:
31721         * sys/glsink/gstgl_pdrimage.c:
31722         * sys/glsink/gstgl_rgbimage.c:
31723         * sys/glsink/gstglsink.c:
31724         * sys/glsink/gstglsink.h:
31725         * sys/glsink/gstglxwindow.c:
31726         * sys/glsink/regcomb_yuvrgb.c:
31727
31728 2004-08-09  David Schleef  <ds@schleef.org>
31729
31730         Patch from Gernot Ziegler <gz@lysator.liu.se> rewriting the
31731         GL sink plugin.  (Bug #147302)
31732
31733         * configure.ac: Test for OpenGL
31734         * sys/Makefile.am: Use test for OpenGL
31735         * sys/glsink/Makefile.am:
31736         * sys/glsink/glimagesink.c: rewrite
31737         * sys/glsink/glimagesink.h: rewrite
31738
31739 2004-08-09  David Schleef  <ds@schleef.org>
31740
31741         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_base_init):  Only allow
31742         sane framerates.
31743         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get): same
31744         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): same
31745         * testsuite/gst-lint: Test for G_GUINT64_FORMAT usage near gettext.
31746
31747 2004-08-09  Wim Taymans  <wim@fluendo.com>
31748
31749         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
31750         (gst_multifdsink_add), (gst_multifdsink_get_stats),
31751         (gst_multifdsink_client_remove),
31752         (gst_multifdsink_handle_client_read),
31753         (gst_multifdsink_handle_client_write),
31754         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
31755         Do a bit more logging, make the client_read code more robust.
31756
31757 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
31758
31759         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init_source),
31760         (gst_jpegdec_fill_input_buffer), (gst_jpegdec_skip_input_data),
31761         (gst_jpegdec_resync_to_restart), (gst_jpegdec_term_source),
31762         (gst_jpegdec_init), (gst_jpegdec_chain):
31763         * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
31764         (gst_multipart_demux_chain), (gst_multipart_demux_change_state):
31765           cleanups, debugging fixes and memleak plugging
31766
31767 2004-08-09  Wim Taymans  <wim@fluendo.com>
31768
31769         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
31770         (theora_get_formats), (theora_dec_src_convert),
31771         (theora_dec_sink_convert), (theora_dec_src_query),
31772         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain),
31773         (theora_dec_change_state):
31774         Don't crash on missing header packets.
31775
31776 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
31777
31778         * po/LINGUAS:
31779         * po/sq.po:
31780           Added Albanian translation (Laurent Dhima)
31781         * po/cs.po:
31782           updated
31783
31784 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
31785
31786         * ext/lame/gstlame.c:
31787           fix/add debugging
31788
31789 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
31790
31791         * sys/ximage/ximagesink.c:
31792         * sys/xvimage/xvimagesink.c:
31793           assign all TOO_LAZY's to a real category.  Thanks to Warthy Warthog.
31794
31795 2004-08-06  Wim Taymans  <wim@fluendo.com>
31796
31797         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
31798         (gst_multifdsink_add), (gst_multifdsink_get_stats),
31799         (gst_multifdsink_client_remove),
31800         (gst_multifdsink_handle_client_read),
31801         (gst_multifdsink_handle_client_write),
31802         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
31803         Make sure we don't try to read more from a client that what
31804         ioctl says us or we deadlock.
31805
31806 2004-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
31807
31808         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_src_link),
31809         (gst_videotestsrc_change_state), (gst_videotestsrc_src_query),
31810         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
31811           decouple running_time and n_frames so it can handle changing
31812           framerate while running
31813
31814 2004-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
31815
31816         * po/nl.po:
31817         * po/sv.po:
31818           updated translations
31819
31820 2004-08-04  Benjamin Otte  <otte@gnome.org>
31821
31822         * gst/videotestsrc/gstvideotestsrc.c:
31823         (gst_videotestsrc_get_capslist), (generate_capslist),
31824         (plugin_init):
31825           generate the list of supported caps at startup and reuse it instead
31826           of always generating it
31827
31828 2004-07-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31829
31830         * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link):
31831           whoops, last checkin broke normal build
31832
31833 2004-08-03  Benjamin Otte  <otte@gnome.org>
31834
31835         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume),
31836         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
31837         (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
31838         (gst_alsa_mixer_get_option):
31839         * ext/dvdnav/dvdnavsrc.c: (dvdnav_get_event_name),
31840         (dvdnavsrc_print_event):
31841         * ext/ogg/gstoggdemux.c: (_find_chain_process), (gst_ogg_print):
31842         * ext/ogg/gstoggmux.c: (gst_ogg_mux_pad_link),
31843         (gst_ogg_mux_pad_unlink):
31844         * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link),
31845         (gst_multipart_mux_pad_unlink):
31846         * gst/videofilter/gstvideobalance.c:
31847         (gst_videobalance_colorbalance_set_value):
31848         * gst/videomixer/videomixer.c: (gst_videomixer_pad_link),
31849         (gst_videomixer_pad_unlink):
31850         * po/uk.po:
31851         * sys/oss/gstossmixer.c:
31852         * sys/v4l/gstv4lcolorbalance.c:
31853         * sys/v4l/gstv4ltuner.c:
31854         * sys/v4l/v4lsrc_calls.c:
31855         * sys/v4l2/gstv4l2colorbalance.c:
31856         * sys/v4l2/gstv4l2tuner.c:
31857           compile fixes for --disable-gst-debug, G_DISABLE_ASSERT and friends
31858
31859 2004-08-03  Benjamin Otte  <otte@gnome.org>
31860
31861         * examples/dynparams/filter.c: (ui_control_create):
31862         * examples/gstplay/player.c: (print_tag):
31863         * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad):
31864         * ext/gdk_pixbuf/gstgdkanimation.c:
31865         (gst_gdk_animation_iter_may_advance):
31866         * ext/jack/gstjack.c: (gst_jack_request_new_pad):
31867         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list),
31868         (tag_list_to_id3_tag_foreach), (gst_id3_tag_handle_event):
31869         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_tag_value):
31870         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value):
31871         * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
31872         * gst-libs/gst/media-info/media-info-test.c: (print_tag):
31873         * gst/sine/demo-dparams.c: (main):
31874         * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
31875         * testsuite/alsa/formats.c: (create_pipeline):
31876         * testsuite/alsa/sinesrc.c: (sinesrc_force_caps), (sinesrc_get):
31877           fixes for G_DISABLE_ASSERT and friends
31878         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
31879         (mp3_type_frame_length_from_header), (mp3_type_find),
31880         (plugin_init):
31881           require mp3 typefinding to have at least MIN_HEADERS valid headers
31882           add typefinding for AAC adts files
31883
31884 2004-08-04  Jan Schmidt  <thaytan@mad.scientist.com>
31885
31886         * sys/ximage/ximagesink.c:
31887         (gst_ximagesink_calculate_pixel_aspect_ratio):
31888         * sys/xvimage/xvimagesink.c:
31889         (gst_xvimagesink_calculate_pixel_aspect_ratio):
31890         Make sure we calculate pixel-aspect-ratio using floating point maths
31891
31892 2004-08-03  Thomas Vander Stichele  <thomas at apestaart dot org>
31893
31894         * po/uk.po:
31895           updated translation
31896
31897 2004-08-03  Thomas Vander Stichele  <thomas at apestaart dot org>
31898
31899         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
31900         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get):
31901           add debugging for display PAR calculation
31902
31903 2004-08-02  David Schleef  <ds@schleef.org>
31904
31905         * configure.ac: Fix mikmod CFLAGS.
31906
31907 2004-07-27  Benjamin Otte  <otte@gnome.org>
31908
31909         * gst/audioscale/gstaudioscale.c:
31910         - fix templates to only support S16, it's the only format that works
31911         - make caps nego code use try_set_caps_nonfixed and fixation instead
31912         of try_set_caps twice, which is not nice for autopluggers
31913         - change rank to secondary, so autopluggers can pick it up after
31914         audioconvert
31915
31916 2004-08-02  Iain <iain@prettypeople.org>
31917
31918         * gst/interleave/interleave.c (interleave_init),
31919         (interleave_request_new_pad),
31920         (interleave_pad_removed),
31921         (interleave_buffered_loop): Use the real pad count, not the artificial
31922         one.
31923
31924 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
31925
31926         * configure.ac: bump nano back to development
31927
31928 === release 0.8.3 ===
31929
31930 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
31931
31932         * configure.ac: releasing 0.8.3, "Water"
31933
31934 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
31935
31936         * sys/xvimage/xvimagesink.c:
31937         (gst_xvimagesink_calculate_pixel_aspect_ratio),
31938         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_sink_link),
31939         (gst_xvimagesink_change_state), (gst_xvimagesink_buffer_alloc),
31940         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
31941         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
31942         * sys/xvimage/xvimagesink.h:
31943           apply similar PAR fixes as to ximagesink
31944
31945 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
31946
31947         patch from: Benjamin Otte
31948
31949         * ext/lame/gstlame.c: (gst_lame_src_link), (gst_lame_init):
31950           add link function to lame.  Fixes #148986.
31951
31952 2004-08-02  Johan Dahlin  <johan@gnome.org>
31953
31954         * gst/multipart/multipartmux.c (gst_multipart_mux_next_buffer):
31955         fix debugging log
31956
31957 2004-07-30  David Schleef  <ds@schleef.org>
31958
31959         * gst/videomixer/Makefile.am: Fix things that should have been
31960         fixed in the last checkin.
31961
31962 2004-07-30  David Schleef  <ds@schleef.org>
31963
31964         * gst/multipart/Makefile.am: Fix things that should have been
31965         fixed in the last checkin.
31966
31967 2004-07-30  David Schleef  <ds@schleef.org>
31968
31969         * testsuite/multifilesink/Makefile.am: Fix unused variable.
31970
31971 2004-07-30  Thomas Vander Stichele  <thomas at apestaart dot org>
31972
31973         * configure.ac:
31974           bump nano for prerelease
31975         * po/af.po:
31976         * po/az.po:
31977         * po/cs.po:
31978         * po/en_GB.po:
31979         * po/hu.po:
31980         * po/nl.po:
31981         * po/sr.po:
31982         * po/sv.po:
31983         * po/uk.po:
31984           updates
31985
31986 2004-07-30  Wim Taymans  <wim@fluendo.com>
31987
31988         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
31989         (gst_multifdsink_add), (gst_multifdsink_remove),
31990         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
31991         (gst_multifdsink_client_remove),
31992         (gst_multifdsink_handle_client_write),
31993         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
31994         * gst/tcp/gstmultifdsink.h:
31995         Recover from a select with a bad file descriptor by removing
31996         the client.
31997
31998 2004-07-30  Thomas Vander Stichele  <thomas at apestaart dot org>
31999
32000         * configure.ac:
32001           fix requirement of core
32002         * gst-libs/gst/play/play.c: (gst_play_error_plugin),
32003         (gst_play_pipeline_setup):
32004           don't use colorspace element.  do use hermescolorspace element.
32005           make macro to get a colorspace element.
32006           mark strings for translation.
32007         * po/POTFILES.in:
32008           add play.c
32009         * po/af.po:
32010         * po/az.po:
32011         * po/cs.po:
32012         * po/en_GB.po:
32013         * po/hu.po:
32014         * po/nl.po:
32015         * po/sr.po:
32016         * po/sv.po:
32017         * po/uk.po:
32018           update translations
32019
32020 2004-07-30  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
32021
32022         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init):
32023         fix default for newmedia flag
32024
32025 2004-07-30  Wim Taymans  <wim@fluendo.com>
32026
32027         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
32028         (gst_theora_dec_init), (theora_get_formats),
32029         (theora_dec_src_convert), (theora_dec_sink_convert),
32030         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
32031         (theora_dec_chain), (theora_dec_set_property),
32032         (theora_dec_get_property):
32033         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
32034         (gst_theora_enc_class_init), (gst_theora_enc_init),
32035         (theora_enc_sink_link), (theora_enc_chain),
32036         (theora_enc_set_property), (theora_enc_get_property):
32037         Added cropping option to theora decoder.
32038         Added border option to theora encoder.
32039
32040 2004-07-30  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
32041
32042         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
32043         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
32044         (gst_pngenc_set_property):
32045         * ext/libpng/gstpngenc.h:
32046         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
32047
32048 2004-07-30  Wim Taymans  <wim@fluendo.com>
32049
32050         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
32051         (theora_enc_sink_link), (theora_enc_chain),
32052         (theora_enc_set_property), (theora_enc_get_property):
32053         Fix encoding of non-multiple-of-16 video.
32054
32055 2004-07-29  David Schleef  <ds@schleef.org>
32056
32057         * configure.ac: make test for audiofile more strict
32058
32059 2004-07-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
32060
32061         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
32062           give different names to typefind functions
32063
32064 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
32065
32066         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
32067         (gst_ximagesink_calculate_pixel_aspect_ratio),
32068         (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
32069         (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
32070         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_set_property),
32071         (gst_ximagesink_get_property), (gst_ximagesink_init):
32072         * sys/ximage/ximagesink.h:
32073           allocate PAR's dynamically.
32074           use autodetected PAR if no object-set PAR is given.
32075           add workaround for directfb's X not setting physical size.
32076           fix to xvimagesink will follow tomorrow.
32077
32078 2004-07-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
32079
32080         * ext/lame/gstlame.c: (gst_lame_chain): send tag events downstream
32081         * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
32082         (gst_shout2send_get_type), (gst_shout2send_set_clock),
32083         (gst_shout2send_class_init), (gst_shout2send_init),
32084         (set_shout_metadata), (gst_shout2send_set_metadata),
32085         (gst_shout2send_chain), (gst_shout2send_set_property),
32086         (gst_shout2send_get_property), (gst_shout2send_connect),
32087         (gst_shout2send_change_state):
32088         * ext/shout2/gstshout2.h:
32089         - fix for sending mp3 audio to icecast2 server, if pad link function not
32090         called before PAUSED state
32091         - added option to use GStreamer clock sync (as opposed to libshout's own sync)
32092         - added tagging support for mp3 audio broadcasted
32093         * gst/monoscope/gstmonoscope.c: (gst_monoscope_class_init):
32094         debug info
32095
32096 2004-07-28  Wim Taymans  <wim@fluendo.com>
32097
32098         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
32099         (gst_ogg_demux_push):
32100         Return query failure when we don't know the length of
32101         an ogg stream insteda of returning TRUE with a bogus value.
32102
32103 2004-07-28  Wim Taymans  <wim@fluendo.com>
32104
32105         * ext/theora/theoradec.c: (theora_get_formats),
32106         (theora_dec_src_convert), (theora_dec_sink_convert),
32107         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
32108         (theora_dec_chain):
32109         Don't screw up the 1 Chroma for 1 luma sample situation when we
32110         have an odd offset/width by adding a black border in those cases.
32111
32112 2004-07-28  Wim Taymans  <wim@fluendo.com>
32113
32114         * ext/theora/theoradec.c: (theora_get_formats),
32115         (theora_dec_src_convert), (theora_dec_sink_convert),
32116         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
32117         (theora_dec_chain):
32118         * ext/theora/theoraenc.c: (theora_enc_sink_link):
32119         Added first attempt at cropping of the image as required by the
32120         theora spec. We need more properties in the caps (offset_x,
32121         offset_y,stride) to implement this correctly.
32122
32123 2004-07-28  Jan Schmidt  <thaytan@mad.scientist.com>
32124
32125         * ext/dvdnav/README:
32126           Update the README to use dvddemux
32127         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
32128           Ensure getcaps returns a subset of the template caps
32129         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_base_init),
32130         (gst_mpeg2subt_init):
32131           Ensure getcaps returns a subset of the template caps
32132         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
32133         (gst_dvd_demux_init), (gst_dvd_demux_get_video_stream),
32134         (gst_dvd_demux_get_subpicture_stream),
32135         (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_set_cur_subpicture):
32136         * gst/mpegstream/gstdvddemux.h:
32137           Set the explicit caps on the current_video pad before pushing
32138           anything
32139         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
32140         (gst_mpeg_demux_get_audio_stream):
32141           Free caps used to gst_pad_set_explicit_caps, which takes a const
32142           GstCaps *
32143
32144 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
32145
32146         * configure.ac: update GStreamer requirement to 0.8.4 because of
32147           GstFraction.
32148
32149 2004-07-28  Wim Taymans  <wim@fluendo.com>
32150
32151         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt),
32152         (gst_wavparse_handle_seek), (gst_wavparse_srcpad_event):
32153         Add the pad to the element after setting up the caps. This
32154         makes it a lot easier to autoplug.
32155
32156 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
32157
32158         * gst/median/gstmedian.c:
32159         * gst/mpeg2subt/gstmpeg2subt.c:
32160         * gst/mpegaudioparse/gstmpegaudioparse.c:
32161         * gst/mpegstream/gstdvddemux.c:
32162         * gst/mpegstream/gstmpegdemux.c:
32163         * gst/mpegstream/gstmpegpacketize.c:
32164         * gst/rtjpeg/gstrtjpeg.c:
32165         * gst/rtjpeg/gstrtjpegdec.c:
32166         * gst/rtjpeg/gstrtjpegenc.c:
32167         * gst/sine/gstsinesrc.c:
32168         * gst/smooth/gstsmooth.c:
32169         * gst/smpte/gstsmpte.c:
32170         * gst/smpte/gstsmpte.h:
32171         * gst/stereo/gststereo.c:
32172         * gst/videofilter/gstgamma.c:
32173         * gst/videofilter/gstvideobalance.c:
32174         * gst/videofilter/gstvideofilter.c:
32175         * gst/videofilter/gstvideoflip.c:
32176         * gst/videoscale/gstvideoscale.c:
32177         * gst/videoscale/videoscale.c:
32178         * gst/videotestsrc/gstvideotestsrc.c:
32179         * gst/videotestsrc/videotestsrc.c:
32180         * gst/wavenc/gstwavenc.c:
32181         * gst/wavparse/gstwavparse.c:
32182           fix local includes and 64 bits constants
32183
32184 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
32185
32186         * win32/gst.sln:
32187         * gst-libs/gst/*/*.vcproj:
32188         * gst/*/*.vcproj:
32189           more working plugins
32190
32191 2004-07-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
32192
32193         * testsuite/alsa/Makefile.am:
32194         * testsuite/alsa/srcstate.c:
32195         add test for alsasrc changing state
32196
32197 2004-07-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
32198
32199         * gst/silence/gstsilence.c: (gst_silence_init), (gst_silence_link),
32200         (gst_silence_get):
32201         * gst/silence/gstsilence.h:
32202         fix silence generation for 16bit raw audio
32203
32204 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
32205
32206         * gst/matroska/matroska-demux.c:
32207         (gst_matroska_demux_parse_metadata),
32208         (gst_matroska_demux_video_caps), (gst_matroska_demux_plugin_init):
32209         * gst/mpegaudio/common.c:
32210         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
32211         (gst_videoscale_getcaps), (gst_videoscale_link),
32212         (gst_videoscale_src_fixate), (gst_videoscale_init),
32213         (gst_videoscale_finalize):
32214         * gst/videoscale/gstvideoscale.h:
32215         * gst/videotestsrc/gstvideotestsrc.c:
32216         (gst_videotestsrc_get_capslist):
32217         * gst/wavenc/gstwavenc.c:
32218         * sys/oss/gstossmixer.c: (fill_labels):
32219         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
32220         (gst_ximagesink_handle_xevents),
32221         (gst_ximagesink_calculate_pixel_aspect_ratio),
32222         (gst_ximagesink_xcontext_get), (gst_ximagesink_fixate),
32223         (gst_ximagesink_getcaps), (gst_ximagesink_sink_link),
32224         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
32225         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
32226         (gst_ximagesink_init), (gst_ximagesink_class_init):
32227         * sys/ximage/ximagesink.h:
32228         * sys/xvimage/xvimagesink.c:
32229         (gst_xvimagesink_calculate_pixel_aspect_ratio),
32230         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_sink_link),
32231         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
32232         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
32233         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
32234         * sys/xvimage/xvimagesink.h:
32235           first batch of pixel aspect ratio commits.
32236
32237 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
32238
32239         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
32240         (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_chain):
32241         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_fill):
32242           handle stride, needs work if we want to move stride handling
32243           upstream, but works correctly for our purposes.
32244
32245 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
32246
32247         * gst/videoscale/README:
32248           add testing examples
32249         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link),
32250         (gst_videoscale_chain):
32251         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
32252         (gst_videoscale_get_size):
32253           add get_size function that handles stride like videotestsrc.
32254           fixes conversion for YUV formats for as much as I can test them.
32255
32256 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
32257
32258         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
32259         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
32260         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
32261         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
32262         (gst_xvimagesink_xvimage_put):
32263           further cleanups, logging, error handling and synchronizing
32264
32265 2004-07-27  Wim Taymans  <wim@fluendo.com>
32266
32267         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
32268         (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
32269         (gst_videomixer_pad_set_property),
32270         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
32271         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
32272         (gst_videomixer_class_init), (gst_videomixer_init),
32273         (gst_videomixer_getcaps), (gst_videomixer_request_new_pad),
32274         (gst_videomixer_blend_ayuv_i420), (pad_zorder_compare),
32275         (gst_videomixer_sort_pads), (gst_videomixer_fill_checker),
32276         (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
32277         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
32278         (gst_videomixer_loop), (plugin_init):
32279         Be a nicer negotiation citizen and provide a getcaps function on
32280         the srcpad. This also fixes a crash when resizing.
32281
32282 2004-07-27  Julien MOUTTE  <julien@moutte.net>
32283
32284         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
32285         (gst_xvimagesink_xvimage_new): Some fixes to image size calculation.
32286
32287 2004-07-27  Wim Taymans  <wim@fluendo.com>
32288
32289         * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps):
32290         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
32291         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
32292         (gst_pngenc_set_property):
32293         * ext/libpng/gstpngenc.h:
32294         Added snapshot property to pngenc.
32295         removed g_print from pngdec
32296
32297 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
32298
32299         * gst/ac3parse/ac3parse.vcproj
32300         * gst/adder/adder.vcproj
32301         * gst/alpha/alpha.vcproj
32302         * gst/alpha/alphacolor.vcproj
32303         * gst/asfdemux/asf.vcproj
32304         * gst/audioconvert/audioconvert.vcproj
32305         * gst/audiorate/audiorate.vcproj
32306         * gst/audioscale/audioscale.vcproj
32307         * gst/auparse/auparse.vcproj
32308         * gst/avi/avi.vcproj
32309         * gst/cdxaparse/cdxaparse.vcproj
32310         * gst/chart/chart.vcproj
32311         * gst/colorspace/colorspace.vcproj
32312         * gst/cutter/cutter.vcproj
32313         * gst/debug/debug.vcproj
32314         * gst/debug/efence.vcproj
32315         * gst/debug/navigationtest.vcproj
32316         * gst/deinterlace/deinterlace.vcproj
32317         * gst/effectv/effectv.vcproj
32318         * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
32319         * gst/filter/filter.vcproj
32320         * gst/flx/flxdec.vcproj
32321         * gst/goom/goom.vcproj
32322         * gst/interleave/interleave.vcproj
32323         * gst/law/alaw.vcproj
32324         * gst/law/mulaw.vcproj
32325         * gst/matroska/matroska.vcproj
32326         * gst/median/median.vcproj
32327         * gst/mixmatrix/mixmatrix.vcproj
32328         * gst/mpeg1sys/mpeg1systemencode.vcproj
32329         * gst/mpeg1videoparse/mp1videoparse.vcproj
32330         * gst/mpeg2sub/mpeg2subt.vcproj
32331         * gst/mpegaudio/mpegaudio.vcproj
32332         * gst/mpegaudioparse/mpegaudioparse.vcproj
32333         * gst/mpegstream/mpegstream.vcproj
32334         * gst/multifilesink/multifilesink.vcproj
32335         * gst/multipart/multipart.vcproj
32336         * gst/oneton/oneton.vcproj
32337         * gst/overlay/overlay.vcproj
32338         * gst/passthrough/passthrough.vcproj
32339         * gst/qtdemux/qtdemux.vcproj
32340         * gst/realmedia/rmdemux.vcproj
32341         * gst/rtjpeg/rtjpeg.vcproj
32342         * gst/rtp/rtp.vcproj
32343         * gst/silence/silence.vcproj
32344         * gst/sine/sinesrc.vcproj
32345         * gst/smooth/smooth.vcproj
32346         * gst/smpte/smpte.vcproj
32347         * gst/spectrum/spectrum.vcproj
32348         * gst/speed/speed.vcproj
32349         * gst/stereo/stereo.vcproj
32350         * gst/switch/switch.vcproj
32351         * gst/tags/tagedit.vcproj
32352         * gst/tcp/tcp.vcproj
32353         * gst/typefind/typefindfunctions.vcproj
32354         * gst/udp/udp.vcproj
32355         * gst/videobox/videobox.vcproj
32356         * gst/videocrop/videocrop.vcproj
32357         * gst/videodrop/videodrop.vcproj
32358         * gst/videofilter/gamma.vcproj
32359         * gst/videofilter/videobalance.vcproj
32360         * gst/videofilter/videofilter.vcproj
32361         * gst/videofilter/videoflip.vcproj
32362         * gst/videoflip/videoflip.vcproj
32363         * gst/videomixer/videomixer.vcproj
32364         * gst/videorate/videorate.vcproj
32365         * gst/videoscale/videoscale.vcproj
32366         * gst/videotestsrc/videotestsrc.vcproj
32367         * gst/virtualdub/virtualdub.vcproj
32368         * gst/volenv/volenv.vcproj
32369         * gst/volume/volume.vcproj
32370         * gst/wavenc/wavenc.vcproj
32371         * gst/wavparse/wavparse.vcproj
32372         * gst/y4m/y4menc.vcproj
32373         * gst-libs/gst/audio/audio.vcproj
32374         * gst-libs/gst/audio/audiofilter.vcproj
32375         * gst-libs/gst/colorbalance/colorbalance.vcproj
32376         * gst-libs/gst/idct/idtc.vcproj
32377         * gst-libs/gst/media-info/media-info.vcproj
32378         * gst-libs/gst/mixer/mixer.vcproj
32379         * gst-libs/gst/navigation/navigation.vcproj
32380         * gst-libs/gst/play/play.vcproj
32381         * gst-libs/gst/propertyprobe/propertyprobe.vcproj
32382         * gst-libs/gst/resample/resample.vcproj
32383         * gst-libs/gst/riff/riff.vcproj
32384         * gst-libs/gst/tuner/tuner.vcproj
32385         * gst-libs/gst/video/video.vcproj
32386         * gst-libs/gst/xoverlay/xoverlay.vcproj
32387           avoid problems with math.h, fix release dependancy
32388           rename GStreamer-0.8.lib to libgstreamer.lib
32389
32390 2004-07-27  Julien MOUTTE  <julien@moutte.net>
32391
32392         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
32393         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate): When
32394         the atom is not available we have to unlock the mutex. Fixes #148023
32395
32396 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
32397
32398         * gst-libs/gst/media-info/media-info.h:
32399           issue for a vararg macro with MSVC
32400
32401 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
32402
32403         * gst/effectv/effectv.vcproj
32404         * gst-libs/gst/idct/idct.vcproj:
32405         * gst-libs/gst/media-info/media-info.vcproj:
32406         * gst-libs/gst/navigation/navigation.vcproj:
32407         * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
32408         * gst-libs/gst/video/video.vcproj:
32409         * gst-libs/gst/xoverlay/xoverlay.vcproj:
32410           fixes for build problems
32411
32412 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
32413
32414         * gst-libs/gst/audio/audio.def:
32415         * gst-libs/gst/audio/riff.def:
32416           add some definitions needed by plugins
32417
32418 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
32419
32420         * gst/asfdemux/gstasfmux.c
32421           Fix some 64 bits constants to be glib friendly
32422
32423 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
32424
32425         * gst/ac3parse/gstac3parse.c
32426         * gst/audioscale/gstaudioscale.c
32427         * gst/auparse/gstauparse.c
32428         * gst/colorspace/gstcolorspace.c
32429         * gst/colorspace/yuv2rgb.h
32430           local include fixes
32431
32432 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
32433
32434         * win32/gst.sln
32435           add more plugins to the build
32436
32437 2004-07-26  Julien MOUTTE  <julien@moutte.net>
32438
32439         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
32440         (gst_ximagesink_ximage_new): Some more fixes to image size calculation.
32441
32442 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
32443
32444         * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
32445         (gst_level_set_property), (gst_level_get_property),
32446         (gst_level_base_init), (gst_level_class_init):
32447           add debugging categories.  cleanups.
32448
32449 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
32450
32451         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
32452         (gst_videoscale_planar411), (gst_videoscale_planar400),
32453         (gst_videoscale_packed422), (gst_videoscale_packed422rev),
32454         (gst_videoscale_scale_nearest_str1),
32455         (gst_videoscale_scale_nearest_str2),
32456         (gst_videoscale_scale_nearest_str4),
32457         (gst_videoscale_scale_nearest_16bit),
32458         (gst_videoscale_scale_nearest_24bit):
32459           fixed stride issues
32460           tested with 320x240 -> 321, 322, 324 x240
32461           tested with YV12, I420, YUY2, UYVY
32462           fixed packed422rev (don't think it could have worked before)
32463           by testing with UYVY
32464
32465 2004-07-26  Benjamin Otte  <otte@gnome.org>
32466
32467         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_init),
32468         (gst_lame_chain), (gst_lame_setup), (gst_lame_change_state),
32469         (plugin_init):
32470           add debugging category, add error checks like checking return values
32471           of setup calls, make sure it still works after
32472           PLAYING=>NULL=>PLAYING, fix encoding of mono streams
32473
32474 2004-07-26  Wim Taymans  <wim@fluendo.com>
32475
32476         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
32477         (gst_mpeg_demux_get_audio_stream),
32478         (gst_mpeg_demux_process_private):
32479         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_send_data):
32480         Check for error codes from the negotiation functions. Make sure
32481         we really set the pad caps when a new pad is created.
32482
32483 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
32484
32485         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
32486         (gst_ffmpeg_caps_to_pix_fmt):
32487         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
32488         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
32489         (gst_ffmpegcolorspace_pad_link):
32490           don't make function do two things at the same time without reason.
32491
32492 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
32493
32494         * gst/ac3parse/ac3parse.vcproj
32495         * gst/adder/adder.vcproj
32496         * gst/alpha/alpha.vcproj
32497         * gst/alpha/alphacolor.vcproj
32498         * gst/asfdemux/asf.vcproj
32499         * gst/audioconvert/audioconvert.vcproj
32500         * gst/audiorate/audiorate.vcproj
32501         * gst/audioscale/audioscale.vcproj
32502         * gst/auparse/auparse.vcproj
32503         * gst/avi/avi.vcproj
32504         * gst/cdxaparse/cdxaparse.vcproj
32505         * gst/chart/chart.vcproj
32506         * gst/colorspace/colorspace.vcproj
32507         * gst/cutter/cutter.vcproj
32508         * gst/debug/debug.vcproj
32509         * gst/debug/efence.vcproj
32510         * gst/debug/navigationtest.vcproj
32511         * gst/deinterlace/deinterlace.vcproj
32512         * gst/effectv/effectv.vcproj
32513         * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
32514         * gst/filter/filter.vcproj
32515         * gst/flx/flxdec.vcproj
32516         * gst/goom/goom.vcproj
32517         * gst/interleave/interleave.vcproj
32518         * gst/law/alaw.vcproj
32519         * gst/law/mulaw.vcproj
32520         * gst/matroska/matroska.vcproj
32521         * gst/median/median.vcproj
32522         * gst/mixmatrix/mixmatrix.vcproj
32523         * gst/mpeg1sys/mpeg1systemencode.vcproj
32524         * gst/mpeg1videoparse/mp1videoparse.vcproj
32525         * gst/mpeg2sub/mpeg2subt.vcproj
32526         * gst/mpegaudio/mpegaudio.vcproj
32527         * gst/mpegaudioparse/mpegaudioparse.vcproj
32528         * gst/mpegstream/mpegstream.vcproj
32529         * gst/multifilesink/multifilesink.vcproj
32530         * gst/multipart/multipart.vcproj
32531         * gst/oneton/oneton.vcproj
32532         * gst/overlay/overlay.vcproj
32533         * gst/passthrough/passthrough.vcproj
32534         * gst/qtdemux/qtdemux.vcproj
32535         * gst/realmedia/rmdemux.vcproj
32536         * gst/rtjpeg/rtjpeg.vcproj
32537         * gst/rtp/rtp.vcproj
32538         * gst/silence/silence.vcproj
32539         * gst/sine/sinesrc.vcproj
32540         * gst/smooth/smooth.vcproj
32541         * gst/smpte/smpte.vcproj
32542         * gst/spectrum/spectrum.vcproj
32543         * gst/speed/speed.vcproj
32544         * gst/stereo/stereo.vcproj
32545         * gst/switch/switch.vcproj
32546         * gst/tags/tagedit.vcproj
32547         * gst/tcp/tcp.vcproj
32548         * gst/typefind/typefindfunctions.vcproj
32549         * gst/udp/udp.vcproj
32550         * gst/videobox/videobox.vcproj
32551         * gst/videocrop/videocrop.vcproj
32552         * gst/videodrop/videodrop.vcproj
32553         * gst/videofilter/gamma.vcproj
32554         * gst/videofilter/videobalance.vcproj
32555         * gst/videofilter/videofilter.vcproj
32556         * gst/videofilter/videoflip.vcproj
32557         * gst/videoflip/videoflip.vcproj
32558         * gst/videomixer/videomixer.vcproj
32559         * gst/videorate/videorate.vcproj
32560         * gst/videoscale/videoscale.vcproj
32561         * gst/videotestsrc/videotestsrc.vcproj
32562         * gst/virtualdub/virtualdub.vcproj
32563         * gst/volenv/volenv.vcproj
32564         * gst/volume/volume.vcproj
32565         * gst/wavenc/wavenc.vcproj
32566         * gst/wavparse/wavparse.vcproj
32567         * gst/y4m/y4menc.vcproj
32568           more plugins supported under windows
32569
32570 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
32571
32572         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
32573         (gst_ximagesink_ximage_put), (gst_ximagesink_renegotiate_size),
32574         (gst_ximagesink_chain), (gst_ximagesink_buffer_alloc):
32575         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
32576         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc):
32577           Add debugging statements.  Use the sizes as returned by the
32578           *CreateImage calls.
32579
32580 2004-07-26  Johan Dahlin  <johan@gnome.org>
32581
32582         * gst/tcp/gsttcpclientsrc.c (gst_tcpclientsrc_get): Make sure that
32583         the pad is negotiated.
32584
32585         * gst/ffmpegcolorspace/gstffmpegcolorspace.c (gst_ffmpegcolorspace_chain): Ditto
32586
32587 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
32588
32589         * gst-libs/gst/colorbalance/colorbalance.vcproj:
32590         * gst-libs/gst/idct/idct.vcproj:
32591         * gst-libs/gst/media-info/media-info.vcproj:
32592         * gst-libs/gst/mixer/mixer.vcproj:
32593         * gst-libs/gst/navigation/navigation.vcproj:
32594         * gst-libs/gst/play/play.vcproj:
32595         * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
32596         * gst-libs/gst/resample/resample.vcproj:
32597         * gst-libs/gst/tuner/tuner.vcproj:
32598         * gst-libs/gst/video/video.vcproj:
32599         * gst-libs/gst/xoverlay/xoverlay.vcproj:
32600           more plugins supported under windows
32601
32602 2004-07-25 Iain <iain@prettypeople.org>
32603
32604         * gst/wavparse/gstwavparse.c (gst_wavparse_fmt): Set the caps on the
32605         pad now rather than when the pad is created because state changes wipe
32606         explicit caps (fixes #148043).
32607
32608 2004-07-25  Sebastien Cote  <sc5@hermes.usherb.ca>
32609
32610         reviewed by Benjamin Otte  <otte@gnome.org>
32611
32612         * ext/mad/gstmad.c:
32613           fix mad plugin crashing on Sun (fixes #148289)
32614
32615 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
32616
32617         * gst/avi/avi.def:
32618         * gst/avi/avi.vcproj:
32619         * gst/matroska/matroska.def:
32620         * gst/matroska/matroska.vcproj:
32621           remove unused .def files
32622
32623 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
32624
32625         * gst-libs/gst/audio/gstaudiofilter.c:
32626           Clean the local include
32627
32628 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
32629
32630         * win32/gst.sln:
32631         * gst-libs/gst/audio/audio.def:
32632         * gst-libs/gst/audio/audio.vcproj:
32633         * gst-libs/gst/audio/audiofilter.vcproj:
32634         * gst-libs/gst/audio/riff.def:
32635         * gst-libs/gst/audio/riff.vcproj:
32636         * gst-libs/gst/gst-libs.def:
32637         * gst-libs/gst/gst-libs.vcproj:
32638         * gst/avi/avi.vcproj:
32639         * gst/avi/avi.vcproj:
32640           Copy the files where needed after building, cleaner projects
32641
32642 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
32643
32644         * gst/matroska/ebml-write.c:
32645           Fix some 64 bits constants to be glib friendly
32646
32647 2004-07-24  Steve Lhomme  <steve.lhomme@free.fr>
32648
32649         * win32/gst.sln:
32650         * gst-libs/gst/gst-libs.def:
32651         * gst-libs/gst/gst-libs.vcproj:
32652         * gst/matroska/matroska.def:
32653         * gst/matroska/matroska.vcproj:
32654           Add the preliminary canvas to build plugins on Win32
32655
32656 2004-07-23  Benjamin Otte  <otte@gnome.org>
32657
32658         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
32659           don't enfore negotiation from source side, it breaks
32660           sinesrc ! audioconvert ! osssink
32661
32662 2004-07-22  David Schleef  <ds@schleef.org>
32663
32664         * gst/typefind/gsttypefindfunctions.c: (plugin_init): Add typefind
32665         for ELF files, since they can easily be recognized as audio/mpeg.
32666         (bug #147441)
32667
32668 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
32669
32670         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
32671         (gst_videoscale_planar411), (gst_videoscale_scale_nearest_32bit),
32672         (gst_videoscale_scale_nearest_24bit),
32673         (gst_videoscale_scale_nearest_16bit):
32674           fix 16bit and 24bit for stride (24bit might need testing)
32675           don't pretend we do more than one algorithm
32676
32677 2004-07-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
32678
32679         * configure.ac:
32680         * gst/Makefile.am:
32681         * gst/multifilesink/Makefile.am:
32682         * gst/multifilesink/gstmultifilesink.c:
32683         (gst_multifilesink_get_formats),
32684         (gst_multifilesink_get_query_types), (_do_init),
32685         (gst_multifilesink_base_init), (gst_multifilesink_class_init),
32686         (gst_multifilesink_init), (gst_multifilesink_dispose),
32687         (gst_multifilesink_set_location), (gst_multifilesink_set_property),
32688         (gst_multifilesink_get_property), (gst_multifilesink_open_file),
32689         (gst_multifilesink_close_file), (gst_multifilesink_next_file),
32690         (gst_multifilesink_pad_query), (gst_multifilesink_handle_event),
32691         (gst_multifilesink_chain), (gst_multifilesink_change_state),
32692         (gst_multifilesink_uri_get_type),
32693         (gst_multifilesink_uri_get_protocols),
32694         (gst_multifilesink_uri_get_uri), (gst_multifilesink_uri_set_uri),
32695         (gst_multifilesink_uri_handler_init), (plugin_init):
32696         * gst/multifilesink/gstmultifilesink.h:
32697         * testsuite/Makefile.am:
32698         * testsuite/multifilesink/Makefile.am:
32699         * testsuite/multifilesink/fakesrc_test.c: (gst_newmedia_base_init),
32700         (gst_newmedia_class_init), (gst_newmedia_init),
32701         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
32702         (newfile_signal), (test_signal), (main):
32703         multifilesink plugin for creating new files every time a new media
32704         discontinuity event occurs
32705
32706 2004-07-22  Wim Taymans  <wim@fluendo.com>
32707
32708         * gst/alpha/Makefile.am:
32709         * gst/alpha/gstalphacolor.c: (gst_alpha_color_get_type),
32710         (gst_alpha_color_base_init), (gst_alpha_color_class_init),
32711         (gst_alpha_color_init), (gst_alpha_color_set_property),
32712         (gst_alpha_color_get_property), (gst_alpha_color_sink_link),
32713         (transform), (gst_alpha_color_chain),
32714         (gst_alpha_color_change_state), (plugin_init):
32715         Stupid plugin to to RGBA to AYUV conversion because none of
32716         the colorspace plugins can handle that yet.
32717
32718 2004-07-22  Wim Taymans  <wim@fluendo.com>
32719
32720         * examples/seeking/seek.c: (update_scale), (main):
32721         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
32722         (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
32723         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
32724         (gst_decode_bin_init), (gst_decode_bin_dispose),
32725         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
32726         (no_more_pads), (close_link), (type_found),
32727         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
32728         (plugin_init):
32729         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
32730         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
32731         (gst_play_base_bin_dispose), (queue_overrun),
32732         (gen_preroll_element), (remove_prerolls), (unknown_type),
32733         (no_more_pads), (new_stream), (setup_source),
32734         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
32735         (play_base_eos), (gst_play_base_bin_change_state),
32736         (gst_play_base_bin_add_element),
32737         (gst_play_base_bin_remove_element),
32738         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
32739         (gst_play_base_bin_unlink_stream),
32740         (gst_play_base_bin_get_streaminfo):
32741         * gst/playback/gstplaybin.c: (gen_video_element),
32742         (gen_audio_element):
32743         * gst/playback/gststreaminfo.h:
32744         More playback updates, attempt to fix things after the state change
32745         breakage.
32746
32747 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
32748
32749         * gst/videoscale/videoscale.c: (gst_videoscale_planar411),
32750         (gst_videoscale_scale_nearest_16bit):
32751           comment algorithm
32752
32753 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
32754
32755         * gst/videotestsrc/gstvideotestsrc.c:
32756         (gst_videotestsrc_class_init), (gst_videotestsrc_src_link),
32757         (gst_videotestsrc_init), (gst_videotestsrc_get),
32758         (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
32759         (gst_videotestsrc_get_property):
32760         * gst/videotestsrc/gstvideotestsrc.h:
32761         * gst/videotestsrc/videotestsrc.c:
32762         * gst/videotestsrc/videotestsrc.h:
32763           cleanup and commenting
32764
32765 2004-07-21  Wim Taymans  <wim@fluendo.com>
32766
32767         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
32768         (gst_ogg_demux_get_formats), (gst_ogg_demux_src_query),
32769         (gst_ogg_demux_src_event), (gst_ogg_demux_src_convert),
32770         (gst_ogg_demux_handle_event), (gst_ogg_demux_seek_before),
32771         (_find_chain_get_unknown_part), (_find_streams_check),
32772         (gst_ogg_demux_push), (gst_ogg_pad_push):
32773         * ext/theora/theoradec.c: (theora_get_formats),
32774         (theora_dec_src_convert), (theora_dec_sink_convert),
32775         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
32776         (theora_dec_chain):
32777         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
32778         (vorbis_dec_convert), (vorbis_dec_src_query),
32779         (vorbis_dec_src_event), (vorbis_dec_event):
32780         More seeking fixes, oggdemux now supports seeking to time and
32781         uses the downstream element to convert granulepos to time.
32782         Seeking in theora-only ogg files now works.
32783
32784 2004-07-21  Wim Taymans  <wim@fluendo.com>
32785
32786         * ext/theora/theoradec.c: (gst_theora_dec_init),
32787         (theora_get_formats), (theora_get_event_masks),
32788         (theora_get_query_types), (theora_dec_src_convert),
32789         (theora_dec_sink_convert), (theora_dec_src_query),
32790         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
32791         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
32792         (vorbis_get_event_masks), (vorbis_get_query_types),
32793         (gst_vorbis_dec_init), (vorbis_dec_convert),
32794         (vorbis_dec_src_query), (vorbis_dec_src_event), (vorbis_dec_event):
32795         Added query/convert/formats functions to vorbis and theora decoders
32796         so that the outside world can use them too. Fixed seeking on an
32797         ogg/theora/vorbis file by disabling the seeking seeking on the
32798         theora srcpad.
32799
32800 2004-07-21  Julien MOUTTE  <julien@moutte.net>
32801
32802         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
32803         (gst_ximagesink_renegotiate_size), (gst_ximagesink_sink_link),
32804         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id): Optimize
32805         images creation for both elements. We don't create the image on caps
32806         nego or renego, we just destroy the internal one if present if it does
32807         not match the needs. The chain function takes care of creating a new
32808         image when needed.
32809         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
32810         (gst_xvimagesink_xwindow_decorate), (gst_xvimagesink_sink_link),
32811         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
32812         (gst_xvimagesink_set_xwindow_id): Additionally xvimage now contains
32813         the image format information. The buffer pool checks for the context
32814         image format and discard images with different formats.
32815         * sys/xvimage/xvimagesink.h: Adding im_format in the xvimage structure.
32816
32817 2004-07-21  Thomas Vander Stichele  <thomas at apestaart dot org>
32818
32819         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
32820         (gst_ffmpegcolorspace_chain):
32821           no point in doing any chaining if the pad we want to push from
32822           isn't usable.
32823
32824 2004-07-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
32825
32826         * gst-libs/gst/riff/riff-media.c:
32827         (gst_riff_create_audio_caps_with_data):
32828           Fix double end-to-native symbol conversion (#148021).
32829
32830 2004-07-20  David Schleef  <ds@schleef.org>
32831
32832         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
32833         Don't use an Atom that doesn't exist.
32834
32835 2004-07-20  Wim Taymans  <wim@fluendo.com>
32836
32837         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
32838         (gst_multifdsink_add), (gst_multifdsink_get_stats),
32839         (gst_multifdsink_client_remove),
32840         (gst_multifdsink_handle_client_write),
32841         (gst_multifdsink_queue_buffer):
32842         * gst/tcp/gstmultifdsink.h:
32843         More multifdsink stats. Avoid deadlock by releasing locks
32844         before sending out a signal.
32845
32846 2004-07-20  Thomas Vander Stichele  <thomas at apestaart dot org>
32847
32848         * po/LINGUAS:
32849         * po/hu.po:
32850           added Hungarian translation (Laszlo Dvornik)
32851
32852 2004-07-20  Wim Taymans  <wim@fluendo.com>
32853
32854         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
32855         (gst_multifdsink_add), (gst_multifdsink_client_remove),
32856         (gst_multifdsink_handle_client_write),
32857         (gst_multifdsink_queue_buffer):
32858         * gst/tcp/gsttcp-marshal.list:
32859         Fixed the stupid marshal definition.
32860
32861 2004-07-20  Wim Taymans  <wim@fluendo.com>
32862
32863         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
32864         (gst_multifdsink_init), (gst_multifdsink_add),
32865         (gst_multifdsink_client_remove),
32866         (gst_multifdsink_handle_client_write),
32867         (gst_multifdsink_queue_buffer), (gst_multifdsink_chain),
32868         (gst_multifdsink_set_property), (gst_multifdsink_get_property),
32869         (gst_multifdsink_init_send):
32870         * gst/tcp/gstmultifdsink.h:
32871         Added more stats, added timeout for a client, fixed some typos
32872         and added some comments.
32873
32874 2004-07-20  Wim Taymans  <wim@fluendo.com>
32875
32876         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
32877         (gst_multifdsink_add), (gst_multifdsink_get_stats),
32878         (gst_multifdsink_client_remove),
32879         (gst_multifdsink_handle_client_write):
32880         * gst/tcp/gstmultifdsink.h:
32881         * gst/tcp/gsttcp-marshal.list:
32882         Added get_stats method that returns a GValueArray of
32883         stats values.
32884
32885 2004-07-19  Benjamin Otte  <otte@gnome.org>
32886
32887         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
32888           make sure longname, description and author are valid UTF-8
32889
32890 2004-07-19  Thomas Vander Stichele  <thomas at apestaart dot org>
32891
32892         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state),
32893         (gst_ximagesink_set_property):
32894         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state),
32895         (gst_xvimagesink_set_property):
32896           make sure SYNCHRONOUS is respected after getting the X context
32897
32898 2004-07-18  Thomas Vander Stichele  <thomas at apestaart dot org>
32899
32900         * gst/matroska/matroska-demux.c:
32901         (gst_matroska_demux_handle_src_event),
32902         (gst_matroska_demux_parse_blockgroup):
32903         * gst/matroska/matroska-ids.h:
32904           add BlockReference tag and ignore it to clear out log.
32905           ignore NAVIGATION events to clear out log.
32906
32907 2004-07-18  Thomas Vander Stichele  <thomas at apestaart dot org>
32908
32909         * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
32910         (gst_matroska_demux_add_stream):
32911         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init):
32912           add debug categories
32913
32914 2004-07-16  Wim Taymans  <wim@fluendo.com>
32915
32916         * ext/libpng/Makefile.am:
32917         * ext/libpng/gstpng.c: (plugin_init):
32918         * ext/libpng/gstpngdec.c: (user_error_fn), (user_warning_fn),
32919         (gst_pngdec_get_type), (gst_pngdec_base_init),
32920         (gst_pngdec_class_init), (gst_pngdec_sinklink), (gst_pngdec_init),
32921         (gst_pngdec_src_getcaps), (user_read_data), (gst_pngdec_chain):
32922         * ext/libpng/gstpngdec.h:
32923         Added png decoder.
32924
32925 2004-07-16  Julien MOUTTE  <julien@moutte.net>
32926
32927         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
32928         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
32929         (gst_ximagesink_ximage_destroy), (gst_ximagesink_sink_link),
32930         (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
32931         (gst_ximagesink_buffer_alloc):
32932         * sys/ximage/ximagesink.h:
32933         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
32934         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
32935         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
32936         (gst_xvimagesink_buffer_alloc):
32937         * sys/xvimage/xvimagesink.h: Getting the 2 video sinks synchronized
32938         again. Using internal data pointer of the x(v)image to store image's
32939         data to be coherent with the buffer alloc mechanism. Investigated the
32940         image destruction code to be sure that everything gets freed correctly.
32941
32942 2004-07-16  Wim Taymans  <wim@fluendo.com>
32943
32944         * gst-libs/gst/riff/riff-read.c:
32945         (gst_riff_read_strf_vids_with_data),
32946         (gst_riff_read_strf_auds_with_data):
32947         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
32948         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
32949         Make sure we don't create 0 sized subbuffers in riff-read.
32950         Signal the no more pads signal after reading the avi header.
32951
32952 2004-07-16  Wim Taymans  <wim@fluendo.com>
32953
32954         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
32955         (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
32956         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
32957         (gst_decode_bin_init), (gst_decode_bin_dispose),
32958         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
32959         (no_more_pads), (close_link), (type_found),
32960         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
32961         (gst_decode_bin_change_state), (plugin_init):
32962         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
32963         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
32964         (gst_play_base_bin_dispose), (queue_overrun),
32965         (gen_preroll_element), (remove_prerolls), (unknown_type),
32966         (no_more_pads), (new_stream), (setup_source),
32967         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
32968         (play_base_eos), (gst_play_base_bin_change_state),
32969         (gst_play_base_bin_add_element),
32970         (gst_play_base_bin_remove_element),
32971         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
32972         (gst_play_base_bin_unlink_stream),
32973         (gst_play_base_bin_get_streaminfo):
32974         * gst/playback/gstplaybasebin.h:
32975         Better error recovery. Added configurable preroll queue size. Faster
32976         detection of no-more-pads.
32977
32978 2004-07-16  Wim Taymans  <wim@fluendo.com>
32979
32980         * gst-libs/gst/video/video.h:
32981         Added 32 bits RGBA. Not sure if we should use another mime-type
32982         for alpha rgb. Currently the presence of the alpha_mask property
32983         signals an alpha channel.
32984
32985 2004-07-16  Wim Taymans  <wim@fluendo.com>
32986
32987         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
32988         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
32989         FPS seems to be 0.0 to MAX everywhere else.
32990
32991 2004-07-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
32992
32993         * gst-libs/gst/riff/riff-media.c:
32994         (gst_riff_create_video_caps_with_data):
32995           mp42/mp43 (no caps) exist too.
32996         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
32997           Set pixel_width/height; we've got them in-caps.
32998         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
32999         * gst/wavparse/gstwavparse.c: (plugin_init):
33000           Both are valid primary.
33001         * sys/oss/gstossmixer.c:
33002           Remove i18n hack and enable translations.
33003
33004 2004-07-15  Benjamin Otte  <otte@gnome.org>
33005
33006         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
33007         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
33008           fix for non-shm xv. Original patch by Tim Ringenbach (fixes #147248)
33009
33010 2004-07-15  Benjamin Otte  <otte@gnome.org>
33011
33012         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
33013         (gst_alsa_sw_params_dump), (gst_alsa_hw_params_dump),
33014         (gst_alsa_close_audio):
33015           disable some of the debugging code for now. Writing debugging to a
33016           buffer is broken in current alsalib releases.
33017
33018 2004-07-12  Benjamin Otte  <otte@gnome.org>
33019
33020         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer):
33021           use bufferpools
33022
33023 2004-07-14  Thomas Vander Stichele  <thomas at apestaart dot org>
33024
33025         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
33026         (theora_dec_src_query), (theora_dec_event):
33027         * ext/theora/theoraenc.c: (gst_theora_enc_class_init):
33028           add debugging categories.  Remove \n's.
33029
33030 2004-07-13  Johan Dahlin  <johan@gnome.org>
33031
33032         * gst/playback/gstplaybin.c (gst_play_bin_set_property)
33033         (gst_play_bin_get_property): Impl.
33034
33035 2004-07-13  Wim Taymans  <wim@fluendo.com>
33036
33037         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_seek_before):
33038         When trying to find the stream length, seek back N pages
33039         instead of just one, where N is the number of streams in
33040         the current chain.
33041
33042 2004-07-13  Wim Taymans  <wim@fluendo.com>
33043
33044         * gst-libs/gst/riff/riff-media.c:
33045         (gst_riff_create_audio_caps_with_data),
33046         (gst_riff_create_audio_caps),
33047         (gst_riff_create_audio_template_caps):
33048         * gst-libs/gst/riff/riff-media.h:
33049         * gst-libs/gst/riff/riff-read.c:
33050         (gst_riff_read_strf_vids_with_data),
33051         (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_auds):
33052         * gst-libs/gst/riff/riff-read.h:
33053         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
33054         (gst_avi_demux_add_stream):
33055         Set codec_data on caps for avidemuxer.
33056
33057 2004-07-12  David Schleef  <ds@schleef.org>
33058
33059         * configure.ac: Fix test for Objective C
33060
33061 2004-07-12  Jan Schmidt  <thaytan@mad.scientist.com>
33062         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_get_capslist),
33063         (gst_gdk_pixbuf_chain):
33064           Add svg and pcx to template caps, and ensure that getcaps returns a
33065           subset of the template caps.
33066           Copy each row manually for output, as gdkpixbuf may pad the
33067           rowstride to a 32-bit word boundary.
33068
33069 2004-07-12  Wim Taymans  <wim@fluendo.com>
33070
33071         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
33072         (gst_riff_create_video_template_caps):
33073         Fix the template caps to include some more media types.
33074
33075 2004-07-12  Wim Taymans  <wim@fluendo.com>
33076
33077         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
33078         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
33079         (compare_ranks), (print_feature), (gst_decode_bin_init),
33080         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
33081         (try_to_link_1), (new_pad), (close_link), (type_found),
33082         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
33083         (gst_decode_bin_change_state), (plugin_init):
33084         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
33085         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
33086         (gst_play_base_bin_dispose), (queue_overrun),
33087         (gen_preroll_element), (remove_prerolls), (no_more_pads),
33088         (new_stream), (setup_source), (gst_play_base_bin_set_property),
33089         (gst_play_base_bin_get_property), (play_base_eos),
33090         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
33091         (gst_play_base_bin_remove_element),
33092         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
33093         (gst_play_base_bin_unlink_stream),
33094         (gst_play_base_bin_get_streaminfo):
33095         * gst/playback/gstplaybasebin.h:
33096         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
33097         (gst_play_bin_class_init), (gst_play_bin_init),
33098         (gst_play_bin_dispose), (gst_play_bin_set_property),
33099         (gst_play_bin_get_property), (gen_video_element),
33100         (gen_audio_element), (remove_sinks), (setup_sinks),
33101         (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
33102         (gst_play_bin_send_event), (gst_play_bin_get_formats),
33103         (gst_play_bin_convert), (gst_play_bin_get_query_types),
33104         (gst_play_bin_query), (plugin_init):
33105         * gst/playback/test4.c: (main):
33106         More fixes on reusing of the element.
33107
33108 2004-07-11  Benjamin Otte  <otte@gnome.org>
33109
33110         * ext/mad/gstmad.c: (normal_seek):
33111           allow seeking for other methods than just SET
33112
33113 2004-07-11  Andy Wingo  <wingo@pobox.com>
33114
33115         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_link): For
33116         float, "any" caps -> buffer_frames=[0,MAX].
33117
33118         * gst/interleave/interleave.c (interleave_getcaps): Seems the core
33119         doesn't intersect our caps with the template any more. Do it
33120         ourselves.
33121         (interleave_buffered_loop): Use g_newa instead of malloc/free.
33122
33123 2004-07-09  Wim Taymans  <wim@fluendo.com>
33124
33125         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
33126         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
33127         (compare_ranks), (print_feature), (gst_decode_bin_init),
33128         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
33129         (try_to_link_1), (new_pad), (close_link), (type_found),
33130         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
33131         (gst_decode_bin_change_state), (plugin_init):
33132         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
33133         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
33134         (gst_play_base_bin_dispose), (queue_overrun),
33135         (gen_preroll_element), (remove_prerolls), (no_more_pads),
33136         (new_stream), (setup_source), (gst_play_base_bin_set_property),
33137         (gst_play_base_bin_get_property), (play_base_eos),
33138         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
33139         (gst_play_base_bin_remove_element),
33140         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
33141         (gst_play_base_bin_unlink_stream),
33142         (gst_play_base_bin_get_streaminfo):
33143         * gst/playback/gstplaybasebin.h:
33144         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
33145         (gst_play_bin_class_init), (gst_play_bin_init),
33146         (gst_play_bin_dispose), (gst_play_bin_set_property),
33147         (gst_play_bin_get_property), (gen_video_element),
33148         (gen_audio_element), (remove_sinks), (setup_sinks),
33149         (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
33150         (gst_play_bin_send_event), (gst_play_bin_get_formats),
33151         (gst_play_bin_convert), (gst_play_bin_get_query_types),
33152         (gst_play_bin_query), (plugin_init):
33153         * gst/playback/test4.c: (main):
33154         Work on object reuse and seeking.
33155
33156 2004-07-09  Wim Taymans  <wim@fluendo.com>
33157
33158         * examples/seeking/seek.c: (iterate):
33159         Don't consume all CPU in the idle loop.
33160
33161 2004-07-09  Wim Taymans  <wim@fluendo.com>
33162
33163         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_new_output_pad),
33164         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_process_private):
33165         Add pad to element *after* setting the pad functions so that
33166         the scheduler can use the correct ones.
33167
33168 2004-07-09  Wim Taymans  <wim@fluendo.com>
33169
33170         * ext/theora/theoradec.c: (theora_dec_from_granulepos),
33171         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_chain):
33172         Sync to keyframe after seek
33173
33174 2004-07-09  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
33175
33176         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
33177         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
33178         (gst_alsa_sink_loop), (gst_alsa_sink_change_state):
33179         * ext/alsa/gstalsasrc.c: (gst_alsa_src_change_state):
33180         * ext/libvisual/visual.c: (gst_visual_change_state):
33181         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_change_state):
33182         * ext/theora/theoradec.c: (theora_dec_change_state):
33183         * ext/theora/theoraenc.c: (theora_enc_change_state):
33184         * ext/vorbis/vorbisdec.c: (vorbis_dec_change_state):
33185         * gst-libs/gst/navigation/navigation.c:
33186         * gst/adder/gstadder.c: (gst_adder_change_state):
33187         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
33188         (gst_audio_convert_get_buffer):
33189         * gst/multipart/multipartdemux.c:
33190         (gst_multipart_demux_change_state):
33191         * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
33192         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
33193         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
33194         * gst/videoscale/gstvideoscale.c:
33195         (gst_videoscale_handle_src_event):
33196         * gst/volume/gstvolume.c: (volume_chain_int16):
33197           don't assert in state change, this should be done by the base
33198           GstElement class.
33199           various debugging fixes.
33200
33201 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
33202
33203         * configure.ac:
33204         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
33205         (gst_play_dispose), (gst_play_set_location),
33206         (gst_play_set_data_src), (gst_play_set_video_sink),
33207         (gst_play_set_audio_sink), (gst_play_set_visualization),
33208         (gst_play_connect_visualization), (gst_play_get_sink_element),
33209         (gst_play_get_all_by_interface):
33210         * gst-libs/gst/play/play.h:
33211           add new method to get elements implementing an interface.
33212           add various error logging
33213
33214 2004-07-08  Wim Taymans  <wim@fluendo.com>
33215
33216         * examples/seeking/seek.c: (make_dv_pipeline), (make_avi_pipeline),
33217         (make_mpeg_pipeline), (make_mpegnt_pipeline),
33218         (make_playerbin_pipeline), (query_durations_elems),
33219         (query_durations_pads), (query_positions_elems),
33220         (query_positions_pads), (update_scale), (iterate), (stop_seek),
33221         (main):
33222         Added playbin seeking example.
33223
33224 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
33225
33226         * gst-libs/gst/play/play.c: (gst_play_set_location),
33227         (gst_play_set_data_src), (gst_play_set_video_sink),
33228         (gst_play_set_audio_sink), (gst_play_set_visualization),
33229         (gst_play_connect_visualization), (gst_play_get_framerate):
33230           use a macro to look up elements from hash table
33231
33232 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
33233
33234         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
33235         (gst_play_get_length_callback), (gst_play_set_location),
33236         (gst_play_seek_to_time), (gst_play_set_data_src),
33237         (gst_play_set_video_sink), (gst_play_set_audio_sink),
33238         (gst_play_set_visualization), (gst_play_connect_visualization),
33239         (gst_play_get_sink_element):
33240         - add debugging info
33241         - fix looking up sink elements by iterating over complete caps
33242         - put everything except for source and autoplugger in a complete bin
33243
33244 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
33245
33246         * ext/alsa/gstalsa.c: (gst_alsa_drain_audio):
33247         * ext/alsa/gstalsasink.c: (gst_alsa_sink_flush_one_pad),
33248         (gst_alsa_sink_check_event), (gst_alsa_sink_mmap),
33249         (gst_alsa_sink_write), (gst_alsa_sink_loop):
33250         * ext/alsa/gstalsasink.h:
33251         - add debugging info
33252         - clean up schizophrenia of data/buffer/event
33253         - fix double event unref error
33254
33255 2004-07-08  Wim Taymans  <wim@fluendo.com>
33256
33257         * gst/playback/Makefile.am:
33258         Add headers to noinst
33259
33260 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
33261
33262         * tools/gst-launch-ext-m.m:
33263         * tools/gst-launch-ext.1.in:
33264           convert to the third millenium
33265
33266 2004-07-07  David Schleef  <ds@schleef.org>
33267
33268         * sys/dxr3/Makefile.am: noinst_SOURCES should be nodist_SOURCES
33269
33270 2004-07-07  Wim Taymans  <wim@fluendo.com>
33271
33272         * gst/playback/Makefile.am:
33273         * gst/playback/README:
33274         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
33275         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
33276         (compare_ranks), (print_feature), (gst_decode_bin_init),
33277         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
33278         (try_to_link_1), (new_pad), (close_link), (type_found),
33279         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
33280         (plugin_init):
33281         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
33282         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
33283         (gst_play_base_bin_dispose), (rebuild_pipeline), (queue_overrun),
33284         (gen_preroll_element), (no_more_pads), (new_stream),
33285         (setup_source), (gst_play_base_bin_set_property),
33286         (gst_play_base_bin_get_property), (gst_play_base_bin_change_state),
33287         (gst_play_base_bin_add_element),
33288         (gst_play_base_bin_remove_element),
33289         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
33290         (gst_play_base_bin_unlink_stream),
33291         (gst_play_base_bin_get_streaminfo):
33292         * gst/playback/gstplaybasebin.h:
33293         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
33294         (gst_play_bin_class_init), (gst_play_bin_init),
33295         (gst_play_bin_dispose), (gst_play_bin_set_property),
33296         (gst_play_bin_get_property), (gen_video_element),
33297         (gen_audio_element), (setup_sinks), (gst_play_bin_change_state),
33298         (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
33299         (gst_play_bin_get_formats), (gst_play_bin_convert),
33300         (gst_play_bin_get_query_types), (gst_play_bin_query),
33301         (plugin_init):
33302         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
33303         (gst_stream_info_get_type), (gst_stream_info_class_init),
33304         (gst_stream_info_init), (gst_stream_info_new),
33305         (gst_stream_info_dispose), (gst_stream_info_set_property),
33306         (gst_stream_info_get_property):
33307         * gst/playback/gststreaminfo.h:
33308         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
33309         (main):
33310         * gst/playback/test2.c: (main):
33311         * gst/playback/test3.c: (update_scale), (main):
33312         More playbin fixes. Added README. Do better element filtering.
33313         Added base class to preroll media. Added test apps.
33314
33315 2004-07-07  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
33316
33317         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_flush_decoder):
33318         * ext/mpeg2dec/gstmpeg2dec.h:
33319           various debugging improvements.  Reset stream to next picture
33320           instead of sequence header, otherwise seeks cannot work.
33321
33322 2004-07-07  Wim Taymans  <wim@fluendo.com>
33323
33324         * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
33325         (gst_video_box_class_init), (gst_video_box_set_property),
33326         (gst_video_box_i420), (gst_video_box_ayuv), (gst_video_box_chain):
33327         Use pad_alloc where possible.
33328
33329 2004-07-07  Wim Taymans  <wim@fluendo.com>
33330
33331         * sys/oss/gstosselement.c: (gst_osselement_reset),
33332         (gst_osselement_parse_caps):
33333         * sys/oss/gstosselement.h:
33334         * sys/oss/gstosssrc.c: (gst_osssrc_get):
33335         Fix offset on osssrc.
33336
33337 2004-07-07  Wim Taymans  <wim@fluendo.com>
33338
33339         * ext/theora/theora.c: (plugin_init):
33340         * ext/theora/theoradec.c: (theora_dec_from_granulepos),
33341         (theora_dec_src_query), (theora_dec_chain):
33342         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
33343         (theora_enc_sink_link), (theora_buffer_from_packet),
33344         (theora_push_packet), (theora_enc_chain):
33345         Fix theora granulepos calculation.
33346         Fix overflow in duration/position calculation.
33347         Bump rank to PRIMARY for theoradec.
33348         Use granulepos of last packet to calculate position.
33349         Set keyframe flag on buffers when needed.
33350
33351 2004-07-06  David Schleef  <ds@schleef.org>
33352
33353         * gst/playback/Makefile.am: 'test' in bin_PROGRAMS?  Are you
33354         serious?  (Fixed, obviously.)
33355
33356 2004-07-06  Thomas Vander Stichele  <thomas at apestaart dot org>
33357
33358         * po/LINGUAS:
33359         * po/cs.po:
33360           added Czech translation (Miloslav Trmac)
33361
33362 2004-07-05  Wim Taymans  <wim@fluendo.com>
33363
33364         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
33365         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
33366         (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
33367         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
33368         (close_link), (type_found), (gst_decode_bin_set_property),
33369         (gst_decode_bin_get_property), (gst_decode_bin_get_event_masks),
33370         (gst_decode_bin_send_event), (gst_decode_bin_get_formats),
33371         (gst_decode_bin_convert), (gst_decode_bin_get_query_types),
33372         (gst_decode_bin_query), (plugin_init):
33373         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
33374         (gst_play_bin_class_init), (gst_play_bin_init),
33375         (gst_play_bin_dispose), (rebuild_pipeline), (get_audio_element),
33376         (get_video_element), (new_pad), (setup_source),
33377         (gst_play_bin_set_property), (gst_play_bin_get_property),
33378         (gst_play_bin_change_state), (gst_play_bin_add_element),
33379         (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
33380         (gst_play_bin_send_event), (gst_play_bin_get_formats),
33381         (gst_play_bin_convert), (gst_play_bin_get_query_types),
33382         (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
33383         * gst/playback/test.c: (main):
33384         More fixes, cleaned up playbin, make it use decodebin. Added
33385         threaded property to playbin.
33386
33387 2004-07-05  Wim Taymans  <wim@fluendo.com>
33388
33389         * configure.ac:
33390         * gst/playback/Makefile.am:
33391         * gst/playback/decodetest.c: (main):
33392         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
33393         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
33394         (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
33395         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
33396         (close_link), (type_found), (gst_decode_bin_set_property),
33397         (gst_decode_bin_get_property), (gst_decode_bin_change_state),
33398         (gst_decode_bin_get_event_masks), (gst_decode_bin_send_event),
33399         (gst_decode_bin_get_formats), (gst_decode_bin_convert),
33400         (gst_decode_bin_get_query_types), (gst_decode_bin_query),
33401         (plugin_init):
33402         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
33403         (gst_play_bin_class_init), (gst_play_bin_init),
33404         (gst_play_bin_dispose), (gen_default_output), (rebuild_pipeline),
33405         (collect_sink_pads), (find_compatibles), (close_pad_link),
33406         (try_to_link_1), (new_pad), (close_link), (type_found),
33407         (setup_source), (gst_play_bin_set_property),
33408         (gst_play_bin_get_property), (gst_play_bin_factory_filter),
33409         (compare_ranks), (gst_play_bin_collect_factories),
33410         (gst_play_bin_change_state), (gst_play_bin_add_element),
33411         (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
33412         (gst_play_bin_send_event), (gst_play_bin_get_formats),
33413         (gst_play_bin_convert), (gst_play_bin_get_query_types),
33414         (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
33415         * gst/playback/test.c: (main):
33416         Added some playback helper elements and some test apps, very alpha
33417         still.
33418
33419 2004-07-04  Benjamin Otte  <otte@gnome.org>
33420
33421         * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
33422           only restart audio when we indeed have an xrun to fix repeated
33423           xruns. Fix suggested by Giuliano Pochini.
33424
33425 2004-07-03  David Schleef  <ds@schleef.org>
33426
33427         * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper): Disable
33428         call to gst_debug_log() if debugging is disabled (bug #145118)
33429
33430 2004-07-03  Benjamin Otte  <otte@gnome.org>
33431
33432         * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
33433           use our own functions for restarting the alsa device.
33434         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
33435           I should apply patches myself - use MIN for the third argument, not
33436           the second, this fixes seeking
33437
33438 2004-07-02  David Schleef  <ds@schleef.org>
33439
33440         * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
33441         (gst_flacdec_write):  Actually, GST_PAD_CAPS() has nothing to
33442         do with the logic.
33443
33444 2004-07-02  David Schleef  <ds@schleef.org>
33445
33446         * ext/flac/gstflacdec.c: (gst_flacdec_write):  Set duration on
33447         output buffers.  Fix logic mistake.  (bug #144866)
33448
33449 2004-07-02  David Schleef  <ds@schleef.org>
33450
33451         * gst-libs/gst/xoverlay/Makefile.am: xoverlay no longer depends
33452         on X.  (bug #144753)
33453
33454 2004-07-02  David Schleef  <ds@schleef.org>
33455
33456         * gst/wavenc/gstwavenc.c: (gst_wavenc_setup),
33457         (gst_wavenc_stop_file): Switch to GST_WRITE_UINT32_LE macros
33458         (bug #144624)
33459         * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
33460         (gst_osselement_rate_probe_check): Add another workaround for
33461         buggy drivers (bug #145336)
33462
33463 2004-07-02  David Schleef  <ds@schleef.org>
33464
33465         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_handle_client_write):
33466         Most systems don't have MSG_NOSIGNAL.
33467
33468 2004-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
33469
33470         * Makefile.am:
33471         * gst-libs/gst/colorbalance/Makefile.am:
33472         * gst-libs/gst/mixer/Makefile.am:
33473         * gst-libs/gst/play/Makefile.am:
33474         * gst-libs/gst/tuner/Makefile.am:
33475           (hopefully) fix both install and dist and make error message useful.
33476           needs testing across automakes.
33477
33478 2004-07-02  Benjamin Otte  <otte@gnome.org>
33479
33480         * ext/ogg/gstogg.c: (plugin_init):
33481           we require bytestream now
33482         * ext/ogg/gstoggdemux.c:
33483           huge diff to implement chain setup in a fast and generic way. This
33484           improves tag reading and startup of huge files (read: Theora videos)
33485           quite a bit. It probably contains bugs, too, so please test.
33486           Seeking is not improved to the fast method.
33487
33488 2004-06-29  Wim Taymans  <wim@fluendo.com>
33489
33490         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
33491         * ext/ogg/gstoggmux.c:
33492         Fix memleak in oggdemux when running unconnected pads.
33493         doc update in mux, start working on keyframe mode.
33494
33495 2004-06-29  Benjamin Otte  <otte@gnome.org>
33496
33497         * sys/oss/gstosssink.c:
33498         * sys/oss/gstosssrc.c:
33499           advertise correct template caps - we indeed do non-native endianness
33500           and 8bit audio has no endianness
33501         * sys/ximage/ximagesink.c: (gst_ximagesink_getcaps):
33502         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps):
33503           avoid (wrong) duplications in getcaps function and return
33504           template caps
33505
33506 2004-06-29  Wim Taymans  <wim@fluendo.com>
33507
33508         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
33509         (gst_multifdsink_class_init), (gst_multifdsink_add),
33510         (gst_multifdsink_remove), (gst_multifdsink_clear),
33511         (gst_multifdsink_client_remove),
33512         (gst_multifdsink_handle_client_read),
33513         (gst_multifdsink_client_queue_data),
33514         (gst_multifdsink_client_queue_caps),
33515         (gst_multifdsink_client_queue_buffer),
33516         (gst_multifdsink_handle_client_write),
33517         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
33518         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
33519         (gst_multifdsink_init_send), (gst_multifdsink_close):
33520         Fix wrong GList iteration that could crash the server when
33521         more then 2 clients disconnect at the same time. Read all the
33522         pending commands in one batch to recover from command storms under
33523         very heavy load.
33524
33525 2004-06-28  Wim Taymans  <wim@fluendo.com>
33526
33527         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
33528         (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
33529         (gst_videomixer_pad_set_property),
33530         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
33531         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
33532         (gst_videomixer_class_init), (gst_videomixer_init),
33533         (gst_videomixer_request_new_pad), (gst_videomixer_blend_ayuv_i420),
33534         (pad_zorder_compare), (gst_videomixer_sort_pads),
33535         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
33536         (gst_videomixer_fill_queues), (gst_videomixer_blend_buffers),
33537         (gst_videomixer_update_queues), (gst_videomixer_loop),
33538         (plugin_init):
33539         Avoid divide by zero, choose masterpad as the pad with the highest
33540         framerate.
33541
33542 2004-06-27  Julien Moutte  <julien@moutte.net>
33543
33544         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
33545         (gst_ximagesink_xwindow_new):
33546         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
33547         (gst_xvimagesink_xwindow_new): I prefer locking the mutex in the
33548         function directly. We might want to call it from somewhere else one day.
33549
33550 2004-06-27  Julien Moutte  <julien@moutte.net>
33551
33552         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
33553         (gst_ximagesink_xwindow_new):
33554         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
33555         (gst_xvimagesink_xwindow_new): Trying to fix the random behaviour of
33556         window decorations.
33557
33558 2004-06-27  Wim Taymans  <wim@fluendo.com>
33559
33560         * ext/dv/gstdvdec.c: (gst_dvdec_class_init), (gst_dvdec_init),
33561         (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
33562         (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state),
33563         (gst_dvdec_set_property), (gst_dvdec_get_property):
33564         * ext/dv/gstdvdec.h:
33565         Implement drop_factor property to lower the framerate with
33566         a factor.
33567
33568 2004-06-27  Thomas Vander Stichele  <thomas at apestaart dot org>
33569
33570         * gst-libs/gst/colorbalance/Makefile.am:
33571         * gst-libs/gst/mixer/Makefile.am:
33572         * gst-libs/gst/play/Makefile.am:
33573         * gst-libs/gst/tuner/Makefile.am:
33574           unbreak Company's fix that didn't install the -enum.h files
33575
33576 2004-06-27  Wim Taymans  <wim@fluendo.com>
33577
33578         * ext/dv/gstdvdec.c: (gst_dvdec_push), (gst_dvdec_loop),
33579         (gst_dvdec_change_state):
33580         * ext/dv/gstdvdec.h:
33581         Fix timestamp, duration and offset of the buffers.
33582
33583 2004-06-27  Wim Taymans  <wim@fluendo.com>
33584
33585         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
33586         (gst_multifdsink_class_init), (gst_multifdsink_add),
33587         (gst_multifdsink_remove), (gst_multifdsink_clear),
33588         (gst_multifdsink_client_remove),
33589         (gst_multifdsink_handle_client_read),
33590         (gst_multifdsink_client_queue_data),
33591         (gst_multifdsink_client_queue_caps),
33592         (gst_multifdsink_client_queue_buffer),
33593         (gst_multifdsink_handle_client_write),
33594         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
33595         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
33596         (gst_multifdsink_init_send), (gst_multifdsink_close):
33597         * gst/tcp/gstmultifdsink.h:
33598         * gst/tcp/gsttcpserversink.c:
33599         (gst_tcpserversink_handle_server_read),
33600         (gst_tcpserversink_handle_select), (gst_tcpserversink_close):
33601         More multifdsink fixes, more recovery policy fixes.
33602         Removed stupid g_print
33603
33604 2004-06-26  Wim Taymans  <wim@fluendo.com>
33605
33606         * gst/tcp/Makefile.am:
33607         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
33608         (gst_multifdsink_get_type), (gst_multifdsink_base_init),
33609         (gst_multifdsink_class_init), (gst_multifdsink_init),
33610         (gst_multifdsink_debug_fdset), (gst_multifdsink_client_remove),
33611         (gst_multifdsink_handle_client_read),
33612         (gst_multifdsink_client_queue_data),
33613         (gst_multifdsink_client_queue_caps),
33614         (gst_multifdsink_client_queue_buffer),
33615         (gst_multifdsink_handle_client_write),
33616         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
33617         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
33618         (gst_multifdsink_chain), (gst_multifdsink_set_property),
33619         (gst_multifdsink_get_property), (gst_multifdsink_init_send),
33620         (gst_multifdsink_close), (gst_multifdsink_change_state):
33621         * gst/tcp/gstmultifdsink.h:
33622         * gst/tcp/gsttcpplugin.c: (plugin_init):
33623         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_get_type),
33624         (gst_tcpserversink_class_init), (gst_tcpserversink_init),
33625         (gst_tcpserversink_handle_server_read),
33626         (gst_tcpserversink_handle_select),
33627         (gst_tcpserversink_set_property), (gst_tcpserversink_get_property),
33628         (gst_tcpserversink_init_send), (gst_tcpserversink_close):
33629         * gst/tcp/gsttcpserversink.h:
33630         Added multifdsink, made tcpserversink a subclass of fdsink, removed
33631         one of the locks, added recovery policy to multifdsink.
33632
33633 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
33634
33635         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
33636           fix decision for when getting frames with same timestamp
33637         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
33638         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
33639         (gst_v4lsrc_get_property):
33640         * sys/v4l/gstv4lsrc.h:
33641           add latency offset property
33642
33643 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
33644
33645         * gst/videorate/gstvideorate.c: (gst_videorate_chain),
33646         (plugin_init):
33647           fix debugging. add category.
33648
33649 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
33650
33651         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
33652           fix wrong offsets
33653
33654 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
33655
33656         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
33657         (gst_alsa_src_get_time), (gst_alsa_src_loop),
33658         (gst_alsa_src_change_state):
33659           return a time that is in sync with the element's processing
33660
33661 2004-06-25  Wim Taymans  <wim@fluendo.com>
33662
33663         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
33664         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
33665         (gst_tcpserversink_client_remove),
33666         (gst_tcpserversink_handle_client_read),
33667         (gst_tcpserversink_client_queue_data),
33668         (gst_tcpserversink_client_queue_caps),
33669         (gst_tcpserversink_client_queue_buffer),
33670         (gst_tcpserversink_handle_client_write),
33671         (gst_tcpserversink_queue_buffer),
33672         (gst_tcpserversink_handle_clients), (gst_tcpserversink_thread),
33673         (gst_tcpserversink_chain), (gst_tcpserversink_set_property),
33674         (gst_tcpserversink_get_property), (gst_tcpserversink_init_send),
33675         (gst_tcpserversink_close):
33676         * gst/tcp/gsttcpserversink.h:
33677         Serversink rewrite. Really do non blocking writes to clients and
33678         maintain an internal queue to handle slower clients while not
33679         disturbing fast clients.
33680
33681 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
33682
33683         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
33684           better debug, don't override OFFSET and OFFSET_END
33685
33686 2004-06-25  Iain <iain@prettypeople.org>
33687
33688         * gst-libs/gst/media-info/media-info-priv.c (gmi_set_mime): Add
33689         name=source for the wavparse pipeline.
33690
33691 2004-06-24  Johan Dahlin  <johan@gnome.org>
33692
33693         * ext/theora/theoraenc.c (theora_enc_chain): Call
33694         gst_pad_try_set_caps instead of gst_pad_set_explicit_caps so the
33695         streamheader caps are set correctly.
33696
33697 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
33698
33699         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
33700         (gst_vorbisenc_setup), (gst_vorbisenc_set_property):
33701           respect minimum bitrate; same could be done for max bitrate
33702
33703 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
33704
33705         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
33706         (gst_vorbisenc_setup):
33707           fix sample rate range
33708
33709 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
33710
33711         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_class_init),
33712         (gst_oggvorbisenc_setup):
33713         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
33714         (gst_vorbisenc_setup):
33715           resolve ambiguities in code and description
33716
33717 2004-06-24  Wim Taymans  <wim@fluendo.com>
33718
33719         * ext/alsa/gstalsa.c: (gst_alsa_start), (gst_alsa_xrun_recovery):
33720         * ext/alsa/gstalsa.h:
33721         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
33722         (gst_alsa_src_update_avail), (gst_alsa_src_loop):
33723         Use alsa trigger_tstamp to get the timestamp of the first
33724         sample in the buffer for more precise sync. Some cleanups.
33725
33726 2004-06-24  Wim Taymans  <wim@fluendo.com>
33727
33728         * gst/audiorate/gstaudiorate.c: (gst_audiorate_link),
33729         (gst_audiorate_init), (gst_audiorate_chain),
33730         (gst_audiorate_set_property), (gst_audiorate_get_property):
33731         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
33732         (gst_videorate_chain):
33733         Added some logging, fixed an overflow bug in videorate.
33734
33735 2004-06-24  Benjamin Otte  <otte@gnome.org>
33736
33737         * ext/kio/Makefile.am:
33738           fix for builddir != srcdir and distcheck
33739
33740 2004-06-24  Benjamin Otte  <otte@gnome.org>
33741
33742         * gst-libs/gst/colorbalance/Makefile.am:
33743         * gst-libs/gst/mixer/Makefile.am:
33744         * gst-libs/gst/play/Makefile.am:
33745         * gst-libs/gst/tuner/Makefile.am:
33746         * gst/tcp/Makefile.am:
33747         * sys/dxr3/Makefile.am:
33748           don't include -enumtypes.[ch] or -marshal.[ch] files in the disted
33749           tarball.
33750           Also add all *.list files that were missing.
33751         * Makefile.am:
33752           add a distcheck hook to ensure the above doesn't happen again.
33753
33754 2004-06-23  David I. Lehn  <dlehn@users.sourceforge.net>
33755
33756         * ext/Makefile.am: s/DTS_DIR=dvdread/DTS_DIR=dts/
33757
33758 2004-06-23  Colin Walters  <walters@redhat.com>
33759
33760         * m4/Makefile.am: Distribute gst-fionread.m4.
33761
33762 2004-06-23  Thomas Vander Stichele  <thomas at apestaart dot org>
33763
33764         * configure.ac: back to dev
33765
33766 2004-06-23  Wim Taymans  <wim@fluendo.com>
33767
33768         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
33769         (gst_alsa_xrun_recovery):
33770         * ext/alsa/gstalsa.h:
33771         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
33772         (gst_alsa_sink_loop), (gst_alsa_sink_get_time):
33773         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
33774         (gst_alsa_src_get_time), (gst_alsa_src_update_avail),
33775         (gst_alsa_src_loop):
33776         Add clock to alsasrc. Take new capture timestamp when
33777         restarting after an overrun. Split up some functions between
33778         alsasrc and alsasink.
33779
33780 === release 0.8.2 ===
33781
33782 2004-06-23  Thomas Vander Stichele  <thomas at apestaart dot org>
33783
33784         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
33785         (gst_alsa_change_state), (gst_alsa_update_avail),
33786         (gst_alsa_xrun_recovery):
33787         * ext/alsa/gstalsa.h:
33788         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
33789           merge back changes from release
33790
33791 2004-06-23  Wim Taymans  <wim@fluendo.com>
33792
33793         * gst/audiorate/gstaudiorate.c: (gst_audiorate_class_init),
33794         (gst_audiorate_init), (gst_audiorate_chain),
33795         (gst_audiorate_set_property), (gst_audiorate_get_property):
33796         Implement sample dropping and notify
33797
33798 2004-06-22  Wim Taymans  <wim@fluendo.com>
33799
33800         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
33801         (theora_enc_sink_link), (theora_buffer_from_packet),
33802         (theora_push_packet), (theora_enc_chain):
33803         Some cleanups, make sure the timestamps are correct.
33804
33805 2004-06-22  Wim Taymans  <wim@fluendo.com>
33806
33807         * ext/alsa/gstalsa.c: (gst_alsa_get_time), (gst_alsa_clock_update),
33808         (gst_alsa_change_state), (gst_alsa_update_avail),
33809         (gst_alsa_xrun_recovery):
33810         * ext/alsa/gstalsa.h:
33811         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
33812         Cleanups, take queued samples into account when reporting
33813         the time.
33814
33815 2004-06-22  Wim Taymans  <wim@fluendo.com>
33816
33817         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
33818         (gst_videorate_init):
33819         Initialize the property as well.
33820
33821 2004-06-22  Wim Taymans  <wim@fluendo.com>
33822
33823         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
33824         (gst_videorate_init), (gst_videorate_chain),
33825         (gst_videorate_set_property), (gst_videorate_get_property):
33826         Add property to make videorate silent.
33827         Add property to prefer new frames over old ones.
33828
33829 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
33830
33831         * sys/osxvideo/Makefile.am:
33832         Workaround so that the osxvideo .so file gets linked with the
33833         Cocoa, OpenGL and QuickTime frameworks
33834
33835 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
33836
33837         * sys/osxaudio/Makefile.am:
33838         Workaround so that the osxaudio .so file gets linked with the
33839         CoreAudio framework
33840
33841 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
33842
33843         * configure.ac:
33844         Whoops, my fault...fixed build issues
33845
33846 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
33847
33848         * configure.ac:
33849         Add objective-c support if running in Darwin/Mac OS X
33850         * sys/Makefile.am:
33851         * sys/osxvideo:
33852         * sys/osxvideo/Makefile.am:
33853         * sys/osxvideo/osxvideosink.h:
33854         * sys/osxvideo/osxvideosink.m:
33855         * sys/osxvideo/cocoawindow.h:
33856         * sys/osxvideo/cocoawindow.m:
33857         Add osxvideosink, a cocoa-based osx video sink
33858
33859
33860 2004-06-19  Jan Schmidt  <thaytan@mad.scientist.com>
33861         * ext/dvdnav/gst-dvd:
33862         Grab the gconf key from the right spot
33863         * gst/debug/gstnavseek.c: (gst_navseek_init),
33864         (gst_navseek_segseek), (gst_navseek_handle_src_event),
33865         (gst_navseek_chain):
33866         * gst/debug/gstnavseek.h:
33867           Add 's', 'e' and 'l' keypresses to navseek to define the start,end
33868           and loop parameters of a segment seek.
33869         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
33870         (gst_videotestsrc_get_event_masks),
33871         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
33872         * gst/videotestsrc/gstvideotestsrc.h:
33873           Add seeking support to videotestsrc
33874           Initialise the timestamp_offset variable.
33875
33876 2004-06-18  Wim Taymans  <wim@fluendo.com>
33877
33878         * ext/sidplay/gstsiddec.cc:
33879         Fix negotiation and set correct end offset.
33880
33881 2004-06-18  Thomas Vander Stichele  <thomas at apestaart dot org>
33882
33883         * configure.ac: branch and prerelease
33884
33885 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
33886
33887         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
33888         (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_get),
33889         (gst_tcpclientsrc_init_receive):
33890         * gst/tcp/gsttcpclientsrc.h:
33891           read caps when connecting to server for GDP so we set them correctly
33892
33893 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
33894
33895         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
33896           notify drops and duplicates
33897         * gst/videoscale/videoscale.c: (videoscale_get_structure):
33898           no good reason to limit ourselves to 100x100
33899
33900 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
33901
33902         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
33903         (gst_v4lsrc_open), (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
33904         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
33905         (gst_v4lsrc_get_property):
33906         * sys/v4l/gstv4lsrc.h:
33907         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
33908         (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
33909         (gst_v4l_set_audio):
33910         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame),
33911         (gst_v4lsrc_try_capture):
33912         * sys/v4l/v4lsrc_calls.h:
33913           change try_palette to more general try_capture
33914           add autoprobe option so we can turn off autoprobing
33915           various fixes
33916
33917 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
33918
33919         * configure.ac:
33920           add videorate
33921         * sys/ximage/ximagesink.c: (gst_ximagesink_finalize),
33922         (gst_ximagesink_class_init):
33923         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_finalize),
33924         (gst_xvimagesink_class_init):
33925           run them as finalize, not dispose, since dispose can be invoked
33926           multiple times
33927
33928 2004-06-17  Wim Taymans  <wim@fluendo.com>
33929
33930         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
33931         (gst_alsa_get_time), (gst_alsa_xrun_recovery):
33932         * ext/alsa/gstalsa.h:
33933         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
33934         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init), (gst_alsa_src_loop),
33935         (gst_alsa_src_change_state):
33936         * ext/alsa/gstalsasrc.h:
33937         Make the xrun code timestamp and offset the buffers correctly.
33938         moved the clock to the base class, use alsa methods to get time.
33939         Do correct timestamping on outgoing buffers.
33940
33941 2004-06-17  Wim Taymans  <wim@fluendo.com>
33942
33943         * gst/audiorate/Makefile.am:
33944         * gst/audiorate/gstaudiorate.c: (gst_audiorate_get_type),
33945         (gst_audiorate_base_init), (gst_audiorate_class_init),
33946         (gst_audiorate_link), (gst_audiorate_init), (gst_audiorate_chain),
33947         (gst_audiorate_set_property), (gst_audiorate_get_property),
33948         (gst_audiorate_change_state), (plugin_init):
33949         Added an audiorate converter that fills in gaps.
33950
33951 2004-06-17  Johan Dahlin  <johan@gnome.org>
33952
33953         * ext/tcp/*: Revert Zaheer changes, to make things actually work again.
33954
33955 2004-06-16  Wim Taymans  <wim@fluendo.com>
33956
33957         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get):
33958         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
33959         (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
33960         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
33961         (gst_v4lsrc_get_property):
33962         * sys/v4l/gstv4lsrc.h:
33963         Added a copy mode to v4lsrc where it will output a copied version
33964         of its internal hardware buffer.
33965         Fix the wrong FLAG_SET usage. The flags are integers, not bits, you
33966         can't | them.
33967
33968 2004-06-16  Wim Taymans  <wim@fluendo.com>
33969
33970         * sys/oss/gstosssrc.c: (gst_osssrc_get):
33971         Timestamp fixes.
33972
33973 2004-06-16  Wim Taymans  <wim@fluendo.com>
33974
33975         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
33976         (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
33977         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
33978         (gst_v4lsrc_get_property):
33979         * sys/v4l/gstv4lsrc.h:
33980         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
33981         Added a sync mode enum property to control v4lsrc timestamp method
33982         Removed the use-fixed-fps property and moved functionality in
33983         the enum.
33984         Don't error on an error value from v4l-conf, it might not always
33985         be a real error.
33986
33987 2004-06-16  Wim Taymans  <wim@fluendo.com>
33988
33989         * gst/videorate/Makefile.am:
33990         * gst/videorate/gstvideorate.c: (gst_videorate_get_type),
33991         (gst_videorate_base_init), (gst_videorate_class_init),
33992         (gst_videorate_getcaps), (gst_videorate_link),
33993         (gst_videorate_init), (gst_videorate_chain),
33994         (gst_videorate_set_property), (gst_videorate_get_property),
33995         (gst_videorate_change_state), (plugin_init):
33996         Added a video timestamp corrector.
33997
33998 2004-06-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
33999
34000         fixed a potential leak with previous commit
34001
34002         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
34003
34004 2004-06-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
34005
34006         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
34007         Added missing refcount, fixes bug #144425
34008         Cheers Tim for finding the bug
34009
34010 2004-06-15  Thomas Vander Stichele  <thomas at apestaart dot org>
34011
34012         * sys/v4l/gstv4l.c: (plugin_init):
34013         * sys/v4l/gstv4lcolorbalance.c:
34014         * sys/v4l/gstv4lcolorbalance.h:
34015         * sys/v4l/gstv4lelement.c:
34016         * sys/v4l/gstv4lelement.h:
34017         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
34018         * sys/v4l/gstv4lmjpegsink.h:
34019         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
34020         * sys/v4l/gstv4lmjpegsrc.h:
34021         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
34022         (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
34023         (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
34024         * sys/v4l/gstv4lsrc.h:
34025         * sys/v4l/gstv4ltuner.c:
34026         * sys/v4l/gstv4ltuner.h:
34027         * sys/v4l/gstv4lxoverlay.c:
34028         * sys/v4l/gstv4lxoverlay.h:
34029         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
34030         (gst_v4l_set_window), (gst_v4l_enable_overlay):
34031         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
34032         (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
34033         (gst_v4l_set_audio):
34034         * sys/v4l/v4l_calls.h:
34035         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
34036         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_sync_frame),
34037         (gst_v4lmjpegsink_set_buffer), (gst_v4lmjpegsink_set_playback),
34038         (gst_v4lmjpegsink_playback_init),
34039         (gst_v4lmjpegsink_playback_start), (gst_v4lmjpegsink_get_buffer),
34040         (gst_v4lmjpegsink_play_frame), (gst_v4lmjpegsink_wait_frame),
34041         (gst_v4lmjpegsink_playback_stop),
34042         (gst_v4lmjpegsink_playback_deinit):
34043         * sys/v4l/v4lmjpegsink_calls.h:
34044         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
34045         (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_buffer),
34046         (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
34047         (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_capture_start),
34048         (gst_v4lmjpegsrc_grab_frame), (gst_v4lmjpegsrc_requeue_frame),
34049         (gst_v4lmjpegsrc_capture_stop), (gst_v4lmjpegsrc_capture_deinit):
34050         * sys/v4l/v4lmjpegsrc_calls.h:
34051         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
34052         (gst_v4lsrc_sync_frame), (gst_v4lsrc_set_capture),
34053         (gst_v4lsrc_capture_init), (gst_v4lsrc_capture_start),
34054         (gst_v4lsrc_grab_frame), (gst_v4lsrc_requeue_frame),
34055         (gst_v4lsrc_capture_stop), (gst_v4lsrc_capture_deinit),
34056         (gst_v4lsrc_try_palette):
34057         * sys/v4l/v4lsrc_calls.h:
34058           bunch of paranoia cleanups
34059
34060 2004-06-14  David Schleef  <ds@schleef.org>
34061
34062         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_init),
34063         (cdparanoia_get), (cdparanoia_open), (cdparanoia_change_state):
34064         Send discont events and change timestamps appropriately when
34065         we get a seek event.  (bug #144240)
34066         * ext/cdparanoia/gstcdparanoia.h:
34067
34068 2004-06-14  Benjamin Otte  <otte@gnome.org>
34069
34070         * ext/alsa/gstalsa.c: Use snd_pcm_hw_params_set_rate _near instead of
34071           snd_pcm_hw_params_set_rate  since the latter fails for no good
34072           reason on some setups.
34073
34074 2004-06-14  David Schleef  <ds@schleef.org>
34075
34076         * gst/volume/demo.c: (value_changed_callback): exp10() is not
34077         standard.  Thank you for playing.
34078
34079 2004-06-14  Wim Taymans  <wim@fluendo.com>
34080
34081         * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
34082         Patch 1.3 broke the ordering of the colorspace info and
34083         made the plugin basically work by coincidence, reordered
34084         the info.
34085
34086 2004-06-14  Thomas Vander Stichele  <thomas at apestaart dot org>
34087
34088         * ext/lame/gstlame.c:
34089         * ext/mad/gstmad.c:
34090           sync caps.  Make sure mad can only output a list of rates, not
34091           a full range.  In the future, have three caps lists for each of the
34092           mpeg versions.  Change mpegversion to a double as well.
34093
34094 2004-06-14  Thomas Vander Stichele  <thomas at apestaart dot org>
34095
34096         * gst/volume/.cvsignore:
34097         * gst/volume/Makefile.am:
34098         * gst/volume/demo.c: (value_changed_callback), (idler),
34099         (setup_gui), (main):
34100           added small demo app
34101
34102 2004-06-13  Jan Schmidt  <thaytan@mad.scientist.com>
34103         * ext/esd/esdsink.c: (gst_esdsink_change_state):
34104         * ext/esd/esdsink.h:
34105         Close the esd connection on pause, because esd will just wait -
34106         blocking all other esd clients indefinitely.
34107
34108 2004-06-12  Christophe Fergeau  <teuf@gnome.org>
34109
34110         * gst/tags/gstvorbistag.c: replaced a g_warning which I added in my
34111           previous commit with GST_DEBUG
34112
34113 2004-06-12  Thomas Vander Stichele  <thomas at apestaart dot org>
34114
34115         * configure.ac:
34116           add a header check for a dvdread header in dvdnav.  Fixes #133002
34117
34118 2004-06-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
34119
34120         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
34121         * gst/tcp/gsttcpclientsink.h:
34122         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
34123         * gst/tcp/gsttcpclientsrc.h:
34124         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init),
34125         (gst_tcpserversink_handle_server_read),
34126         (gst_tcpserversink_init_send):
34127         * gst/tcp/gsttcpserversink.h:
34128         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
34129         * gst/tcp/gsttcpserversrc.h:
34130         Modified the tcp plugins so they are portable (IPv4,IPv6, any future
34131         version of IP)
34132
34133 2004-06-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
34134
34135         * configure.ac:
34136         Added ogg library so that OSX detects libtheora properly
34137
34138 2004-06-11  Wim Taymans  <wim@fluendo.com>
34139
34140         * ext/theora/theoradec.c: (theora_dec_chain),
34141         (theora_dec_change_state):
34142         Don't try to decode frames before we received a keyframe.
34143
34144 2004-06-11  Wim Taymans  <wim@fluendo.com>
34145
34146         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
34147         (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
34148         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
34149         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
34150         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
34151         Added property to set the maximum delay of a page.
34152
34153 2004-06-10  Wim Taymans  <wim@fluendo.com>
34154
34155         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
34156         (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
34157         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
34158         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
34159         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
34160         Added max-delay property to control the maximum amount
34161         of data to put in one page.
34162
34163 2004-06-10  Wim Taymans  <wim@fluendo.com>
34164
34165         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
34166         (gst_theora_enc_init), (theora_enc_sink_link),
34167         (theora_buffer_from_packet), (theora_enc_set_property),
34168         (theora_enc_get_property):
34169         Set duration on encoded buffer, added some more properties
34170
34171 2004-06-10  Wim Taymans  <wim@fluendo.com>
34172
34173         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
34174         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
34175         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
34176         * ext/theora/theoraenc.c: (theora_enc_chain):
34177         Fix refcounting bugs
34178
34179 2004-06-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34180
34181         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
34182         (gst_asf_demux_loop), (gst_asf_demux_process_file),
34183         (gst_asf_demux_process_data), (gst_asf_demux_handle_data),
34184         (gst_asf_demux_process_object), (gst_asf_demux_get_stream),
34185         (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event),
34186         (gst_asf_demux_handle_src_event), (gst_asf_demux_handle_src_query),
34187         (gst_asf_demux_change_state):
34188         * gst/asfdemux/gstasfdemux.h:
34189           You know Chimaira? "I - HATE - EVERYTHING". Yeah, that's what this
34190           feels like. I think we should set a new requirement for demuxers
34191           from now on to implement sane loop functions, data loops, query
34192           and seek functions before first commit into CVS. And this commit
34193           fixes all of the above.
34194
34195 2004-06-10  Christophe Fergeau  <teuf@gnome.org>
34196
34197         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add): make sure parsed
34198           vorbis comments are properly encoded in UTF-8 before adding them
34199           to a GstTagList
34200
34201 2004-06-09  Benjamin Otte  <otte@gnome.org>
34202
34203         * ext/alsa/gstalsa.c: (add_channels):
34204           handle min <= max correctly
34205         * ext/alsa/gstalsa.c: (gst_alsa_fixate_to_mimetype),
34206         (gst_alsa_fixate_field_nearest_int), (gst_alsa_fixate):
34207           add fixation functions so we fixate correctly. No preferring of alaw
34208           anymore because it's the first structure.
34209         * ext/alsa/gstalsa.h:
34210         * ext/alsa/gstalsa.c: (gst_alsa_sw_params_dump),
34211         (gst_alsa_hw_params_dump):
34212           add functions to ease debugging in alsalib
34213         * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
34214         (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
34215         (gst_alsa_start_audio):
34216           only specify hw params if we really setup a format (fixes #134007 -
34217           or at least works around it)
34218
34219 2004-06-09  Wim Taymans  <wim@fluendo.com>
34220
34221         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
34222         (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
34223         (gst_ogg_mux_push_page), (gst_ogg_mux_get_headers),
34224         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_send_headers),
34225         (gst_ogg_mux_loop):
34226         Use stream caps to setup the initial pages in the ogg stream.
34227         Correctly set the streamheader caps on the srcpad.
34228
34229 2004-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
34230
34231         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
34232         (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
34233         (gst_v4lsrc_getcaps):
34234         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
34235         (gst_v4l_get_picture), (gst_v4l_get_audio), (gst_v4l_set_audio):
34236           add querying of fps lists for webcams.  Negotiating to a framerate
34237           now works.
34238
34239 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
34240
34241         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
34242         (theora_push_buffer), (theora_push_packet),
34243         (theora_set_header_on_caps), (theora_enc_chain):
34244           mark buffers and put on streamheader, raw theora streaming
34245           now works too, whee
34246
34247 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
34248
34249         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
34250         (gst_tcp_gdp_read_caps):
34251           do a looping read for caps and GDP headers too
34252
34253 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
34254
34255         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
34256         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get):
34257           return EOS instead of NULL in _get
34258
34259 2004-06-08  Wim Taymans  <wim@fluendo.com>
34260
34261         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
34262         (gst_tcp_gdp_read_caps), (gst_tcp_gdp_write_header),
34263         (gst_tcp_gdp_write_caps):
34264         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
34265         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
34266         (gst_tcpserversrc_gdp_read_header), (gst_tcpserversrc_get):
34267         Memory leak fixes
34268
34269 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
34270
34271         * ext/vorbis/Makefile.am:
34272         * ext/vorbis/vorbis.c: (plugin_init):
34273         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_base_init),
34274         (gst_vorbis_parse_class_init), (gst_vorbis_parse_init),
34275         (vorbis_parse_set_header_on_caps), (vorbis_parse_chain),
34276         (vorbis_parse_change_state):
34277         * ext/vorbis/vorbisparse.h:
34278           adding a vorbisparse element that marks the buffers, streaming
34279           raw vorbis using GDP now works, whee
34280
34281 2004-06-08  Wim Taymans  <wim@fluendo.com>
34282
34283         * ext/jpeg/Makefile.am:
34284         * ext/jpeg/README:
34285         * ext/jpeg/gstjpeg.c: (plugin_init):
34286         * ext/jpeg/gstsmokedec.c: (gst_smokedec_get_type),
34287         (gst_smokedec_base_init), (gst_smokedec_class_init),
34288         (gst_smokedec_init), (gst_smokedec_link), (gst_smokedec_chain):
34289         * ext/jpeg/gstsmokedec.h:
34290         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_get_type),
34291         (gst_smokeenc_base_init), (gst_smokeenc_class_init),
34292         (gst_smokeenc_init), (gst_smokeenc_getcaps), (gst_smokeenc_link),
34293         (gst_smokeenc_resync), (gst_smokeenc_chain),
34294         (gst_smokeenc_set_property), (gst_smokeenc_get_property):
34295         * ext/jpeg/gstsmokeenc.h:
34296         * ext/jpeg/smokecodec.c: (smokecodec_init_destination),
34297         (smokecodec_flush_destination), (smokecodec_term_destination),
34298         (smokecodec_init_source), (smokecodec_fill_input_buffer),
34299         (smokecodec_skip_input_data), (smokecodec_resync_to_restart),
34300         (smokecodec_term_source), (smokecodec_encode_new),
34301         (smokecodec_decode_new), (smokecodec_info_free),
34302         (smokecodec_set_quality), (smokecodec_get_quality),
34303         (smokecodec_set_threshold), (smokecodec_get_threshold),
34304         (smokecodec_set_bitrate), (smokecodec_get_bitrate),
34305         (find_best_size), (abs_diff), (put), (smokecodec_encode),
34306         (smokecodec_parse_header), (smokecodec_decode):
34307         * ext/jpeg/smokecodec.h:
34308         Added a new simple jpeg based codec
34309
34310 2004-06-08  Wim Taymans  <wim@fluendo.com>
34311
34312         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
34313         (gst_multipart_mux_loop):
34314         Fix memory leak
34315
34316 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
34317
34318         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
34319         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_client_remove),
34320         (gst_tcpserversink_handle_client_read), (gst_tcp_buffer_write),
34321         (gst_tcpserversink_handle_client_write), (gst_tcpserversink_chain),
34322         (gst_tcpserversink_init_send), (gst_tcpserversink_close):
34323         * gst/tcp/gsttcpserversink.h:
34324           take streamheader into account
34325
34326 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
34327
34328         * gst/level/Makefile.am:
34329         * gst/level/gstlevel.c: (gst_level_class_init):
34330           clean up marshal generation
34331
34332 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
34333
34334         * gst/tcp/Makefile.am:
34335         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_get_type),
34336         (gst_tcpclientsink_class_init), (gst_tcpclientsink_init),
34337         (gst_tcpclientsink_set_property), (gst_tcpclientsink_get_property):
34338         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
34339         (gst_tcpclientsrc_init), (gst_tcpclientsrc_set_property),
34340         (gst_tcpclientsrc_get_property):
34341         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
34342         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
34343         (gst_tcpserversink_handle_client_read),
34344         (gst_tcpserversink_handle_client_write),
34345         (gst_tcpserversink_set_property), (gst_tcpserversink_get_property):
34346         * gst/tcp/gsttcpserversink.h:
34347           add signals client-added and client-removed
34348         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
34349         (gst_tcpserversrc_init), (gst_tcpserversrc_set_property),
34350         (gst_tcpserversrc_get_property):
34351         uniformized, change default protocol to NONE
34352         * gst/tcp/gsttcp-marshal.list: added
34353 2004-06-07  Benjamin Otte  <otte@gnome.org>
34354
34355         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
34356           handle discont events if they happen before caps nego
34357
34358 2004-06-07  Wim Taymans  <wim@fluendo.com>
34359
34360         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
34361         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
34362         (gst_multipart_demux_plugin_init):
34363         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
34364         (gst_multipart_mux_init), (gst_multipart_mux_loop),
34365         (gst_multipart_mux_change_state):
34366         Small updates, fix a memleak
34367
34368 2004-06-07  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
34369
34370         * configure.ac: OSS portability
34371         * ext/arts/gst_arts.c: idem
34372         * sys/oss/gstosselement.c: idem
34373         * sys/oss/gstossmixer.c: idem
34374         * sys/oss/gstosssink.c: idem
34375         * sys/oss/gstosssrc.c: idem
34376         * sys/oss/oss_probe.c: idem
34377           - check for soundcard.h in different places for some BSD
34378
34379 2004-06-07  Jan Schmidt <thaytan@mad.scientist.com>
34380
34381         * AUTHORS:
34382         Add me to the authors file
34383         * configure.ac:
34384         Increase the libdv requirement to >= version 0.100
34385         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
34386         (gst_dvdec_src_query), (gst_dvdec_handle_sink_event),
34387         (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state):
34388         * ext/dv/gstdvdec.h:
34389         Add support for the new_media flag when sending DISCONT events
34390         Make the querying work when video pad is not linked
34391
34392 2004-06-07  Tim-Philipp Müller  <t.i.m@zen.co.uk>
34393
34394         reviewed by Benjamin Otte  <otte@gnome.org>
34395
34396         * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init):
34397           create a NULL-initialized array of pads, so we don't think they
34398           exist already. (fixes #143130)
34399
34400 2004-06-07  Benjamin Otte  <otte@gnome.org>
34401
34402         * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init),
34403         (mixmatrix_resize), (gst_mixmatrix_set_all_caps),
34404         (gst_mixmatrix_request_new_pad), (gst_mixmatrix_loop):
34405           don't use // coments
34406
34407 2004-06-07  Benjamin Otte  <otte@gnome.org>
34408
34409         * ext/alsa/gstalsa.c: (gst_alsa_samples_to_timestamp):
34410           cast to GstClockTime to get higher granularity
34411         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
34412           use gst_element_set_time_delay to get the exact time
34413         * ext/mad/gstmad.c: (gst_mad_chain):
34414           use the negotiated rate instead of the current frame's rate which
34415           might be wrong because of bit errors. This avoids emitting totally
34416           bogus timestamps and screwing sync.
34417         (fixes #143454)
34418
34419 2004-06-07  Tim-Philipp Müller  <t.i.m@zen.co.uk>
34420
34421         reviewed by Benjamin Otte  <otte@gnome.org>
34422
34423         * gst/adder/gstadder.c: (gst_adder_loop):
34424           properly error out when no negotiation has happened yet. (fixes
34425           #143032)
34426
34427 2004-06-06  Benjamin Otte  <otte@gnome.org>
34428
34429         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
34430           forward correctly transformed offset in discont events. Based on
34431           patch by Arwed v. Merkatz. (fixes #142851)
34432
34433 2004-06-06  David Schleef  <ds@schleef.org>
34434
34435         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: that's
34436         G_HAVE_GNUC_VARARGS, not G_HAVE_GNU_VARARGS.  Should fix compile
34437         problems on several systems.
34438
34439 2004-06-06  Benjamin Otte  <otte@gnome.org>
34440
34441         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
34442           use explicit caps on the srcpad
34443         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
34444           properly error out if caps couldn't be set (fixes #142764)
34445
34446 2004-06-06  Benjamin Otte  <otte@gnome.org>
34447
34448         * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
34449         (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
34450         (gst_alsa_start_audio):
34451           - don't call set_periods_integer anymore, it breaks the
34452           configuration randomly
34453           - call snd_pcm_hw_params_set_access directly instead of using masks
34454           - don't fail if the sw_params can't be set, just use the default
34455           params and hope it works. Alsalib has weird issues when you touch
34456           sw_params and does no proper error reporting about what failed.
34457         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
34458         (gst_alsa_close_audio):
34459           make our alsa debugging go via gst debugging and not conditionally
34460           defined
34461         * ext/alsa/gstalsa.h:
34462           add ALSA_DEBUG_FLUSH macro
34463         * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper),
34464         (plugin_init):
34465           wrap alsa errors to be printed via the gst debugging system and not
34466           spammed to stderr
34467
34468 2004-06-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34469
34470         * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
34471         (gst_qtdemux_handle_src_query), (gst_qtdemux_handle_src_event),
34472         (gst_qtdemux_handle_sink_event), (gst_qtdemux_change_state),
34473         (gst_qtdemux_loop_header), (qtdemux_dump_mvhd),
34474         (qtdemux_parse_trak):
34475         * gst/qtdemux/qtdemux.h:
34476           Bitch. Also known as seeking, querying & co.
34477         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
34478         (gst_osssink_change_state):
34479         * sys/oss/gstosssink.h:
34480           Resyncing is for weenies, this hack is no longer needed and was
34481           broken anyway (since it - unintendedly - always leaves resync to
34482           TRUE).
34483
34484 2004-06-05  Andrew Turner <zxombie@hotpop.com>
34485
34486         * gst/tcp/gsttcp.c: portability (Solaris 10/FreeBSD)
34487         * gst/tcp/gsttcpclientsrc.h: idem
34488           - define MSG_NOSIGNAL if not done
34489           - include unistd.h for off_t
34490           (fixes #143749)
34491
34492 2004-06-05  Benjamin Otte  <otte@gnome.org>
34493
34494         * configure.ac:
34495         * ext/kio/Makefile.am:
34496           check for qt's moc preprocessor explicitly and use it
34497
34498 2004-06-03  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
34499
34500         * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
34501           don't get a signal for EPIPE on socket writes
34502           (somebody check if this works on other platforms)
34503
34504 2004-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
34505
34506         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
34507         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
34508           check error condition on available samples correctly
34509
34510 2004-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
34511
34512         * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_time):
34513           avoid a segfault
34514         * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
34515         (gst_tcp_gdp_read_header), (gst_tcp_gdp_read_caps):
34516         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
34517         (gst_tcpserversrc_gdp_read_header):
34518          use ssize_t over size_t since the former is signed and thus the
34519          check for error codes can work
34520
34521 2004-06-02  Wim Taymans  <wim@fluendo.com>
34522
34523         reviewed by: Johan
34524
34525         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
34526         (gst_multipart_mux_loop):
34527         Oops
34528
34529 2004-06-02  Wim Taymans  <wim@fluendo.com>
34530
34531         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
34532         (gst_multipart_mux_init), (gst_multipart_mux_loop),
34533         (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
34534         (gst_multipart_mux_change_state):
34535         Added configurable boundary specifier, added the value as a
34536         caps field as well.
34537
34538 2004-06-02  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
34539
34540         * gst/tcp/gsttcp.c:
34541         * gst/tcp/gsttcpclientsrc.c:
34542         * gst/tcp/gsttcpclientsrc.h:
34543         * gst/tcp/gsttcpserversrc.c:
34544           - portability fix, to compile on OSX
34545             (fixes #143146)
34546
34547         * sys/osxaudio/gstosxaudioelement.c:
34548         * sys/osxaudio/gstosxaudiosink.c:
34549         * sys/osxaudio/gstosxaudiosrc.c:
34550           - compilation warnings on OSX
34551             (fixes #143153)
34552
34553 2004-06-02  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
34554
34555         * ext/vorbis/vorbisdec.c : sign warning fixes
34556
34557         * gst-libs/gst/mixer/mixertrack.c :
34558           do no use defines which are glib 2.4 specific
34559
34560 2004-06-01  Christophe Fergeau  <teuf@gnome.org>
34561
34562         * ext/flac/gstflactag.c: strip ending framing bit from vorbiscomment
34563           buffer since libflac doesn't expect it (reports a sync error when
34564           it encounters that)
34565
34566
34567 2004-06-01  Owen Fraser-Green  <owen@discobabe.net>
34568
34569         * gst-libs/gst/mixer/mixertrack.h: Changed struct syntax
34570         * gst-libs/gst/mixer/mixertrack.c:
34571         (gst_mixer_track_get_property), (get_mixer_track_init),
34572         (get_mixer_track_get_property): Added property accessors
34573         * gst-libs/gst/mixer/mixeroptions.h: Changed struct syntax
34574         * gst-libs/gst/mixer/mixeroptions.c:
34575         (gst_mixer_options_get_values): Added
34576         * gst-libs/gst/mixer/mixer.h: Changed GstMixerClass syntax
34577         * gst-libs/gst/mixer/mixer.c: Fixed comment
34578
34579
34580 2004-06-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
34581
34582         * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
34583           improve error messages on open
34584
34585
34586 2004-06-01  Thomas Vander Stichele  <thomas at apestaart dot org>
34587
34588         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
34589           check if v4l-conf is in path
34590
34591 2004-06-01  Thomas Vander Stichele  <thomas at apestaart dot org>
34592
34593         * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
34594           change assert to a more readable error message
34595
34596 2004-05-31  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
34597
34598         * gst-libs/gst/tuner/tunerchannel.h:
34599           - add a freq_multiplicator field to make the conversion
34600             between internal frequency unit and Hz
34601         * sys/v4l/gstv4lelement.c:
34602         * sys/v4l2/gstv4l2element.c:
34603           - change default video device to /dev/video0
34604         * sys/v4l/v4l_calls.c:
34605         * sys/v4l2/v4l2_calls.c:
34606           - we only expose frequency to the user in Hz instead of
34607             bastard v4lX unit (either 62.5kHz or 62.5Hz)
34608
34609 2004-05-31  Jan Schmidt  <thaytan@mad.scientist.com>
34610         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
34611           Initialise b_o_s and e_o_s variables
34612         * gst-libs/gst/riff/riff-media.c:
34613         (gst_riff_create_video_caps_with_data):
34614           Add some unusual fourcc's from mplayer avi's
34615         * gst/multipart/multipartmux.c: (gst_multipart_mux_plugin_init):
34616           Make the muxer have rank GST_RANK_NONE, so it doesn't mess up
34617           autoplugging.
34618
34619 2004-05-28  Wim Taymans  <wim@fluendo.com>
34620
34621         * configure.ac:
34622         * gst/alpha/Makefile.am:
34623         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
34624         (gst_alpha_get_type), (gst_alpha_base_init),
34625         (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
34626         (gst_alpha_get_property), (gst_alpha_sink_link), (gst_alpha_add),
34627         (gst_alpha_chroma_key), (gst_alpha_chain),
34628         (gst_alpha_change_state), (plugin_init):
34629         A plugin to add an alpha channel to I420 video. Can optionally do
34630         chroma keying.
34631         * gst/multipart/Makefile.am:
34632         * gst/multipart/multipart.c: (plugin_init):
34633         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
34634         (gst_multipart_demux_class_init), (gst_multipart_demux_init),
34635         (gst_multipart_demux_finalize), (gst_multipart_demux_handle_event),
34636         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
34637         (gst_multipart_demux_change_state),
34638         (gst_multipart_demux_plugin_init):
34639         * gst/multipart/multipartmux.c: (gst_multipart_mux_get_type),
34640         (gst_multipart_mux_base_init), (gst_multipart_mux_class_init),
34641         (gst_multipart_mux_get_sink_event_masks), (gst_multipart_mux_init),
34642         (gst_multipart_mux_sinkconnect), (gst_multipart_mux_pad_link),
34643         (gst_multipart_mux_pad_unlink),
34644         (gst_multipart_mux_request_new_pad),
34645         (gst_multipart_mux_handle_src_event),
34646         (gst_multipart_mux_next_buffer), (gst_multipart_mux_compare_pads),
34647         (gst_multipart_mux_queue_pads), (gst_multipart_mux_loop),
34648         (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
34649         (gst_multipart_mux_change_state), (gst_multipart_mux_plugin_init):
34650         A Multipart demuxer/muxer. Not sure if it violates specs. Used to
34651         send multipart jpeg images to a browser.
34652         * gst/videobox/Makefile.am:
34653         * gst/videobox/README:
34654         * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
34655         (gst_video_box_get_type), (gst_video_box_base_init),
34656         (gst_video_box_class_init), (gst_video_box_init),
34657         (gst_video_box_set_property), (gst_video_box_get_property),
34658         (gst_video_box_sink_link), (gst_video_box_i420),
34659         (gst_video_box_ayuv), (gst_video_box_chain),
34660         (gst_video_box_change_state), (plugin_init):
34661         Crops or adds borders around an image. can do alpha channel
34662         borders as well.
34663         * gst/videomixer/Makefile.am:
34664         * gst/videomixer/README:
34665         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
34666         (gst_videomixer_pad_base_init), (gst_videomixer_pad_class_init),
34667         (gst_videomixer_pad_get_sink_event_masks),
34668         (gst_videomixer_pad_get_property),
34669         (gst_videomixer_pad_set_property),
34670         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_link),
34671         (gst_videomixer_pad_unlink), (gst_videomixer_pad_init),
34672         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
34673         (gst_videomixer_base_init), (gst_videomixer_class_init),
34674         (gst_videomixer_init), (gst_videomixer_request_new_pad),
34675         (gst_videomixer_handle_src_event),
34676         (gst_videomixer_blend_ayuv_i420), (gst_videomixer_fill_checker),
34677         (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
34678         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
34679         (gst_videomixer_loop), (gst_videomixer_get_property),
34680         (gst_videomixer_set_property), (gst_videomixer_change_state),
34681         (plugin_init):
34682         Generic video mixer plugin, can handle multiple inputs all with
34683         different framerates and video sizes. Is fully alpha channel
34684         aware.
34685
34686 2004-05-27  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34687
34688         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
34689           Select first track as master track. Not sure how else to handle
34690           that...
34691         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer):
34692           Discard discont events. Should fix #142962.
34693
34694 2004-05-26  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34695
34696         * ext/alsa/Makefile.am:
34697         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init),
34698         (gst_alsa_mixer_build_list), (gst_alsa_mixer_get_volume),
34699         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
34700         (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
34701         (gst_alsa_mixer_get_option):
34702         * ext/alsa/gstalsamixer.h:
34703         * ext/alsa/gstalsamixeroptions.c:
34704         (gst_alsa_mixer_options_get_type),
34705         (gst_alsa_mixer_options_class_init), (gst_alsa_mixer_options_init),
34706         (gst_alsa_mixer_options_new):
34707         * ext/alsa/gstalsamixeroptions.h:
34708         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
34709         * ext/alsa/gstalsamixertrack.h:
34710           Add enumerations (as GstMixerOptions). Make correct distinction
34711           between input/output tracks. Add capture/playback private flag.
34712           Use flag to decide on whether to set capture or playback volumes
34713           or switches. Use playback and record switches.
34714         * gst-libs/gst/mixer/Makefile.am:
34715         * gst-libs/gst/mixer/mixer-marshal.list:
34716         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init),
34717         (gst_mixer_set_option), (gst_mixer_get_option),
34718         (gst_mixer_mute_toggled), (gst_mixer_record_toggled),
34719         (gst_mixer_volume_changed), (gst_mixer_option_changed):
34720         * gst-libs/gst/mixer/mixer.h:
34721         * gst-libs/gst/mixer/mixeroptions.c: (gst_mixer_options_get_type),
34722         (gst_mixer_options_class_init), (gst_mixer_options_init),
34723         (gst_mixer_options_dispose):
34724         * gst-libs/gst/mixer/mixeroptions.h:
34725           Add GstMixerOptions.
34726         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
34727           Rename Audio Mixer to OSS Mixer (similar to Alsa Mixer). Fix
34728           broken device detection on computers with multiple OSS sound
34729           cards.
34730
34731 2004-05-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34732
34733         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
34734           fixate nicely even when the peer is not negotiating
34735
34736 2004-05-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34737
34738         * gst/audioconvert/gstaudioconvert.c:
34739         (gst_audio_convert_parse_caps):
34740           make sure we don't allow depth > width
34741         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
34742           fixate endianness to G_BYTE_ORDER as default
34743         * gst/audioscale/gstaudioscale.c:
34744           we don't handle another endianness as host-endianness
34745
34746 2004-05-25  David Schleef  <ds@schleef.org>
34747
34748         * gst/ffmpegcolorspace/mem.c:  malloc() is in stdlib.h, not malloc.h
34749
34750 2004-05-24  Benjamin Otte  <otte@gnome.org>
34751
34752         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_sinkconnect),
34753         (gst_oggvorbisenc_setup):
34754           properly fail when we can't setup the vorbis encoder due to
34755           unsupported settings
34756         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sinkconnect),
34757         (gst_vorbisenc_setup):
34758           same
34759         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
34760           fix case where warnings occured when one pad was unlinked while the
34761           other's link function was called
34762
34763 2004-05-24  Thomas Vander Stichele  <thomas at apestaart dot org>
34764
34765         * gst/tcp/Makefile.am:
34766           use GST_ENABLE_NEW
34767
34768 2004-05-24  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34769
34770         * gst-libs/gst/resample/private.h:
34771           don't use optimizations that are #if 0'ed
34772
34773 2004-05-24  Wim Taymans  <wim@fluendo.com>
34774
34775         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
34776         Fix potential division by zero error and hopefully get
34777         the position query right to get correct timestamps on avi
34778         audio.
34779
34780 2004-05-24  Wim Taymans  <wim@fluendo.com>
34781
34782         * gst/videoscale/videoscale.c: (gst_videoscale_scale_nearest),
34783         (gst_videoscale_scale_nearest_str2),
34784         (gst_videoscale_scale_nearest_str4),
34785         (gst_videoscale_scale_nearest_32bit),
34786         (gst_videoscale_scale_nearest_24bit),
34787         (gst_videoscale_scale_nearest_16bit):
34788         Fix the scaling algorithm and avoid a buffer overflow.
34789         removed the while loop in the scaling function as it
34790         was used for point sampling only.
34791
34792 2004-05-24  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34793
34794         * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
34795         (gst_id3_tag_class_init), (gst_id3_tag_init),
34796         (gst_id3_tag_set_property), (gst_id3_tag_get_tag_to_render),
34797         (gst_id3_tag_handle_event), (gst_id3_tag_do_caps_nego),
34798         (gst_id3_tag_send_tag_event):
34799           lots of fixes to make id3mux work and id3demux work correctly
34800
34801 2004-05-24  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
34802
34803         * ext/Makefile.am:
34804           add rules to build shout2send (was removed by accident
34805           when this module was no more marked experimental/broken)
34806
34807 2004-05-24  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
34808
34809         * ext/shout2/gstshout2.c:
34810         * ext/shout2/gstshout2.h:
34811           adding a "connection problem" signal to shout2send
34812           (fixes #142954)
34813
34814 2004-05-21  Thomas Vander Stichele  <thomas at apestaart dot org>
34815
34816         * ext/kio/kioreceiver.cpp:
34817         * ext/kio/kioreceiver.h:
34818           fix sign comparison issues
34819
34820 2004-05-21  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
34821
34822         * gst/cdxaparse/gstcdxaparse.c:
34823         * gst/cdxaparse/gstcdxaparse.h:
34824           some renaming
34825           add some checks/sanity
34826           prepare for seek addition
34827
34828         * sys/sunaudio/gstsunaudio.c:
34829           remove exported dupe init function
34830
34831 2004-05-21  Jan Schmidt  <thaytan@mad.scientist.com>
34832
34833         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_get_formats),
34834         (gst_dvdec_src_convert), (gst_dvdec_sink_convert):
34835           Fix format conversion and position querying.
34836         * gst/debug/progressreport.c: (gst_progressreport_report):
34837           Don't output a bogus total value that we didn't query.
34838         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
34839           Always set XV_AUTOPAINT_COLORKEY to true. Fixes xvimagesink showing
34840           only a blank window after xine has been used.
34841
34842 2004-05-21  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
34843
34844         * m4/as-arts.m4:
34845           sync with upstream version to fix test on FC2
34846           readd with -ko to preserve Id header
34847
34848 2004-05-20  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
34849
34850         * configure.ac:
34851           test for FIONREAD ioctl in sys/filio.h for Solaris compat.
34852         * gst/tcp/gsttcpclientsrc.c: idem
34853         * gst/tcp/gsttcpserversink.c: idem
34854         * gst/tcp/gsttcpserversrc.c: idem
34855         * m4/gst-fionread.m4: idem
34856
34857         * sys/sunaudio/gstsunaudio.c: change category to Sink/Audio
34858
34859         * configure.ac: enable speex plugin for speex 1.1.5+
34860         * ext/speex/gstspeexenc.c: fix cast warning
34861
34862         * ext/esd/README: fix typo
34863
34864 2004-05-20  David Schleef  <ds@schleef.org>
34865
34866         * configure.ac: Minor cosmetic change to convince the buildbot to
34867         reautogen.
34868         * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_class_init),
34869         (gst_sunaudiosink_init), (gst_sunaudiosink_getcaps),
34870         (gst_sunaudiosink_pad_link), (gst_sunaudiosink_chain),
34871         (gst_sunaudiosink_setparams), (gst_sunaudiosink_open),
34872         (gst_sunaudiosink_close), (gst_sunaudiosink_change_state),
34873         (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property):
34874         More hacking.  Plays audio now.
34875
34876 2004-05-20  David Schleef  <ds@schleef.org>
34877
34878         * configure.ac:
34879         * sys/Makefile.am:
34880
34881 2004-05-20  David Schleef  <ds@schleef.org>
34882
34883         * sys/osxaudio/Makefile.am:  New OS X audio plugin by Zaheer Abbas Merali
34884         * sys/osxaudio/gstosxaudio.c:
34885         * sys/osxaudio/gstosxaudioelement.c:
34886         * sys/osxaudio/gstosxaudioelement.h:
34887         * sys/osxaudio/gstosxaudiosink.c:
34888         * sys/osxaudio/gstosxaudiosink.h:
34889         * sys/osxaudio/gstosxaudiosrc.c:
34890         * sys/osxaudio/gstosxaudiosrc.h:
34891
34892 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
34893
34894         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps),
34895         (gst_vorbisenc_chain):
34896           put the codec headers on the caps as streamheader as well as
34897           pushing them out
34898
34899 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
34900
34901         * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
34902         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
34903         (gst_vorbisenc_push_packet), (gst_vorbisenc_chain):
34904         split up push_packet into two functions
34905
34906 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
34907
34908         * gst/tcp/.cvsignore:
34909           ignore enums
34910         * gst/tcp/Makefile.am:
34911         * gst/tcp/README:
34912         * gst/tcp/gsttcp.c:
34913         * gst/tcp/gsttcp.h:
34914         * gst/tcp/gsttcpclientsink.c:
34915         * gst/tcp/gsttcpclientsink.h:
34916         * gst/tcp/gsttcpclientsrc.c:
34917         * gst/tcp/gsttcpclientsrc.h:
34918         * gst/tcp/gsttcpplugin.c:
34919         * gst/tcp/gsttcpserversink.c:
34920         * gst/tcp/gsttcpserversink.h:
34921         * gst/tcp/gsttcpserversrc.c:
34922         * gst/tcp/gsttcpserversrc.h:
34923           add new tcp elements
34924
34925 2004-05-19  Wim Taymans  <wim@fluendo.com>
34926
34927         * gst/law/mulaw-conversion.c: (mulaw_encode):
34928         Fix overflow bug in ulaw encoding.
34929
34930 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34931
34932         * ext/mad/gstmad.c: (gst_mad_handle_event):
34933           don't unref the event twice
34934
34935 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34936
34937         * configure.ac:
34938           remove -Wno-sign-compare
34939
34940 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34941
34942         * configure.ac:
34943           remove -DG_DISABLE_DEPRECATED. It's not usable without workarounds
34944           if you want to work against glib 2.2 and 2.4
34945
34946 2004-05-19  Thomas Vander Stichele  <thomas at apestaart dot org>
34947
34948         * gst/tcp/Makefile.am:
34949         * gst/tcp/gsttcp.c:
34950         * gst/tcp/gsttcp.h:
34951         * gst/tcp/gsttcpsink.h:
34952         * gst/tcp/gsttcpsrc.h:
34953           gsttcp -> gsttcpplugin + CVS surgery in preparation for tcp merge
34954
34955 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34956
34957         * gst/debug/tests.c: (md5_get_value):
34958           fix segfault on gst-inspect
34959
34960 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
34961
34962         * gst/debug/testplugin.c:
34963         * gst/debug/tests.c:
34964         * gst/debug/tests.h:
34965           add new extensible and configurable testing element. Current tests
34966           include buffer count, stream length, timestamp/duration matching and
34967           md5.
34968         * gst/debug/Makefile.am:
34969         * gst/debug/gstdebug.c: (plugin_init):
34970           add infrastructure for new element
34971
34972 2004-05-19  Johan Dahlin  <johan@gnome.org>
34973
34974         * ext/dv/gstdvdec.c (gst_dvdec_quality_get_type): Add proper
34975         ending of the array. Fixes gst-inspect segfault on ppc.
34976
34977 2004-05-19  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
34978
34979         * ext/dirac/gstdiracdec.cc : change category to Codec/Decoder/Video
34980
34981         * m4/a52.m4 : don't fix a test that should fail with current a52dec lib
34982
34983 2004-05-18  David Schleef  <ds@schleef.org>
34984
34985         * gst/ffmpegcolorspace/imgconvert.c: (img_convert): Fixes for
34986         warnings (bugs, actually) noticed by gcc but not forte.
34987
34988 2004-05-18  David Schleef  <ds@schleef.org>
34989
34990         * sys/sunaudio/Makefile.am:
34991         * sys/sunaudio/gstsunaudio.c: New sunaudiosink
34992
34993 2004-05-18  David Schleef  <ds@schleef.org>
34994
34995         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
34996         (gst_qtdemux_loop_header):  Patch from dcm@acm.org (David Moore)
34997         to allow qtdemux to use non-seekable streams. (bug #142272)
34998
34999 2004-05-18  David Schleef  <ds@schleef.org>
35000
35001         * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16),
35002         (gst_resample_sinc_ft_float): Remove use of static temporary
35003         buffer.  This code was obviously not supposed to last long, but
35004         it's stuck in our ABI, so it required a little hack to make it
35005         ABI-compatible.  Fixes #142585.
35006         * gst-libs/gst/resample/resample.h: same.
35007
35008 2004-05-18  David Schleef  <ds@schleef.org>
35009
35010         * configure.ac: Add sunaudio
35011         * examples/Makefile.am: make gstplay depend on gconf
35012         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Remove c99-isms
35013         * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette),
35014         (convert_table_lookup), (img_convert): remove c99-isms
35015         * gst/ffmpegcolorspace/imgconvert_template.h: make a constant
35016           unsigned, to fix a warning on Solaris
35017         * gst/mpeg1sys/systems.c: bcopy->memcpy
35018         * gst/rtjpeg/RTjpeg.c: (RTjpeg_yuvrgb8): bcopy->memcpy
35019         * sys/Makefile.am: Add sunaudio
35020
35021 2004-05-18  Wim Taymans  <wim@fluendo.com>
35022
35023         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_init),
35024         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
35025         (gst_ogg_mux_next_buffer), (gst_ogg_mux_push_page),
35026         (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
35027         (gst_ogg_mux_loop):
35028         Fix an ugly memleak where the muxer didn't flush enough ogg
35029         pages. This also resulted in badly muxed ogg files.
35030
35031 2004-05-18  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35032
35033         * gst/asfdemux/asfheaders.c :
35034         * gst/asfdemux/asfheaders.h :
35035         * gst/asfdemux/gstasfdemux.c :
35036           - fix ASF_OBJ_PADDING guid
35037           - add 3 new object guids (language list, metadata,
35038             extended stream properties)
35039           - add a function to parse extended header objects
35040
35041 2004-05-18  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35042
35043         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
35044           remove leftover debugging g_print
35045
35046 2004-05-17  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35047
35048         * ext/mad/gstmad.c: (gst_mad_handle_event):
35049           Fix for when the first format in a discont event is not a
35050           byte-based one. Should fix #137710.
35051
35052 2004-05-18  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35053
35054         * m4/a52.m4 : fix compilation with -Wall -Werror
35055         * m4/libfame.m4 : idem
35056         * m4/libmikmod.m4 : idem
35057
35058 2004-05-17  Benjamin Otte  <otte@gnome.org>
35059
35060         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
35061           signal the new tags before giving up the reference
35062
35063 2004-05-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35064
35065         * ext/shout2/gstshout2.c:
35066           use application/ogg instead of application/x-ogg (patch by Patrick
35067           Guimond, fixes #142432)
35068         * sys/oss/gstosselement.c: (gst_osselement_reset),
35069         (gst_osselement_sync_parms):
35070           don't set fragment size unless specified (fixes #142493)
35071
35072 2004-05-17  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35073
35074         * configure.ac : fix compilation of v4l2src with "-Wall -Werror"
35075           fixes #142664
35076
35077 2004-05-17  Benjamin Otte  <otte@gnome.org>
35078
35079         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
35080           compute offsets correctly for internal buffers so timestamps are set
35081           correctly when we can't seek. Also handle cases where there are no
35082           offsets. (based on a patch by David Moore, fixes #142507)
35083
35084 2004-05-17  Benjamin Otte  <otte@gnome.org>
35085
35086         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
35087           use correct variable when determining amount of data to skip so we
35088           don't skip into the void and segfault
35089
35090 2004-05-16  Benjamin Otte  <otte@gnome.org>
35091
35092         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
35093           Hi, I'm a memleak
35094
35095 2004-05-16  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35096
35097         * gst/asfdemux/gstasfdemux.c:
35098           - fix a mem leak and always propagate tags
35099           - add WMV3 to known video codecs (but no decoder yet)
35100           - replace "surplus data" at end of audio header for what
35101             it is : codec specific data
35102           - fix a typo
35103
35104 2004-05-16  Arwed v. Merkatz  <v.merkatz@gmx.net>
35105
35106         reviewed by: Ronald Bultje  <rbultje@ronald.bitfreak.net>
35107
35108         * gst-libs/gst/audio/audioclock.c:
35109           Fix wrong return type (#142205).
35110
35111 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35112
35113         * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_init):
35114           Ignore CRCs by default (fixes #142566).
35115
35116 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35117
35118         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
35119         (gst_alsa_mixer_close), (gst_alsa_mixer_supported),
35120         (gst_alsa_mixer_build_list), (gst_alsa_mixer_free_list),
35121         (gst_alsa_mixer_change_state), (gst_alsa_mixer_list_tracks),
35122         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
35123         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record):
35124           Fix for cases where we fail to attach to a mixer.
35125
35126 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35127
35128         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
35129           Don't touch events after not owning them anymore.
35130         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
35131         (gst_wavparse_fmt), (gst_wavparse_other),
35132         (gst_wavparse_handle_seek), (gst_wavparse_loop),
35133         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
35134         (gst_wavparse_srcpad_event):
35135         * gst/wavparse/gstwavparse.h:
35136           Add seeking, fix querying.
35137
35138 2004-05-16  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35139
35140         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
35141           - process comments even if they don't end with \0\0
35142             g_convert would ignore them if present and works well without them
35143
35144 2004-05-16  Benjamin Otte  <otte@gnome.org>
35145
35146         * ext/alsa/gstalsa.c: (gst_alsa_caps), (gst_alsa_get_caps):
35147           simplify caps
35148
35149 2004-05-16  Benjamin Otte  <otte@gnome.org>
35150
35151         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
35152           don't write to memory we might not write to - g_convert does that
35153           for us anyway (fixes #142613)
35154         (gst_asf_demux_audio_caps):
35155           comment out gst_util_dump_mem
35156
35157 2004-05-16  Benjamin Otte  <otte@gnome.org>
35158
35159         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
35160           compute correct expected timestamps after seek (broken since
35161           last commit)
35162         * ext/gdk_pixbuf/pixbufscale.c: (pixbufscale_init):
35163           rename element and debugging category to gdkpixbufscale
35164
35165 2004-05-16  Benjamin Otte  <otte@gnome.org>
35166
35167         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
35168           add error checking to snd_pcm_delay and remove duplicate call to
35169           snd_pcm_delay that caused issues (see inline code comments)
35170         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
35171           make more readable and fix return value when snd_pcm_delay fails
35172         (fixes #142586)
35173
35174 2004-05-15  Jan Schmidt  <thaytan@mad.scientisti.com>
35175         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_method_get_type),
35176         (gst_pixbufscale_get_type), (gst_pixbufscale_base_init),
35177         (gst_pixbufscale_class_init), (gst_pixbufscale_getcaps),
35178         (gst_pixbufscale_link), (gst_pixbufscale_init),
35179         (gst_pixbufscale_handle_src_event), (pixbufscale_scale),
35180         (gst_pixbufscale_chain), (gst_pixbufscale_set_property),
35181         (gst_pixbufscale_get_property), (pixbufscale_init):
35182         * ext/gdk_pixbuf/pixbufscale.h:
35183         Add these files I forgot earlier
35184
35185 2004-05-15  Jan Schmidt  <thaytan@mad.scientist.com>
35186         * ext/gdk_pixbuf/Makefile.am:
35187         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
35188         * ext/gdk_pixbuf/gstgdkpixbuf.h:
35189         Add new pixbufscale element to scale RGB video
35190         using gdk_pixbuf, because gdk_pixbuf does BILINEAR
35191         and HYPER interpolation correctly.
35192         * ext/theora/theoraenc.c: (theora_enc_chain),
35193         Discard buffer and return if explicit caps could not be set
35194         (theora_enc_get_property):
35195         Make _get return kbps for the bitrate consistent with
35196         the _set function.
35197
35198
35199 2004-05-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35200
35201         * ext/libvisual/visual.c: (gst_visual_chain):
35202           add missing visual_audio_analyze
35203
35204 2004-05-14  David Schleef  <ds@schleef.org>
35205
35206         * ext/esd/esdsink.c: (gst_esdsink_chain): Fix crash when ESD
35207         is killed while we're playing.
35208         * gst/qtdemux/qtdemux.c: (qtdemux_parse): call
35209         gst_element_no_more_pads().
35210
35211 2004-05-14  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35212
35213         * gst-libs/gst/riff/riff-read.c :
35214           - fix INFO tag extraction in RIFF/AVI files
35215             because gst_event_unref (event) also freed taglist
35216           - avoid a mem leak
35217
35218 2004-05-13  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35219
35220         * ext/mad/gstid3tag.c : move from "Codec/(Dem/M)uxer" to "Codec/(Dem/M)uxer/Audio"
35221         * gst/wavenc/gstwavenc.c : move from "Codec/Encoder/Audio" to "Codec/Muxer/Audio"
35222
35223         * gst/auparse/gstauparse.c :
35224           - add code (commented for now) to support audio/x-adpcm on src pad
35225             (we have no decoder for those layout yet)
35226
35227         * gst/cdxaparse/gstcdxaparse.c :
35228         * gst/cdxaparse/gstcdxaparse.h :
35229           - partial rewrite using RiffRead (ripped iain's wavparse code)
35230
35231         * gst/rtp/gstrtpL16enc.c : typo
35232         * gst/rtp/gstrtpgsmenc.c : typo
35233
35234 2004-05-13  Benjamin Otte  <otte@gnome.org>
35235
35236         * configure.ac:
35237           check for exact version of libvisual, it's not supposed to be
35238           API/ABI stable yet
35239
35240 2004-05-13  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35241
35242         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
35243           signal no-more-pads
35244
35245 2004-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
35246
35247         * ext/dv/gstdvdec.c: (gst_dvdec_src_convert)
35248         Report which format was used for GST_FORMAT_DEFAULT
35249         * gst/debug/Makefile.am:
35250         * gst/debug/gstdebug.c: (plugin_init):
35251         * gst/debug/progressreport.c: (gst_progressreport_base_init),
35252         (gst_progressreport_class_init), (gst_progressreport_init),
35253         (gst_progressreport_report), (gst_progressreport_set_property),
35254         (gst_progressreport_get_property), (gst_progressreport_chain),
35255         (gst_progressreport_plugin_init):
35256         Add progressreport element for testing.
35257
35258 2004-05-13  Thomas Vander Stichele  <thomas at apestaart dot org>
35259
35260         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_change_state):
35261         * sys/v4l/gstv4lsrc.h:
35262         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
35263         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
35264         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init),
35265         (gst_v4lsrc_grab_frame):
35266           add more debugging
35267           send a discont at start
35268
35269 2004-05-12  Colin Walters  <walters@redhat.com>
35270
35271         * gst/asfdemux/gstasfdemux.c (gst_asf_demux_process_segment): Avoid
35272         inflooping if we can't find a chunk.  Or in other words, don't blow
35273         chunks if we don't have a chunk to blow.
35274
35275 2004-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
35276         * ext/audiofile/gstafsrc.c: (gst_afsrc_get):
35277         Remove old debug output
35278         * ext/dv/gstdvdec.c: (gst_dvdec_quality_get_type),
35279         (gst_dvdec_class_init), (gst_dvdec_loop), (gst_dvdec_change_state),
35280         (gst_dvdec_set_property), (gst_dvdec_get_property):
35281         Change the quality setting to an enum, so it works from gst-launch
35282         Don't renegotiate a non-linked pad. Allows audio only decoding.
35283         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_getcaps),
35284         (gst_deinterlace_link), (gst_deinterlace_init):
35285         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
35286         (gst_videodrop_link):
35287         Some caps negotiation fixes
35288
35289 2004-05-12  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35290
35291         * ext/tarkin/gsttarkin.c :
35292           - Change RANK from NONE to PRIMARY
35293         * ext/gdk_pixbuf/gstgdkpixbuf.c :
35294           - Change RANK from NONE to MARGINAL
35295         * ext/divx/gstdivxenc.c :
35296           - Change RANK from PRIMARY to NONE (encoder/spider issue)
35297
35298 2004-05-12  Thomas Vander Stichele  <thomas at apestaart dot org>
35299
35300         * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
35301         (gst_vorbisenc_push_packet):
35302           copy a function that was added between 1.0 and 1.0.1 until we
35303           depend on worthwhile features of post-1.0
35304
35305 2004-05-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35306
35307         * configure.ac:
35308           enable shout2 by default
35309         * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
35310         (gst_shout2send_base_init), (gst_shout2send_init),
35311         (gst_shout2send_connect), (gst_shout2send_change_state):
35312         * ext/shout2/gstshout2.h:
35313           make this work again. Based on a patch by Zaheer Abbas Merali (fixes
35314           #142262)
35315         * ext/theora/theora.c: (plugin_init):
35316           don't set rank on encoders
35317
35318 2004-05-11  Jeremy Simon  <jesimon@libertysurf.fr>
35319
35320         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
35321           Use codec_data property instead of flag1 and flag2 for wma
35322
35323 2004-05-11  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35324
35325         * gst/cdxaparse/gstcdxaparse.c :
35326           - Add mpegversion to CAPS to make it link
35327           - Rank is as GST_RANK_SECONDARY instead of NONE
35328         * gst/auparse/gstauparse.c :
35329           - Document all audio encoding we can encounter from Solaris 9
35330             headers and libsndfile information.
35331           - Increase max. rate from 48000 to 192000 (to match other elements)
35332           - Don't try to play junk data between header and samples
35333
35334 2004-05-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35335
35336         * ext/libvisual/visual.c: (gst_visual_getcaps):
35337           use the right caps depending on endianness (I hope)
35338         * ext/ogg/gstoggmux.c: (gst_ogg_mux_plugin_init):
35339           use GST_RANK_NONE for all non-decoding elements or spider gets
35340           mighty confused
35341
35342 2004-05-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35343
35344         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
35345           Fix some odd cases and fix BE metadata parsing of unicode16 text.
35346
35347 2004-05-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35348
35349         * gst/switch/gstswitch.c: (gst_switch_release_pad),
35350         (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
35351         (gst_switch_loop), (gst_switch_get_type):
35352           whoever that was: DO NOT IMPORT PRIVATE SYMBOLS THAT ARE NOT IN
35353           HEADERS. Had to be said.
35354
35355 2004-05-10  David Schleef  <ds@schleef.org>
35356
35357         * configure.ac: Add prototype Dirac support.
35358         * ext/Makefile.am:
35359         * ext/dirac/Makefile.am:
35360         * ext/dirac/gstdirac.cc:
35361         * ext/dirac/gstdiracdec.cc:
35362
35363 2004-05-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35364
35365         * gst/auparse/gstauparse.c: (gst_auparse_class_init),
35366         (gst_auparse_init), (gst_auparse_chain),
35367         (gst_auparse_change_state):
35368           Hack around spider. Remove me some day please.
35369
35370 2004-05-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35371
35372         * gst/auparse/gstauparse.c: (gst_auparse_chain):
35373           Fix for some uninitialized variables in previous patch, also
35374           makes it work. Fixes #142286 while we're at it.
35375
35376 2004-05-11  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35377
35378         * gst/auparse/gstauparse.c:
35379                 fixes a-law, adds mu-law, linear pcm (8,16,24,32), ieee (32, 64)
35380                 only unsupported formats are ADPCM/CCITT G.72x
35381                 reviewed by Ronald
35382         * gst-libs/gst/audio/audio.h: adds 24bit depth to PCM (x-raw-int)
35383
35384 2004-05-10  Wim Taymans  <wim@fluendo.com>
35385
35386         * ext/vorbis/Makefile.am:
35387         * ext/vorbis/README:
35388         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_formats),
35389         (oggvorbisenc_get_type), (vorbis_caps_factory), (raw_caps_factory),
35390         (gst_oggvorbisenc_base_init), (gst_oggvorbisenc_class_init),
35391         (gst_oggvorbisenc_sinkconnect), (gst_oggvorbisenc_convert_src),
35392         (gst_oggvorbisenc_convert_sink),
35393         (gst_oggvorbisenc_get_query_types), (gst_oggvorbisenc_src_query),
35394         (gst_oggvorbisenc_init), (gst_oggvorbisenc_get_tag_value),
35395         (gst_oggvorbisenc_metadata_set1), (gst_oggvorbisenc_set_metadata),
35396         (get_constraints_string), (update_start_message),
35397         (gst_oggvorbisenc_setup), (gst_oggvorbisenc_write_page),
35398         (gst_oggvorbisenc_chain), (gst_oggvorbisenc_get_property),
35399         (gst_oggvorbisenc_set_property), (gst_oggvorbisenc_change_state):
35400         * ext/vorbis/oggvorbisenc.h:
35401         * ext/vorbis/vorbis.c: (plugin_init):
35402         * ext/vorbis/vorbisenc.c: (vorbis_caps_factory),
35403         (raw_caps_factory), (gst_vorbisenc_class_init),
35404         (gst_vorbisenc_init), (gst_vorbisenc_setup),
35405         (gst_vorbisenc_push_packet), (gst_vorbisenc_chain),
35406         (gst_vorbisenc_get_property), (gst_vorbisenc_set_property):
35407         * ext/vorbis/vorbisenc.h:
35408         Added a raw vorbis encoder to be used with the oggmuxer.
35409         We still need the old encoder for some gnome applications,
35410         read the README to find out how that works.
35411         The raw encoder is called "rawvorbisenc" until 0.9.
35412
35413 2004-05-10  Wim Taymans  <wim@fluendo.com>
35414
35415         * ext/ogg/gstogg.c: (plugin_init):
35416         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init),
35417         (gst_ogg_print):
35418         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type),
35419         (gst_ogg_mux_base_init), (gst_ogg_mux_class_init),
35420         (gst_ogg_mux_get_sink_event_masks), (gst_ogg_mux_init),
35421         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_pad_link),
35422         (gst_ogg_mux_pad_unlink), (gst_ogg_mux_request_new_pad),
35423         (gst_ogg_mux_handle_src_event), (gst_ogg_mux_next_buffer),
35424         (gst_ogg_mux_push_page), (gst_ogg_mux_compare_pads),
35425         (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop),
35426         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property),
35427         (gst_ogg_mux_change_state), (gst_ogg_mux_plugin_init):
35428         Added an ogg muxer.
35429         Small typo fixes in the demuxer.
35430
35431 2004-05-10  Wim Taymans  <wim@fluendo.com>
35432
35433         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
35434         (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
35435         (theora_enc_change_state), (theora_enc_set_property),
35436         (theora_enc_get_property):
35437         Mark the last packet with an EOS flag which is not really needed
35438         in gstreamer.
35439         Do some better video framerate initialisation.
35440         Update the buffer timestamp.
35441
35442 2004-05-10  Jan Schmidt  <thaytan@mad.scientist.com>
35443
35444         * ext/dv/gstdvdec.c: (gst_dvdec_change_state):
35445         Return the result of the parent state change call
35446
35447 2004-05-10  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35448
35449         * gst/law/alaw.c : alawdec should be registered with type ALAWDEC, not ALAWENC
35450         * gst/law/alaw-decode.c : put audio/x-alaw on pads, instead of audio/x-mulaw
35451         * gst/law/alaw-encode.c : (idem)
35452         * ext/a52dec/gsta52dec.c : mark audio/a52, audio/ac3 as deprecated in a comment
35453         * gst/ac3parse/gstac3parse.c : audio/ac3 => audio/x-ac3
35454         * gst/realmedia/rmdemux.c : audio/a52 => audio/x-ac3
35455
35456 2004-05-09  Benjamin Otte  <otte@gnome.org>
35457
35458         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
35459           don't use a fixed buffer size when writing variable length data to
35460           it. Fixes memory corruption and makes alsasrc work
35461
35462 2004-05-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35463
35464         * ext/gnomevfs/gstgnomevfssink.c:
35465         (_gst_boolean_allow_overwrite_accumulator),
35466         (gst_gnomevfssink_class_init), (gst_gnomevfssink_open_file):
35467           Run glib's default signal handler (??) in RUN_CLEANUP rather than
35468           RUN_LAST, and don't use that to set the accumulator value because
35469           then it's always FALSE.
35470
35471 2004-05-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35472
35473         * gst-libs/gst/riff/riff-media.c:
35474         (gst_riff_create_video_caps_with_data),
35475         (gst_riff_create_audio_caps),
35476         (gst_riff_create_audio_template_caps):
35477         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
35478           Fix for unaligned RIFF files (i.e. where all the chunks together
35479           in a LIST chunk are not of the same size as the size given in
35480           the LIST chunk header). Fixes several odd WAVE files. Also fix
35481           ADPCM (block_align property) in audio, so that wavparse based
35482           on this works now as it used to stand-alone.
35483
35484 2004-05-09  Edward Hervey  <bilboed@bilboed.com>
35485
35486         reviewed by Benjamin Otte  <otte@gnome.org>
35487
35488         * ext/a52dec/gsta52dec.c:
35489         * ext/divx/gstdivxdec.c:
35490         * ext/divx/gstdivxenc.c:
35491         * ext/dts/gstdtsdec.c: (gst_dtsdec_base_init):
35492         * ext/faac/gstfaac.c: (gst_faac_base_init):
35493         * ext/faad/gstfaad.c: (gst_faad_base_init):
35494         * ext/ivorbis/vorbisfile.c:
35495         * ext/lame/gstlame.c:
35496         * ext/libfame/gstlibfame.c:
35497         * ext/mpeg2enc/gstmpeg2enc.cc:
35498         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_base_init):
35499         * ext/sidplay/gstsiddec.cc:
35500         * ext/speex/gstspeexdec.c:
35501         * ext/speex/gstspeexenc.c:
35502         * ext/xvid/gstxviddec.c:
35503         * ext/xvid/gstxvidenc.c:
35504           correct klasses. Mostly s,Codec/(Audio|Video),\1/Codec,
35505           (fixes #142193)
35506
35507 2004-05-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35508
35509         * ext/alsa/gstalsa.c: (device_list),
35510         (gst_alsa_class_probe_devices):
35511         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
35512           Fix alsa oddness in mixer after the combination of using mixer
35513           in source/sink elements and using hw:x,y instead of just hw:x.
35514
35515 2004-05-09  Benjamin Otte  <otte@gnome.org>
35516
35517         * gst/wavparse/gstwavparse.c: (gst_wavparse_destroy_sourcepad),
35518         (gst_wavparse_create_sourcepad):
35519           make PAUSED=>READY=>PAUSED=READY work by not destroying NULL
35520           sourcepads
35521
35522 2004-05-09  Benjamin Otte  <otte@gnome.org>
35523
35524         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
35525           allow discont events before caps nego
35526
35527 2004-05-08  Benjamin Otte  <otte@gnome.org>
35528
35529         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
35530           don't leak events
35531
35532 2004-05-08  Benjamin Otte  <otte@gnome.org>
35533
35534         * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
35535         (gst_level_change_state), (gst_level_init):
35536         * gst/level/gstlevel.h:
35537           figure out if we're initialized directly instead of keeping a
35538           variable that's wrong in 90% of cases
35539           don't initialize pads and then leak them and use a new unitialized
35540           pad. (fixes #142084)
35541           these were bugs so n00bish I didn't find them for an hour :/
35542
35543 2004-05-08 Iain <iain@prettypeople.org>
35544
35545         * gst/wavparse/gstwavparse.[ch]: Rewrote to use RiffRead instead.
35546         * gst-libs/gst/riff/riff-read.c (gst_riff_read_peek_head): Unstatic it
35547         (gst_riff_read_element_data): Ditto, and added a got_bytes argument to
35548         return the length that was read.
35549         (gst_riff_read_strf_auds): Allow fmt tags as well.
35550
35551 2004-05-07  David Schleef  <ds@schleef.org>
35552
35553         * ext/faad/gstfaad.c: (gst_faad_sinkconnect): HACK to correct
35554         signed char assumption in faad.h.
35555
35556 2004-05-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35557
35558         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps):
35559           Missing break, detected by Daniel Gazard <daniel.gazard@free.fr>.
35560
35561 2004-05-07  Colin Walters  <walters@redhat.com>
35562
35563         * gst/volume/gstvolume.c (gst_volume_dispose): Unref dpman.
35564         * ext/flac/gstflacdec.c (gst_flacdec_dispose): Add dispose
35565         function.
35566         * gst/audioscale/gstaudioscale.c (gst_audioscale_dispose):
35567         Add dispose function.
35568
35569 2004-05-08  Jan Schmidt  <thaytan@mad.scientist.com>
35570         * ext/dv/gstdvdec.c: (gst_dvdec_video_link):
35571           Fix caps nego and pad templates. RGB mode caps should
35572           work now.
35573         * ext/dvdnav/gst-dvd:
35574           Move mpeg2dec inside the thread because otherwise the
35575           queue rejects cap changes mid-stream
35576         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
35577         (gst_mpeg2dec_flush_decoder):
35578           For mpeg2dec > 0.4.0, call the flush function instead of
35579           manually extracting all in-flight frames.
35580         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_factory),
35581         (gst_dv1394src_init), (gst_dv1394src_iso_receive):
35582           Change mime type video/dv go video/x-dv to match the
35583           rest of gst-plugins
35584
35585 2004-05-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35586
35587         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
35588         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_type),
35589         (gst_alsa_sink_class_init):
35590         * ext/alsa/gstalsasink.h:
35591         * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_type),
35592         (gst_alsa_src_class_init):
35593         * ext/alsa/gstalsasrc.h:
35594           Make alsasink/src a subclass of alsamixer so that mixer stuff
35595           shows up in gst-rec. Needs some finetuning.
35596
35597 2004-05-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35598
35599         * ext/lame/gstlame.c: (gst_lame_chain):
35600           simplify
35601         * ext/mad/gstmad.c: (gst_mad_handle_event):
35602           fix event leak
35603         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
35604           be able to detect mp3 files < 4096 bytes
35605
35606 2004-05-06  Wim Taymans  <wim@fluendo.com>
35607
35608         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
35609         (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
35610         (theora_enc_set_property), (theora_enc_get_property):
35611         Also encode the first frame, cleanup some code.
35612
35613 2004-05-06  Wim Taymans  <wim@fluendo.com>
35614
35615         * ext/mpeg2enc/gstmpeg2enc.cc:
35616         Forward events first before deciding that negotiation was
35617         not performed.
35618
35619 2004-05-06  Wim Taymans  <wim@fluendo.com>
35620
35621         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
35622         First process the events before deciding that negotiation
35623         was not performed.
35624
35625 2004-05-06  Wim Taymans  <wim@fluendo.com>
35626
35627         * ext/theora/Makefile.am:
35628         * ext/theora/theora.c: (plugin_init):
35629         * ext/theora/theoradec.c: (theora_dec_change_state):
35630         * ext/theora/theoraenc.c: (gst_theora_enc_base_init),
35631         (gst_theora_enc_class_init), (gst_theora_enc_init),
35632         (theora_enc_sink_link), (theora_enc_event), (theora_push_packet),
35633         (theora_enc_chain), (theora_enc_change_state),
35634         (theora_enc_set_property), (theora_enc_get_property):
35635         Added a theora encoder, grouped the encoder and decoder into the
35636         same plugin.
35637
35638 2004-05-05  Thomas Vander Stichele  <thomas at apestaart dot org>
35639
35640         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
35641         (gst_jpegenc_chain):
35642         fix DURATION on outgoing buffers
35643         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
35644         debug using time formats
35645         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
35646         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
35647         (gst_xvimagesink_sink_link):
35648         windows with width/height 0 generate X errors, so don't allow them
35649
35650 2004-05-05  Wim Taymans  <wim@fluendo.com>
35651
35652         * ext/mpeg2dec/gstmpeg2dec.c: (src_templ),
35653         (gst_mpeg2dec_base_init), (gst_mpeg2dec_init),
35654         (gst_mpeg2dec_negotiate_format):
35655         * ext/mpeg2dec/gstmpeg2dec.h:
35656           removed the static pad template so that we can add the
35657           more accurate framerate value to the caps.
35658
35659
35660 2004-05-04  Benjamin Otte  <otte@gnome.org>
35661
35662         * configure.ac:
35663           check for kdemacros.h, too (should fix #141821)
35664         * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
35665           don't crash if no header was sent, but nicely error out (fixes part
35666           of #141554)
35667
35668 2004-05-04  Wim Taymans  <wim@fluendo.com>
35669
35670         * ext/mpeg2enc/gstmpeg2enc.cc: (gst_mpeg2enc_dispose): call the
35671         parent dispose function to avoid segfault on destroy.
35672
35673 2004-05-04  Thomas Vander Stichele  <thomas at apestaart dot org>
35674
35675         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
35676         (plugin_init):
35677         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
35678         (gst_xvimagesink_sink_link):
35679         clean up debugging caps
35680         also recreate xvimage when format has changed
35681
35682 2004-05-04  Benjamin Otte  <otte@gnome.org>
35683
35684         * ext/libvisual/Makefile.am:
35685         * ext/libvisual/visual.c: (gst_visual_class_init),
35686         (gst_visual_init), (gst_visual_dispose), (gst_visual_getcaps),
35687         (gst_visual_srclink), (gst_visual_chain),
35688         (gst_visual_change_state), (plugin_init):
35689           use a GstAdapter to correctly adapt buffer sizes - allows using a
35690           framerate
35691
35692 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
35693
35694         * sys/v4l/gstv4lelement.h:
35695         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
35696         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps), (gst_v4lsrc_getcaps),
35697         (gst_v4lsrc_buffer_free):
35698         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities):
35699         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
35700         (gst_v4lsrc_sync_frame), (gst_v4lsrc_grab_frame),
35701         (gst_v4lsrc_requeue_frame):
35702         move some debugging categories around
35703         query for fps index and set accordingly if found
35704
35705 2004-05-03  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35706
35707         * ext/lame/gstlame.c:
35708         correct defaults that lame_init puts out of range
35709
35710 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
35711
35712         * ext/divx/gstdivxenc.c: (gst_divxenc_get_type),
35713         (gst_divxenc_class_init):
35714         fix range since -1 is the default
35715         * gst/mpeg1sys/gstmpeg1systemencode.c:
35716         (gst_mpeg1_system_encode_get_type), (gst_system_encode_multiplex):
35717         * gst/rtjpeg/gstrtjpegdec.c: (gst_rtjpegdec_get_type),
35718         (gst_rtjpegdec_chain):
35719         * gst/rtjpeg/gstrtjpegenc.c: (gst_rtjpegenc_get_type),
35720         (gst_rtjpegenc_chain):
35721         * sys/qcam/gstqcamsrc.c: (gst_autoexp_mode_get_type),
35722         (gst_qcamsrc_get_type), (gst_qcamsrc_change_state):
35723         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_get_type):
35724         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_type):
35725         * sys/v4l/gstv4lsrc.c:
35726         * sys/v4l/v4l_calls.c: (gst_v4l_open):
35727         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
35728         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
35729         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init):
35730         * sys/vcd/vcdsrc.c: (vcdsrc_get_type), (vcdsrc_get):
35731           remove gst_info calls
35732
35733 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
35734
35735         * Makefile.am:
35736         * po/af.po:
35737         * po/az.po:
35738         * po/en_GB.po:
35739         * po/nl.po:
35740         * po/sr.po:
35741         * po/sv.po:
35742           Updated translations
35743
35744 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
35745
35746         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
35747           refactor/comment code
35748
35749 2004-05-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35750
35751         * gst/asfdemux/Makefile.am:
35752         * gst/asfdemux/asfheaders.c:
35753         * gst/asfdemux/asfheaders.h:
35754         * gst/asfdemux/gstasf.c: (plugin_init):
35755         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_get_type),
35756         (gst_asf_demux_base_init), (gst_asf_demux_process_comment),
35757         (gst_asf_demux_setup_pad):
35758         * gst/asfdemux/gstasfdemux.h:
35759         * gst/asfdemux/gstasfmux.c:
35760         * gst/asfdemux/gstasfmux.h:
35761           Add tagging support to demuxer, split out registration in its own
35762           file instead of in demux (hacky), and prevent having some tables
35763           in our memory multiple times (in asfheaders.h).
35764
35765 2004-05-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35766
35767         * gst/matroska/matroska-demux.c:
35768         (gst_matroska_demux_parse_metadata):
35769         * gst/matroska/matroska-ids.h:
35770           Basic tag reading support.
35771
35772 2004-04-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35773
35774         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
35775           Really detect ac-3 audio.
35776         * gst/typefind/gsttypefindfunctions.c: (matroska_type_find):
35777           really detect matroska files (off-by-1).
35778
35779 2004-04-30  David Schleef  <ds@schleef.org>
35780
35781         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
35782         (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_type_get),
35783         (qtdemux_dump_stsz), (qtdemux_dump_stco), (qtdemux_dump_co64),
35784         (qtdemux_dump_unknown), (qtdemux_parse_tree), (qtdemux_parse_udta),
35785         (qtdemux_tag_add), (get_size), (gst_qtdemux_handle_esds): More qtdemux
35786         hackage -- parse a lot more atoms, extract a few tags.  One might even
35787         mistake this for tag support.  Maybe it is.
35788         * gst/qtdemux/qtdemux.h:
35789
35790 2004-04-30  Colin Walters  <walters@verbum.org>
35791
35792         * ext/alsa/gstalsasink.c (gst_alsa_sink_mmap): Plug a memleak.
35793
35794 2004-04-30  Thomas Vander Stichele  <thomas at apestaart dot org>
35795
35796         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
35797         (gst_ffmpegcolorspace_getcaps):
35798           remove broken nego fix
35799
35800 2004-04-30  Benjamin Otte  <otte@gnome.org>
35801
35802         * configure.ac:
35803         * ext/Makefile.am:
35804         * ext/libvisual/Makefile.am:
35805         * ext/libvisual/visual.c:
35806           add initial support for libvisual (http://libvisual.sourceforge.net)
35807           libvisual is still quite alpha, so expect crashes in there :)
35808
35809 2004-04-29  David Schleef  <ds@schleef.org>
35810
35811         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream), (qtdemux_parse),
35812         (qtdemux_parse_trak), (get_size), (gst_qtdemux_handle_esds): Hacked
35813         up qtdemux to make it spit out codec_data.  Do _not_ look at this
35814         code; you will no longer respect me.
35815
35816 2004-04-29  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35817
35818         * ext/alsa/gstalsa.c : (gst_alsa_class_probe_devices)
35819         * ext/alsa/gstalsa.h :
35820         change alsa pcm device discovery to find more than 1 device
35821         per card. code review by Ronald.
35822
35823 2004-04-29  David Schleef  <ds@schleef.org>
35824
35825         * sys/oss/gstosselement.c: (gst_osselement_rate_probe_check):
35826         Add a check for a driver bug on FreeBSD.  (bug #140565)
35827
35828 2004-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
35829
35830         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_get_type):
35831         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
35832         (gst_jpegenc_getcaps):
35833           move format setting to inner loop
35834         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
35835         (gst_ffmpegcolorspace_getcaps):
35836           use GST_PAD_CAPS if available so that we use already negotiated
35837           caps
35838         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
35839         (qtdemux_parse_moov), (qtdemux_parse):
35840           extra debugging
35841         * sys/qcam/qcam-Linux.c: (qc_lock_wait), (qc_unlock):
35842         * sys/qcam/qcam-os.c: (qc_lock_wait), (qc_unlock):
35843           move hardcoded path to DEFINE
35844
35845 2004-04-28  David Schleef  <ds@schleef.org>
35846
35847         * gst/speed/gstspeed.c: (speed_parse_caps):  Fix caps parsing.
35848         (bug #140064)
35849
35850 2004-04-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35851
35852         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
35853           Don't probe for playback device if we're a source element. Fixes
35854           #139658.
35855
35856 2004-04-29  Benjamin Otte  <otte@gnome.org>
35857
35858         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
35859         (gst_id3_tag_chain):
35860           rewrite buffer offset
35861
35862 2004-04-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35863
35864         * configure.ac:
35865         * ext/Makefile.am:
35866         * ext/dts/Makefile.am:
35867         * ext/dts/gstdtsdec.c: (gst_dtsdec_get_type),
35868         (gst_dtsdec_base_init), (gst_dtsdec_class_init), (gst_dtsdec_init),
35869         (gst_dtsdec_channels), (gst_dtsdec_renegotiate),
35870         (gst_dtsdec_handle_event), (gst_dtsdec_update_streaminfo),
35871         (gst_dtsdec_loop), (gst_dtsdec_change_state),
35872         (gst_dtsdec_set_property), (gst_dtsdec_get_property),
35873         (plugin_init):
35874         * ext/dts/gstdtsdec.h:
35875           New DTS decoder.
35876         * ext/faad/gstfaad.c: (gst_faad_sinkconnect),
35877         (gst_faad_srcconnect):
35878           Add ESDS atom handling (.m4a).
35879
35880 2004-04-27  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35881
35882         * ext/divx/gstdivxdec.c: (plugin_init):
35883           Remove comment that makes no sense.
35884         * ext/mad/gstid3tag.c: (gst_id3_tag_set_property):
35885           Fix for obvious typo that resulted in warnings during gst-register.
35886         * ext/xvid/gstxviddec.c: (gst_xviddec_src_link),
35887         (gst_xviddec_sink_link):
35888           Fix caps negotiation a bit better.
35889         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
35890           We call this 'codec_data', not 'esds'.
35891
35892 2004-04-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35893
35894         * gst/monoscope/gstmonoscope.c:
35895           make sure we only provide 256x128
35896         * gst/monoscope/monoscope.c: (monoscope_init):
35897           assert size of 256x128
35898
35899 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
35900
35901         * Makefile.am:
35902         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_fixate),
35903         (gst_v4lsrc_getcaps), (gst_v4lsrc_buffer_free):
35904           fixate to max width and height of device
35905
35906 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
35907
35908         * Makefile.am:
35909         * sys/v4l/gstv4l.c:
35910         * sys/v4l/gstv4lsrc.c:
35911         * sys/v4l/v4l_calls.c:
35912         * sys/v4l/v4lsrc_calls.c:
35913           fix for qc-usb driver which fakes having more than one buffer
35914           by handing the same buffer twice, which confused GStreamer's/v4lsrc
35915           buffer_free override
35916           add debugging
35917
35918 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
35919
35920         * Makefile.am:
35921         * gst/videotestsrc/gstvideotestsrc.c:
35922         (gst_videotestsrc_class_init), (gst_videotestsrc_change_state),
35923         (gst_videotestsrc_init), (gst_videotestsrc_get),
35924         (gst_videotestsrc_set_property), (gst_videotestsrc_get_property):
35925         * gst/videotestsrc/gstvideotestsrc.h:
35926           add num-buffers property
35927
35928         2004-04-26  Benjamin Otte  <otte@gnome.org>
35929
35930         * ext/mad/gstid3tag.c: (plugin_init):
35931           set id3mux rank to NONE so it doesn't confuse spider
35932           require audio/mpeg,mpegversion=1 in id3mux
35933
35934 2004-04-26  Benjamin Otte  <otte@gnome.org>
35935
35936         * configure.ac:
35937           detect faad correctly as non-working if it's indeed non-working
35938
35939 2004-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
35940
35941         * Makefile.am:
35942         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
35943         (gst_jpegenc_class_init), (gst_jpegenc_getcaps):
35944         fix _getcaps so it only negotiates to its supported format
35945
35946 2004-04-25  Benjamin Otte  <otte@gnome.org>
35947
35948         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
35949           fix memleak
35950
35951 2004-04-23  Benjamin Otte  <otte@gnome.org>
35952
35953         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
35954           audio/x-raw-int with height rules! not. Now it's depth.
35955
35956 2004-04-22  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35957
35958         * gst/wavparse/gstwavparse.c: (gst_wavparse_create_sourcepad),
35959         (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
35960         (gst_wavparse_loop):
35961           Missing variable initialization. Add handling of DVI ADPCM. Fix
35962           mis-parsing of LIST chunks. This works around a bug where we mis-
35963           parse non-aligning LIST chunks (so LIST chunks where the contents
35964           don't align with the actual LIST size). The correct fix is to use
35965           rifflib, I'm not going to fix wavparse - too much work. All this
35966           fixes #104878.
35967
35968 2004-04-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
35969
35970         reviewed by Benjamin Otte  <otte@gnome.org>
35971
35972         * ext/shout/gstshout.c: (gst_icecastsend_change_state):
35973           fix shoutcast not working (fixes #140844)
35974
35975 2004-04-22  Benjamin Otte  <otte@gnome.org>
35976
35977         * ext/hermes/gsthermescolorspace.c:
35978         (gst_hermes_colorspace_caps_remove_format_info):
35979         * gst/colorspace/gstcolorspace.c:
35980         (gst_colorspace_caps_remove_format_info):
35981         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
35982         (gst_ffmpegcolorspace_caps_remove_format_info):
35983           s/gst_caps_simplify/gst_caps_do_simplify/
35984
35985 2004-04-22  Benjamin Otte  <otte@gnome.org>
35986
35987         * gst-libs/gst/riff/riff-media.c:
35988         (gst_riff_create_video_caps_with_data):
35989           mpegversion is an int
35990         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init):
35991           don't try to create pad templates with NULL caps, use any caps
35992           instead.
35993
35994 2004-04-20  David Schleef  <ds@schleef.org>
35995
35996         * ext/sdl/Makefile.am: Link against libgstinterfaces, not
35997         libgstxoverlay.  jmmv@menta.net (Julio M. Merino Vidal)
35998         (bug #140384)
35999
36000 2004-04-20  Daniel Gazard  <daniel.gazard@epita.fr>
36001
36002         reviewed by David Schleef
36003
36004         * ext/mad/gstid3tag.c: Add stdlib.h
36005         * gst/rtp/gstrtpgsmenc.c: same
36006         * gst/tags/gstid3tag.c: same
36007         * gst/udp/gstudpsrc.c: (gst_udpsrc_get): Fix GST_DISABLE_LOADSAVE
36008         * gst/tcp/gsttcpsink.c: (gst_tcpsink_sink_link): Adjust
36009         GST_DISABLE_LOADSAVE use.
36010         * gst/udp/gstudpsink.c: (gst_udpsink_sink_link): Likewise.
36011         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get): Likewise.
36012         * ext/gnomevfs/gstgnomevfssrc.c: Include <stdlib.h> (needed by
36013         atol(3)).
36014         * sys/oss/gstosselement.h: Include <sys/types.h> (needed for dev_t).
36015         * gst/tags/gstvorbistag.c: Include <stdlib.h> (needed by
36016         strtoul(3)).
36017         * gst/rtp/gstrtpL16enc.c: Include <stdlib.h> (needed by random(3)).
36018         * ext/mad/Makefile.am: (libgstmad_la_CFLAGS): Add $(MAD_CFLAGS)
36019         $(ID3_CFLAGS).
36020         * ext/libfame/Makefile.am: (libgstlibfame_la_CFLAGS): Add
36021         $(LIBFAME_CFLAGS).
36022
36023 2004-04-20  David Schleef  <ds@schleef.org>
36024
36025         * gst/realmedia/rmdemux.c:  This was supposed to part of the
36026         last checkin.  Same idea.
36027
36028 2004-04-20  Daniel Gazard  <daniel.gazard@epita.fr>
36029
36030         reviewed by David Schleef
36031
36032         * configure.ac: bump required gstreamer version to 0.8.1.1
36033         because of following changes [--ds]
36034
36035         * gst-libs/gst/riff/riff-read.c:  Include gst/gstutils.h.
36036         (gst_riff_peek_head, gst_riff_peek_list, gst_riff_read_list)
36037         (gst_riff_read_header):  Use GST_READ_UINT*
36038         macros to access possibly unaligned memory.
36039
36040         * gst/typefind/gsttypefindfunctions.c: Include gst/gstutils.h.
36041         (mp3_type_find):  Use GST_READ_UINT*
36042         macros to access possibly unaligned memory.
36043         (mp3_type_find, mpeg1_parse_header, qt_type_find)
36044         (speex_type_find): Likewise
36045
36046         * gst/tags/gstvorbistag.c: (ADVANCE): Likewise
36047
36048         * gst/qtdemux/qtdemux.c: Include stdlib.h (needed by realloc).
36049         (QTDEMUX_GUINT32_GET, QTDEMUX_GUINT16_GET, QTDEMUX_FP32_GET)
36050         (QTDEMUX_FP16_GET, QTDEMUX_FOURCC_GET)
36051         (gst_qtdemux_loop_header, gst_qtdemux_loop_header)
36052         (qtdemux_node_dump_foreach, qtdemux_tree_get_child_by_type)
36053         (qtdemux_tree_get_sibling_by_type):  Use GST_READ_UINT*
36054         macros to access possibly unaligned memory.
36055
36056         * gst/mpegstream/gstmpegpacketize.c: (parse_generic, parse_chunk):
36057         Likewise.
36058
36059         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead)
36060         (gst_mpeg_demux_parse_packet, gst_mpeg_demux_parse_pes): Likewise.
36061
36062         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
36063         Likewise.
36064
36065         * gst/mpeg2sub/gstmpeg2subt.c: (GST_BUFFER_DATA)
36066         (gst_mpeg2subt_chain_subtitle): Likewise.
36067
36068         * gst/mpeg1videoparse/gstmp1videoparse.c: (mp1videoparse_parse_seq)
36069         (gst_mp1videoparse_time_code, gst_mp1videoparse_real_chain):
36070         Likewise.
36071
36072         * gst/mpeg1sys/buffer.c: (mpeg1mux_buffer_update_audio_info):
36073         Likewise.
36074
36075         * gst/cdxaparse/gstcdxaparse.c: (gst_bytestream_peek_bytes):
36076         Likewise.
36077
36078         * gst/asfdemux/gstasfdemux.c: (_read_var_length, _read_uint):
36079         Likewise.
36080
36081 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
36082
36083         * configure.ac:
36084           update required version of GStreamer because of GST_TIME_FORMAT
36085
36086 2004-04-20  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36087
36088         * ext/mad/gstid3tag.c: (gst_id3_tag_init):
36089           remove leftover g_print
36090         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
36091           don't try setting only a subset of the caps. We don't want to kill
36092           autoplugging on purpose
36093
36094 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
36095
36096         * sys/ximage/ximagesink.c: (plugin_init):
36097         * sys/xvimage/xvimagesink.c: (plugin_init):
36098           add debugging categories
36099
36100 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
36101
36102         * po/en_GB.po:
36103         * po/LINGUAS:
36104           Adding en_GB translation (Gareth Owen)
36105
36106 2004-04-20  David Schleef  <ds@schleef.org>
36107
36108         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
36109         (qtdemux_parse), (qtdemux_type_get), (qtdemux_dump_mvhd),
36110         (qtdemux_dump_tkhd), (qtdemux_dump_stsd), (qtdemux_dump_unknown),
36111         (qtdemux_parse_trak), (qtdemux_video_caps), (qtdemux_audio_caps):
36112         A number of new features and hacks to extract the esds atom and
36113         put it into the caps.  (bug #137724)
36114
36115 2004-04-19  David Schleef  <ds@schleef.org>
36116
36117         * gconf/Makefile.am: Fix for non-GNU make
36118         * gst-libs/gst/Makefile.am: Change directory order to handle
36119         GstPlay linking with gstinterfaces
36120         * gst-libs/gst/audio/make_filter: make use of tr portable
36121         * gst-libs/gst/play/Makefile.am: Add intended \
36122         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
36123         (gst_xwin_set_clips): Switch to ISO variadic macro. Use a
36124         function prototype instead of void *.
36125         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Switch to ISO variadic
36126         macro.
36127         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
36128         (gst_ffmpegcolorspace_chain): wrap NULL in GST_ELEMENT_ERROR call
36129         * gst/videofilter/make_filter: make use of tr portable
36130         * pkgconfig/Makefile.am: Remove GNU extension in Makefile target
36131
36132 2004-04-19  Thomas Vander Stichele  <thomas at apestaart dot org>
36133
36134         * po/LINGUAS:
36135         * po/uk.po:
36136           Added Ukrainian translation (Maxim V. Dziumanenko)
36137
36138 2004-04-18  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36139
36140         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_getcaps),
36141         (gst_gsmdec_link), (gst_gsmdec_chain):
36142           Fix capsnego, simplify chain function slightly.
36143         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
36144           Add GSM.
36145
36146 2004-04-18  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36147
36148         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
36149         (gst_wavparse_destroy_sourcepad), (gst_wavparse_create_sourcepad),
36150         (gst_wavparse_parse_fmt), (gst_wavparse_change_state):
36151           Hack to make wavparse work with spider (always -> sometimes pad).
36152           Fixes #135862 && #140411.
36153
36154 2004-04-18  Benjamin Otte  <otte@gnome.org>
36155
36156         * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
36157         (gst_osselement_rate_probe_check),
36158         (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate):
36159           get rid of \n in debug output
36160
36161 2004-04-17  Iain <iain@prettypeople.org>
36162
36163         * gst/wavparse/gstwavparse.c (gst_wavparse_loop): Allow all events,
36164         not just EOS.
36165
36166 2004-04-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36167
36168         * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
36169         (gst_id3_tag_class_init), (gst_id3_tag_get_caps),
36170         (gst_id3_tag_add_src_pad), (gst_id3_tag_init),
36171         (gst_id3_tag_set_property), (gst_id3_tag_do_caps_nego),
36172         (gst_id3_tag_src_link), (gst_id3_tag_chain),
36173         (gst_id3_tag_change_state), (plugin_init):
36174           deprecate id3tag element and replace with id3demux/id3mux.
36175           great side effect: this ugly file is now even uglier, yay!
36176         * ext/mad/gstmad.h:
36177           remove non-available function
36178           update for new get_type
36179
36180 2004-04-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36181
36182         * configure.ac:
36183           require mpeg2dec >= 0.4.0
36184
36185 2004-04-17  Benjamin Otte  <otte@gnome.org>
36186
36187         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
36188         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
36189         (gst_xvimagesink_set_xwindow_id):
36190           call GST_ELEMENT_ERROR whenever get_xcontext fails. Includes
36191           assorted cleanup fixes.
36192
36193 2004-04-16  David Schleef  <ds@schleef.org>
36194
36195         * sys/ximage/ximagesink.h: Compile fix for FreeBSD. (bug #140268)
36196         * sys/xvimage/xvimagesink.h: same
36197
36198 2004-04-16  Thomas Vander Stichele  <thomas at apestaart dot org>
36199
36200         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
36201           Fix GST_ELEMENT_ERROR with (NULL)
36202
36203 2004-04-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36204
36205         * gst-libs/gst/riff/riff-media.c:
36206         (gst_riff_create_video_caps_with_data):
36207           Add div[3456] as fourccs for DivX 3 (fixes #140137).
36208
36209 2004-04-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36210
36211         * gst-libs/gst/riff/riff-media.c:
36212         (gst_riff_create_video_caps_with_data),
36213         (gst_riff_create_video_caps), (gst_riff_create_audio_caps),
36214         (gst_riff_create_video_template_caps),
36215         (gst_riff_create_audio_template_caps):
36216         * gst-libs/gst/riff/riff-media.h:
36217         * gst-libs/gst/riff/riff-read.c:
36218         (gst_riff_read_strf_vids_with_data), (gst_riff_read_strf_vids):
36219         * gst-libs/gst/riff/riff-read.h:
36220         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
36221           Add MS RLE support. I added some functions to read out strf chunks
36222           into strf chunks and the data behind it. This is usually color
36223           palettes (as in RLE, but also in 8-bit RGB). Also use those during
36224           caps creation. Lastly, add ADPCM (similar to wavparse - which
36225           should eventually be rifflib based).
36226         * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
36227         (gst_matroska_demux_init), (gst_matroska_demux_reset):
36228         * gst/matroska/matroska-demux.h:
36229           Remove placeholders for some prehistoric tagging system. Didn't add
36230           support for any tag system really anyway.
36231         * gst/qtdemux/qtdemux.c:
36232           Add support for audio/x-m4a (MPEG-4) through spider.
36233         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
36234         (gst_wavparse_loop):
36235           ADPCM support (#135862). Increase max. buffer size because we
36236           cannot split buffers for ADPCM (screws references) and I've seen
36237           files with 2048 byte chunks. 4096 seems safe for now.
36238
36239 2004-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
36240
36241         * configure.ac: bump nano to 1
36242
36243 === release 0.8.1 ===
36244
36245 2004-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
36246
36247         * configure.ac: releasing 0.8.1, "Comforting Sounds"
36248
36249 2004-04-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36250
36251         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
36252           Fix typo in divxversion (3 instead of 4 for "DIVX" fourcc).
36253           Fixes #140058
36254
36255 2004-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
36256
36257         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_plugin_init):
36258           lower rank of dvddemux so that it's not used for mpeg playback.
36259
36260 2004-04-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36261
36262         * configure.ac:
36263           save libs correctly when checking mad
36264
36265 2004-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
36266
36267         * ext/mad/gstid3tag.c: (plugin_init):
36268           lower rank of id3tag as proposed by Benjamin.  Fixes #139926.
36269
36270 2004-04-13  David Schleef  <ds@schleef.org>
36271
36272         * common/m4/gst-feature.m4: Call -config scripts with
36273         --plugin-libs if it is supported.
36274         * gst/avi/gstavimux.c: (gst_avimux_vidsinkconnect): sequences of
36275         JPEG images are image/jpeg.
36276         * gst/debug/Makefile.am:
36277         * gst/debug/negotiation.c: (gst_negotiation_class_init),
36278         (gst_negotiation_getcaps), (gst_negotiation_pad_link),
36279         (gst_negotiation_update_caps), (gst_negotiation_get_property),
36280         (gst_negotiation_plugin_init): Add a property that acts like
36281         filter caps.
36282         * testsuite/gst-lint:  Move license checking to be a standard
36283         test.
36284
36285 2004-04-13  David Schleef  <ds@schleef.org>
36286
36287         * gst/avi/gstavidemux.c: (gst_avi_demux_reset): Fix memleak.
36288         patch from Sebastien Cote (bug #139958)
36289
36290 2004-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
36291
36292         * examples/gstplay/Makefile.am:
36293         * examples/gstplay/player.c: (main):
36294           make the commandline player example use gconf settings
36295
36296 2004-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
36297
36298         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
36299         (gst_cacasink_sinkconnect), (gst_cacasink_init),
36300         (gst_cacasink_chain), (gst_cacasink_open), (gst_cacasink_close):
36301           init/end library during state transition, not object
36302           creation/disposal.  get rid of custom dispose handler.
36303
36304
36305 2004-04-12  Christian Schaller <Uraeus@gnome.org>
36306
36307         * sys/oss/gstosselement.c: s/lstat/stat/ from freeBSD, since it can
36308         be a symlink
36309
36310 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36311
36312         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_data):
36313           Handle JUNK chunks inside data section. Prevents warnings.
36314
36315 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36316
36317         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
36318         (gst_riff_create_video_template_caps):
36319           Add MS video v1.
36320         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
36321         (gst_avi_demux_stream_data):
36322           Add support for "rec-list" chunks.
36323
36324 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36325
36326         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
36327           Fix another codecname mismatch.
36328
36329 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36330
36331         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
36332           Fix divx caps mismatch and move from video/x-jpeg to image/jpeg
36333           so that MJPEG plays back.
36334
36335 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36336
36337         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
36338         (gst_mp1videoparse_real_chain), (gst_mp1videoparse_change_state):
36339         * gst/mpeg1videoparse/gstmp1videoparse.h:
36340           Fix for some slight mis-cuts in buffer parsing, and for some
36341           potential overflows or faults-causers. Adds disconts. Also fixes
36342           #139105 while we're at it.
36343
36344 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36345
36346         * configure.ac:
36347         * sys/v4l2/gstv4l2element.h:
36348           Workaround for missing struct v4l2_buffer declaration in Suse 9
36349           and Mandrake 10 linux/videodev2.h header file (#135919).
36350
36351 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36352
36353         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
36354           Bail out if no filename was given.
36355
36356 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36357
36358         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps),
36359         (gst_v4l2_fourcc_from_structure):
36360           Add Y41B/Y42B YUV formats (see #125732), fix Y41P (was typo'ed to
36361           Y41B somewhere).
36362
36363 2004-04-09  Benjamin Otte  <otte@gnome.org>
36364
36365         * ext/gnomevfs/gstgnomevfssink.c:
36366         (_gst_boolean_allow_overwrite_accumulator),
36367         (gst_gnomevfssink_class_init):
36368           fix erase signal - if any handler returns false the file will not be
36369           overwritten. If no handler is connected, the file will not be
36370           overwritten either.
36371           renamed signal to "allow-overwrite"
36372         * ext/mad/gstid3tag.c: (tag_list_to_id3_tag_foreach):
36373           free string when adding it to ID3 failed
36374         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
36375           unref event when done
36376         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
36377           free caps
36378         * gst/typefind/gsttypefindfunctions.c:
36379         (mpeg_video_stream_type_find):
36380           fix invalid read
36381
36382 2004-04-08  David Schleef  <ds@schleef.org>
36383
36384         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
36385         (gst_ffmpegcolorspace_register): Change rank to PRIMARY.
36386
36387 2004-04-08  David Schleef  <ds@schleef.org>
36388
36389         * gst/colorspace/gstcolorspace.c: Don't advertise a conversion
36390         we don't support (bug #139532)
36391
36392 2004-04-07  Thomas Vander Stichele  <thomas at apestaart dot org>
36393
36394         * ext/mad/gstmad.c: (gst_mad_handle_event),
36395         (gst_mad_check_caps_reset), (gst_mad_chain),
36396         (gst_mad_change_state):
36397           only set explicit caps if they haven't been set before for
36398           this stream.  MPEG-audio sample rate/channels aren't allowed
36399           to change in-stream.
36400           Fixes #139382
36401
36402 2004-04-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36403
36404         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_base_init),
36405         (_gst_boolean_did_something_accumulator),
36406         (gst_gnomevfssink_class_init), (gst_gnomevfssink_dispose),
36407         (gst_gnomevfssink_init), (gst_gnomevfssink_set_property),
36408         (gst_gnomevfssink_get_property), (gst_gnomevfssink_open_file),
36409         (gst_gnomevfssink_close_file), (gst_gnomevfssink_chain),
36410         (gst_gnomevfssink_change_state):
36411           Fix erase signal. Don't erase by default. Remove handoff signal.
36412           Remove erase property. Don't segfault. General cleanup.
36413
36414 2004-04-07  Benjamin Otte  <otte@gnome.org>
36415
36416         * gst-libs/gst/gconf/test-gconf.c: (main):
36417           add missing gst_init
36418
36419 2004-04-07  Benjamin Otte  <otte@gnome.org>
36420
36421         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
36422           free the mutexes, too
36423
36424 2004-04-07  Benjamin Otte  <otte@gnome.org>
36425
36426         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
36427           actually free the URI string
36428         * ext/mad/gstid3tag.c: (gst_id3_tag_src_event):
36429           compute offset correctly when passing discont events
36430         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
36431           don't leak discont events
36432         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
36433           add some missing breaks so caps aren't copied randomly
36434         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream):
36435           if we realloc memory, we better use it
36436
36437 2004-04-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36438
36439         * ext/mad/gstmad.c: (normal_seek):
36440           fix GST_FORMAT_TIME usage
36441
36442 2004-04-05  David Schleef  <ds@schleef.org>
36443
36444         * ext/kio/kiosrc.cpp:  Undefine KDE_DEPRECATED so we can use
36445         a deprecated function (hack!)
36446
36447 2004-04-05  Benjamin Otte  <otte@gnome.org>
36448
36449         * ext/esd/esdmon.c: (gst_esdmon_get):
36450           fix nonterminated vararg and memleak
36451
36452 2004-04-05  Benjamin Otte  <otte@gnome.org>
36453
36454         * ext/ladspa/gstladspa.c: (gst_ladspa_class_init),
36455         (gst_ladspa_init), (gst_ladspa_force_src_caps),
36456         (gst_ladspa_set_property), (gst_ladspa_get_property),
36457         (gst_ladspa_instantiate), (gst_ladspa_activate),
36458         (gst_ladspa_deactivate), (gst_ladspa_loop), (gst_ladspa_chain):
36459           clean up debugging
36460
36461 2004-04-05  Stefan Kost <kost@imn.htwk-leipzig.de>
36462
36463         reviewed by Benjamin Otte  <otte@gnome.org>
36464
36465         * ext/ladspa/gstladspa.c: (gst_ladspa_class_init):
36466           check for broken LADSPA parameters (fixes #138635)
36467
36468 2004-04-05  Benjamin Otte  <otte@gnome.org>
36469
36470         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps):
36471           advertise buffer-frames correctly on sinkpads
36472
36473 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
36474
36475         * ext/mad/gstmad.c: (gst_mad_get_type), (gst_mad_layer_get_type),
36476         (gst_mad_mode_get_type), (gst_mad_emphasis_get_type),
36477         (gst_mad_get_event_masks), (gst_mad_get_query_types), (index_seek),
36478         (normal_seek), (gst_mad_src_event), (gst_mad_handle_event),
36479         (gst_mad_check_caps_reset), (gst_mad_chain):
36480         add more debugging, only reset caps when we're not in error state
36481
36482 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
36483
36484         * ext/mad/gstmad.c: add debugging category, comment + cleanups
36485
36486 2004-04-05  Julio M. Merino Vidal  <jmmv@menta.net>
36487
36488         reviewed by Benjamin Otte  <otte@gnome.org>
36489
36490         * configure.ac:
36491           fix == in test(1) operator
36492
36493 2004-04-05  Julio M. Merino Vidal  <jmmv@menta.net>
36494
36495         reviewed by Benjamin Otte  <otte@gnome.org>
36496
36497         * configure.ac:
36498           fix --export-symblos-regex to a working regex.
36499
36500 2004-04-04  Benjamin Otte  <otte@gnome.org>
36501
36502         * sys/oss/.cvsignore:
36503           add for oss_probe
36504
36505 2004-04-03  Tim-Phillip Müller <t.i.m@zen.co.uk>
36506
36507         reviewed by Benjamin Otte  <otte@gnome.org>
36508
36509         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
36510           add missing 'new_media' argument (fixes #138168)
36511         * gst/matroska/matroska-demux.c:
36512         (gst_matroska_demux_handle_seek_event):
36513           add vararg terminator (fixes #138169)
36514
36515 2004-04-02  David Schleef  <ds@schleef.org>
36516
36517         * ext/gdk_pixbuf/Makefile.am:  Make sure gstgdkanimation.h is
36518         disted (bug #138914)
36519
36520 2004-04-01  Benjamin Otte  <otte@gnome.org>
36521
36522         * ext/alsa/gstalsa.c: (gst_alsa_change_state),
36523         (gst_alsa_close_audio):
36524           handle case better where a soundcard can't pause
36525         * ext/ogg/gstoggdemux.c:
36526           don't crash when we get events but don't have pads yet
36527
36528 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
36529
36530         * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
36531           throw an error if we couldn't probe any caps.
36532
36533 2004-04-01  Jan Schmidt  <thaytan@mad.scientist.com>
36534
36535         * ext/dvdnav/gst-dvd:
36536         Add a really simple sample DVD player
36537
36538 2004-04-01  Jan Schmidt  <thaytan@mad.scientist.com>
36539
36540         * ext/a52dec/gsta52dec.c: (gst_a52dec_get_type), (gst_a52dec_init),
36541         (gst_a52dec_push), (gst_a52dec_handle_event),
36542         (gst_a52dec_update_streaminfo), (gst_a52dec_loop),
36543         (gst_a52dec_change_state):
36544         * ext/a52dec/gsta52dec.h:
36545           Use a debug category, Output timestamps correctly
36546           Emit tag info, Handle events, tell liba52dec about cpu
36547           capabilities so it can use MMX etc.
36548         * ext/dv/gstdvdec.c: (gst_dvdec_loop), (gst_dvdec_change_state):
36549           Fix a crasher accessing invalid memory
36550         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init),
36551         (dvdnavsrc_update_highlight), (dvdnavsrc_loop),
36552         (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
36553         (dvdnavsrc_event), (dvdnavsrc_get_formats), (dvdnavsrc_convert),
36554         (dvdnavsrc_query):
36555           Some support for byte-format seeking.
36556           Small fixes for still frames and menu button overlays
36557         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
36558         (gst_mpeg2dec_alloc_buffer):
36559           Use a debug category. Adjust the report level of several items to
36560           LOG. Call mpeg2_custom_fbuf to mark our buffers as 'custom buffers'
36561           so it doesn't lose the GstBuffer pointer
36562         * gst/debug/Makefile.am:
36563         * gst/debug/gstdebug.c: (plugin_init):
36564         * gst/debug/gstnavseek.c: (gst_navseek_get_type),
36565         (gst_navseek_base_init), (gst_navseek_class_init),
36566         (gst_navseek_init), (gst_navseek_seek),
36567         (gst_navseek_handle_src_event), (gst_navseek_set_property),
36568         (gst_navseek_get_property), (gst_navseek_chain),
36569         (gst_navseek_plugin_init):
36570         * gst/debug/gstnavseek.h:
36571           Add the navseek debug element for seeking back and forth in a
36572           video stream using arrow keys.
36573         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_get_type),
36574         (gst_mpeg2subt_base_init), (gst_mpeg2subt_class_init),
36575         (gst_mpeg2subt_init), (gst_mpeg2subt_finalize),
36576         (gst_mpeg2subt_getcaps_video), (gst_mpeg2subt_link_video),
36577         (gst_mpeg2subt_handle_video), (gst_mpeg2subt_src_event),
36578         (gst_mpeg2subt_parse_header), (gst_get_nibble),
36579         (gst_setup_palette), (gst_get_rle_code), (gst_draw_rle_line),
36580         (gst_merge_uv_data), (gst_mpeg2subt_merge_title),
36581         (gst_update_still_frame), (gst_mpeg2subt_handle_subtitle),
36582         (gst_mpeg2subt_handle_dvd_event), (gst_mpeg2subt_loop):
36583         * gst/mpeg2sub/gstmpeg2subt.h:
36584           Pretty much a complete rewrite. Now a loopbased element. May still
36585           require work to properly synchronise subtitle buffers.
36586         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private),
36587         (gst_dvd_demux_send_subbuffer):
36588         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_subbuffer):
36589           Don't attempt to create subbuffers of size 0
36590           Reduce a couple of error outputs to warnings.
36591         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect),
36592         (gst_y4mencode_chain):
36593         Output the y4m frame header correctly.
36594
36595 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
36596
36597         * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
36598           throw errors instead of allowing SIGFPE
36599
36600 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
36601
36602         * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_string),
36603         (gst_gconf_render_bin_from_key):
36604           leak plugging and style fixing
36605
36606 2004-03-31  David Schleef  <ds@schleef.org>
36607
36608         * gst/audioscale/gstaudioscale.c: (gst_audioscale_expand_value),
36609         (gst_audioscale_getcaps): Fix getcaps to expand and union lists.
36610         (bug #138225)
36611         * gst/debug/Makefile.am:
36612         * gst/debug/breakmydata.c: (gst_break_my_data_plugin_init):
36613         * gst/debug/gstdebug.c: (plugin_init):  Merge elements into one
36614         plugin.
36615         * gst/debug/negotiation.c: (gst_gst_negotiation_get_type),
36616         (gst_negotiation_base_init), (gst_negotiation_class_init),
36617         (gst_negotiation_init), (gst_negotiation_getcaps),
36618         (gst_negotiation_pad_link), (gst_negotiation_chain),
36619         (gst_negotiation_set_property), (gst_negotiation_get_property),
36620         (gst_negotiation_plugin_init):  New element to talk about random
36621         negotiation things happening in a pipeline.
36622
36623 2004-03-31  Thomas Vander Stichele  <thomas at apestaart dot org>
36624
36625         * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
36626           fix integer addition with help of Stefan Kost
36627
36628 2004-03-31  Thomas Vander Stichele  <thomas at apestaart dot org>
36629
36630         * po/nl.po: updated Dutch translation (Elros Cyriatan)
36631
36632 2004-03-30  David Schleef  <ds@schleef.org>
36633
36634         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer),
36635         (gst_mpeg2dec_negotiate_format):  Handle Y42B-format MPEG
36636         video, patch from Matthew.Spencer@eu.sony.com (Matthew Spencer)
36637         (bug #137504)
36638         * ext/mpeg2dec/gstmpeg2dec.h:
36639
36640 2004-03-30  David Schleef  <ds@schleef.org>
36641
36642         * ext/gdk_pixbuf/Makefile.am: Remove spurious rules. (bug #136527)
36643
36644 2004-03-30  David Schleef  <ds@schleef.org>
36645
36646         * tools/gst-launch-ext-m.m:  Applied patch from gnome@flyn.org (W.
36647         Michael Petullo) to handle .mov
36648
36649 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36650
36651         * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
36652         (gst_osselement_rate_check_rate):
36653           probe caps correctly for sound cards that only support one format
36654
36655 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36656
36657         * ext/kio/kiosrc.cpp: (process_events):
36658           update handling event processing if inside KDE - untested
36659
36660 2004-03-29  David Schleef  <ds@schleef.org>
36661
36662         * ext/hermes/gsthermescolorspace.c: (plugin_init): decrease rank
36663         by 2 to not interfere with other colorspaces.
36664         * ext/pango/gsttextoverlay.c: (plugin_init): change rank to NONE
36665         * gst/colorspace/gstcolorspace.c: (plugin_init): decrease rank by
36666         one to not interfere with ffmpeg_colorspace.
36667
36668 2004-03-29  David Schleef  <ds@schleef.org>
36669
36670         * ext/alsa/gstalsa.c: (gst_alsa_fixate): Don't fixate fields that
36671         aren't in the caps.
36672         * gst/sine/gstsinesrc.c: change rate caps to [1,MAX]
36673         * gst/videocrop/gstvideocrop.c: (plugin_init): Change rank to NONE.
36674
36675 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36676
36677         * gst-libs/gst/riff/riff-media.c:
36678           fail on error, don't try to set stuff on NULL caps
36679
36680 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36681
36682         * configure.ac:
36683         * ext/Makefile.am:
36684         * ext/kio/Makefile.am:
36685         * ext/kio/kioreceiver.cpp:
36686         * ext/kio/kioreceiver.h:
36687         * ext/kio/kiosrc.cpp:
36688         * ext/kio/kiosrc.h:
36689           add experimental kiosrc plugin
36690         * ext/alsa/gstalsaplugin.c: (plugin_init):
36691           initialize debugging category only when we're sure registering the
36692           plugins worked.
36693
36694 2004-03-29  Thomas Vander Stichele  <thomas at apestaart dot org>
36695
36696         * examples/gstplay/player.c: (main):
36697         * gst-libs/gst/play/play.c: (gst_play_class_init),
36698         (gst_play_set_location), (gst_play_set_data_src),
36699         (gst_play_set_video_sink), (gst_play_set_audio_sink),
36700         (gst_play_set_visualization), (gst_play_connect_visualization):
36701           check return values of element_set_state and return FALSE where
36702           failed
36703
36704 2004-03-29  Benjamin Otte  <otte@gnome.org>
36705
36706         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
36707           try harder to check if an event is really a discont
36708
36709 2004-03-29  Thomas Vander Stichele  <thomas at apestaart dot org>
36710
36711         * po/LINGUAS: adding Azerbaijani (M??tin ??mirov)
36712         * po/az.po:
36713
36714 2004-03-28  Benjamin Otte  <otte@gnome.org>
36715
36716         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
36717         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
36718         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
36719           get rid of non-standard "..." ranges in case statements.
36720
36721 2004-03-27  Martin Soto  <martinsoto@users.sourceforge.net>
36722
36723         * gst/mpegstream/gstmpegdemux.c:
36724         * gst/mpegstream/gstmpegdemux.h: Complete overhaul. All DVD
36725         specific functionality split to the new dvddemux element.
36726         * gst/mpegstream/gstdvddemux.c:
36727         * gst/mpegstream/gstdvddemux.h: New demultiplexer for DVD (VOB)
36728         streams, derived from mpegdemux.
36729         * gst/mpegstream/gstmpegparse.c: Discontinuity handling cleaned
36730         up. SCR based timestamp rewriting can be turned off (will probably
36731         completely disappear soon).
36732         * ext/dvdnav/dvdnavsrc.c: Changes resulting from a few months
36733         hacking. General cleanup. All printf statements replaced by
36734         debugging messages. Almost complete libdvdnav support.
36735         (dvdnavsrc_class_init): Got rid of unnecessary signals (replaced
36736         by events. New properties for audio and subpicture languages.
36737         (dvdnavsrc_update_highlight): Now uses events.
36738         (dvdnavsrc_user_op): Cleaned up.
36739         (dvdnavsrc_get): Renamed to dvdnavsrc_loop (element is now loop
36740         based). Lots of cleanup, and propper support for most libdvdnav
36741         events.
36742         (dvdnavsrc_make_dvd_event): New function.
36743         (dvdnavsrc_make_dvd_nav_packet_event): New function.
36744         (dvdnavsrc_make_clut_change_event): New function.
36745
36746 2004-03-26  Benjamin Otte  <otte@gnome.org>
36747
36748         * gst/typefind/gsttypefindfunctions.c: (theora_type_find):
36749           fix bug where typefinding would claim it's theora whenever less then
36750           7 bytes of data were available
36751
36752 2004-03-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36753
36754         * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link),
36755         (gst_alawdec_base_init), (gst_alawdec_class_init),
36756         (gst_alawdec_init), (gst_alawdec_chain):
36757         * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link),
36758         (gst_alawenc_base_init), (gst_alawenc_class_init),
36759         (gst_alawenc_init), (gst_alawenc_chain):
36760         * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link),
36761         (gst_mulawdec_base_init), (gst_mulawdec_class_init),
36762         (gst_mulawdec_init), (gst_mulawdec_chain):
36763         * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link),
36764         (gst_mulawenc_base_init), (gst_mulawenc_class_init),
36765         (gst_mulawenc_init), (gst_mulawenc_chain):
36766           Fix capsnego in all four, remove the unused property functions and
36767           simplify the chain functions slightly. I guess we could use macros
36768           or something similar for those, since the code is so similar, but
36769           I'm currently too lazy...
36770
36771 2004-03-24  David Schleef  <ds@schleef.org>
36772
36773         * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
36774         (gst_osselement_close_audio), (gst_osselement_probe_caps),
36775         (gst_osselement_get_format_structure),
36776         (gst_osselement_rate_probe_check), (gst_osselement_rate_add_range),
36777         (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate),
36778         (gst_osselement_rate_int_compare): Add code to handle rate probing
36779         (bug #120883)
36780         * sys/oss/gstosselement.h: same
36781         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_getcaps):
36782         Use rate probing provided by osselement.
36783         * sys/oss/gstosssrc.c: (gst_osssrc_init), (gst_osssrc_getcaps): same
36784
36785 2004-03-24  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36786
36787         * ext/xvid/gstxvidenc.c: (gst_xvidenc_set_property),
36788         (gst_xvidenc_get_property):
36789           ulong/int mess-up.
36790
36791 2004-03-24  David Schleef  <ds@schleef.org>
36792
36793         * ext/speex/gstspeexdec.c: (gst_speexdec_base_init),
36794         (gst_speexdec_init):
36795         * ext/speex/gstspeexenc.c: (gst_speexenc_base_init),
36796         (gst_speexenc_init):  Create the pad template correctly (from
36797         the static pad template, not a NULL pointer.)
36798
36799 2004-03-25  Benjamin Otte  <otte@gnome.org>
36800
36801         * gst/debug/Makefile.am:
36802         * gst/debug/breakmydata.c:
36803           add element that quasi-randomly changes bytes in the stream.
36804           Intended use is robustness checking of demuxers and decoders in
36805           media tests.
36806
36807 2004-03-24  Benjamin Otte  <otte@gnome.org>
36808
36809         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
36810         (gst_alsa_probe_hw_params):
36811         * ext/alsa/gstalsa.h:
36812           debugging output fixes
36813
36814 2004-03-24  Benjamin Otte  <otte@gnome.org>
36815
36816         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_set_property):
36817           don't g_return_if_fail if element is PLAYING, fail silently as every
36818           other element.
36819         * gst/effectv/gstquark.c: (gst_quarktv_chain):
36820           only fix needed for cast lvalue issues in gst-plugins
36821         * gst/volenv/gstvolenv.c: (gst_volenv_init):
36822           add proxy_getcaps
36823
36824 2004-03-24  Benjamin Otte  <otte@gnome.org>
36825
36826         * gst/level/gstlevel.c: (gst_level_init):
36827           add proxying getcaps function, so level doesn't advertise impossible
36828           caps
36829
36830 2004-03-24  David Schleef  <ds@schleef.org>
36831
36832         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
36833         (gst_qtdemux_loop_header), (qtdemux_parse_moov), (qtdemux_parse),
36834         (qtdemux_node_dump_foreach), (qtdemux_dump_mvhd),
36835         (qtdemux_dump_tkhd), (qtdemux_dump_elst), (qtdemux_dump_mdhd),
36836         (qtdemux_dump_hdlr), (qtdemux_dump_vmhd), (qtdemux_dump_dref),
36837         (qtdemux_dump_stsd), (qtdemux_dump_stts), (qtdemux_dump_stss),
36838         (qtdemux_dump_stsc), (qtdemux_dump_stsz), (qtdemux_dump_stco),
36839         (qtdemux_dump_co64), (qtdemux_dump_dcom), (qtdemux_dump_cmvd),
36840         (qtdemux_parse_tree), (qtdemux_parse_trak):  Fix debugging
36841         messages.  Divide the chunk size by the compression ratio
36842         (needed for MACE audio)
36843
36844 2004-03-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36845
36846         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
36847           Fix buffer overflow read error.
36848
36849 2004-03-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36850
36851         * ext/alsa/gstalsa.h:
36852           Remove unused entry.
36853         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
36854           Add cinepak.
36855         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
36856         (gst_videodrop_link), (gst_videodrop_chain):
36857           Fix, sort of. Was horribly broken with new capsnego. Bah...
36858
36859 2004-03-23  Jeremy Simon  <jesimon@libertysurf.fr>
36860
36861         * gst/typefind/gsttypefindfunctions.c: (ape_type_find),
36862         (plugin_init):
36863         Add a monkeysaudio typefind function
36864
36865 2004-03-23  Johan Dahlin  <johan@gnome.org>
36866
36867         * gst-libs/gst/play/play.c (gst_play_audio_fixate)
36868         (gst_play_video_fixate): Check so the structure has the field
36869         before trying to fixate them, this makes it possible to have
36870         fakesinks for video and audio output without printing errors on
36871         the output console.
36872
36873 2004-03-22  David Schleef  <ds@schleef.org>
36874
36875         * sys/oss/Makefile.am:
36876         * sys/oss/oss_probe.c: (main), (probe_check), (add_range),
36877         (check_rate), (add_rate):  Rate probing test app.
36878
36879 2004-03-21  Benjamin Otte  <otte@gnome.org>
36880
36881         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
36882         (_fixate_caps_to_int), (gst_audio_convert_fixate):
36883           add a fixation function that pretty much does the right thing (fixes
36884           #137556)
36885
36886 2004-03-20  David I. Lehn  <dlehn@users.sourceforge.net>
36887
36888         * configure.ac: GST_PACKAGE default: s/GStreamer/GStreamer Plugins/
36889
36890 2004-03-20  Tim-Phillip Müller <t.i.m@zen.co.uk>
36891
36892         reviewed by: Benjamin Otte  <otte@gnome.org>
36893
36894         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
36895           terminate gst_event_new_discontinuous correctly (fixes parts of
36896           #137711)
36897
36898 2004-03-19  David Schleef  <ds@schleef.org>
36899
36900         * gst-libs/gst/Makefile.am:  Enable xoverlay unconditionally,
36901         since it doesn't depend on X, and it's part of our ABI.
36902
36903 2004-03-19  Iain <iain@prettypeople.org>
36904
36905         * gst/interleave/deinterleave.c (deinterleave_sink_link): Use the
36906         is_int in the structure, not the local variable.
36907
36908 2004-03-19  David Schleef  <ds@schleef.org>
36909
36910         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_change_state),
36911         (gst_rfbsrc_init), (gst_rfbsrc_getcaps), (gst_rfbsrc_fixate),
36912         (gst_rfbsrc_link), (gst_rfbsrc_paint_rect), (gst_rfbsrc_get):
36913         Improvements in caps negotiation.
36914
36915 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
36916
36917         * po/LINGUAS:
36918         * po/af.po:
36919           adding Afrikaans (Petri Jooste)
36920
36921 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
36922
36923         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
36924         (gst_ffmpegcolorspace_chain):
36925         throw error instead of g_critical (#137588)
36926
36927 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
36928
36929         * Makefile.am:
36930         * configure.ac:
36931           dist common and m4 correctly
36932         * po/sv.po:
36933
36934 2004-03-17  David Schleef  <ds@schleef.org>
36935
36936         * pkgconfig/gstreamer-media-info.pc.in:  Add Version.
36937         (bug #137348)
36938
36939 2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
36940
36941         * po/LINGUAS:
36942         * po/sv.po:
36943           adding Swedish translation (Christian Rose)
36944
36945 2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
36946
36947         * Makefile.am: use release.mak
36948
36949 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
36950
36951         * common/ChangeLog:
36952         * common/gst-autogen.sh:
36953           add some explanation about the version detection
36954         * configure.ac:
36955           fix X check
36956
36957 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
36958
36959         * configure.ac: bump nano to 1
36960
36961 === release 0.8.0 ===
36962
36963 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
36964
36965         * configure.ac: release 0.8.0, "Pharmaceutical Itch"
36966
36967 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
36968
36969         * configure.ac:
36970           update libtool version
36971         * gst-libs/gst/media-info/Makefile.am:
36972           actually use libtool version
36973
36974 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
36975
36976         * configure.ac: fix speex detection to work with 1.0 but not 1.1
36977
36978 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
36979
36980         * configure.ac:
36981         * gst-plugins.spec.in:
36982         * pkgconfig/Makefile.am:
36983         * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
36984         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
36985         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
36986         * pkgconfig/gstreamer-libs.pc.in:
36987         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
36988         * pkgconfig/gstreamer-play-uninstalled.pc.in:
36989         * pkgconfig/gstreamer-plugins-uninstalled.pc.in:
36990         * pkgconfig/gstreamer-plugins.pc.in:
36991           remove @VERSION@ from some of the pc files since core and plugins
36992           are decoupled.
36993           created gstreamer-plugins.pc as it's a better name, but keeping
36994           -libs around for now to get fixes upstream done first.
36995
36996 2004-03-15  Julien MOUTTE <julien@moutte.net>
36997
36998         * gst-libs/gst/play/play.c: (gst_play_get_framerate),
36999         (gst_play_get_sink_element): First draft of gst_play_get_framerate.
37000         * gst-libs/gst/play/play.h:
37001
37002 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
37003
37004         * *.c, *.cc: don't mix tabs and spaces
37005
37006 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
37007
37008         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
37009           use the new ffmpegcolorspace
37010         * gst-plugins.spec.in:
37011           package new colorspace and media-info
37012         * configure.ac:
37013         * pkgconfig/Makefile.am:
37014           fix some more disting issues
37015         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
37016         * pkgconfig/gstreamer-media-info.pc.in:
37017           generate media-info pc files
37018
37019 2004-03-15  Johan Dahlin  <johan@gnome.org>
37020
37021         * *.h: Revert indenting
37022
37023 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
37024
37025         * configure.ac:
37026           adding ffmpegcolorspace element
37027         * gst/ffmpegcolorspace/Makefile.am:
37028         * gst/ffmpegcolorspace/avcodec.h:
37029         * gst/ffmpegcolorspace/common.h:
37030         * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
37031         * gst/ffmpegcolorspace/dsputil.h:
37032         * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
37033         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
37034         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_pix_fmt_to_caps),
37035         (gst_ffmpeg_caps_to_pix_fmt):
37036         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
37037         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
37038         (gst_ffmpegcolorspace_caps_remove_format_info),
37039         (gst_ffmpegcolorspace_getcaps), (gst_ffmpegcolorspace_pad_link),
37040         (gst_ffmpegcolorspace_get_type), (gst_ffmpegcolorspace_base_init),
37041         (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_init),
37042         (gst_ffmpegcolorspace_chain), (gst_ffmpegcolorspace_change_state),
37043         (gst_ffmpegcolorspace_set_property),
37044         (gst_ffmpegcolorspace_get_property),
37045         (gst_ffmpegcolorspace_register):
37046         * gst/ffmpegcolorspace/imgconvert.c:
37047         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
37048         (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
37049         (avpicture_get_size), (avcodec_get_pix_fmt_loss),
37050         (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
37051         (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
37052         (yuv422_to_yuv420p), (yuv422_to_yuv422p), (yuv422p_to_yuv422),
37053         (C_JPEG_TO_CCIR), (img_convert_init), (img_apply_table),
37054         (shrink41), (shrink21), (shrink12), (shrink22), (shrink44),
37055         (grow21_line), (grow41_line), (grow21), (grow22), (grow41),
37056         (grow44), (conv411), (gif_clut_index), (build_rgb_palette),
37057         (bitcopy_n), (mono_to_gray), (monowhite_to_gray),
37058         (monoblack_to_gray), (gray_to_mono), (gray_to_monowhite),
37059         (gray_to_monoblack), (avpicture_alloc), (avpicture_free),
37060         (is_yuv_planar), (img_convert), (get_alpha_info_pal8),
37061         (img_get_alpha_info), (deinterlace_line),
37062         (deinterlace_line_inplace), (deinterlace_bottom_field),
37063         (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
37064         * gst/ffmpegcolorspace/imgconvert_template.h:
37065         * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
37066         * gst/ffmpegcolorspace/mmx.h:
37067         * gst/ffmpegcolorspace/utils.c: (avcodec_init):
37068           adding ffmpegcolorspace element supplied by Ronald after cleaning
37069           up and pulling in the right bits of upstream source.
37070           I'm sure a better C/compiler wizard could do some cleaning up (for
37071           example use GLIB's malloc stuff), but as a first pass this
37072           works very well
37073
37074 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
37075
37076         * ext/alsa/gstalsa.h:
37077           I assume Ronald forgot to commit the change to have cardname
37078           as a struct member.  Expect some public spanking at the next
37079           opportunity.
37080
37081 2004-03-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37082
37083         * ext/alsa/gstalsa.c: (gst_alsa_get_property),
37084         (gst_alsa_open_audio), (gst_alsa_close_audio):
37085         * ext/alsa/gstalsa.c:
37086           Don't open the device if we're a mixer (= padless).
37087         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_class_init),
37088         (gst_alsa_mixer_init), (gst_alsa_mixer_open),
37089         (gst_alsa_mixer_close), (gst_alsa_mixer_change_state):
37090           Open mixer during state change rather than during object
37091           initialization. Also, get a device name. Currently in a somewhat
37092           hackish fashion, but I didn't really find something better.
37093
37094 2004-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
37095
37096         * *.c, *.h: run gst-indent
37097
37098 2004-03-14  Benjamin Otte  <otte@gnome.org>
37099
37100         * gst/modplug/gstmodplug.cc:
37101         * gst/modplug/gstmodplug.h:
37102           set correct timestamps on outgoing buffers
37103
37104 2004-03-14  Benjamin Otte  <otte@gnome.org>
37105
37106         * gst/modplug/gstmodplug.cc:
37107           handle events - don't do crap when a discont arrives that's not
37108           necessary
37109           This allows correct loading and playback of mods in Rhythmbox
37110
37111 2004-03-14  Benjamin Otte  <otte@gnome.org>
37112
37113         * configure.ac:
37114         * gst-libs/gst/gconf/Makefile.am:
37115         * pkgconfig/Makefile.am:
37116           move gstreamer-gconf pkgconfig files to pkgconfig/ dir. Make sure
37117           they get rebuilt properly
37118         * configure.ac:
37119           when checking for vorbis, try pkgconfig first.
37120         * gst/modplug/gstmodplug.cc:
37121           add fixate function
37122
37123 2004-03-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37124
37125         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
37126           Fix for obvious mistake, where we first shift the offset and then
37127           read a samplesize element assuming the old offset. Note that this
37128           part still has something weird, i.e. my movies containing those
37129           don't actually play well, but at least there's something that looks
37130           like sound now.
37131
37132 2004-03-14  Jan Schmidt  <thaytan@mad.scientist.com>
37133         * gst/typefind/gsttypefindfunctions.c: (speex_type_find),
37134         (plugin_init):
37135         Add a typefind function for speex format
37136
37137 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37138
37139         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps),
37140         (gst_asf_demux_setup_pad):
37141           Use 25fps as our "fake" fps value (marked for fixage in 0.9.x)
37142           instead of 0. Reason is simple: some elements have a fps range
37143           of 1-max instead of 0-max. So now ASF video actually works.
37144
37145 2004-03-13  Thomas Vander Stichele  <thomas at apestaart dot org>
37146
37147         * po/LINGUAS:
37148         * po/sr.po:
37149           adding serbian as a language
37150
37151 2004-03-13  Benjamin Otte  <otte@gnome.org>
37152
37153         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
37154           return taglist correctly from _get function, don't gst_pad_push it.
37155           (fixes #137042)
37156
37157 2004-03-13  Jan Schmidt  <thaytan@mad.scientist.com>
37158         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
37159
37160 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37161
37162         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_free_list):
37163         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init),
37164         (gst_alsa_mixer_track_new):
37165         * ext/alsa/gstalsamixertrack.h:
37166           Fix ancient leftovers... MixerTrack is a GObject.
37167
37168 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37169
37170         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
37171         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
37172           Don't block during probing...
37173
37174 2004-03-12  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37175
37176         * ext/alsa/gstalsa.c: (gst_alsa_get_type), (gst_alsa_class_init),
37177         (gst_alsa_get_property), (gst_alsa_probe_get_properties),
37178         (gst_alsa_class_probe_devices), (gst_alsa_class_list_devices),
37179         (gst_alsa_probe_probe_property), (gst_alsa_probe_needs_probe),
37180         (gst_alsa_probe_get_values), (gst_alsa_probe_interface_init),
37181         (gst_alsa_open_audio), (gst_alsa_close_audio):
37182         * ext/alsa/gstalsa.h:
37183           Add propertyprobe interface implementation, add some device-name
37184           property, all this so that it looks good in gnome-volume-control.
37185
37186 2004-03-12  David Schleef  <ds@schleef.org>
37187
37188         * configure.ac: the Hermes library controls hermescolorspace, not
37189         colorspace.
37190         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
37191         (gst_mpeg2dec_init): minor pet peeve: disable code with #ifdef,
37192         not /* */
37193         * ext/sdl/sdlvideosink.c: Change XID to unsigned long.
37194         * ext/sdl/sdlvideosink.h: ditto.
37195         * gst/colorspace/gstcolorspace.c: Fix old comments about Hermes
37196
37197 2004-03-12  Benjamin Otte  <otte@gnome.org>
37198
37199         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_set_xwindow_id),
37200         (gst_x_overlay_got_xwindow_id):
37201         * gst-libs/gst/xoverlay/xoverlay.h:
37202           replace XID with unsigned long to get rid of the xlibs dependency in
37203           XOverlay (fixes #137004)
37204
37205 2004-03-13  Jan Schmidt  <thaytan@mad.scientist.com>
37206         * gst/effectv/gstaging.c: (gst_agingtv_base_init),
37207         (gst_agingtv_setup):
37208         * gst/effectv/gstdice.c: (gst_dicetv_get_type),
37209         (gst_dicetv_base_init), (gst_dicetv_class_init),
37210         (gst_dicetv_setup), (gst_dicetv_init), (gst_dicetv_draw):
37211         * gst/effectv/gstedge.c: (gst_edgetv_get_type),
37212         (gst_edgetv_base_init), (gst_edgetv_class_init), (gst_edgetv_init),
37213         (gst_edgetv_setup), (gst_edgetv_rgb32):
37214         * gst/effectv/gsteffectv.c:
37215         * gst/effectv/gstquark.c: (gst_quarktv_link), (gst_quarktv_init),
37216         (gst_quarktv_set_property):
37217         * gst/effectv/gstrev.c: (gst_revtv_get_type),
37218         (gst_revtv_base_init), (gst_revtv_class_init), (gst_revtv_init),
37219         (gst_revtv_setup), (gst_revtv_rgb32):
37220         * gst/effectv/gstshagadelic.c: (gst_shagadelictv_get_type),
37221         (gst_shagadelictv_base_init), (gst_shagadelictv_class_init),
37222         (gst_shagadelictv_init), (gst_shagadelictv_setup),
37223         (gst_shagadelictv_rgb32):
37224         * gst/effectv/gstvertigo.c: (gst_vertigotv_get_type),
37225         (gst_vertigotv_base_init), (gst_vertigotv_class_init),
37226         (gst_vertigotv_setup), (gst_vertigotv_init), (gst_vertigotv_rgb32):
37227         * gst/effectv/gstwarp.c:
37228         Port everything that can be ported to videofilter and fix up the caps.
37229         Can someone with a big-endian machine please check these?
37230
37231 2004-03-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37232
37233         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_get_time),
37234         (gst_osssink_chain), (gst_osssink_change_state):
37235           Latest fixes for A/V sync, audio playback and such. This is about
37236           all... MPEG playback issues are mostly related to the async build-
37237           up of MPEG files, I cannot fix that. Use basicgthread to solve it.
37238
37239 2004-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
37240
37241         patch from: Stephane Loeuillet
37242
37243         * configure.ac:
37244           use pkg-config for some libraries, falling back to the old .m4 way
37245           (fixes #131270)
37246         * m4/libdv.m4:
37247           removed
37248
37249 2004-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
37250
37251         * configure.ac:
37252         * tools/Makefile.am:
37253         * tools/Makefile.in:
37254         * tools/gst-launch-ext-m.m:
37255         * tools/gst-launch-ext.1.in:
37256         * tools/gst-visualise-m.m:
37257         * tools/gst-visualise.1:
37258         * tools/gst-visualise.1.in:
37259           reorganizing generation of script tools
37260
37261 2004-03-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37262
37263         * ext/divx/gstdivxdec.c:
37264           Downgrade priority. We prefer ffdec_mpeg4.
37265         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps), (gst_faad_srcconnect),
37266         (gst_faad_chain), (gst_faad_change_state):
37267           Fix capsnego. Doesn't work for some sounds because we don't have
37268           a 5:1 to stereo element.
37269         * ext/xvid/gstxvid.c: (plugin_init):
37270           Add priority.
37271         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
37272         (gst_osssink_change_state):
37273           Add discont handling.
37274
37275 2004-03-09  Colin Walters  <walters@verbum.org>
37276
37277         * gst/audioconvert/gstaudioconvert.c: Fix typo in width 8
37278         conversion.
37279
37280 2004-03-09  Benjamin Otte  <otte@gnome.org>
37281
37282         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
37283           the signals take 2 arguments
37284
37285 2004-03-09  David Schleef  <ds@schleef.org>
37286
37287         * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad),
37288         (gst_alsa_fixate): Add fixate function.  (bug #136686)
37289         * ext/alsa/gstalsa.h:
37290         * ext/alsa/gstalsasink.c: (gst_alsa_sink_init):
37291
37292 2004-03-09  Benjamin Otte  <otte@gnome.org>
37293
37294         * ext/mikmod/gstmikmod.c: (gst_mikmod_init), (gst_mikmod_loop),
37295         (gst_mikmod_change_state):
37296         * ext/mikmod/gstmikmod.h:
37297           make mikmod's loop function not loop infinitely and call
37298           gst_element_yield anymore
37299         * gst/modplug/gstmodplug.cc:
37300           fix pad negotiation (fixes #136590)
37301
37302 2004-03-09  David Schleef  <ds@schleef.org>
37303
37304         * ext/lcs/Makefile.am:  Fix so that the lcs colorspace plugin
37305         doesn't conflict with the internal colorspace plugin.
37306         * gst-libs/gst/audio/make_filter:  Use `` instead of $() to
37307         satisfy the crappy-ass shell shipped by a certain vendor.
37308         * gst/videofilter/make_filter: same (bug #135299)
37309
37310 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
37311
37312         * configure.ac: bump nano to 1
37313
37314 === release 0.7.6 ===
37315
37316 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
37317
37318         * configure.in: releasing 0.7.6, "There"
37319
37320 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
37321
37322         * pkgconfig/gstreamer-play-uninstalled.pc.in:
37323         * pkgconfig/gstreamer-play.pc.in:
37324           synchronize the two
37325
37326 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
37327
37328         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_base_init),
37329         (cdparanoia_open), (cdparanoia_event):
37330           fix/add error handling
37331         * po/POTFILES.in:
37332           add cdparanoia source
37333         * tools/Makefile.am:
37334           make scripts executable
37335
37336 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
37337
37338         * configure.ac:
37339         * ext/vorbis/Makefile.am:
37340         * sys/Makefile.am:
37341           remove id3types, vorbisfile and xvideosink from the build (#133783)
37342
37343 2004-03-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37344
37345         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
37346           Fix metadata read crash (#136537).
37347
37348 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
37349
37350         * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
37351         * gst-libs/gst/media-info/media-info.c: (gst_media_info_read):
37352           adding mime types, fixing the one-stop function
37353
37354 2004-03-08  Christian Schaller <Uraeus@gnome.org>
37355
37356         * ext/nas/nassink.c and /ext/nas/nassink.h:
37357         More NAS love from Arwed von Merkatz
37358         So lets all sing 'Can you feel the NAS tonight'
37359
37360 2004-03-08  Christian Schaller <Uraeus@gnome.org>
37361
37362         * tools/gst-launch-ext.in:
37363         Replace vorbisfile with oggdemux/vorbisdec/audioconvert
37364
37365 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
37366
37367         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
37368         (gst_mpeg2dec_init):
37369         remove the user_data pad for now, because it is being used in
37370         fixating causing MPEG playback to fixate on 1000 Hz for playback.
37371         If someone knows how to fix this properly, please do.
37372
37373 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
37374
37375         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
37376         (gst_osssink_get_time):
37377         add a warning, IMO this won't get triggered anymore, remove later
37378
37379 2004-03-07  David Schleef  <ds@schleef.org>
37380
37381         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):  Added Cinepak
37382         format (bug #136470)
37383
37384 2004-03-07  Thomas Vander Stichele  <thomas at apestaart dot org>
37385
37386         * gst-libs/Makefile.am:
37387         * gst-libs/gst/media-info/Makefile.am:
37388         * gst-libs/gst/media-info/media-info-priv.c: (found_tag_callback),
37389         (error_callback), (gst_media_info_error_create),
37390         (gst_media_info_error_element), (gmip_init), (gmip_reset),
37391         (gmi_clear_decoder), (gmip_find_type_pre), (gmip_find_type):
37392         * gst-libs/gst/media-info/media-info-priv.h:
37393         * gst-libs/gst/media-info/media-info-test.c: (main):
37394         * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
37395         (gst_media_info_class_init), (gst_media_info_instance_init),
37396         (gst_media_info_set_source), (gst_media_info_read_with_idler),
37397         (gst_media_info_read_idler), (gst_media_info_read):
37398         * gst-libs/gst/media-info/media-info.h:
37399         fixed, should work now
37400
37401 2004-03-07  Christian Schaller <Uraeus@gnome.org>
37402
37403         * ext/nas/nassink.c:
37404         A bunch of NAS fixes from Arwed von Merkatz
37405
37406 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37407
37408         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
37409         (qtdemux_parse_trak):
37410           Fix crash (j might be greater than n_samples, in which case we're
37411           writing outside the allocated space for the array) and memleak.
37412
37413 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37414
37415         * sys/oss/gstosssink.c: (gst_osssink_chain):
37416           And another caller that couldn't handle delay < 0 (unsigned
37417           integer overflow). Video now continues playing on an audio
37418           buffer underrun, and the clock continues working. Audio still
37419           stalls.
37420
37421 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37422
37423         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
37424         (gst_osssink_get_time):
37425           get_delay() may return values lower than 0. In those cases, we
37426           should not actually cast to *unsigned* int64, that will break
37427           stuff horribly. In my case, it screwed up A/V sync in movies
37428           in totem rather badly.
37429
37430 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
37431
37432         * ext/faac/gstfaac.c: (gst_faac_chain):
37433         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
37434         * ext/libpng/gstpngenc.c: (user_write_data):
37435         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
37436         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
37437         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
37438         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
37439         Fix several misuse of gst_buffer_merge (it doesn't take ownership
37440         of any buffer), should fix some leaks. I hope I didn't unref buffers
37441         that shouldn't be...
37442
37443 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
37444
37445         * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
37446         (deep_notify_callback), (tag_flag_score), (found_tag_callback),
37447         (error_callback), (gmi_reset), (gmi_seek_to_track),
37448         (gmi_get_decoder), (gmi_set_mime), (gmip_find_type_pre),
37449         (gmip_find_type_post), (gmip_find_stream_post),
37450         (gmip_find_track_streaminfo_post):
37451         * gst-libs/gst/media-info/media-info-priv.h:
37452         * gst-libs/gst/media-info/media-info-test.c: (print_tag),
37453         (info_print), (main):
37454         * gst-libs/gst/media-info/media-info.c:
37455         (gst_media_info_error_create), (gst_media_info_error_element),
37456         (gst_media_info_instance_init), (gst_media_info_get_property),
37457         (gst_media_info_new), (gst_media_info_set_source),
37458         (gst_media_info_read_idler), (gst_media_info_read):
37459         * gst-libs/gst/media-info/media-info.h:
37460           first pass at making this work again.  This seems to work on
37461           tagged ogg/vorbis and mp3 files.
37462
37463 2004-03-06  Benjamin Otte  <otte@gnome.org>
37464
37465         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
37466           fix huge leak: gst_buffer_merge doesn't unref the first argument
37467           itself.
37468
37469 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
37470
37471         * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_update_info):
37472           report layer/mode/emphasis
37473
37474 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
37475
37476         * ext/mad/gstmad.c: (gst_mad_chain): fixed caps leak
37477
37478 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
37479
37480         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
37481           signal serial
37482
37483 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
37484
37485         * ext/vorbis/vorbis.c: (plugin_init):
37486         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
37487         (gst_vorbis_dec_init), (vorbis_dec_event):
37488         add debug category
37489         make vorbisdec handle _BYTE and _TIME queries
37490
37491 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
37492
37493         * ext/mad/gstmad.c: (gst_mad_chain): send the average bitrate read
37494           from the xing header
37495
37496 2004-03-06  Benjamin Otte  <otte@gnome.org>
37497
37498         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps),
37499         (gst_audio_convert_link), (gst_audio_convert_change_state),
37500         (gst_audio_convert_buffer_from_default_format):
37501           do conversions from/to float correctly, fix some caps nego errors,
37502           export correct supported caps in template and getcaps, use correct
37503           caps in try_set_caps functions
37504
37505 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
37506
37507         For some reason, I only committed a ChangeLog entry yesterday and
37508         not the corresponding code...
37509         * ext/mad/gstmad.c: Fix detection of Xing headers
37510         * gst/tags/gstid3tag.c: Changes to support TLEN tags
37511
37512 2004-03-06  Benjamin Otte  <otte@gnome.org>
37513
37514         * ext/ogg/gstoggdemux.c: (gst_ogg_get_pad_by_pad),
37515         (gst_ogg_demux_src_query):
37516           make sure to handle the case where there's no current chain
37517           gracefully.
37518
37519 2004-03-05  David Schleef  <ds@schleef.org>
37520
37521         * ext/aalib/gstaasink.c: (gst_aasink_fixate), (gst_aasink_init):
37522         Add fixate function. (bug #131128)
37523         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
37524         (gst_sdlvideosink_fixate):  Add fixate function.
37525         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
37526         Fix attempt to print a non-pointer using GST_PTR_FORMAT.
37527         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt):
37528         Fix missing break that was causing ulaw to be interpreted as
37529         raw int.
37530
37531 2004-03-05  David Schleef  <ds@schleef.org>
37532
37533         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
37534         Fix code that ignores return value of gst_buffer_merge().
37535         (bug #114560)
37536         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_descramble_segment):
37537         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice): same
37538         * testsuite/gst-lint:  Check for above.
37539
37540 2004-03-05  David Schleef  <ds@schleef.org>
37541
37542         * gst/udp/gstudpsrc.c: (gst_udpsrc_get):  Check for unfixed
37543         caps and throw an element error.  (bug #136334)
37544
37545 2004-03-05  David Schleef  <ds@schleef.org>
37546
37547         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_srcgetcaps),
37548         (gst_faad_chain): Fix negotiation.
37549         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_handle_src_event): Add
37550         key and button events.
37551         * gst-libs/gst/floatcast/floatcast.h: Fix a minor bug in this
37552         dung heap of code.
37553         * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in: gstgconf
37554         depends on gconf
37555         * gst-libs/gst/gconf/gstreamer-gconf.pc.in: same
37556         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
37557         (gst_play_video_fixate), (gst_play_audio_fixate): Add a fixate
37558         function to encourage better negotiation, particularly between
37559         audioconvert and osssink.
37560         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
37561         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):  Make some debugging
37562         more important.
37563         * gst/typefind/gsttypefindfunctions.c:  Fix mistake in flash
37564         typefinding.
37565         * gst/vbidec/vbiscreen.c:  Add glib header
37566         * pkgconfig/gstreamer-play.pc.in:  Depends on gst-interfaces.
37567
37568 2004-03-06  Christophe Fergeau  <teuf@users.sourceforge.net>
37569
37570         * ext/mad/gstmad.c: Fix detection of Xing headers
37571         * gst/tags/gstid3tag.c: Changes to support TLEN tags
37572
37573 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
37574
37575         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
37576         (gst_wavparse_pad_convert), (gst_wavparse_pad_query):
37577           debug updates
37578
37579 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
37580
37581         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
37582         * ext/mad/gstmad.c: (gst_mad_init), (is_xhead),
37583         (mpg123_parse_xing_header), (gst_mad_chain): parse Xing header in vbr
37584         files, and report the parsed length as a GST_TAG_DURATION tag.
37585         * gst/tags/gstid3tag.c: support TLEN (duration) tag
37586
37587 2004-03-05  Benjamin Otte  <otte@gnome.org>
37588
37589         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_channels):
37590           convert channels correctly. convert correctly to unsigned.
37591
37592 2004-03-05  Julien MOUTTE <julien@moutte.net>
37593
37594         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state): Check if
37595         we have a window before clearing it.
37596
37597 2004-03-05  Julien MOUTTE <julien@moutte.net>
37598
37599         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state): Check if we
37600         have a window before clearing it.
37601
37602 2004-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
37603
37604         * gconf/gstreamer.schemas.in:
37605         * gst-libs/gst/gconf/Makefile.am:
37606           version installation path the same way as for 0.6
37607         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
37608         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
37609         * pkgconfig/gstreamer-play-uninstalled.pc.in:
37610           remove comment that was fixed
37611
37612 2004-03-05  David Schleef  <ds@schleef.org>
37613
37614         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_src_formats),
37615         (gst_qtdemux_src_convert), (gst_qtdemux_get_src_query_types),
37616         (gst_qtdemux_get_event_mask), (gst_qtdemux_handle_src_query),
37617         (gst_qtdemux_handle_src_event), (gst_qtdemux_add_stream):
37618         Add prototype code for handling seeking and querying.
37619
37620 2004-03-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37621
37622         * examples/gstplay/player.c: (main):
37623           Initialize variables to NULL. Prevents a segfault because the
37624           (uninitialized) variable is not NULL, resulting in a crash on
37625           trying to reach error->message.
37626
37627 2004-03-05  Benjamin Otte  <otte@gnome.org>
37628
37629         * gst/audioconvert/gstaudioconvert.c:
37630         (gst_audio_convert_buffer_to_default_format):
37631         make float=>int conversion work correctly even in cornercases.
37632
37633 2004-03-04  David I. Lehn  <dlehn@users.sourceforge.net>
37634
37635         * debian/README.Debian:
37636         * debian/build-deps:
37637         * debian/changelog:
37638         * debian/control:
37639         * debian/control.in:
37640         * debian/copyright:
37641         * debian/gstreamer-a52dec.files:
37642         * debian/gstreamer-aa.files:
37643         * debian/gstreamer-alsa.files:
37644         * debian/gstreamer-alsa.manpages:
37645         * debian/gstreamer-arts.files:
37646         * debian/gstreamer-artsd.files:
37647         * debian/gstreamer-audiofile.files:
37648         * debian/gstreamer-avifile.files:
37649         * debian/gstreamer-cdparanoia.files:
37650         * debian/gstreamer-colorspace.files:
37651         * debian/gstreamer-doc.files:
37652         * debian/gstreamer-dv.files:
37653         * debian/gstreamer-dvd.files:
37654         * debian/gstreamer-esd.files:
37655         * debian/gstreamer-festival.files:
37656         * debian/gstreamer-flac.files:
37657         * debian/gstreamer-gconf.conffiles:
37658         * debian/gstreamer-gconf.files:
37659         * debian/gstreamer-gconf.postinst:
37660         * debian/gstreamer-gnomevfs.files:
37661         * debian/gstreamer-gsm.files:
37662         * debian/gstreamer-http.files:
37663         * debian/gstreamer-jack.files:
37664         * debian/gstreamer-jpeg.files:
37665         * debian/gstreamer-mad.files:
37666         * debian/gstreamer-mikmod.files:
37667         * debian/gstreamer-misc.files:
37668         * debian/gstreamer-mpeg2dec.files:
37669         * debian/gstreamer-oss.files:
37670         * debian/gstreamer-plugin-apps.files:
37671         * debian/gstreamer-plugin-apps.manpages:
37672         * debian/gstreamer-plugin-libs-dev.files:
37673         * debian/gstreamer-plugin-libs.files:
37674         * debian/gstreamer-plugin-template.postinst:
37675         * debian/gstreamer-plugin-template.postrm:
37676         * debian/gstreamer-sdl.files:
37677         * debian/gstreamer-sid.files:
37678         * debian/gstreamer-vorbis.files:
37679         * debian/gstreamer-x.files:
37680         * debian/mk.control:
37681         * debian/rules:
37682         Debian package info not maintained here.
37683
37684 2004-03-04  Thomas Vander Stichele  <thomas at apestaart dot org>
37685
37686         * ext/aalib/gstaasink.c: (gst_aasink_class_init):
37687         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init):
37688         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init):
37689         * ext/divx/gstdivxenc.c: (gst_divxenc_class_init):
37690         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init):
37691         * ext/gsm/gstgsmenc.c: (gst_gsmenc_class_init):
37692         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init):
37693         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init):
37694         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init):
37695         * ext/xvid/gstxvidenc.c: (gst_xvidenc_class_init):
37696         * gst-libs/gst/colorbalance/colorbalance.c:
37697         (gst_color_balance_class_init):
37698         * gst-libs/gst/colorbalance/colorbalancechannel.c:
37699         (gst_color_balance_channel_class_init):
37700         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
37701         * gst-libs/gst/play/play.c: (gst_play_class_init):
37702         * gst-libs/gst/propertyprobe/propertyprobe.c:
37703         (gst_property_probe_iface_init):
37704         * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init):
37705         * gst-libs/gst/tuner/tunerchannel.c:
37706         (gst_tuner_channel_class_init):
37707         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init):
37708         * gst/cutter/gstcutter.c: (gst_cutter_class_init):
37709         * gst/effectv/gstvertigo.c: (gst_vertigotv_class_init):
37710         * sys/cdrom/gstcdplayer.c: (cdplayer_class_init):
37711         * sys/dxr3/dxr3spusink.c: (dxr3spusink_class_init):
37712         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
37713         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
37714         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init):
37715         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init):
37716           fix signals to use - instead of _
37717         * ext/libcaca/gstcacasink.h:
37718         * ext/sdl/sdlvideosink.h:
37719           fix header rename
37720
37721 2004-03-04  David Schleef  <ds@schleef.org>
37722
37723         * testsuite/gst-lint:  Add a check for bad signal names.
37724
37725 2004-03-04  Stefan Kost <kost@imn.htwk-leipzig.de>
37726
37727         reviewed by David Schleef
37728
37729         * gst/videofilter/gstgamma.c: (gst_gamma_rgb32): Fix typo that
37730         modified the alpha channel and caused a warning. (bug #136192)
37731
37732 2004-04-03  Christian Schaller <Uraeus@gnome.org>
37733
37734         * gst-plugins.spec.in:
37735         Change names of plugins to actually be correct. Try to keep things
37736         alphabetical to avoid getting beat up by Thomas
37737
37738 2004-03-03  Julien MOUTTE <julien@moutte.net>
37739
37740         * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_default_video_sink):
37741         Using ximagesink as a default if no gconf key found. We should
37742         probably consider using alsasink instead of osssink for the audio
37743         part.
37744
37745 2004-03-02  Thomas Vander Stichele  <thomas at apestaart dot org>
37746
37747         * configure.ac:
37748           fix --with-plugins, don't think it ever worked before
37749         * gst-plugins.spec.in:
37750           even more updates
37751
37752 2004-03-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37753
37754         * ext/sdl/sdlvideosink.h:
37755         * sys/ximage/ximagesink.h:
37756         * sys/xvideo/xvideosink.h:
37757         * sys/xvimage/xvimagesink.h:
37758           Fix for move of gstvideosink.h -> videosink.h.
37759
37760 2004-03-02  Thomas Vander Stichele  <thomas at apestaart dot org>
37761
37762         * gst-libs/gst/xwindowlistener/Makefile.am:
37763           this is a plugin library, not a library
37764
37765 2004-03-01  David Schleef  <ds@schleef.org>
37766
37767         * AUTHORS:  Added some names.  Add yourself if you're still
37768         missing.
37769
37770 2004-03-01  David Schleef  <ds@schleef.org>
37771
37772         * MAINTAINERS: Add
37773
37774 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
37775
37776         * gst-plugins.spec.in: clean up spec file
37777
37778 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
37779
37780         * gst-libs/gst/video/Makefile.am:
37781         * gst-libs/gst/video/gstvideosink.c:
37782         * gst-libs/gst/video/gstvideosink.h:
37783           rename gstvideosink.h to videosink.h to match other headers
37784         * gst/mixmatrix/Makefile.am:
37785           fix plugin filename
37786         * gst/tags/Makefile.am: fix plugin filename
37787
37788 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
37789
37790         * gst/tags/Makefile.am: fix plugin filename
37791
37792 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
37793
37794         * examples/gstplay/player.c: (got_time_tick), (main):
37795           add error handler
37796           display time_tick more readably
37797         * gst/mixmatrix/Makefile.am:
37798           fix plugin file name
37799
37800 2004-02-29  Christophe Fergeau  <teuf@gnome.org>
37801
37802         * sys/oss/gstosselement.c: (gst_osselement_probe),
37803         (device_combination_append), (gst_osselement_class_probe_devices):
37804         * sys/oss/gstosselement.h:
37805           Reworked enumeration of oss dsps and mixers so that gst-mixer works
37806           on my system using alsa oss emulation, fixes bug #135597
37807
37808 2004-02-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37809
37810         * gst/videodrop/gstvideodrop.c: (gst_videodrop_init),
37811         (gst_videodrop_chain), (gst_videodrop_change_state):
37812         * gst/videodrop/gstvideodrop.h:
37813           Work based on timestamp of input data, not based on the expected
37814           framerate from the input. The consequence is that this element now
37815           not only scales framerates, but also functions as a framerate
37816           corrector or framerate stabilizer/constantizer.
37817
37818 2004-02-27  David Schleef  <ds@schleef.org>
37819
37820         patches from jmmv@menta.net (Julio M. Merino Vidal)
37821
37822         * gst/interleave/deinterleave.c: (deinterleave_chain): Fix
37823         GST_ELEMENT_ERROR call (bug #135634)
37824         * gst/interleave/interleave.c: (interleave_buffered_loop),
37825         (interleave_bytestream_loop): Don't use alloca() (bug #135640)
37826         * sys/cdrom/gstcdplayer_ioctl_bsd.h: Fix ioctls on NetBSD (bug #135645)
37827         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
37828         (gst_osssink_chain): Fix ioctls on NetBSD. (bug #135644)
37829         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_sync_next_frame),
37830         (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
37831         (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_requeue_frame):
37832         Fix GST_ELEMENT_ERROR call.
37833         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_palette): Fix
37834         GST_ELEMENT_ERROR call.
37835
37836 2004-02-27  Benjamin Otte  <otte@gnome.org>
37837
37838         * gst-libs/gst/audio/audio.h:
37839           add macro to make sure header isn't included twice
37840         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
37841           don't use gst_buffer_free
37842         * gst/playondemand/filter.func:
37843           don't use gst_data_free. Free data only once.
37844
37845 2004-02-26  David Schleef  <ds@schleef.org>
37846
37847         * gst-libs/gst/colorbalance/Makefile.am:
37848         * gst-libs/gst/mixer/Makefile.am:
37849         * gst-libs/gst/tuner/Makefile.am:
37850         * gst/level/Makefile.am: -marshal.[ch] and -enum.[ch] files
37851         should not be disted, -marshal.h files should not be installed,
37852         and -enum.h files _should_ be installed.  Fix to make this the
37853         case.
37854
37855 === release 0.7.5 ===
37856
37857 2004-02-26  Thomas Vander Stichele  <thomas at apestaart dot org>
37858
37859         * configure.ac: release 0.7.5, "Under The Sea"
37860
37861 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
37862
37863         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
37864         (gst_audio_convert_change_state), (gst_audio_convert_get_buffer):
37865         * gst/videoscale/gstvideoscale.c:
37866         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
37867           assorted debug/warning fixes
37868
37869 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
37870
37871         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
37872         (gst_videoscale_init), (gst_videoscale_chain),
37873         (gst_videoscale_set_property), (plugin_init):
37874         * gst/videoscale/gstvideoscale.h:
37875         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
37876         (gst_videoscale_scale_rgb), (gst_videoscale_planar411),
37877         (gst_videoscale_planar400), (gst_videoscale_packed422),
37878         (gst_videoscale_packed422rev), (gst_videoscale_32bit),
37879         (gst_videoscale_24bit), (gst_videoscale_16bit),
37880         (gst_videoscale_bilinear), (gst_videoscale_bicubic),
37881         (gst_videoscale_scale_plane_slow),
37882         (gst_videoscale_scale_point_sample),
37883         (gst_videoscale_scale_nearest),
37884         (gst_videoscale_scale_nearest_str2),
37885         (gst_videoscale_scale_nearest_str4),
37886         (gst_videoscale_scale_nearest_32bit),
37887         (gst_videoscale_scale_nearest_24bit),
37888         (gst_videoscale_scale_nearest_16bit):
37889         add debugging category and use it properly
37890         fix use of GST_PTR_FORMAT
37891
37892 2004-02-25  Andy Wingo  <wingo@pobox.com>
37893
37894         * gst/interleave/interleave.c (interleave_buffered_loop): Always
37895         push only when channel->buffer is NULL. Prevents segfaults doing
37896         the state change after a nonlocal exit, like a scheme exception.
37897
37898         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
37899         Handle the case where the intersected caps is empty.
37900
37901 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
37902
37903         * gst/law/mulaw-decode.c: (mulawdec_link):
37904         * gst/law/mulaw.c: (plugin_init):
37905           fix mulawdec so it actually works again
37906
37907 2004-02-24  Arwed v. Merkatz  <v.merkatz@gmx.net>
37908
37909         reviewed by: David Schleef  <ds@schleef.org>
37910
37911         * gst/videofilter/gstgamma.c: (gst_gamma_class_init),
37912         (gst_gamma_init), (gst_gamma_set_property),
37913         (gst_gamma_get_property), (gst_gamma_calculate_tables),
37914         (gst_gamma_rgb24), (gst_gamma_rgb32):  Adds gamma correction
37915         for RGB, with separate r g and b correction factors. (#131167)
37916
37917 2004-02-24  Thomas Vander Stichele  <thomas at apestaart dot org>
37918
37919         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
37920           only signal tags for bitrate if they're > 0 (#134894)
37921
37922 2004-02-24  David Schleef  <ds@schleef.org>
37923
37924         * gst/qtdemux/qtdemux.c: (plugin_init), (gst_qtdemux_loop_header),
37925         (qtdemux_parse_moov), (qtdemux_parse), (qtdemux_node_dump_foreach),
37926         (qtdemux_dump_mvhd), (qtdemux_dump_tkhd), (qtdemux_dump_elst),
37927         (qtdemux_dump_mdhd), (qtdemux_dump_hdlr), (qtdemux_dump_vmhd),
37928         (qtdemux_dump_dref), (qtdemux_dump_stsd), (qtdemux_dump_stts),
37929         (qtdemux_dump_stss), (qtdemux_dump_stsc), (qtdemux_dump_stsz),
37930         (qtdemux_dump_stco), (qtdemux_dump_co64), (qtdemux_dump_dcom),
37931         (qtdemux_dump_cmvd), (qtdemux_parse_tree), (qtdemux_parse_trak):
37932         Cleanups.  Convert g_prints to GST_LOGs.  Add qtdemux debug
37933         category.  Attempt to fix timestamp calculation.
37934
37935 2004-02-24  Johan Dahlin  <johan@gnome.org>
37936
37937         * gst-libs/gst/gconf/gconf.c: Add \n to g_print error messages
37938
37939 2004-02-23  Thomas Vander Stichele  <thomas at apestaart dot org>
37940
37941         * configure.ac:
37942         * gconf/Makefile.am:
37943         * gconf/gstreamer.schemas:
37944         * gst-libs/gst/gconf/Makefile.am:
37945         * gst-libs/gst/gconf/gconf.c:
37946           version gconf schemas and install locations
37947
37948 2004-02-23  Benjamin Otte  <otte@gnome.org>
37949
37950         * ext/xine/xineinput.c: (gst_xine_input_dispose):
37951         (gst_xine_input_subclass_init):
37952           call parent dispose.
37953           change pad template for CD reader correctly
37954         * ext/xine/Makefile.am:
37955         * ext/xine/gstxine.h:
37956         * ext/xine/xine.c: (plugin_init):
37957         * ext/xine/xineaudiosink.c:
37958           wrap audio sinks, too
37959         * gst-libs/gst/resample/private.h:
37960         * gst-libs/gst/resample/resample.c: (gst_resample_init),
37961         (gst_resample_reinit), (gst_resample_scale),
37962         (gst_resample_nearest_s16), (gst_resample_bilinear_s16),
37963         (gst_resample_sinc_slow_s16), (gst_resample_sinc_s16),
37964         (gst_resample_sinc_ft_s16), (gst_resample_nearest_float),
37965         (gst_resample_bilinear_float), (gst_resample_sinc_slow_float),
37966         (gst_resample_sinc_float), (gst_resample_sinc_ft_float):
37967         * gst-libs/gst/resample/resample.h:
37968         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
37969         (gst_audioscale_class_init), (gst_audioscale_link),
37970         (gst_audioscale_get_buffer), (gst_audioscale_init),
37971         (gst_audioscale_chain), (gst_audioscale_set_property),
37972         (gst_audioscale_get_property):
37973         * gst/audioscale/gstaudioscale.h:
37974           s/resample_*/gst_resample_*/i to not clobber namespaces
37975
37976 2004-02-23  Julien MOUTTE  <julien@moutte.net>
37977
37978         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
37979         (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
37980         (gst_riff_create_video_template_caps),
37981         (gst_riff_create_audio_template_caps),
37982         (gst_riff_create_iavs_template_caps):
37983         * gst-libs/gst/riff/riff-media.h:
37984         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
37985         (gst_asf_demux_audio_caps), (gst_asf_demux_add_audio_stream),
37986         (gst_asf_demux_video_caps), (gst_asf_demux_add_video_stream):
37987         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
37988         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
37989         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
37990         (gst_matroska_demux_plugin_init): First batch implementing audio and
37991         video codec tags in demuxers.
37992
37993 2004-02-22  Benjamin Otte  <otte@gnome.org>
37994
37995         * ext/xine/Makefile.am:
37996         * ext/xine/gstxine.h:
37997         * ext/xine/xine.c: (plugin_init):
37998         * ext/xine/xineinput.c:
37999           add input plugin wrapper. Playback from files, http, mms and cdda
38000           works.
38001         * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
38002           remove leftover G_GNUC_UNUSED
38003         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_stream),
38004         (gst_asf_demux_identify_guid):
38005           improve debugging output
38006
38007 2004-02-22  Benjamin Otte  <otte@gnome.org>
38008
38009         reported by: Padraig O'Briain <padraig.obriain@sun.com>
38010
38011         * autogen.sh:
38012           replace test -e with test -x for mkinstalldirs to be more portable.
38013           (fixes #134816)
38014
38015 2004-02-22  Benjamin Otte  <otte@gnome.org>
38016
38017         reported by: Stefan Kost <kost@imn.htwk-leipzig.de>
38018
38019         * gst/audioconvert/gstaudioconvert.c: (plugin_init):
38020           set rank to PRIMARY
38021         * gst/volume/gstvolume.c: (plugin_init):
38022           set rank to NONE
38023         fixes #134960
38024
38025 2004-02-22   Julio M. Merino Vidal <jmmv@menta.net>
38026
38027         reviewed by Benjamin Otte  <otte@gnome.org>
38028
38029         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
38030           escape NULL strings in GST_ELEMENT_ERROR properly (fixes #135116)
38031
38032 2004-02-22  Benjamin Otte  <otte@gnome.org>
38033
38034         * configure.ac:
38035           export [_]*{gst,Gst,GST}.* symbols from plugins
38036
38037 2004-02-22  Christophe Fergeau <teuf@gnome.org>
38038
38039         reviewed by: Benjamin Otte  <otte@gnome.org>
38040
38041         * ext/lame/gstlame.c: (add_one_tag):
38042         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
38043         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value),
38044         (gst_vorbisenc_metadata_set1):
38045         * gst/tags/gstid3tag.c:
38046         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add):
38047           apply fixes from bugs #135042 (lame can't write tags) and #133817
38048           (add GST_ALBUM_VOLUME_{COUNT,NUMBER} tags)
38049
38050 2004-02-22 Ramon Garcia <ramon_garcia_f@yahoo.com>
38051
38052         * configure.ac: Export only gst_plugin_desc from plugins.
38053          Note that this change only makes any effect with Linux using libtool
38054          1.5.2 or higher. Otherwise it is silently ignored, but it would build
38055          fine. And don't try to have several versions of libtool in different
38056          directories.
38057
38058 2004-02-20  Andy Wingo  <wingo@pobox.com>
38059
38060         * gst/intfloat/, gst/oneton: Removed, replaced by audioconvert and
38061         interleave respectively.
38062
38063         * gst/interleave/deinterleave.c: New plugin: deinterleave
38064         (replaces on oneton).
38065         * gst/interleave/interleave.c: New plugin: interleave.
38066         * gst/interleave/plugin.h: Support file.
38067         * gst/interleave/plugin.c: Support file.
38068
38069         * configure.ac: Remove intfloat and oneton, add interleave.
38070
38071         * ext/sndfile/gstsf.c: Handle events better.
38072
38073         * gst/audioconvert/gstaudioconvert.c: Change to support int2float
38074         and float2int operation. int2float has scheduling problems as
38075         noted in in2float_chain.
38076
38077 2004-02-20  Benjamin Otte  <otte@gnome.org>
38078
38079         * ext/xine/Makefile.am:
38080         * ext/xine/gstxine.h:
38081         * ext/xine/xine.c:
38082         * ext/xine/xineaudiodec.c:
38083         * ext/xine/xinecaps.c:
38084           add first version of xine plugin wrapper. Currently only wraps the
38085           QDM2 win32 DLL, and even that only in proof-of-concept quality.
38086         * configure.ac:
38087         * ext/Makefile.am:
38088           add xine plugin wrapper, disabled by default. Use --enable-xine to
38089           build. Note that it'll segfault on gst-register if you don't remove
38090           the goom and tvtime post plugins from xine.
38091         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
38092         (qtdemux_parse), (qtdemux_parse_trak), (qtdemux_audio_caps):
38093           add extradata parsing for QDM2.
38094           change around debugging prints.
38095
38096 2004-02-19  Benjamin Otte  <otte@gnome.org>
38097
38098         * ext/lame/gstlame.c: (gst_lame_chain):
38099         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
38100           use gst_tag_list_insert when you want to insert tags
38101
38102 2004-02-18  David Schleef  <ds@schleef.org>
38103
38104         * configure.ac:  Move massink to gst-rotten
38105         * ext/Makefile.am:
38106         * ext/mas/Makefile.am:
38107         * ext/mas/massink.c:
38108         * ext/mas/massink.h:
38109
38110 2004-02-18  David Schleef  <ds@schleef.org>
38111
38112         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init): Disable gdk_pixbuf
38113         typefinding, since it seems to be worse than nothing.
38114         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):  Add ftyp
38115         atom to recognize .mp4 and .m4a files as video/quicktime.
38116
38117 2004-02-18  David Schleef  <ds@schleef.org>
38118
38119         * gst/sine/demo-dparams.c: (quit_live),
38120         (dynparm_log_value_changed), (dynparm_value_changed), (main):
38121         Use double dparams, not float.
38122         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
38123         (gst_sinesrc_init): Change sync default to FALSE, since multiple
38124         sync'd elements don't really work correctly.
38125         * gst/volume/gstvolume.c: (volume_class_init), (volume_init),
38126         (volume_update_volume), (volume_get_property):  Change dparam
38127         to double.
38128
38129 2004-02-18  Julien MOUTTE  <julien@moutte.net>
38130
38131         * sys/ximage/ximagesink.c:
38132         (gst_ximagesink_xwindow_update_geometry),
38133         (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
38134         (gst_ximagesink_change_state), (gst_ximagesink_expose),
38135         (gst_ximagesink_init): Rework the way software video scaling works. So
38136         now we check on each chain call if the video frames are feeling the
38137         window. If not we try to renegotiate caps. On failure we memorize that
38138         and we won't try again for that PLAYING sessions.
38139         * sys/ximage/ximagesink.h: Adding a boolean to store the caps renego
38140         failure.
38141         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): initialize the
38142         synchronous flag.
38143
38144 2004-02-18  Thomas Vander Stichele  <thomas at apestaart dot org>
38145
38146         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
38147           break up _link so we can give a better debug message for errors
38148
38149 2004-02-18  Thomas Vander Stichele  <thomas at apestaart dot org>
38150
38151         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
38152           set up debug category
38153
38154 2004-02-18  Julien MOUTTE <julien@moutte.net>
38155
38156         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
38157         (gst_ximagesink_handle_xevents), (gst_ximagesink_expose): Reorganizing
38158         the way renegotiation work. The event handling function is not taking
38159         care of external windows and renegotiate method check for pad flags
38160         NEGOTIATING. Should fix : #133209
38161
38162 2004-02-17  Julien MOUTTE  <julien@moutte.net>
38163
38164         * sys/ximage/ximagesink.c: (gst_ximagesink_expose): Checking if the
38165         pad is negotiating before trying renegotiation.
38166
38167 2004-02-17  Thomas Vander Stichele  <thomas at apestaart dot org>
38168
38169         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
38170           pass on all possible mime types as typefind hints
38171
38172 2004-02-17  Julien MOUTTE <julien@moutte.net>
38173
38174         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
38175         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new): Fix a
38176         possible SHM leak if we crash. All other apps using XShm are doing
38177         that.
38178
38179 2004-02-17  Julien MOUTTE  <julien@moutte.net>
38180
38181         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
38182         (gst_ximagesink_expose): Renegotiate size on expose.
38183         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_expose): Update window
38184         size on expose.
38185
38186 2004-02-16  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38187
38188         * testsuite/alsa/sinesrc.c:
38189           cosmetic fix to fix compile issue with gcc 2.95.4
38190
38191 2004-02-16  Julien MOUTTE <julien@moutte.net>
38192
38193         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
38194         (gst_alsa_timestamp_to_bytes): Alsa should trigger an error if it
38195         failed opening the audio device.
38196         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
38197         (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
38198         (gst_ximagesink_xwindow_new), (gst_ximagesink_xwindow_destroy),
38199         (gst_ximagesink_xwindow_resize), (gst_ximagesink_xwindow_clear),
38200         (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
38201         (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
38202         (gst_ximagesink_change_state), (gst_ximagesink_chain),
38203         (gst_ximagesink_set_xwindow_id): Clearing window in READY TO PAUSED.
38204         Removing some useless g_return_if_fail like wingo suggested.
38205         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
38206         (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xvimage_put),
38207         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
38208         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_xwindow_clear),
38209         (gst_xvimagesink_update_colorbalance),
38210         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_xcontext_get),
38211         (gst_xvimagesink_xcontext_clear),
38212         (gst_xvimagesink_get_fourcc_from_caps),
38213         (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
38214         (gst_xvimagesink_set_xwindow_id),
38215         (gst_xvimagesink_colorbalance_list_channels),
38216         (gst_xvimagesink_colorbalance_set_value),
38217         (gst_xvimagesink_colorbalance_get_value): Clearing window in READY TO
38218         PAUSED. Removing some useless g_return_if_fail like wingo suggested.
38219
38220 2004-02-16  Thomas Vander Stichele  <thomas at apestaart dot org>
38221
38222         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
38223           throw error when not negotiated instead of asserting
38224
38225 2004-02-15  Julien MOUTTE  <julien@moutte.net>
38226
38227         * gst/switch/gstswitch.c: (gst_switch_loop): More fixes for
38228         correct data refcounting.
38229
38230 2004-02-15  Julien MOUTTE  <julien@moutte.net>
38231
38232         * gst/switch/gstswitch.c: (gst_switch_change_state),
38233         (gst_switch_class_init): Cleaning the sinkpads correctly on state
38234         change, mostly the EOS flag.
38235
38236 2004-02-15  Julien MOUTTE  <julien@moutte.net>
38237
38238         * examples/gstplay/player.c: (got_eos), (main): Adding some
38239         output for debugging.
38240         * gst-libs/gst/play/play.c: (gst_play_state_change): Stop our
38241         timeouts if we go to any state different from PLAYING.
38242         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek): Fix some
38243         more EOS bugs in riff lib.
38244
38245 2004-02-14  Julien MOUTTE  <julien@moutte.net>
38246
38247         * gst-libs/gst/play/play.c: (gst_play_connect_visualization): Disable
38248         visualization until i find a way to fix switch correctly.
38249         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head): Fix a bug when
38250         EOS arrives.
38251         * gst/switch/gstswitch.c: (gst_switch_release_pad),
38252         (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
38253         (gst_switch_loop), (gst_switch_dispose), (gst_switch_class_init):
38254         Reworked switch to get a more correct behaviour with events and refing
38255         of data stored in sinkpads.
38256         * gst/switch/gstswitch.h: Adding an eos flag for every sinkpad so that
38257         we don't pull from a pad in EOS.
38258
38259 2004-02-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38260
38261         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
38262           remove v1 tag even if we can't read it (makes sure we don't detect
38263           it again)
38264
38265 2004-02-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38266
38267         * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait),
38268         (gst_alsa_xrun_recovery):
38269         * ext/alsa/gstalsa.h:
38270           try xrun recovery when wait failed. Make xrun recovery function
38271           return TRUE/FALSE to indicate success. (might fix #134354)
38272
38273 2004-02-13  David Schleef  <ds@schleef.org>
38274
38275         * gst/sine/demo-dparams.c: (dynparm_log_value_changed),
38276         (dynparm_value_changed), (main): Convert from float to double.
38277         * gst/sine/gstsinesrc.c: (gst_sinesrc_init): same.
38278
38279 2004-02-13  David Schleef  <ds@schleef.org>
38280
38281         * gst/silence/gstsilence.c: (gst_silence_class_init),
38282         (gst_silence_set_clock), (gst_silence_get),
38283         (gst_silence_set_property), (gst_silence_get_property):
38284         * gst/silence/gstsilence.h: Add sync property.
38285         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
38286         (gst_sinesrc_init), (gst_sinesrc_set_clock), (gst_sinesrc_get),
38287         (gst_sinesrc_set_property), (gst_sinesrc_get_property):
38288         * gst/sine/gstsinesrc.h: Add sync property.
38289
38290 2004-02-13  David Schleef  <ds@schleef.org>
38291
38292         * gst/intfloat/gstint2float.c: (conv_f32_s16),
38293         (gst_int2float_chain_gint16):  Change stdint usage to glib types.
38294
38295 2004-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
38296
38297         * configure.ac:
38298         * ext/Makefile.am:
38299         * gst-libs/ext/Makefile.am:
38300           move ffmpeg plugin to gst-ffmpeg module
38301
38302 2004-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
38303
38304         * configure.ac: use GST_ARCH to detect architecture
38305
38306 2004-02-12  Julien MOUTTE  <julien@moutte.net>
38307
38308         * gst/vbidec/vbiscreen.c: Fixing thomasvs fixes. Missing header.
38309
38310 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
38311
38312         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
38313           classify LADSPA plugins based on number of src/sink pads
38314           (#133663, Stefan Kost)
38315         * gst/sine/gstsinesrc.c: (gst_sinesrc_init):
38316           fix dparams registration
38317           (#133528, Stefan Kost)
38318         * gst/vbidec/vbiscreen.c: (vbiscreen_set_current_cell):
38319           fix use of isprint and use g_ascii_isprint instead
38320           (#133316, Stefan Kost)
38321
38322 2004-02-11  David Schleef  <ds@schleef.org>
38323
38324         Convert a few inner loops to use liboil.  This is currently
38325         optional, and is only enabled if liboil is present (duh!).
38326         * configure.ac: Check for liboil-0.1
38327         * gst/intfloat/Makefile.am:
38328         * gst/intfloat/gstint2float.c: (conv_f32_s16), (scalarmult_f32),
38329         (gst_int2float_chain_gint16):
38330         * gst/videofilter/Makefile.am:
38331         * gst/videofilter/gstvideobalance.c: (gst_videobalance_class_init),
38332         (tablelookup_u8), (gst_videobalance_planar411):
38333         * gst/videotestsrc/Makefile.am:
38334         * gst/videotestsrc/gstvideotestsrc.c: (plugin_init):
38335         * gst/videotestsrc/videotestsrc.c: (splat_u8), (paint_hline_YUY2),
38336         (paint_hline_IYU2), (paint_hline_str4), (paint_hline_str3),
38337         (paint_hline_RGB565), (paint_hline_xRGB1555):
38338
38339 2004-02-11  David Schleef  <ds@schleef.org>
38340
38341         * ext/lcs/gstcolorspace.c: (colorspace_find_lcs_format),
38342         (gst_colorspace_caps_get_fourcc), (colorspace_setup_converter),
38343         (gst_colorspace_getcaps), (gst_colorspace_link),
38344         (gst_colorspace_base_init), (gst_colorspace_init),
38345         (gst_colorspace_chain), (gst_colorspace_change_state),
38346         (plugin_init): Merge Ronald's patch (bug #117897) and update
38347         for new caps and negotiation.  Seems to work, although it
38348         shows off bugs in lcs.
38349
38350 2004-02-11  David Schleef  <ds@schleef.org>
38351
38352         * ext/alsa/Makefile.am: Fix linking against libgstinterfaces.
38353         (bug #133886)  Noticed by bugs@leroutier.net (Stephane LOEUILLET)
38354
38355 2004-02-11  David Schleef  <ds@schleef.org>
38356
38357         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_class_init),
38358         (gst_rfbsrc_change_state), (gst_rfbsrc_init),
38359         (gst_rfbsrc_set_property), (gst_rfbsrc_get_property):
38360         Add server and port properties
38361
38362 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
38363
38364         * m4/a52.m4:
38365         * m4/aalib.m4:
38366         * m4/as-ffmpeg.m4:
38367         * m4/as-liblame.m4:
38368         * m4/as-slurp-ffmpeg.m4:
38369         * m4/check-libheader.m4:
38370         * m4/esd.m4:
38371         * m4/freetype2.m4:
38372         * m4/gconf-2.m4:
38373         * m4/glib.m4:
38374         * m4/gst-alsa.m4:
38375         * m4/gst-artsc.m4:
38376         * m4/gst-ivorbis.m4:
38377         * m4/gst-matroska.m4:
38378         * m4/gst-sdl.m4:
38379         * m4/gst-shout2.m4:
38380         * m4/gst-sid.m4:
38381         * m4/gtk.m4:
38382         * m4/libdv.m4:
38383         * m4/libfame.m4:
38384         * m4/libmikmod.m4:
38385         * m4/ogg.m4:
38386         * m4/vorbis.m4:
38387           fix underquotedness of macros (#133800)
38388         * m4/as-avifile.m4:
38389         * m4/xmms.m4:
38390           removed because no longer used
38391
38392 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
38393
38394         * configure.ac:
38395           require gettext 0.11.5 so ulonglong.m4 gets checked out and copied
38396           by autopoint (fixes #132996)
38397
38398 2004-02-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38399
38400         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_base_init):
38401         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_base_init):
38402         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_base_init):
38403         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_base_init):
38404           fix memleaks
38405
38406 2004-02-11  David Schleef  <ds@schleef.org>
38407
38408         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
38409         (gst_gdk_pixbuf_chain): Fix logic bug causing spurious errors.
38410         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_base_init),
38411         (gst_jpegdec_init), (gst_jpegdec_chain): Fix negotiation.
38412         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_base_init),
38413         (gst_jpegenc_class_init), (gst_jpegenc_init),
38414         (gst_jpegenc_getcaps), (gst_jpegenc_link), (gst_jpegenc_resync),
38415         (gst_jpegenc_chain), (gst_jpegenc_set_property),
38416         (gst_jpegenc_get_property):  Fix negotiation.  Add some properties.
38417         * ext/jpeg/gstjpegenc.h: Fix negotiation.
38418
38419 2004-02-10  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38420
38421         * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
38422         (gst_mikmod_srcfixate), (gst_mikmod_srclink), (gst_mikmod_loop):
38423         * ext/mikmod/gstmikmod.h:
38424           fix caps negotiation in mikmod
38425         * ext/ogg/gstoggdemux.c: (gst_ogg_print):
38426           output debug information
38427
38428 2004-02-08  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38429
38430         * gst-libs/gst/colorbalance/Makefile.am:
38431         * gst-libs/gst/navigation/Makefile.am:
38432         * gst-libs/gst/xoverlay/Makefile.am:
38433           remove unused GST_OPT_CFLAGS from Makefiles
38434           include X_CFLAGS and X_LIBS in xoverlay. (#131948)
38435
38436 2004-02-07  David Schleef  <ds@schleef.org>
38437
38438         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_handle_event): Don't
38439         push events to pads that haven't been created (#133508)
38440
38441 2004-02-07  Jan Schmidt  <thaytan@mad.scientist.com>
38442
38443         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
38444         (gst_dvdec_sink_convert), (gst_dvdec_handle_sink_event),
38445         (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
38446         (gst_dvdec_loop), (gst_dvdec_change_state):
38447         Second attempt at committing a working dvdec element.
38448
38449 2004-02-06  David Schleef  <ds@schleef.org>
38450
38451         Build fixes for OS X: (see #129600)
38452         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_strh),
38453         (gst_riff_read_strf_vids), (gst_riff_read_strf_auds),
38454         (gst_riff_read_strf_iavs):
38455         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
38456         (gst_avi_demux_stream_odml):
38457         * gst/playondemand/Makefile.am:
38458         * gst/rtp/rtp-packet.c:
38459
38460 2004-02-05  David Schleef  <ds@schleef.org>
38461
38462         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_loop): Revert
38463         last change, because it Just Doesn't Compile.
38464
38465 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38466
38467         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
38468           skip undecodable id3v2 tag instead of keeping it
38469
38470 2004-02-05  David Schleef  <ds@schleef.org>
38471
38472         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
38473         Unref leaked buffer.  (Noticed by Ronald)
38474
38475 2004-02-05  David I. Lehn  <dlehn@users.sourceforge.net>
38476
38477         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
38478         Sync requires with other checks.  >= vs =.
38479
38480 2004-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
38481
38482         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
38483         (gst_dvdec_video_link), (gst_dvdec_loop):
38484         * ext/dv/gstdvdec.h:
38485           rework the caps negotiation so that dvdec works again instead
38486           of just segfaulting.
38487
38488 === release 0.7.4 ===
38489
38490 2004-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
38491
38492         * NEWS: GStreamer Plugins 0.7.4 "For Great Justice" released
38493         * configure.ac: changed for release
38494
38495 2004-02-05  Thomas Vander Stichele  <thomas at apestaart dot org>
38496
38497         * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in:
38498         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
38499         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
38500         * pkgconfig/gstreamer-play-uninstalled.pc.in:
38501           reworked patch by David Lehn to fix libdir and includedir for
38502           uninstalled libraries
38503           removed play and gconf from gstreamer-libs since they have their
38504           own pkgconfig files
38505
38506 2004-02-04  David Schleef  <ds@schleef.org>
38507
38508         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt): Fix a caps
38509         memleak.
38510
38511 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38512
38513         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
38514           use correct GST_TAG_ENCODER tag
38515
38516 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38517
38518         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
38519           be sure to stop the clock when going to paused
38520         * sys/oss/gstosssink.c: (gst_osssink_change_state):
38521           reset number of transmitted when going to ready.
38522         fixes #132935
38523
38524 2004-02-05  Charles Schmidt <cschmidt2@emich.edu>
38525
38526         reviewed by Benjamin Otte
38527
38528         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
38529           extract track count (fixes #133410)
38530
38531 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38532
38533         * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
38534           that should be !=, not == (fixes #132519)
38535
38536 2004-02-04  David Schleef  <ds@schleef.org>
38537
38538         Make sure set_explicit_caps() is called before adding pad.
38539         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
38540         * gst/id3/gstid3types.c: (gst_id3types_loop):
38541         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
38542         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
38543
38544 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
38545
38546         * configure.ac:
38547           bump nano to 2, first prerelease
38548           put back AM_PROG_LIBTOOL
38549
38550 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
38551
38552         * testsuite/alsa/Makefile.am:
38553           these are user test apps, not automatic testsuite tests
38554
38555 2004-02-04  David Schleef  <ds@schleef.org>
38556
38557         Convert GST_DEBUG_CAPS() to GST_DEBUG():
38558         * gst/mpeg1videoparse/gstmp1videoparse.c:
38559         (mp1videoparse_parse_seq):
38560         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
38561         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
38562         * sys/xvideo/gstxwindow.c: (_gst_xwindow_new):
38563         * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
38564         (gst_xvideosink_getcaps):
38565         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
38566         * testsuite/gst-lint: more tests
38567
38568 2004-02-04  David Schleef  <ds@schleef.org>
38569
38570         Replace use of GST_PAD_FORMATS_FUNCTION() and similar macros
38571         with the code that they would expand to.
38572         * ext/flac/gstflacdec.c: (gst_flacdec_get_src_formats),
38573         (gst_flacdec_get_src_query_types),
38574         (gst_flacdec_get_src_event_masks):
38575         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_formats),
38576         (gst_gnomevfssrc_get_query_types),
38577         (gst_gnomevfssrc_get_event_mask):
38578
38579 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38580
38581         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
38582         (gst_sinesrc_dispose):
38583           fix memleak by properly disposing sinesrc
38584
38585 2004-02-04  Julien MOUTTE  <julien@moutte.net>
38586
38587         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_expose):
38588         * gst-libs/gst/xoverlay/xoverlay.h: Adding the _expose method to tell
38589         an overlay to redraw the image because it has been exposed.
38590         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy),
38591         (gst_ximagesink_ximage_put), (gst_ximagesink_expose),
38592         (gst_ximagesink_xoverlay_init), (gst_ximagesink_init):
38593         * sys/ximage/ximagesink.h: Implement expose method from XOverlay
38594         interface
38595         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_destroy),
38596         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_expose),
38597         (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_init):
38598         * sys/xvimage/xvimagesink.h: Implement expose method from XOverlay
38599         interface
38600
38601 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38602
38603         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
38604           more memleak fixage
38605
38606 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38607
38608         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
38609         * gst/typefind/gsttypefindfunctions.c:
38610           fix memleaks shown by gst-typefind
38611
38612 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
38613
38614         * common/glib-gen.mak:
38615           add hack rule to touch .Plo files
38616         * gst-libs/gst/colorbalance/Makefile.am:
38617         * gst-libs/gst/mixer/Makefile.am:
38618         * gst-libs/gst/play/Makefile.am:
38619         * gst-libs/gst/tuner/Makefile.am:
38620           remove glib_root variable
38621
38622 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38623
38624         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream):
38625           set explicit caps before adding the element, so the autopluggers can
38626           plug correctly.
38627         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
38628         (mpeg2_sys_type_find), (mpeg1_sys_type_find),
38629         (mpeg_video_type_find), (mpeg_video_stream_type_find),
38630         (dv_type_find):
38631           fix memleaks in typefind functions. gst_type_find_suggest takes a const
38632           argument.
38633
38634 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
38635
38636         * gst-libs/gst/colorbalance/Makefile.am:
38637         * gst-libs/gst/colorbalance/colorbalance-marshal.list:
38638         * gst-libs/gst/colorbalance/colorbalance.c:
38639         * gst-libs/gst/colorbalance/colorbalance.h:
38640         * gst-libs/gst/colorbalance/colorbalancemarshal.list:
38641         * gst-libs/gst/mixer/Makefile.am:
38642         * gst-libs/gst/mixer/mixer-marshal.list:
38643         * gst-libs/gst/mixer/mixer.c:
38644         * gst-libs/gst/mixer/mixer.h:
38645         * gst-libs/gst/mixer/mixermarshal.list:
38646         * gst-libs/gst/play/Makefile.am:
38647         * gst-libs/gst/play/play.h:
38648         * gst-libs/gst/tuner/Makefile.am:
38649         * gst-libs/gst/tuner/tuner-marshal.list:
38650         * gst-libs/gst/tuner/tuner.c:
38651         * gst-libs/gst/tuner/tuner.h:
38652         * gst-libs/gst/tuner/tunermarshal.list:
38653           use new glib-gen.mak snippet to clean up Makefile.am
38654           fix various bugs in Makefile.am's
38655
38656 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38657
38658         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
38659           handle chain parsing correctly in the multichain case
38660         * ext/theora/theoradec.c: (gst_theora_dec_init), (_theora_ilog),
38661         (theora_dec_from_granulepos), (theora_dec_to_granulepos),
38662         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
38663         (theora_dec_chain):
38664           handle events and queries correctly
38665
38666 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
38667
38668         * .cvsignore:
38669         Ignore generated file _stdint.h.
38670
38671 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
38672
38673         * gst-libs/gst/colorbalance/Makefile.am:
38674         * gst-libs/gst/colorbalance/colorbalance.h:
38675         * gst-libs/gst/mixer/Makefile.am:
38676         * gst-libs/gst/mixer/mixer.h:
38677         * gst-libs/gst/play/Makefile.am:
38678         * gst-libs/gst/play/play.h:
38679         * gst-libs/gst/tuner/Makefile.am:
38680         * gst-libs/gst/tuner/tuner.h:
38681         Generate enum type code with glib-mkenums.
38682         * gst-libs/gst/colorbalance/.cvsignore:
38683         * gst-libs/gst/mixer/.cvsignore:
38684         * gst-libs/gst/play/.cvsignore:
38685         * gst-libs/gst/tuner/.cvsignore:
38686         Ignore generated files.
38687
38688 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
38689
38690         * gst-libs/gst/audio/.cvsignore:
38691         Ignore generated file.
38692         * gst-libs/gst/audio/Makefile.am:
38693         Do not install example filter.
38694
38695 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
38696
38697         * examples/switch/.cvsignore:
38698         Ignore generated file.
38699
38700 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38701
38702         * common/m4/ax_create_stdint_h.m4:
38703         * configure.ac:
38704           add AX_CREATE_STDINT_H to get correct type definitions for a52dec in
38705           _stdint.h.
38706         * Makefile.am:
38707           remove generated _stdint.h in DISTCLEANFILES
38708         * ext/a52dec/gsta52dec.c:
38709           include _stdint.h for a52dec. (should fix #133064)
38710
38711 2004-02-02  Jeremy Simon  <jesimon@libertysurf.fr>
38712
38713         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add),
38714         (gst_tag_to_vorbis_comments):
38715         Add replaygain support to vorbistag
38716
38717 2004-02-02  Jeremy Simon  <jesimon@libertysurf.fr>
38718         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
38719         (gst_ffmpeg_caps_to_extradata):
38720           Fix SVQ3 caps flag properties
38721           Use glib macro for bytes swap
38722
38723 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
38724
38725         * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
38726         * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
38727         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
38728         * ext/sndfile/gstsf.c: (plugin_init):
38729         * gst/avi/gstavi.c: (plugin_init):
38730         * sys/dxr3/dxr3init.c: (plugin_init):
38731         * sys/oss/gstossaudio.c: (plugin_init):
38732         * sys/v4l/gstv4l.c: (plugin_init):
38733         * sys/v4l2/gstv4l2.c: (plugin_init):
38734           remove textdomain calls
38735         * po/nl.po:
38736           update Dutch translation
38737
38738 2004-02-02  Julien MOUTTE  <julien@moutte.net>
38739
38740         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
38741         (gst_play_set_audio_sink): Moving volume in the audio thread for
38742         instantaneous volume change. Maybe i will add another volume in front
38743         of visualization later, not sure yet though.
38744
38745 2004-02-02  Julien MOUTTE  <julien@moutte.net>
38746
38747         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
38748         (gst_ximagesink_handle_xevents): Better X events handling, only take
38749         the latest events for configure and motion.
38750         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents): same.
38751
38752 2004-02-02  Jon Trowbridge  <trow@gnu.org>
38753
38754         reviewed by: David Schleef  <ds@schleef.org>
38755
38756         Fix memory leaks:
38757         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_register):
38758         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_register):
38759
38760 2004-02-02  David Schleef  <ds@schleef.org>
38761
38762         code cleanup.  Change bzero() to memset().  Remove duplicate ; at ends
38763         of lines.
38764         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_event):
38765         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
38766         * ext/xvid/gstxviddec.c: (gst_xviddec_src_link):
38767         * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
38768         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
38769         * gst/effectv/gstedge.c: (gst_edgetv_sinkconnect):
38770         * gst/effectv/gstvertigo.c: (gst_vertigotv_sinkconnect):
38771         * gst/intfloat/float22int.c: (gst_float2_2_int_getcaps),
38772         (gst_float2_2_int_link):
38773         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
38774         * gst/rtjpeg/RTjpeg.c: (RTjpeg_init_mcompress):
38775         * gst/tcp/gsttcpsink.c: (gst_tcpsink_init_send):
38776         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_init_receive):
38777         * gst/udp/gstudpsink.c: (gst_udpsink_init_send):
38778         * gst/udp/gstudpsrc.c: (gst_udpsrc_init_receive):
38779         * sys/v4l/gstv4lelement.c: (gst_v4lelement_init):
38780         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture):
38781         * testsuite/gst-lint: Add tests for bzero and ;;
38782
38783 2004-02-02  David Schleef  <ds@schleef.org>
38784
38785         * gst/debug/efence.c: Add fallback if MAP_ANONYMOUS isn't defined.
38786
38787 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
38788
38789         * ext/aalib/gstaasink.c: (gst_aasink_open):
38790         * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
38791         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
38792         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
38793         * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
38794         (gst_afsink_close_file):
38795         * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
38796         (gst_afsrc_close_file):
38797         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
38798         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
38799         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
38800         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
38801         * ext/esd/esdmon.c: (gst_esdmon_get):
38802         * ext/esd/esdsink.c: (gst_esdsink_chain), (gst_esdsink_open_audio):
38803         * ext/faac/gstfaac.c: (gst_faac_chain):
38804         * ext/faad/gstfaad.c: (gst_faad_chain):
38805         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
38806         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
38807         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
38808         * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
38809         (gst_flacdec_loop):
38810         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
38811         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
38812         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
38813         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
38814         (gst_gnomevfssink_close_file):
38815         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
38816         (gst_gnomevfssrc_open_file):
38817         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
38818         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
38819         * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
38820         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
38821         (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
38822         * ext/mad/gstmad.c: (gst_mad_chain):
38823         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
38824         * ext/mpeg2dec/gstmpeg2dec.c:
38825         * ext/mpeg2enc/gstmpeg2enc.cc:
38826         * ext/mplex/gstmplex.cc:
38827         * ext/mplex/gstmplexibitstream.cc:
38828         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
38829         (gst_ogg_demux_push):
38830         * ext/raw1394/gstdv1394src.c:
38831         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
38832         (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
38833         * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
38834         (gst_sf_loop):
38835         * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
38836         * ext/swfdec/gstswfdec.c: (gst_swfdec_loop):
38837         * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
38838         * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
38839         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
38840         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
38841         * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
38842         * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
38843         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
38844         (gst_riff_read_element_data), (gst_riff_read_seek),
38845         (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
38846         * gst/adder/gstadder.c: (gst_adder_loop):
38847         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
38848         (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
38849         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
38850         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
38851         * gst/avi/gstavimux.c: (gst_avimux_stop_file):
38852         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
38853         * gst/goom/gstgoom.c: (gst_goom_chain):
38854         * gst/id3/gstid3types.c: (gst_id3types_loop):
38855         * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
38856         * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
38857         * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
38858         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
38859         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
38860         (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
38861         (gst_ebml_read_float), (gst_ebml_read_header):
38862         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
38863         (gst_matroska_demux_parse_blockgroup):
38864         * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
38865         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
38866         * gst/oneton/gstoneton.c: (gst_oneton_chain):
38867         * gst/silence/gstsilence.c: (gst_silence_get):
38868         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
38869         * gst/smpte/gstsmpte.c: (gst_smpte_loop):
38870         * gst/speed/gstspeed.c: (speed_loop):
38871         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
38872         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
38873         * gst/volenv/gstvolenv.c: (gst_volenv_chain):
38874         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
38875         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
38876         (gst_wavparse_loop):
38877         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
38878         (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
38879         (dxr3audiosink_close):
38880         * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
38881         * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
38882         (dxr3videosink_close), (dxr3videosink_write_data):
38883         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
38884         * sys/oss/gstosssink.c: (gst_osssink_chain):
38885         * sys/oss/gstosssrc.c: (gst_osssrc_get):
38886         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
38887         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
38888         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
38889         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
38890         (gst_v4l_set_window), (gst_v4l_enable_overlay):
38891         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
38892         (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
38893         (gst_v4l_get_frequency), (gst_v4l_set_frequency),
38894         (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
38895         (gst_v4l_set_audio):
38896         * sys/v4l/v4l_calls.h:
38897         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
38898         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
38899         (gst_v4lmjpegsink_playback_init),
38900         (gst_v4lmjpegsink_playback_start):
38901         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame):
38902         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
38903         (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
38904         (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
38905         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
38906         * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
38907         (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
38908         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
38909         (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
38910         (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
38911         (gst_v4l2_get_output), (gst_v4l2_set_output),
38912         (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
38913         (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
38914         (gst_v4l2_set_attribute):
38915         * sys/v4l2/v4l2_calls.h:
38916         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
38917         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
38918         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
38919         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
38920         (gst_v4l2src_capture_stop):
38921         * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
38922         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
38923         (gst_ximagesink_chain):
38924         * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
38925         (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
38926         (gst_xvideosink_xwindow_new):
38927         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
38928         (gst_xvimagesink_chain):
38929
38930 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
38931
38932         * gst/volume/gstvolume.c: (gst_volume_set_volume),
38933         (gst_volume_get_volume), (volume_class_init), (volume_init),
38934         (volume_chain_int16), (volume_update_volume):
38935         * gst/volume/gstvolume.h:
38936           make code more readable by removing magic numbers
38937           make mixer interface export 0-100 range
38938           make it internally map to 0.0-1.0 range so users don't distort
38939           output by putting the sliders at full volume
38940
38941 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
38942
38943         * gst-libs/gst/play/play.c: (gst_play_tick_callback),
38944         (gst_play_state_change), (gst_play_seek_to_time):
38945         block the tick callback for 0.5 secs after doing a seek
38946
38947 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
38948
38949         * gst-libs/gst/play/play.c: (gst_play_new):
38950           check for GError
38951
38952 2004-02-01  Julien MOUTTE  <julien@moutte.net>
38953
38954         * gst-libs/gst/play/play.c: (gst_play_seek_to_time),
38955         (gst_play_new): Accepting NULL GError, blocking time tick while seeking.
38956         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
38957         (gst_ximagesink_chain), (gst_ximagesink_init): s/sinkconnect/sink_link
38958         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
38959         (gst_xvimagesink_chain), (gst_xvimagesink_init): s/sinkconnect/sink_link
38960
38961 2004-02-01  Thomas Vander Stichele  <thomas at apestaart dot org>
38962
38963         * configure.ac:
38964         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
38965           check for a function added in vorbis 1.1
38966
38967 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38968
38969         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
38970         (gst_alsa_drain_audio), (gst_alsa_stop_audio):
38971           really start/stop clock only on PLAYING <=> PAUSED
38972         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
38973           remove \n from debugging lines
38974         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
38975           make it work when seeking does not
38976         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
38977           reset on DISCONT
38978
38979 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38980
38981         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start):
38982           start clock on PAUSED=>PLAYING, not later
38983         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
38984           extract correct time for different discont formats
38985         (gst_alsa_sink_get_time):
38986           don't segfault when no format is negotiated yet, just return 0
38987         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
38988         (gst_ogg_demux_handle_event), (gst_ogg_demux_push),
38989         (gst_ogg_pad_push):
38990           handle flush and discont events correctly
38991         * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
38992           handle discont events correctly
38993
38994 2004-01-31  Thomas Vander Stichele  <thomas at apestaart dot org>
38995
38996         * gst-libs/gst/play/play.c: (gst_play_error_quark),
38997         (gst_play_error_create), (gst_play_error_plugin),
38998         (gst_play_pipeline_setup), (gst_play_init), (gst_play_new):
38999         * gst-libs/gst/play/play.h:
39000           add error handling during creation
39001         * examples/gstplay/player.c: (main):
39002           use new gst_play_new
39003
39004
39005 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39006
39007         * ext/theora/theoradec.c: (theora_dec_chain):
39008           make comments work
39009         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
39010         (vorbis_dec_src_event), (vorbis_dec_chain):
39011           add encoder tag, fix tag reading to be more error tolerant, change
39012           BITRATE to NOMINAL_BITRATE, add debugging, don't unref events after
39013           gst_pad_event_default.
39014         * gst/tags/gstvorbistag.c:
39015         (gst_tag_list_from_vorbiscomment_buffer):
39016           undefine function specific define at end of function
39017
39018 2004-01-31  Jeremy Simon  <jesimon@libertysurf.fr>
39019
39020         * ext/flac/gstflac.c: (plugin_init):
39021         * ext/flac/gstflacdec.c: (gst_flacdec_class_init):
39022         * ext/flac/gstflacdec.h:
39023         * ext/flac/gstflacenc.h:
39024           Fix typos
39025
39026 2004-01-30  David I. Lehn  <dlehn@users.sourceforge.net>
39027
39028         * examples/gstplay/player.c: s/gstplay.h/play.h/
39029
39030 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
39031
39032         * gst-libs/gst/play/Makefile.am:
39033         * gst-libs/gst/play/gstplay.c:
39034         * gst-libs/gst/play/gstplay.h:
39035         * gst-libs/gst/play/play.c:
39036           more surgery, operation complete
39037
39038 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
39039
39040         * gst-libs/gst/play/play.old.c:
39041         * gst-libs/gst/play/play.old.h:
39042           after CVS surgery by moving, remove
39043         * gst-libs/gst/play/playpipelines.c:
39044           remove
39045
39046         * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
39047           add negotiation error
39048
39049 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
39050
39051         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
39052         (gst_ogg_demux_push):
39053           add some seeking debug info
39054           send a flush when seeking
39055
39056 2004-01-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39057
39058         * configure.ac:
39059           use AC_C_INLINE
39060         * configure.ac:
39061         * ext/Makefile.am:
39062         * ext/theora/Makefile.am:
39063         * ext/theora/theoradec.c:
39064           add theora video decoder. Does just do simple decoding for now and
39065           has been tested against Theora cvs only. It only works when theora
39066           is compiled with --enable-static.
39067         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
39068           always reset packetno on DISCONT
39069
39070 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39071
39072         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
39073           Fix audio.
39074
39075 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39076
39077         * gst/mpegaudioparse/gstmpegaudioparse.c:
39078         (mp3_type_frame_length_from_header):
39079           Fix header parsing - stolen from ffmpeg (thank you! :) ).
39080
39081 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39082
39083         * ext/esd/esdsink.c: (gst_esdsink_init):
39084           Since we have static pad template caps, we don't need to negotiate;
39085           either the core errors out or we know the format.
39086
39087 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39088
39089         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
39090         (gst_riff_read_seek):
39091         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
39092         (gst_ebml_read_seek):
39093           Fix event handling.
39094
39095 2004-01-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39096
39097         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
39098           removee video/x-theora from vp3 decoder, it doesn't handle raw
39099           theora streams
39100         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
39101           fix bug with finalizing element that never went to PAUSED
39102         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
39103           length and position queries were swapped
39104         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
39105         (vorbis_dec_from_granulepos), (vorbis_dec_src_query),
39106         (vorbis_dec_src_event):
39107           implement querying time and bytes
39108
39109 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
39110
39111         * just about every source file:
39112           gst_element_error -> GST_ELEMENT_ERROR
39113
39114 2004-01-29  Julien MOUTTE  <julien@moutte.net>
39115
39116         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get): Fixing seeking
39117         emiting FLUSH and even before DISCONT.
39118         * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): Fix seeking to
39119         get the best instant seeking as possible yay!
39120
39121 2004-01-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39122
39123         * gst/mpeg1videoparse/gstmp1videoparse.c:
39124         (gst_mp1videoparse_real_chain):
39125           Committed wrong version last week... Grr... Didn't notice until now.
39126
39127 2004-01-29  Julien MOUTTE <julien@moutte.net>
39128
39129         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new):
39130         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new): Emit the
39131         have_xwindow_id signal in xwindow_create.
39132
39133 2004-01-29  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39134
39135         * ext/ogg/gstoggdemux.c:
39136           lots of changes - mainly support for chained bitstreams, seeking,
39137           querying and bugfixes of course
39138         * ext/vorbis/Makefile.am:
39139         * ext/vorbis/vorbisdec.c:
39140         * ext/vorbis/vorbisdec.h:
39141           add vorbisdec raw vorbis decoder
39142         * ext/vorbis/vorbis.c: (plugin_init):
39143           register vorbisdec as PRIMARY, vorbisfile as SECONDARY
39144         * gst/intfloat/Makefile.am:
39145         * gst/intfloat/float22int.c:
39146         * gst/intfloat/float22int.h:
39147         * gst/intfloat/gstintfloatconvert.c: (plugin_init):
39148           add float2intnew plugin. It converts multichannel interleaved float to
39149           multichannel interleaved int. The name should probably be changed.
39150         * gst/typefind/gsttypefindfunctions.c: (theora_type_find),
39151         (plugin_init):
39152           add typefinding for raw theora video so oggdemux can detect it.
39153
39154 2004-01-28  Julien MOUTTE  <julien@moutte.net>
39155
39156         * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): seek on video
39157         sink element first.
39158         * gst/videoscale/gstvideoscale.c:
39159         (gst_videoscale_handle_src_event): Fixing src event handler.
39160
39161 2004-01-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39162
39163         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
39164         (gst_v4lsrc_open), (gst_v4lsrc_close),
39165         (gst_v4lsrc_palette_to_caps), (gst_v4lsrc_srcconnect),
39166         (gst_v4lsrc_getcaps), (gst_v4lsrc_set_clock):
39167         * sys/v4l/gstv4lsrc.h:
39168         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_start),
39169         (gst_v4lsrc_grab_frame), (gst_v4lsrc_capture_stop):
39170           Implement resizing... Hack. But that's why v4l is b0rked...
39171
39172 2004-01-28  Julien MOUTTE <julien@moutte.net>
39173
39174         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
39175         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
39176         (gst_ximagesink_ximage_put), (gst_ximagesink_xwindow_new),
39177         (gst_ximagesink_xwindow_destroy):
39178         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
39179         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
39180         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
39181         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_get_xv_support),
39182         (gst_xvimagesink_xcontext_get): Removing some useless debugs messages,
39183         correctly cleaning the image created to check xshm calls on succes,
39184         added a lot of XSync calls in X11 functions, and fixed a segfault when
39185         no image format was defined before negotiation happened.
39186
39187 2004-01-28  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39188
39189         * ext/alsa/gstalsa.c: (gst_alsa_query_func):
39190           use gst_element_get_time to get correct time
39191
39192 2004-01-28  Julien MOUTTE  <julien@moutte.net>
39193
39194         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
39195         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_destroy),
39196         (gst_ximagesink_xcontext_get), (gst_ximagesink_class_init):
39197         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xerror),
39198         (gst_xvimagesink_check_xshm_calls),
39199         (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xcontext_get): Our
39200         X plugins are now able to detect that XShm calls will fail even if the
39201         server claims that it has XShm support (remote displays most of the
39202         time). We then log the error as a GST_DEBUG and set use_shm to FALSE
39203         so that we use non XShm functions. This feature is almost useless for
39204         xvimagesink as Xv is not supported on remote displays anyway, but
39205         it might happen than even on the local display XShm calls fail.
39206
39207 2004-01-27  David Schleef  <ds@schleef.org>
39208
39209         * ext/esd/esdsink.c: (gst_esdsink_class_init), (gst_esdsink_init),
39210         (gst_esdsink_link), (gst_esdsink_get_time), (gst_esdsink_chain),
39211         (gst_esdsink_change_state):  Fix sync issues in esdsink.  Also
39212         changed esdsink to only use 44100,16,2, since esd sucks at rate
39213         conversion and esdsink has had difficulty negotiating.
39214
39215 2004-01-27  Julien MOUTTE <julien@moutte.net>
39216
39217         * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback),
39218         (gst_play_seek_to_time): Fixing the way to get current position.
39219
39220 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39221
39222         * sys/oss/gstosssink.c: (gst_osssink_sink_query):
39223           use gst_element_get_time to get correct time
39224
39225 2004-01-27  Julien MOUTTE <julien@moutte.net>
39226
39227         * gst-libs/gst/play/gstplay.c: (gst_play_set_location): The easiest
39228         fix ever... Inverting 2 lines of code make spider autoplug correctly
39229         tagged mp3 !
39230
39231 2004-01-27  David Schleef  <ds@schleef.org>
39232
39233         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
39234         Use gst_pad_try_set_caps_nonfixed().
39235
39236 2004-01-27  David Schleef  <ds@schleef.org>
39237
39238         * gst/ac3parse/gstac3parse.c: update to checklist 5
39239         * gst/adder/gstadder.c: rewrite negotiation.  update to checklist 5
39240         * gst/audioconvert/gstaudioconvert.c: update to checklist 5
39241         * gst/audioscale/gstaudioscale.c: same
39242         * gst/auparse/gstauparse.c: same
39243         * gst/avi/gstavidemux.c: same
39244
39245 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39246
39247         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
39248           stop processing after EOS
39249
39250 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39251
39252         * gst/asfdemux/asfheaders.h:
39253         * gst/asfdemux/gstasfdemux.c:
39254         * gst/asfdemux/gstasfmux.c: (gst_asfmux_put_guid),
39255         (gst_asfmux_put_string), (gst_asfmux_put_wav_header),
39256         (gst_asfmux_put_vid_header), (gst_asfmux_put_bmp_header):
39257           lot's of fixes to make data extraction simpler and get the code
39258           architecture and compiler independant. Add debugging category
39259         * gst/goom/gstgoom.c: (gst_goom_change_state):
39260           reset channel count on PAUSED=>READY, not READY=>PAUSED
39261
39262 2004-01-26  Colin Walters  <walters@verbum.org>
39263
39264         * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_get): Remove ugly
39265         code to pull a bigger buffer in iradio mode.  This as a side effect
39266         makes typefinding work.
39267
39268 2004-01-26  Jeremy Simon  <jesimon@libertysurf.fr>
39269
39270         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
39271         Fix SVQ3 decoding on PPC
39272
39273 2004-01-26  Julien MOUTTE <julien@moutte.net>
39274
39275         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain): Dunno how
39276         that one managed to stay there... Fixed.
39277
39278 2004-01-26  Jeremy Simon  <jesimon@libertysurf.fr>
39279
39280         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
39281         (gst_ffmpeg_caps_to_extradata), (gst_ffmpeg_caps_to_pixfmt):
39282         * gst/qtdemux/qtdemux.c: (plugin_init), (qtdemux_parse_trak),
39283         (qtdemux_video_caps):
39284         * gst/qtdemux/qtdemux.h:
39285         Add SVQ3 specific flags to qtdemux and ffmpeg
39286
39287 2004-01-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39288
39289         * gst-libs/gst/audio/audio.h:
39290           remove buffer-frames from audio caps
39291         * gst/audioconvert/gstaudioconvert.c:
39292           fix plugin to really work.
39293
39294 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39295
39296         * gst-libs/gst/mixer/mixer.c:
39297         * gst-libs/gst/propertyprobe/propertyprobe.c:
39298         * gst-libs/gst/tuner/tuner.c: (gst_tuner_find_norm_by_name),
39299         (gst_tuner_find_channel_by_name):
39300         * gst-libs/gst/tuner/tuner.h:
39301           Add gtk-doc style comments. Also fix a function name.
39302
39303 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39304
39305         * ext/divx/gstdivxdec.c: (gst_divxdec_init),
39306         (gst_divxdec_negotiate):
39307           Fix for new capsnego - also fixes gst-player with divxdec.
39308
39309 2004-01-25  Julien MOUTTE  <julien@moutte.net>
39310
39311         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
39312         (gst_play_identity_handoff), (gst_play_set_location),
39313         (gst_play_set_visualization), (gst_play_connect_visualization): Another
39314         try in visualization implementation. Still have an issue with switch
39315         blocking when pulling from video_queue and only audio comes out of
39316         spider.
39317         * gst/switch/gstswitch.c: (gst_switch_release_pad),
39318         (gst_switch_poll_sinkpads), (gst_switch_class_init): Implementing pad
39319         release method. And check if the pad is usable before pulling.
39320
39321 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39322
39323         * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose),
39324         (gst_videobalance_init),
39325         (gst_videobalance_colorbalance_list_channels),
39326         (gst_videobalance_colorbalance_set_value),
39327         (gst_videobalance_colorbalance_get_value),
39328         (gst_videobalance_update_properties),
39329         (gst_videobalance_update_tables_planar411),
39330         (gst_videobalance_planar411):
39331         * gst/videofilter/gstvideobalance.h:
39332           Implement lookup-tables. +/- 10x faster.
39333
39334 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39335
39336         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
39337         (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
39338           The index reading was broken. The rest worked fine, but the whole
39339           goal of my rewrite was to make avidemux readable, and this was
39340           not at all readable. Please use typed variables.
39341
39342 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39343
39344         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
39345           Additional pad usability check.
39346         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
39347         (mp1videoparse_find_next_gop), (gst_mp1videoparse_time_code),
39348         (gst_mp1videoparse_real_chain):
39349           Fix MPEG video stream parsing. The original plugin had several
39350           issues, including not timestamping streams where the source was
39351           not timestamped (this happens with PTS values in mpeg system
39352           streams, but MPEG video is also a valid stream on its own so
39353           that needs timestamps too). We use the display time code for that
39354           for now. Also, if one incoming buffer contains multiple valid
39355           frames, we push them all on correctly now, including proper EOS
39356           handling. Lastly, several potential segfaults were fixed, and we
39357           properly sync on new sequence/gop headers to include them in next,
39358           not previous frames (since they're header for the next frame, not
39359           the previous). Also see #119206.
39360         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain),
39361         (bpf_from_header):
39362           Move caps setting so we only do it after finding several valid
39363           MPEG-1 fraes sequentially, not right after the first one (which
39364           might be coincidental).
39365         * gst/typefind/gsttypefindfunctions.c: (mpeg1_sys_type_find),
39366         (mpeg_video_type_find), (mpeg_video_stream_type_find),
39367         (plugin_init):
39368           Add unsynced MPEG video stream typefinding, and change some
39369           probability values so we detect streams rightly. The idea is as
39370           follows: I can have an unsynced system stream which contains
39371           video. In the current code, I would randomly get a type for either
39372           system or video stream type found, because the probabilities are
39373           being calculated rather randomly. I now use fixed values, so we
39374           always prefer system stream if that was found (and that is how it
39375           should be). If no system stream was found, we can still identity                the stream as video-only.
39376
39377 2004-01-23  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39378
39379         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
39380         (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
39381           don't write to buffer. Extract data without the need of
39382           __attribute__ ((packed))
39383
39384 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39385
39386         * gst/typefind/gsttypefindfunctions.c: (mpeg1_parse_header),
39387         (mpeg1_sys_type_find):
39388           Fix MPEG-1 stream typefinding.
39389
39390 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39391
39392         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
39393           Fix typefinding for MPEG-1 system streams, similar to MPEG-2.
39394
39395 2004-01-23  Thomas Vander Stichele  <thomas at apestaart dot org>
39396
39397         * ext/esd/esdsink.c: (gst_esdsink_open_audio):
39398         * ext/esd/gstesd.c: (plugin_init):
39399           private debugging, better error reporting
39400
39401 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39402
39403         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
39404         (gst_riff_read_init), (gst_riff_read_change_state):
39405         * gst-libs/gst/riff/riff-read.h:
39406           Remove stuff fromold metadata system.
39407
39408 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39409
39410         * ext/ogg/gstoggdemux.c:
39411           Fix wrong file comment.
39412         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
39413         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header):
39414           Add metadata reading properly.
39415
39416 2004-01-23  Thomas Vander Stichele  <thomas at apestaart dot org>
39417
39418         * ext/Makefile.am:
39419           Fix nas DIST_SUBDIRS
39420           Uraeus:
39421           Fix bug where make distcheck doesn't get run on adding stuff to
39422           the build.
39423
39424 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39425
39426         * ext/divx/gstdivxdec.c: (gst_divxdec_init), (gst_divxdec_setup):
39427         * ext/divx/gstdivxdec.h:
39428           Fix divx3 ("msmpeg4") playback using divxdec.
39429
39430 2004-01-23  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39431
39432         * gst/typefind/gsttypefindfunctions.c:
39433         (mp3_type_frame_length_from_header): fix bug in length computation
39434         (mp3_type_find): improve debugging output
39435
39436 2004-01-23  Julien MOUTTE  <julien@moutte.net>
39437
39438         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
39439         (gst_play_set_location), (gst_play_seek_to_time),
39440         (gst_play_set_audio_sink), (gst_play_set_visualization),
39441         (gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
39442         the pipeline from scratch. Visualization is back and switch went out as
39443         i realized it was not possible to use the way i wanted.
39444         * sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
39445         (gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
39446         clearing in state change from READY to NULL. So that one can clean the
39447         X ressources keeping the element.
39448         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
39449         (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
39450         (gst_xvimagesink_colorbalance_set_value),
39451         (gst_xvimagesink_colorbalance_get_value),
39452         (gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
39453         (gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
39454         change from READY to NULL and fixed some stupid bugs in colorbalance
39455         get/set values. Also added the following feature : when nobody tries to
39456         set some values to the colorbalance levels before the xcontext is
39457         grabbed, then when creating channels list from Xv attributes we set the
39458         internal values to the Xv defaults. This way we handle buggy Xv drivers
39459         that set default hue values far from the middle of the range (Thanks
39460         to Jon Trowbridge for pointing that issue).
39461         * sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
39462         colorbalance levels have been set before xcontext is grabbed.
39463
39464 2004-01-22  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39465
39466         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
39467           Fix the ossmixer case where we shouldn't open /dev/dsp* because
39468           it might block operations (which is bad for a mixer).
39469
39470 2004-01-22  Thomas Vander Stichele  <thomas at apestaart dot org>
39471
39472         * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
39473         (deep_notify_callback), (gmi_set_decoder), (gmi_clear_decoder),
39474         (gmip_find_type_pre):
39475         * gst-libs/gst/media-info/media-info-priv.h:
39476         * gst-libs/gst/media-info/media-info.c:
39477         (gst_media_info_instance_init), (gst_media_info_read_idler):
39478         add fakesink to get caps on decoder src pad again
39479         fix callback prototype to match new have_type signal signature
39480
39481 2004-01-22  Thomas Vander Stichele  <thomas at apestaart dot org>
39482
39483         * gst/adder/gstadder.c: (gst_adder_link):
39484           fix non-compile and cut-n-paste code
39485
39486 2004-01-21  David Schleef  <ds@schleef.org>
39487
39488         * ext/swfdec/gstswfdec.c: (gst_swfdec_video_getcaps),
39489         (gst_swfdec_video_link), (copy_image), (gst_swfdec_loop),
39490         (gst_swfdec_init), (gst_swfdec_change_state):
39491         * ext/swfdec/gstswfdec.h:
39492         Fix negotiation.
39493         * gst/adder/gstadder.c: (gst_adder_link), (gst_adder_init),
39494         (gst_adder_request_new_pad): Fix negotiation.
39495         * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_fixate):
39496         Add a fixate function.
39497         * gst/intfloat/gstfloat2int.c:
39498         * gst/intfloat/gstfloat2int.h:
39499         * gst/intfloat/gstint2float.c:
39500         * gst/intfloat/gstint2float.h:
39501         Completely rewrite the negotiation.  Doesn't quite work yet,
39502         due to some buffer-frames problem.
39503
39504 2004-01-21  Thomas Vander Stichele  <thomas at apestaart dot org>
39505
39506         * ext/gnomevfs/gstgnomevfssrc.c:
39507         * sys/v4l2/v4l2_calls.h:
39508           fix includes for distcheck
39509
39510 2004-01-21  Christian Schaller <uraeus@gnome.org>
39511
39512         * ext/nas/
39513         Add libnas (network audio system) plugin, patch from Arwed von Merkatz
39514         based on earlier patch from Laurent Vivier
39515
39516 2004-01-20  Jeremy Simon  <jesimon@libertysurf.fr>
39517
39518         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
39519         Fix wma caps property
39520         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
39521         Fix typo (flags1 and flags2)
39522
39523 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
39524
39525         * gst-libs/gst/media-info/media-info-priv.c:
39526         (deep_notify_callback), (gmi_seek_to_track), (gmi_get_decoder),
39527         (gmip_find_type_pre), (gmip_find_type), (gmip_find_stream_post),
39528         (gmip_find_stream), (gmip_find_track_metadata),
39529         (gmip_find_track_streaminfo_post), (gmip_find_track_streaminfo),
39530         (gmip_find_track_format):
39531         * gst-libs/gst/media-info/media-info-priv.h:
39532         * gst-libs/gst/media-info/media-info-test.c: (main):
39533         * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
39534         (gst_media_info_read_idler), (gst_media_info_read):
39535         * gst-libs/gst/media-info/media-info.h:
39536           register debugging category and use it for debugging
39537
39538 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
39539
39540         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_update_streaminfo),
39541         (gst_vorbisfile_new_link):
39542           signal streaminfo through tags
39543
39544 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39545
39546         * ext/mplex/gstmplex.cc:
39547         * ext/mplex/gstmplexibitstream.cc:
39548           g++ doesn't like NULL in our i18n/error macros, should be
39549           either (NULL) or ("").
39550
39551 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39552
39553         * sys/dxr3/dxr3audiosink.c:
39554         * sys/dxr3/dxr3init.c:
39555         * sys/dxr3/dxr3spusink.c: (dxr3spusink_close):
39556         * sys/dxr3/dxr3videosink.c: (dxr3videosink_close):
39557           Fix more error error error errors (missing includes here).
39558
39559 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39560
39561         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
39562           fix thomas' error errors.
39563
39564 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
39565
39566         * ext/mpeg2enc/gstmpeg2enc.cc:
39567           fix error errors.
39568
39569 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39570
39571         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
39572         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
39573           Fix for new error system.
39574
39575 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
39576
39577         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
39578           fix for new error reporting
39579
39580 2004-01-20  David Schleef  <ds@schleef.org>
39581
39582         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
39583         (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
39584         (gst_ximagesink_set_xwindow_id): Change to using a framerate
39585         of [1,100] instead of [0,MAX], since 0 isn't handled correctly,
39586         and neither is 100+, most likely.
39587         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
39588         (gst_xvimagesink_getcaps): same
39589
39590 2004-01-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39591
39592         * configure.ac:
39593           Up version requirement to 2.0.3 (not yet released) to avoid symbol
39594           clashes with ffmpeg.
39595
39596 2004-01-20  Julien MOUTTE  <julien@moutte.net>
39597
39598         * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
39599         (gst_switch_init): Fixed switch element : proxying link and setting
39600         caps from src to sink on request.
39601
39602 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
39603
39604         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
39605         * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
39606         (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
39607         fix element_error
39608
39609 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
39610
39611         * sys/v4l/v4l_calls.h:
39612         * sys/v4l2/v4l2_calls.h:
39613           element_error fixes
39614
39615 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
39616
39617         * gst-libs/gst/gst-i18n-plugin.h:
39618           add locale.h
39619           remove config.h inclusion
39620
39621 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
39622
39623         * autogen.sh:
39624           adding autopoint invocation
39625         * Makefile.am:
39626         * configure.ac:
39627         * gst-libs/gst/gettext.h:
39628           adding gettext bits
39629         * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
39630         * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
39631         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
39632         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
39633         (gst_gnomevfssink_close_file):
39634         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_open_file):
39635         * ext/sndfile/gstsf.c: (gst_sf_loop), (plugin_init):
39636         * gst-libs/gst/gst-i18n-plugin.h:
39637         * gst/avi/gstavi.c: (plugin_init):
39638         * sys/dxr3/dxr3init.c: (plugin_init):
39639         * sys/dxr3/dxr3videosink.c: (dxr3videosink_write_data):
39640         * sys/oss/gstossaudio.c: (plugin_init):
39641         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
39642         * sys/v4l/gstv4l.c: (plugin_init):
39643         * sys/v4l/v4l_calls.c: (gst_v4l_open):
39644         * sys/v4l2/gstv4l2.c: (plugin_init):
39645         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
39646         (gst_v4l2_fill_lists), (gst_v4l2_get_norm), (gst_v4l2_set_norm),
39647         (gst_v4l2_get_input), (gst_v4l2_set_input), (gst_v4l2_get_output),
39648         (gst_v4l2_set_output), (gst_v4l2_get_frequency),
39649         (gst_v4l2_set_frequency), (gst_v4l2_signal_strength),
39650         (gst_v4l2_get_attribute), (gst_v4l2_set_attribute):
39651           make sure locale and translation domain are set
39652           fix translated strings
39653         * po/.cvsignore:
39654         * po/LINGUAS:
39655         * po/Makevars:
39656         * po/POTFILES.in:
39657         * po/nl.po:
39658           put translation files into place
39659         * sys/xvideo/imagetest.c: (main):
39660         * ext/dv/demo-play.c: (main):
39661           fix unnecessary translations
39662
39663 2004-01-19  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
39664
39665         * ext/sndfile/gstsf.c:
39666         * gst/avi/gstavimux.c:
39667         * ext/audiofile/gstafsink.c:
39668         * ext/audiofile/gstafsrc.c:
39669         * ext/gnomevfs/gstgnomevfssink.c:
39670         * ext/gnomevfs/gstgnomevfssrc.c:
39671         * sys/oss/gstosselement.c:
39672         * sys/v4l/v4l_calls.h:
39673           fix i18n include
39674
39675 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
39676
39677         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
39678         (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
39679         (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
39680         (gst_v4l2_get_output), (gst_v4l2_set_output),
39681         (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
39682         (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
39683         (gst_v4l2_set_attribute):
39684         update to new error handling
39685
39686 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
39687
39688         * ext/sidplay/gstsiddec.cc:
39689         * gst/modplug/gstmodplug.cc:
39690           parenthese NULL because C++ seems angry about it
39691
39692 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
39693
39694         * gst-libs/gst/gst-i18n-plugin.h:
39695           add skeleton i18n stuff, but needs to be further implemented
39696
39697 2004-01-18  Thomas Vander Stichele  <thomas at apestaart dot org>
39698
39699         * examples/gstplay/player.c: (main):
39700         * ext/aalib/gstaasink.c: (gst_aasink_open):
39701         * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
39702         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
39703         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
39704         * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
39705         (gst_afsink_close_file):
39706         * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
39707         (gst_afsrc_close_file):
39708         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
39709         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
39710         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
39711         * ext/esd/esdmon.c: (gst_esdmon_get):
39712         * ext/esd/esdsink.c: (gst_esdsink_chain):
39713         * ext/faac/gstfaac.c: (gst_faac_chain):
39714         * ext/faad/gstfaad.c: (gst_faad_chain):
39715         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
39716         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
39717         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
39718         * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
39719         (gst_flacdec_loop):
39720         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
39721         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
39722         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
39723         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
39724         (gst_gnomevfssink_close_file):
39725         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
39726         (gst_gnomevfssrc_open_file):
39727         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
39728         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
39729         * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
39730         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
39731         (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
39732         * ext/mad/gstmad.c: (gst_mad_chain):
39733         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
39734         * ext/mpeg2dec/gstmpeg2dec.c:
39735         * ext/mpeg2enc/gstmpeg2enc.cc:
39736         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
39737         * ext/mplex/gstmplex.cc:
39738         * ext/mplex/gstmplexibitstream.cc:
39739         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
39740         (gst_ogg_demux_push), (gst_ogg_pad_push):
39741         * ext/raw1394/gstdv1394src.c:
39742         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
39743         (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
39744         * ext/sidplay/gstsiddec.cc:
39745         * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
39746         (gst_sf_loop):
39747         * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
39748         * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
39749         * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
39750         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
39751         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
39752         * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
39753         * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
39754         * gst-libs/gst/Makefile.am:
39755         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
39756         (gst_riff_read_element_data), (gst_riff_read_seek),
39757         (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
39758         * gst/adder/gstadder.c: (gst_adder_parse_caps), (gst_adder_loop):
39759         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
39760         (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
39761         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
39762         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
39763         * gst/avi/gstavimux.c: (gst_avimux_stop_file):
39764         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
39765         * gst/goom/gstgoom.c: (gst_goom_chain):
39766         * gst/id3/gstid3types.c: (gst_id3types_loop):
39767         * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
39768         * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
39769         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
39770         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
39771         (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
39772         (gst_ebml_read_float), (gst_ebml_read_header):
39773         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
39774         (gst_matroska_demux_parse_blockgroup):
39775         * gst/modplug/gstmodplug.cc:
39776         * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
39777         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
39778         * gst/oneton/gstoneton.c: (gst_oneton_chain):
39779         * gst/silence/gstsilence.c: (gst_silence_get):
39780         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
39781         * gst/smpte/gstsmpte.c: (gst_smpte_loop):
39782         * gst/speed/gstspeed.c: (speed_loop):
39783         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
39784         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
39785         * gst/volenv/gstvolenv.c: (gst_volenv_chain):
39786         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
39787         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
39788         (gst_wavparse_loop):
39789         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
39790         (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
39791         (dxr3audiosink_close):
39792         * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
39793         * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
39794         (dxr3videosink_close), (dxr3videosink_write_data):
39795         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
39796         * sys/oss/gstosselement.h:
39797         * sys/oss/gstosssink.c: (gst_osssink_get_type), (gst_osssink_init),
39798         (gst_osssink_chain):
39799         * sys/oss/gstosssrc.c: (gst_osssrc_get):
39800         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
39801         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
39802         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
39803         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_window),
39804         (gst_v4l_enable_overlay):
39805         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
39806         (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
39807         (gst_v4l_get_frequency), (gst_v4l_set_frequency),
39808         (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
39809         (gst_v4l_set_audio):
39810         * sys/v4l/v4l_calls.h:
39811         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
39812         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
39813         (gst_v4lmjpegsink_playback_init),
39814         (gst_v4lmjpegsink_playback_start):
39815         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
39816         (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_capture),
39817         (gst_v4lmjpegsrc_set_capture_m), (gst_v4lmjpegsrc_capture_init),
39818         (gst_v4lmjpegsrc_requeue_frame):
39819         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
39820         (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
39821         (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
39822         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
39823         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
39824         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
39825         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
39826         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
39827         (gst_v4l2src_capture_stop):
39828         * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
39829         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
39830         (gst_ximagesink_chain):
39831         * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
39832         (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
39833         (gst_xvideosink_xwindow_new):
39834         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
39835         (gst_xvimagesink_chain):
39836         use new error signal, function and categories
39837
39838 2004-01-18  Jeremy Simon <jesimon@libertysurf.fr>
39839
39840         * configure.ac:
39841         * ext/Makefile.am:
39842         * ext/musicbrainz/gsttrm.c:
39843         * ext/musicbrainz/gsttrm.h:
39844         * ext/musicbrainz/Makefile.am:
39845         Add a trm plugin
39846
39847 2004-01-18  Julien MOUTTE  <julien@moutte.net>
39848
39849         * sys/ximage/ximagesink.c: (gst_ximagesink_set_property),
39850         (gst_ximagesink_get_property), (gst_ximagesink_class_init): Adding
39851         synchronous property for debugging.
39852         * sys/ximage/ximagesink.h: Adding the synchronous boolean flag.
39853         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
39854         (gst_xvimagesink_set_property): Moving a pointer declaration to a
39855         smaller block, fixing indent.
39856
39857 2004-01-16  David Schleef  <ds@schleef.org>
39858
39859         * gst/videofilter/gstvideobalance.c: Fix regression; changing a
39860         property affects the video stream.
39861         * sys/xvimage/xvimagesink.c:
39862         * sys/xvimage/xvimagesink.h:
39863         Add synchronous property for debugging.  Should probably be
39864         disabled in non-CVS builds.  Make sure that the Xv attribute
39865         exists before we set it (crash!).  Fix a silly float bug that
39866         caused colorbalance to just not work.
39867
39868 2004-01-17  Christian Schaller <Uraeus@gnome.org>
39869
39870         * tools/gst-launch-ext.in - update for new plugins
39871
39872 2004-01-16  David Schleef  <ds@schleef.org>
39873
39874         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect): Fix use of
39875         already-freed caps.
39876
39877 2994-01-16  Christian Schaller <Uraeus@gnome.org>
39878
39879         * Update spec for new colorspace plugin and libcaca plugin
39880         * Fix compilation of libcaca plugin (clock -> id)
39881
39882 2004-01-16  Julien MOUTTE <julien@moutte.net>
39883
39884         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_update_colorbalance),
39885         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
39886         (gst_xvimagesink_set_xwindow_id),
39887         (gst_xvimagesink_colorbalance_set_value),
39888         (gst_xvimagesink_colorbalance_get_value),
39889         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
39890         (gst_xvimagesink_init), (gst_xvimagesink_class_init): Implementing
39891         correct colorbalance properties. They can now be set when the element
39892         is still in NULL state. The values will be committed to the Xv Port
39893         when xcontext is initialized.
39894         * sys/xvimage/xvimagesink.h: Added hue, saturation, contrast,
39895         brightness int values in the GstXvImagesink structure.
39896
39897 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39898
39899         * gst-libs/gst/Makefile.am:
39900           restructure so having local patches works easier.
39901
39902 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39903
39904         * ext/mpeg2enc/Makefile.am:
39905         * ext/mpeg2enc/gstmpeg2enc.cc:
39906         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
39907           Bugfix with respect to EOS handling.
39908
39909 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39910
39911         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
39912           Link with right caps (else, it segfaults).
39913         * ext/mplex/gstmplexjob.cc:
39914           Fix for slight API change in 1.6.1.93 release of mjpegtools.
39915
39916 2004-01-15  David Schleef  <ds@schleef.org>
39917
39918         * gst-libs/gst/audio/Makefile.am:
39919         Add gstaudiofiltertemplate.c and building of gstaudiofilterexample.c
39920         from the template.
39921         * gst-libs/gst/audio/gstaudiofilter.c:
39922         * gst-libs/gst/audio/gstaudiofilter.h:
39923         Add bytes_per_sample and size and n_samples calculation.
39924         * gst-libs/gst/audio/gstaudiofilterexample.c:
39925         Remove, now autogenerated.
39926         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
39927         Moved from gstaudiofilterexample, object name changed, code added
39928         so that it actually works.
39929         * gst-libs/gst/audio/make_filter:
39930         Script to build an audiofilter subclass from the template.
39931         * gst/colorspace/Makefile.am:
39932         * gst/colorspace/yuv2yuv.c:
39933         Remove file, since it's GPL, and we don't use it.
39934
39935 2004-01-15  Julien MOUTTE  <julien@moutte.net>
39936
39937         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
39938         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Making both of
39939         them use the buffer free function to test how the buffer was allocated.
39940
39941 2004-01-15  David Schleef  <ds@schleef.org>
39942
39943         * ext/esd/esdsink.c: (gst_esdsink_class_init): Remove property
39944         that handles osssink fallback.
39945         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
39946         (gst_audio_convert_getcaps):
39947         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
39948         Add audio/x-qdm2 for QDM2 audio.
39949         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
39950         * gst/sine/gstsinesrc.h: Add example of how to implement tags.
39951         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
39952         Decrease minimum size to 16x16.
39953         * gst/wavparse/gstwavparse.c:
39954         Convert disabled pad template caps to new caps.
39955         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
39956         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
39957         (gst_xvimagesink_chain): Throw element error when display cannot
39958         be opened.  Increase minimum framerate to 1.0.  Check the data
39959         free function on a buffer to make sure it is the type we expect
39960         before manipulating it.
39961
39962 2004-01-15  Julien MOUTTE <julien@moutte.net>
39963
39964         * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
39965         (gst_videobalance_colorbalance_set_value): Implement passthru if
39966         settings are in the middle.
39967         * tools/gst-launch-ext.in: Stop using xvideosink, use ximagesink.
39968
39969 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39970
39971         * gst/videofilter/Makefile.am:
39972         * gst/volume/Makefile.am:
39973           Since we use videofilter symbols, link to it.
39974
39975 2004-01-15  Julien MOUTTE <julien@moutte.net>
39976
39977         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init): Setting
39978         mixer interface type to HARDWARE.
39979         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init): Adding a default
39980         type to SOFTWARE.
39981         * gst-libs/gst/mixer/mixer.h: Adding mixer interface type and macro.
39982         * gst-libs/gst/mixer/mixertrack.h: Adding mixertrack flag SOFTWARE.
39983         * gst/volume/gstvolume.c: (gst_volume_interface_supported),
39984         (gst_volume_interface_init), (gst_volume_list_tracks),
39985         (gst_volume_set_volume), (gst_volume_get_volume),
39986         (gst_volume_set_mute), (gst_volume_mixer_init),
39987         (gst_volume_dispose), (gst_volume_get_type), (volume_class_init),
39988         (volume_init): Implementing mixer interface.
39989         * gst/volume/gstvolume.h: Adding tracklist for mixer interface.
39990         * sys/oss/gstosselement.c: (gst_osselement_get_type),
39991         (gst_osselement_change_state): Removing some trailing commas in
39992         structures.
39993         * sys/oss/gstossmixer.c: (gst_ossmixer_interface_init): Setting mixer
39994         interface type to HARDWARE.
39995         * sys/v4l/gstv4lcolorbalance.c:
39996         (gst_v4l_color_balance_interface_init): Setting colorbalance interface
39997         type to HARDWARE.
39998         * sys/v4l2/gstv4l2colorbalance.c:
39999         (gst_v4l2_color_balance_interface_init): Setting colorbalance
40000         interface type to HARDWARE.
40001         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): use exactly the
40002         same code than ximagesink for event handling.
40003
40004 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40005
40006         * ext/snapshot/Makefile.am:
40007         * ext/snapshot/gstsnapshot.c: (gst_snapshot_sinkconnect),
40008         (gst_snapshot_chain):
40009         * ext/snapshot/gstsnapshot.h:
40010           This has to be a joke... Snapshot should be connected to a tee,
40011           colorspace element before it and EOS after that, where the other
40012           src of the tee receives normal data.
40013           The current way is *wrong*.
40014
40015 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40016
40017         * ext/hermes/gsthermescolorspace.c:
40018           Fix another compile error. Same as below.
40019
40020 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40021
40022         * gst/colorspace/gstcolorspace.c:
40023         * gst/colorspace/yuv2yuv.c: (gst_colorspace_yuy2_to_i420),
40024         (gst_colorspace_i420_to_yv12):
40025           Fix compiling... Didn't test if it actually works.
40026
40027 2004-01-15  David Schleef  <ds@schleef.org>
40028
40029         * configure.ac:
40030         * gst/colorspace/Makefile.am:
40031         * gst/colorspace/gstcolorspace.c:
40032         * gst/colorspace/gstcolorspace.h:
40033         * gst/colorspace/yuv2rgb.c:
40034         * gst/colorspace/yuv2rgb.h:
40035         Duplicate the ext/hermes colorspace plugin, and remove Hermes
40036         code and GPL code.  Fix for new caps negotiation.  Rewrite
40037         much of the format handling code, and some of the conversion
40038         code.  Basically, rewrote almost everything.  This element
40039         handles I420, YV12 to RGB conversions.
40040         * ext/hermes/Makefile.am:
40041         * ext/hermes/gsthermescolorspace.c:
40042         Rename colorspace to hermescolorspace.  Fix negotiation issues.
40043         Remove non-Hermes related code.  This element handles lots of
40044         RGB to RGB conversions, but no YUV.
40045         * ext/hermes/gstcolorspace.c:
40046         * ext/hermes/gstcolorspace.h:
40047         * ext/hermes/rgb2yuv.c:
40048         * ext/hermes/yuv2rgb.c:
40049         * ext/hermes/yuv2rgb.h:
40050         * ext/hermes/yuv2rgb_mmx16.s:
40051         * ext/hermes/yuv2yuv.c:
40052         * ext/hermes/yuv2yuv.h:
40053         Remove old code.
40054
40055 2004-01-14  Colin Walters  <walters@verbum.org>
40056
40057         * ext/mad/gstid3tag.c (gst_id3_tag_chain): Don't nego caps if
40058         they've already been.
40059
40060 2004-01-15  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40061
40062         * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
40063           assume tag mode when pad is not connected
40064
40065 2004-01-15  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40066
40067         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
40068           Don't update the time of the clock
40069         (gst_alsa_sink_loop):
40070           sync to the clock given to alsasink, not the own clock
40071         * sys/oss/gstosssink.c: (gst_osssink_chain):
40072           sync to the clock
40073         (gst_osssink_change_state):
40074           activate the clock
40075         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
40076         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
40077           remove bogus code that made DISCONT events unhandled
40078         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
40079           explicitly case to double in _set_simple. (fixes 2nd warning in bug
40080           #131502)
40081         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_read_object_header),
40082         (gst_asf_demux_handle_sink_event), (gst_asf_demux_audio_caps),
40083         (gst_asf_demux_add_audio_stream), (gst_asf_demux_video_caps):
40084           convert g_warning because of wrong asf data to GST_WARNINGs (fixes
40085           2nd warning in bug #131502)
40086
40087 2004-01-14  Julien MOUTTE  <julien@moutte.net>
40088
40089         * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
40090         (gst_videobalance_colorbalance_set_value),
40091         (gst_videobalance_colorbalance_get_value): Fixing videobalance ranges
40092         for colorbalance interface implementation.
40093         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
40094         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
40095         (gst_ximagesink_dispose), (gst_ximagesink_init),
40096         (gst_ximagesink_class_init): Adding DISPLAY property.
40097         * sys/ximage/ximagesink.h: Adding display_name to store display.
40098         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
40099         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
40100         (gst_xvimagesink_dispose), (gst_xvimagesink_init),
40101         (gst_xvimagesink_class_init): Adding DISPLAY property and colorbalance
40102         properties (they still need polishing though for gst-launch use : no
40103         xcontext yet, i ll do that tomorrow).
40104         * sys/xvimage/xvimagesink.h: Adding display_name to store display.
40105
40106 2004-01-14  Julien MOUTTE  <julien@moutte.net>
40107
40108         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
40109         (gst_play_set_location), (gst_play_set_visualization): Preparing
40110         switch integration, adding videobalance in the pipeline.
40111
40112 2004-01-14  Julien MOUTTE <julien@moutte.net>
40113
40114         * gst-libs/gst/colorbalance/colorbalance.c:
40115         (gst_color_balance_class_init): Adding a default type.
40116         * gst-libs/gst/colorbalance/colorbalance.h: Adding a macro to access
40117         the type.
40118         * gst/videofilter/gstvideobalance.c: (gst_videobalance_get_type),
40119         (gst_videobalance_dispose), (gst_videobalance_class_init),
40120         (gst_videobalance_init), (gst_videobalance_interface_supported),
40121         (gst_videobalance_interface_init),
40122         (gst_videobalance_colorbalance_list_channels),
40123         (gst_videobalance_colorbalance_set_value),
40124         (gst_videobalance_colorbalance_get_value),
40125         (gst_videobalance_colorbalance_init): Implementing colorbalance
40126         interface.
40127         * gst/videofilter/gstvideobalance.h: Adding colorbalance channels
40128         list.
40129         * sys/ximage/ximagesink.c: (gst_ximagesink_set_xwindow_id): Fixing a
40130         bug which was triggering a BadAccess X error when setting an overlay
40131         before pad was really negotiated.
40132         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_colorbalance_init):
40133         Using the colorbalance type macro.
40134
40135 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40136
40137         * ext/flac/gstflacenc.c: (gst_flacenc_set_metadata),
40138         (gst_flacenc_chain):
40139           handle tags correctly
40140         * gst/tags/gstid3tag.c: (gst_tag_list_new_from_id3v1):
40141           extract ID3v1 tags correctly
40142
40143 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40144
40145         * gst/typefind/gsttypefindfunctions.c: (matroska_type_find),
40146         (plugin_init):
40147           Improve matroska typefinding for odd-typed headers...
40148
40149 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40150
40151         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
40152           Fix for using incremental number on padnames.
40153
40154 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40155
40156         * ext/divx/gstdivxdec.c:
40157         * ext/divx/gstdivxenc.c:
40158           Set category to divx4linux instead of divx (too generic).
40159         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
40160         (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
40161         (gst_wavparse_loop), (gst_wavparse_change_state):
40162         * gst/wavparse/gstwavparse.h:
40163           fix parsing of WAV files with non-standard fmt-tag size and fix
40164           skipping of unrecognized chunks... Someone please fix this thing
40165           to use rifflib so all this is automated.
40166         * sys/v4l/Makefile.am:
40167         * sys/v4l2/Makefile.am:
40168           Add X_CFLAGS because we depend on X (for overlay).
40169
40170 2004-01-14  Jan Schmidt  <thaytan@mad.scientist.com>
40171
40172         * ext/mpeg2dec/gstmpeg2dec.c:
40173           Don't issue a timestamp unless we tagged the frame
40174           with a PTS.
40175
40176 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40177
40178         * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback):
40179           Query the audio element to get the time, not the clock. We're
40180           interested in the element's time here.
40181
40182 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40183
40184         * ext/aalib/gstaasink.c: (gst_aasink_chain):
40185         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
40186         * ext/esd/esdsink.c: (gst_esdsink_chain):
40187         * ext/libcaca/gstcacasink.c: (gst_cacasink_chain):
40188         * ext/mas/massink.c: (gst_massink_chain):
40189         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_chain):
40190         * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_index),
40191         (gst_matroska_demux_parse_metadata):
40192         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop),
40193         (gst_mpeg_parse_release_locks):
40194         * gst/tcp/gsttcpsink.c: (gst_tcpsink_chain):
40195         * gst/udp/gstudpsink.c: (gst_udpsink_chain):
40196         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
40197         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
40198         (gst_osssink_change_state):
40199         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
40200         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
40201         * sys/xvideo/xvideosink.c: (gst_xvideosink_chain),
40202         (gst_xvideosink_release_locks):
40203         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
40204           use element time.
40205         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_start),
40206         (gst_alsa_clock_stop):
40207         * gst-libs/gst/audio/audioclock.c: (gst_audio_clock_set_active),
40208         (gst_audio_clock_get_internal_time):
40209           simplify for use with new clocking code.
40210         * testsuite/alsa/Makefile.am:
40211         * testsuite/alsa/sinesrc.c: (sinesrc_init), (sinesrc_force_caps):
40212           fix testsuite for new caps system
40213
40214 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40215
40216         * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
40217         * ext/flac/gstflacenc.c: (add_one_tag):
40218           length is already host endian, no need to convert. Fixes playback of
40219           tagged files on PPC. (bug #128384)
40220
40221 2004-01-13  Julien MOUTTE <julien@moutte.net>
40222
40223         * gst-libs/gst/colorbalance/colorbalance.h: Adding a type to the
40224         colorbalance interface stating if it is hardware based or software
40225         based.
40226         * gst/videofilter/gstvideobalance.c: (gst_videobalance_planar411):
40227         Removing a trailing comma.
40228         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
40229         (gst_xvimagesink_colorbalance_init): Integrating a patch from Jon
40230         Trowbridge <trow@ximian.com> querying Xv adaptor for min/max value as
40231         the documentation seems to be wrong on the -1000 to 1000 interval.
40232
40233 2004-01-12  David Schleef  <ds@schleef.org>
40234
40235         * gst/debug/efence.c: (gst_efence_init), (gst_efence_chain),
40236         (gst_efence_buffer_alloc), (gst_fenced_buffer_new),
40237         (gst_fenced_buffer_default_free), (gst_fenced_buffer_default_copy):
40238         Fix negotiation.  Add a bufferalloc function for the sink pad,
40239         and generally clean up some of the code.
40240
40241 2004-01-12  Julien MOUTTE <julien@moutte.net>
40242
40243         * gst-libs/gst/colorbalance/colorbalancechannel.c:
40244         (gst_color_balance_channel_dispose): Adding safety check in dispose
40245         method.
40246         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
40247         (gst_xvimagesink_xcontext_clear),
40248         (gst_xvimagesink_interface_supported),
40249         (gst_xvimagesink_colorbalance_list_channels),
40250         (gst_xvimagesink_colorbalance_set_value),
40251         (gst_xvimagesink_colorbalance_get_value),
40252         (gst_xvimagesink_colorbalance_init), (gst_xvimagesink_get_type):
40253         Adding colorbalance interface support to set XV parameters such as
40254         HUE, BRIGHTNESS, CONTRAST, SATURATION.
40255         * sys/xvimage/xvimagesink.h: Adding the channels list for colorbalance
40256         interface.
40257
40258 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
40259
40260         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_get_type),
40261         (gst_audio_convert_class_init), (gst_audioconvert_getcaps),
40262         (gst_audio_convert_init), (gst_audio_convert_set_property),
40263         (gst_audio_convert_get_property), (gst_audio_convert_chain),
40264         (gst_audio_convert_link),
40265         (gst_audio_convert_buffer_to_default_format),
40266         (gst_audio_convert_buffer_from_default_format), (plugin_init):
40267           - implement _getcaps and use it
40268           - improve linking
40269           - remove float caps since no float conversion is actually done
40270           - remove properties and arguments that were to be used for rate
40271             conversion
40272
40273 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
40274
40275         * gst-libs/gst/audio/audio.c: (_gst_audio_structure_set_list),
40276         (gst_audio_structure_set_int):
40277         * gst-libs/gst/audio/audio.h:
40278           add helper functions for _getcaps matching the standard audio
40279           templates
40280
40281 2004-01-12  David Schleef  <ds@schleef.org>
40282
40283         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
40284         Test that pad is negotiated before getting its caps.
40285
40286 2004-01-12  Julien MOUTTE <julien@moutte.net>
40287
40288         * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element): When
40289         analyzing the pads of an element the bin is mostly in READY state so
40290         no caps were negotiated. This helper function needs to work with
40291         _get_caps directly then. I was not freeing them though, added that to
40292         fix the mem leak.
40293
40294 2004-01-12  Julien MOUTTE <julien@moutte.net>
40295
40296         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
40297         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Fixing the
40298         direct put buffers detection. I prefer checking GST_BUFFER_PRIVATE
40299         than the free_func.
40300
40301 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
40302
40303         * sys/oss/gstossaudio.c: (plugin_init):
40304         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
40305         * sys/oss/gstosselement.h:
40306           make an oss debugging category
40307           make failure more descriptive
40308
40309 2004-01-11  David Schleef  <ds@schleef.org>
40310
40311         * ext/ffmpeg/gstffmpeg.c:
40312         * ext/ffmpeg/gstffmpegcodecmap.c:
40313         * ext/ffmpeg/gstffmpegdec.c:
40314         * ext/ffmpeg/gstffmpegenc.c:
40315         * ext/ffmpeg/gstffmpegprotocol.c:
40316         * ext/gdk_pixbuf/gstgdkanimation.c:
40317         * ext/jpeg/gstjpeg.c:
40318         * ext/libpng/gstpng.c:
40319         * ext/mpeg2dec/perftest.c:
40320         * ext/speex/gstspeex.c:
40321         * gst-libs/gst/resample/dtos.c:
40322         * gst/intfloat/gstintfloatconvert.c:
40323         * gst/oneton/gstoneton.c:
40324         * gst/rtjpeg/RTjpeg.c:
40325         * gst/rtp/gstrtp.c:
40326         * sys/dxr3/dxr3init.c:
40327         * sys/glsink/gstgl_nvimage.c:
40328         * sys/glsink/gstgl_pdrimage.c:
40329         * sys/glsink/gstglsink.c:
40330         * testsuite/gst-lint:
40331         Make sure everybody wraps #include "config.h" in #ifdef HAVE_CONFIG_H
40332
40333 2004-01-11  David Schleef  <ds@schleef.org>
40334
40335         * ext/alsa/gstalsasrc.c: (gst_alsa_src_set_caps):
40336         * ext/faac/gstfaac.c: (gst_faac_sinkconnect):
40337         * ext/gdk_pixbuf/gstgdkanimation.c:
40338         (gst_gdk_animation_iter_create_pixbuf):
40339         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
40340         (gst_gdk_pixbuf_chain):
40341         * ext/gdk_pixbuf/gstgdkpixbuf.h:
40342         * ext/jack/gstjack.c: (gst_jack_change_state):
40343         * ext/xvid/gstxviddec.c: (gst_xviddec_sink_link):
40344         * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element):
40345         * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
40346         * gst/videofilter/gstvideofilter.c:
40347         (gst_videofilter_set_output_size):
40348         Remove all usage of gst_pad_get_caps(), and replace it with
40349         gst_pad_get_allowed_caps() or gst_pad_get_negotiated_cap().
40350
40351 2004-01-11  David Schleef  <ds@schleef.org>
40352
40353         * configure.ac:
40354         * ext/Makefile.am: Fixes to make ext/libcaca compile.
40355         * ext/divx/gstdivxdec.c:
40356         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
40357         (gst_gdk_pixbuf_init), (gst_gdk_pixbuf_chain): Make gdkpixbufdec
40358         handle images that span multiple buffers.  Now work with both
40359         filesrc ! gdkpixbufdec and qtdemux ! gdkpixbufdec.
40360         * ext/gdk_pixbuf/gstgdkpixbuf.h:
40361         * ext/libcaca/gstcacasink.h: Fixes needed due to recent
40362         video/video.h changes
40363         * ext/xvid/gstxvid.c: (gst_xvid_csp_to_caps): same
40364         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
40365         (gst_v4lmjpegsrc_buffer_free): Use buffer free function instead
40366         of GstData free function.
40367         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
40368         same.
40369
40370 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40371
40372         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_class_init),
40373         (gst_v4l2element_dispose), (gst_v4l2element_set_property),
40374         (gst_v4l2element_get_property):
40375         * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults), (gst_v4l2_open):
40376           add norm, channel and frequency properties.
40377         * sys/v4l2/gstv4l2tuner.c:
40378           fixes for tuner interface changes
40379         * sys/v4l2/gstv4l2element.h:
40380         * sys/v4l2/gstv4l2src.c:
40381         * sys/v4l2/gstv4l2src.h:
40382         * sys/v4l2/v4l2src_calls.c:
40383         * sys/v4l2/v4l2src_calls.h:
40384           rework v4l2src to work with saa1734 cards and allow mmaped buffers.
40385
40386 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40387
40388         * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init),
40389         (gst_tuner_find_norm_by_name), (gst_v4l2_find_channel_by_name),
40390         (gst_tuner_channel_changed), (gst_tuner_norm_changed),
40391         (gst_tuner_frequency_changed), (gst_tuner_signal_changed):
40392         * gst-libs/gst/tuner/tuner.h:
40393           GObjects aren't const.
40394           Add find_by_name functions.
40395           Add checks to _changed functions.
40396         * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_get_channel),
40397         (gst_v4l_tuner_get_norm):
40398           Fixes for above.
40399
40400 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40401
40402         * gst-libs/gst/video/video.h:
40403           Fix caps template names to be understandable.
40404           Prefix everything with GST_VIDEO.
40405         * ext/aalib/gstaasink.c:
40406         * ext/divx/gstdivxdec.c:
40407         * ext/divx/gstdivxenc.c:
40408         * ext/gdk_pixbuf/gstgdkpixbuf.c:
40409         * ext/hermes/gstcolorspace.c: (gst_colorspace_base_init):
40410         * ext/jpeg/gstjpegdec.c: (raw_caps_factory):
40411         * ext/jpeg/gstjpegenc.c: (raw_caps_factory):
40412         * ext/libcaca/gstcacasink.c:
40413         * ext/libpng/gstpngenc.c: (raw_caps_factory):
40414         * ext/snapshot/gstsnapshot.c:
40415         * ext/swfdec/gstswfdec.c:
40416         * ext/xvid/gstxviddec.c:
40417         * ext/xvid/gstxvidenc.c:
40418         * gst/chart/gstchart.c:
40419         * gst/deinterlace/gstdeinterlace.c:
40420         * gst/effectv/gsteffectv.c:
40421         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
40422         * gst/goom/gstgoom.c:
40423         * gst/median/gstmedian.c:
40424         * gst/monoscope/gstmonoscope.c: (gst_monoscope_init),
40425         (gst_monoscope_srcconnect), (gst_monoscope_chain):
40426         * gst/overlay/gstoverlay.c:
40427         * gst/smooth/gstsmooth.c:
40428         * gst/smpte/gstsmpte.c:
40429         * gst/synaesthesia/gstsynaesthesia.c:
40430         * gst/videocrop/gstvideocrop.c:
40431         * gst/videodrop/gstvideodrop.c:
40432         * gst/y4m/gsty4mencode.c:
40433         * sys/qcam/gstqcamsrc.c:
40434         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps):
40435           Make them work with new video.h file.
40436         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
40437         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
40438         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
40439         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
40440           Make it work with new buffer allocation system.
40441
40442 2004-01-11  Julien MOUTTE  <julien@moutte.net>
40443
40444         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain): Fixing the
40445         pad_alloc_buffer implementation to use ->srcpad
40446         * ext/hermes/gstcolorspace.c: (gst_colorspace_chain): Fixing the
40447         pad_alloc_buffer implementation to use ->srcpad
40448         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):  Fixing the
40449         pad_alloc_buffer implementation to use ->srcpad
40450         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
40451         (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
40452         (gst_ximagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
40453         a reference to everything we need.
40454         * sys/ximage/ximagesink.h: adding a reference to the sink in the image.
40455         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
40456         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
40457         (gst_xvimagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
40458         a reference to everything we need.
40459         * sys/xvimage/xvimagesink.h: adding a reference to the sink in the image
40460
40461 2004-01-11  David Schleef  <ds@schleef.org>
40462
40463         * ext/divx/gstdivxenc.c: remove bogus gst_caps_is_fixed() test
40464         * gst/debug/efence.c: (gst_efence_chain), (gst_fenced_buffer_new),
40465         (gst_fenced_buffer_default_copy): Fix for rename of buffer private
40466         structure members.
40467         * gst/effectv/gstwarp.c: (gst_warptv_setup): Don't reset the time
40468         value during a resize/renegotiation.
40469         * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain): use
40470         gst_pad_alloc_buffer();
40471         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
40472         (gst_v4lmjpegsrc_buffer_free): Fix for rename of buffer private
40473         structure members.
40474         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
40475         Fix for rename of buffer private structure members.
40476         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
40477         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
40478         Fix for rename of buffer private structure members.
40479         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
40480         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
40481         Fix for rename of buffer private structure members.
40482
40483 2004-01-11  Arwed v. Merkatz <v.merkatz@gmx.net>
40484
40485         reviewed by: David Schleef <ds@schleef.org>
40486
40487         * gst/videofilter/Makefile.am:
40488         * gst/videofilter/gstgamma.c: Gamma correction filter.  Modified
40489         from the patch by ds to fit in with recent make_filter changes.
40490
40491 2004-01-11  Julien MOUTTE  <julien@moutte.net>
40492
40493         * configure.ac: Adding examples/switch/Makefile
40494         * examples/Makefile.am: Adding examples/switch
40495         * examples/switch/Makefile.am: Adding switcher example.
40496         * examples/switch/switcher.c: (got_eos), (idle_iterate),
40497         (switch_timer), (main): Adding an example demonstrating switch usage
40498         with 2 videotestsrc showing different patterns.
40499         * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
40500         (gst_switch_init): Fixing switch with the new caps system.
40501
40502 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40503
40504         * gst-libs/gst/video/video.h:
40505           Fix 32bit caps. Issue remaining: The macro names are chosen poorly.
40506           They should probably be like
40507           GST_VIDEO_PAD_TEMPLATE_CAPS_{RGB,BGR,RGBx,BGRx}.
40508
40509 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40510
40511         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
40512         (qtdemux_parse_trak):
40513           fix audio chunk size/timestamp calculation
40514
40515 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40516
40517         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
40518           fix SVQ3 caps
40519
40520 2004-01-11  Steve Baker  <steve@stevebaker.org>
40521
40522         * gst/effectv/gstaging.c: (gst_agingtv_get_type),
40523         (gst_agingtv_base_init), (gst_agingtv_class_init),
40524         (gst_agingtv_init), (gst_agingtv_setup), (gst_agingtv_rgb32),
40525         (gst_agingtv_set_property), (gst_agingtv_get_property):
40526         Port agingTV to videofilter
40527
40528 2004-01-09  Julien MOUTTE <julien@moutte.net>
40529
40530         * ext/hermes/gstcolorspace.c: (gst_colorspace_chain):
40531         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
40532
40533 2004-01-09  Julien MOUTTE <julien@moutte.net>
40534
40535         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain):
40536         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
40537         * gst-libs/gst/xoverlay/xoverlay.c:
40538         (gst_x_overlay_got_desired_size): Updating doc for the xid being 0.
40539         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
40540         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
40541         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
40542         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
40543         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
40544         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
40545         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init): Implementing
40546         the bufferalloc_function to replace bufferpools, fixing the XOverlay
40547         interface implementation to handle xid being 0 and fix some bugs
40548         triggered by Benjamin's testcase.
40549         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
40550         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
40551         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init): Implementing
40552         the bufferalloc_function to replace bufferpools, fixing the XOverlay
40553         interface implementation to handle xid being 0 and fix some bugs
40554         triggered by Benjamin's testcase.
40555
40556 2004-01-09  David Schleef  <ds@schleef.org>
40557
40558         * ext/librfb/gstrfbsrc.c:  Hacking.  Added actual decoding and
40559         mouse pointer events.  It works.
40560
40561 2004-01-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40562
40563         * ext/divx/gstdivxenc.c: (gst_divxenc_init):
40564           Use explicit caps - fix capsnego.
40565         * ext/xvid/gstxviddec.c:
40566         * ext/xvid/gstxvidenc.c:
40567           Remove macro-inside-macro which caused compile errors.
40568         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_header):
40569           Error out if it's not a RIFF file. Else we error out without
40570           gst_element_error() which is not good...
40571
40572 2004-01-08  David Schleef  <ds@schleef.org>
40573
40574         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
40575         Fix pad_link function to handle formats that ffmpeg returns
40576         as multiple caps structures.
40577         * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain):
40578         Only complain if source buffer is _smaller_ than expected.
40579         * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
40580         (gst_videoscale_handle_src_event): Resize navigation events
40581         when passing them upstream.
40582         * gst/videotestsrc/gstvideotestsrc.c:
40583         * gst/videotestsrc/gstvideotestsrc.h:
40584         * gst/videotestsrc/videotestsrc.c:
40585         * gst/videotestsrc/videotestsrc.h:
40586         Rewrite many of the buffer painting functions to handle odd
40587         sizes (for many formats, size%4!=0 or size%8!=0).  Most have
40588         been verified to work with my video card.
40589         * testsuite/gst-lint:  Add check for elements calling
40590         gst_pad_get_caps() instead of gst_pad_get_allowed_caps().
40591
40592 2004-01-08  David Schleef  <ds@schleef.org>
40593
40594         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
40595         (gst_videodrop_link), (gst_videodrop_init): Fix negotiation.
40596
40597 2004-01-08  Julien MOUTTE  <julien@moutte.net>
40598
40599         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents): A
40600         configure event is not emiting the desired size signal. That fixes
40601         aspect ratio issues with gst-player.
40602
40603 2004-01-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40604
40605         * gst/median/gstmedian.c: (gst_median_link), (gst_median_init):
40606           Fix capsnego.
40607
40608 2004-01-08  Julien MOUTTE  <julien@moutte.net>
40609
40610         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_create): Using XOverlay
40611         public method to fire size signal.
40612
40613 2004-01-07  Julien MOUTTE  <julien@moutte.net>
40614
40615         * examples/gstplay/Makefile.am: Adding the interface library.
40616         * gst-libs/gst/play/Makefile.am: Adding the interface library.
40617         * gst-libs/gst/play/gstplay.c: (gst_play_set_video_sink): Connecting to         the XOverlay size signal instead of GstVideoSink.
40618         * gst-libs/gst/play/gstplay.h: Including the XOverlay interface to check
40619         GST_IS_X_OVERLAY before signal connect.
40620         * gst-libs/gst/video/gstvideosink.c: (gst_videosink_class_init):
40621         Removing the have_video_size signal.
40622         * gst-libs/gst/video/gstvideosink.h: Removing the have_video_size signal
40623         and associated public method.
40624         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
40625         (gst_ximagesink_sinkconnect): Using XOverlay public method to fire size
40626         signal.
40627         * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
40628         (gst_xvideosink_xwindow_new): Using XOverlay public method to fire size
40629         signal.
40630         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sinkconnect):
40631         Using XOverlay public method to fire size signal.
40632
40633 2004-01-07  David Schleef  <ds@schleef.org>
40634
40635         * gst/videofilter/Makefile.am:
40636         * gst/videofilter/gstvideotemplate.c:
40637         * gst/videofilter/make_filter:
40638         Create gstvideoexample.c in a srcdir!=builddir friendly way.
40639         Convert make_filter to /bin/sh script.
40640
40641 2004-01-07  Thomas Vander Stichele  <thomas at apestaart dot org>
40642
40643         * gst/modplug/gstmodplug.cc: fix element description
40644
40645 2004-01-07  Julien MOUTTE  <julien@moutte.net>
40646
40647         * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
40648         (got_video_size): Adding some new lines in g_print calls.
40649         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
40650         (gst_ximagesink_xwindow_destroy), (gst_ximagesink_xwindow_resize),
40651         (gst_ximagesink_handle_xevents), (gst_ximagesink_fixate),
40652         (gst_ximagesink_sinkconnect), (gst_ximagesink_change_state),
40653         (gst_ximagesink_chain), (gst_ximagesink_buffer_new),
40654         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size):
40655         Complete code review, reverting some stuff i disagree with, adding
40656         some fixes : time synchronization on invalid timestamps, renegotiation
40657         of private window.
40658         * sys/ximage/ximagesink.h:
40659         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_destroy),
40660         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_handle_xevents),
40661         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
40662         (gst_xvimagesink_fixate), (gst_xvimagesink_sinkconnect),
40663         (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
40664         (gst_xvimagesink_buffer_new),
40665         (gst_xvimagesink_navigation_send_event),
40666         (gst_xvimagesink_set_xwindow_id),
40667         (gst_xvimagesink_get_desired_size),
40668         (gst_xvimagesink_xoverlay_init): Complete code review, reverting some
40669         stuff i disagree with, adding some fixes : Renegotiation of private
40670         window, implementing get_desired_size.
40671
40672 2004-01-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40673
40674         * ext/audiofile/gstafsink.c: (gst_afsink_init), (gst_afsink_chain),
40675         (gst_afsink_handle_event):
40676         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init):
40677         * gst/avi/gstavimux.c: (gst_avimux_request_new_pad):
40678         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_init):
40679         * sys/dxr3/dxr3spusink.c: (dxr3spusink_init):
40680         * sys/dxr3/dxr3videosink.c: (dxr3videosink_init):
40681           Fix for instantiate-test (see core). Also remove dead code from
40682           jpegenc (which still needs fixing, but that's lower on my TODO
40683           list...).
40684         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
40685           Never return NULL as caps.
40686
40687 2004-01-07  David Schleef  <ds@schleef.org>
40688
40689         * configure.ac:
40690         * ext/Makefile.am:
40691         * ext/librfb/Makefile.am:
40692         * ext/librfb/gstrfbsrc.c:
40693         New source plugin based on librfb-0.1.  RFB (remote framebuffer)
40694         is the protocol used by VNC.
40695
40696 2004-01-07  David Schleef  <ds@schleef.org>
40697
40698         * gst/videofilter/gstvideotemplate.c:
40699         * gst/videofilter/gstvideotemplate.h:
40700         * gst/videofilter/make_filter:
40701         Merge videotemplate header into source file.
40702         * gst/effectv/Makefile.am:
40703         * gst/effectv/gsteffectv.c: (plugin_init):
40704         * gst/effectv/gstwarp.c:
40705         Make warpTV a subclass of videofilter.
40706
40707 2004-01-07  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40708
40709         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
40710           Add guard against invalid utf-8 conversions in mad. Just in case.
40711
40712 2004-01-07  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40713
40714         * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
40715           Fix for bug shown by poisoning
40716
40717 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40718
40719         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
40720         (gst_v4lmjpegsrc_buffer_free):
40721         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
40722         (gst_v4lsrc_srcconnect), (gst_v4lsrc_getcaps), (gst_v4lsrc_get),
40723         (gst_v4lsrc_buffer_free):
40724           Fix for removed bufferpools.
40725
40726 2004-01-07  Jan Schmidt  <thaytan@mad.scientist.com>
40727
40728         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
40729         Fix caps negotiation.
40730
40731         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
40732         (dvdnavsrc_update_buttoninfo), (dvdnavsrc_get),
40733         (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
40734         (dvdnavsrc_event):
40735         * ext/mpeg2dec/gstmpeg2dec.c:
40736         * gst-libs/gst/navigation/navigation.c:
40737         (gst_navigation_send_key_event), (gst_navigation_send_mouse_event):
40738         * gst-libs/gst/navigation/navigation.h:
40739         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_handle_src_event):
40740         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
40741         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
40742         Super-simple first version of mouse and keyboard events. Clicking
40743         on a DVD menu now works, although it may not take you where you
40744         expected.
40745
40746         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
40747         * gst/videotestsrc/gstvideotestsrc.c:
40748         (gst_videotestsrc_src_fixate):
40749         These fixate functions were broken - they never actually
40750         fixated :)
40751
40752 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40753
40754         * ext/shout/gstshout.c: (gst_icecastsend_base_init),
40755         (gst_icecastsend_init):
40756           fix for new caps system.
40757         * gst-libs/gst/mixer/mixertrack.h:
40758         * sys/oss/gstossmixer.c: (gst_ossmixer_build_list):
40759           Add 'master track' flag (for tools like ACME that only want to
40760           change the main volume).
40761
40762 2004-01-07  Jan Schmidt  <thaytan@mad.scientist.com>
40763
40764         * ext/xvid/gstxvid.c: (gst_xvid_structure_to_csp),
40765         (gst_xvid_csp_to_caps):
40766         * ext/xvid/gstxviddec.c: (gst_xviddec_src_getcaps):
40767         * ext/xvid/gstxvidenc.c:
40768         ifdef out ARGB type when it isn't available
40769         in xvidcore 1.0.0beta2
40770
40771 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40772
40773         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
40774           When we have received a new SCR right in the first buffer after
40775           a seek (so in the same cycle that handles the discont), we should
40776           handle the buffer instead of unreffing it, else we lose data.
40777
40778 2004-01-06  Iain <iain@prettypeople.org>
40779
40780         * gst/intfloat/gstint2float.c (gst_int2float_link): Set the
40781           buffer-frames caps too.
40782
40783         * gst/oneton/gstoneton.c (gst_oneton_sink_connect): Only create the new
40784           caps that we need, don't destroy them all and rebuild them. And when
40785           creating src pads, use the src pad template rather than the sink...
40786
40787 2004-01-05  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40788
40789         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
40790           Add pad to element *after* setting functions such as event handler.
40791           Without this, the scheduler (opt) will link pads, set the event
40792           handler from the default event function (dispatcher in gstpad.c)
40793           and *after* that, we will set our own event function, which will
40794           thus never be used (and thus mpegdemux doesn't handle events).
40795
40796 2004-01-04  David Schleef  <ds@schleef.org>
40797
40798         Fix the fixate functions to handle new prototype:
40799         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
40800         * gst/videotestsrc/gstvideotestsrc.c:
40801         (gst_videotestsrc_src_fixate):
40802         * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
40803         * sys/ximage/ximagesink.c: (gst_ximagesink_fixate):
40804         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
40805
40806 2004-01-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40807
40808         * sys/ximage/ximagesink.h:
40809         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
40810         (gst_ximagesink_xwindow_destroy), (gst_ximagesink_sinkconnect),
40811         (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
40812         (gst_ximagesink_xoverlay_init):
40813           assorted fixes to make (re)embedding work
40814         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect),
40815         (gst_ximagesink_get_desired_size):
40816           implement desired size additions to XOverlay
40817
40818 2004-01-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40819
40820         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init),
40821         (gst_x_overlay_got_xwindow_id), (gst_x_overlay_get_desired_size),
40822         (gst_x_overlay_got_desired_size):
40823         * gst-libs/gst/xoverlay/xoverlay.h:
40824           Add optional "desired size" signal and querying.
40825
40826 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40827
40828         * gst/matroska/matroska-demux.c:
40829         (gst_matroska_demux_parse_blockgroup):
40830           Fix EBML-laced block parsing. Diffs are relative to previous
40831           lace, not the first lace. Thanks to Mosu from the Matroska
40832           team for detecting this.
40833         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
40834         (gst_wavparse_parse_fmt), (gst_wavparse_getcaps),
40835         (gst_wavparse_handle_sink_event), (gst_wavparse_loop),
40836         (gst_wavparse_change_state):
40837         * gst/wavparse/gstwavparse.h:
40838           Quickfix for capsnego.
40839
40840 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40841
40842         * gst/wavenc/gstwavenc.c: (set_property), (gst_wavenc_init):
40843           Fix indenting, fix pad creation.
40844
40845 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40846
40847         * ext/xvid/gstxviddec.c: (gst_xviddec_init),
40848         (gst_xviddec_src_getcaps), (gst_xviddec_src_link),
40849         (gst_xviddec_sink_link):
40850           Implement src_getcaps() so proper size caps is negotiated.
40851
40852 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40853
40854         * ext/flac/gstflacdec.c: (gst_flacdec_loop):
40855           Finish flac decoder on EOS. See #116178.
40856
40857 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40858
40859         * gst/matroska/matroska-demux.c: (gst_matroska_demux_src_getcaps),
40860         (gst_matroska_demux_add_stream):
40861         * gst/matroska/matroska-ids.h:
40862           Add getcaps() function to fix capsnego...
40863
40864 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40865
40866         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
40867         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
40868         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
40869           Fix more integer overflows. Again, see #126967.
40870
40871 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40872
40873         * ext/mpeg2dec/gstmpeg2dec.c:
40874           Add support for mpeg2dec-0.4.0 (released two weeks ago). See
40875           #130416.
40876
40877 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40878
40879         * configure.ac:
40880         * ext/xvid/gstxvid.c: (gst_xvid_init), (gst_xvid_error),
40881         (gst_xvid_structure_to_csp), (gst_xvid_csp_to_caps):
40882         * ext/xvid/gstxvid.h:
40883         * ext/xvid/gstxviddec.c: (gst_xviddec_class_init),
40884         (gst_xviddec_init), (gst_xviddec_setup), (gst_xviddec_chain),
40885         (gst_xviddec_src_link), (gst_xviddec_sink_link),
40886         (gst_xviddec_change_state):
40887         * ext/xvid/gstxviddec.h:
40888         * ext/xvid/gstxvidenc.c: (gst_xvidenc_profile_get_type),
40889         (gst_xvidenc_base_init), (gst_xvidenc_class_init),
40890         (gst_xvidenc_init), (gst_xvidenc_setup), (gst_xvidenc_chain),
40891         (gst_xvidenc_link), (gst_xvidenc_set_property),
40892         (gst_xvidenc_get_property), (gst_xvidenc_change_state):
40893         * ext/xvid/gstxvidenc.h:
40894           Update xvid plugin to latest xvid (1.0.0-beta3) API.
40895
40896 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40897
40898         * gst/rtp/rtp-packet.c:
40899           Add sys/types.h include, since OS X doesn't define in_addr_t
40900           in netinet/in.h, like it does on Linux (see #129600).
40901
40902 2004-01-03  Thomas Canty <tommydal@optushome.com.au>
40903
40904         reviewed by: Ronald Bultje  <rbultje@ronald.bitfreak.net>
40905
40906         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_dispose):
40907           Correct logic of dispose function (see #129306).
40908
40909 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40910
40911         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_pes):
40912         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
40913         (gst_mpeg_parse_init):
40914         * gst/mpegstream/gstmpegparse.h:
40915           Remove clock (which was never provided, i.e. dead code), and
40916           also fix integer overflows at high PTS values (see #126967).
40917
40918 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40919
40920         * ext/flac/gstflacdec.c:
40921         * ext/libpng/gstpngenc.h:
40922         * ext/mikmod/gstmikmod.h:
40923           OS X fixes (see #126628).
40924
40925 2004-01-02  David Schleef  <ds@schleef.org>
40926
40927         * ext/alsa/gstalsasrc.c: (gst_alsa_src_pad_factory),
40928         (gst_alsa_src_base_init): Remove bogus "src" request pad.
40929         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_base_init),
40930         (gst_mpeg_parse_class_init): Move pad template registration
40931         to class_init, since the derived class (mpegdemux) doesn't
40932         want them.
40933
40934 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40935
40936         * sys/ximage/Makefile.am:
40937         * sys/xvideo/Makefile.am:
40938         * sys/xvimage/Makefile.am:
40939           Move interface libs from LDFLAGS to LIBADD, fix relocation errors
40940           after installation (see #127664).
40941
40942 2004-01-02  David Schleef  <ds@schleef.org>
40943
40944         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_init),
40945         (gst_ffmpegenc_connect):  Negotiation fixes.
40946         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_negotiate_format):
40947         Remove inappropriate gst_caps_free().
40948         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
40949         Reenable Ronald's internal resize code, since the core handles
40950         it correctly now.
40951
40952 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40953
40954         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
40955         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
40956         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init), (gst_v4lsrc_init):
40957           Fix pad template stuff.
40958
40959 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40960
40961         * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
40962         * gst/matroska/ebml-write.c: (gst_ebml_write_sint):
40963           fix signed integer reading/writing.
40964
40965 2004-01-02  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40966
40967         * ext/alsa/README:
40968           Remove outdated document
40969
40970 2004-01-03  Jan Schmidt  <thaytan@mad.scientist.com>
40971
40972         * gst/cutter/gstcutter.c: (gst_cutter_init):
40973           src pad was being created twice - oops.
40974
40975 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40976
40977         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
40978           Comment out internal resize. It doesn't handle the resulting
40979           XEvent internally, does another try_set_caps() which leads to
40980           a really nice loop.
40981           Real fix will come when Julien and Dave are awake. ;).
40982
40983 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40984
40985         * ext/mpeg2enc/gstmpeg2enc.cc:
40986           fix const/nonconst compile issue.
40987
40988 2004-01-02  David Schleef  <ds@schleef.org>
40989
40990         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate),
40991         (gst_xvimagesink_sinkconnect), (gst_xvimagesink_init):
40992         Add fixate function and a check for bad formats.
40993
40994 2004-01-01  David Schleef  <ds@schleef.org>
40995
40996         Negotiation fixes:
40997         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
40998         (gst_audiofilter_init):
40999         * gst/debug/efence.c: (gst_efence_init):
41000         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
41001         (gst_deinterlace_init):
41002         * gst/volume/gstvolume.c: (volume_connect):
41003
41004 2004-01-01  David Schleef  <ds@schleef.org>
41005
41006         Convert elements to use gst_pad_use_explicit_caps() where
41007         appropriate:
41008         * ext/a52dec/gsta52dec.c: (gst_a52dec_init), (gst_a52dec_reneg):
41009         * ext/audiofile/gstafparse.c: (gst_afparse_init),
41010         (gst_afparse_open_file):
41011         * ext/audiofile/gstafsrc.c: (gst_afsrc_init),
41012         (gst_afsrc_open_file):
41013         * ext/esd/esdmon.c: (gst_esdmon_init), (gst_esdmon_get):
41014         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
41015         (gst_ffmpegdec_chain):
41016         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
41017         * ext/flac/gstflacdec.c: (gst_flacdec_init), (gst_flacdec_write):
41018         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init),
41019         (gst_gdk_pixbuf_chain):
41020         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init), (gst_jpegdec_link),
41021         (gst_jpegdec_chain):
41022         * ext/mad/gstmad.c: (gst_mad_init), (gst_mad_chain):
41023         * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
41024         (gst_mikmod_negotiate):
41025         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
41026         (gst_mpeg2dec_negotiate_format):
41027         * ext/mpeg2enc/gstmpeg2enc.cc:
41028         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
41029         * ext/speex/gstspeexdec.c: (gst_speexdec_init),
41030         (gst_speexdec_sinkconnect):
41031         * ext/swfdec/gstswfdec.c: (gst_swfdec_loop), (gst_swfdec_init):
41032         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_init),
41033         (gst_vorbisfile_new_link):
41034         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_init),
41035         (gst_ac3parse_chain):
41036         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_add_audio_stream),
41037         (gst_asf_demux_setup_pad):
41038         * gst/auparse/gstauparse.c: (gst_auparse_init),
41039         (gst_auparse_chain):
41040         * gst/id3/gstid3types.c: (gst_id3types_loop):
41041         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
41042         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
41043         (mp1videoparse_parse_seq):
41044         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_init),
41045         (bpf_from_header):
41046         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
41047         (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_lpcm_set_caps):
41048         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
41049         (gst_mpeg_parse_send_data):
41050         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
41051         (gst_qtdemux_add_stream):
41052         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
41053         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
41054         (gst_wavparse_parse_fmt):
41055
41056 2004-01-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41057
41058         * configure.ac:
41059           Fix configure check for mpeg2enc. We need 1.6.1.93 instead of
41060           1.6.1.92, since the pkg-config file of 1.6.1.92 is borked and
41061           it therefore uses the wrong include paths. Too bad... Note
41062           that 1.6.1.93 is not release yet. ;).
41063           Also add a check for mplex, which is now using the lib'ified
41064           mplex from mjpegtools, too.
41065         * ext/ffmpeg/gstffmpegcodecmap.c:
41066           Add codec_tag for 3ivx/xvid. For xvid, this should fix playback
41067           issues. I don't think ffmpeg handles 3ivx correctly, so this
41068           probably won't work. But it won't hurt either.
41069         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_connect),
41070         (gst_ffmpegdec_chain):
41071         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect),
41072         (gst_ffmpegenc_chain_audio):
41073           Fix memleak in audio encoding. Close codec if open fails, this
41074           calls the cleanup routines so we can re-use the context.
41075         * ext/mpeg2enc/gstmpeg2enc.cc:
41076           Fix pad template names/types, fix memory issue with getcaps().
41077         * ext/mpeg2enc/gstmpeg2encoder.cc:
41078         * ext/mpeg2enc/gstmpeg2encoder.hh:
41079           Fix compile issue with new caps system (const thingy).
41080         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
41081         * ext/mpeg2enc/gstmpeg2encpicturereader.hh:
41082           We read a first frame right on initing, so that we have a caps
41083           when we init the output. This caps is cached in padprivate and
41084           read as first frame.
41085         * ext/mplex/Makefile.am:
41086         * ext/mplex/gstmplex.cc:
41087         * ext/mplex/gstmplex.h:
41088         * ext/mplex/gstmplex.hh:
41089         * ext/mplex/gstmplexibitstream.cc:
41090         * ext/mplex/gstmplexibitstream.hh:
41091         * ext/mplex/gstmplexjob.cc:
41092         * ext/mplex/gstmplexjob.hh:
41093         * ext/mplex/gstmplexoutputstream.cc:
41094         * ext/mplex/gstmplexoutputstream.hh:
41095           We wrap mjpegtools mplex. So I rewrote the plugin. The old plugin
41096           had issues, didn't do capsnego, supported only a subset of the
41097           mplex features and required a mplex fork in our local CVS. Plus
41098           that it worked agaist a very old mplex version. Rewriting was
41099           faster than updating it.
41100         * gst-libs/ext/Makefile.am:
41101         * gst-libs/ext/mplex/INSTRUCT:
41102         * gst-libs/ext/mplex/Makefile.am:
41103         * gst-libs/ext/mplex/README:
41104         * gst-libs/ext/mplex/TODO:
41105         * gst-libs/ext/mplex/ac3strm_in.cc:
41106         * gst-libs/ext/mplex/audiostrm.hh:
41107         * gst-libs/ext/mplex/audiostrm_out.cc:
41108         * gst-libs/ext/mplex/aunit.hh:
41109         * gst-libs/ext/mplex/bits.cc:
41110         * gst-libs/ext/mplex/bits.hh:
41111         * gst-libs/ext/mplex/buffer.cc:
41112         * gst-libs/ext/mplex/buffer.hh:
41113         * gst-libs/ext/mplex/fastintfns.h:
41114         * gst-libs/ext/mplex/format_codes.h:
41115         * gst-libs/ext/mplex/inputstrm.cc:
41116         * gst-libs/ext/mplex/inputstrm.hh:
41117         * gst-libs/ext/mplex/lpcmstrm_in.cc:
41118         * gst-libs/ext/mplex/mjpeg_logging.cc:
41119         * gst-libs/ext/mplex/mjpeg_logging.h:
41120         * gst-libs/ext/mplex/mjpeg_types.h:
41121         * gst-libs/ext/mplex/mpastrm_in.cc:
41122         * gst-libs/ext/mplex/mpegconsts.cc:
41123         * gst-libs/ext/mplex/mpegconsts.h:
41124         * gst-libs/ext/mplex/mplexconsts.hh:
41125         * gst-libs/ext/mplex/multplex.cc:
41126         * gst-libs/ext/mplex/outputstream.hh:
41127         * gst-libs/ext/mplex/padstrm.cc:
41128         * gst-libs/ext/mplex/padstrm.hh:
41129         * gst-libs/ext/mplex/stillsstream.cc:
41130         * gst-libs/ext/mplex/stillsstream.hh:
41131         * gst-libs/ext/mplex/systems.cc:
41132         * gst-libs/ext/mplex/systems.hh:
41133         * gst-libs/ext/mplex/vector.cc:
41134         * gst-libs/ext/mplex/vector.hh:
41135         * gst-libs/ext/mplex/videostrm.hh:
41136         * gst-libs/ext/mplex/videostrm_in.cc:
41137         * gst-libs/ext/mplex/videostrm_out.cc:
41138         * gst-libs/ext/mplex/yuv4mpeg.cc:
41139         * gst-libs/ext/mplex/yuv4mpeg.h:
41140         * gst-libs/ext/mplex/yuv4mpeg_intern.h:
41141         * gst-libs/ext/mplex/yuv4mpeg_ratio.cc:
41142           We don't fork mjpegtools' mplex in our CVS anymore.
41143         * gst/avi/gstavidemux.c: (gst_avi_demux_src_getcaps),
41144         (gst_avi_demux_add_stream):
41145         * gst/avi/gstavidemux.h:
41146           Add getcaps() function for proper caps nego. This makes some
41147           parts of AVI playback/reading work.
41148         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
41149           Resize window on new capsnego. This is probably wrong, but
41150           I'm still committing it because with current capsnego, the
41151           first successfull capsnego is auto-fixated, therefore rounded
41152           down to the lowest values in the caps. this results in a 16x16
41153           XWindow that is not reized when real capsnego finishes.
41154           Dave, I see more cases of this, do you know a proper solution?
41155         * tools/gst-launch-ext.in:
41156           Fix MPEG-4 AAC (Apple iPod/iTunes) file commandline.
41157
41158 2003-12-31  David Schleef  <ds@schleef.org>
41159
41160         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get):
41161         * gst/udp/gstudpsrc.c: (gst_udpsrc_get):
41162           Change gst_pad_proxy_link() to gst_pad_try_set_caps()
41163
41164 2003-12-30  David Schleef  <ds@schleef.org>
41165
41166         * ext/ffmpeg/gstffmpegcolorspace.c:
41167         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
41168         (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_init),
41169         (gst_ffmpegcsp_chain): Negotiation fixes
41170         * ext/mad/gstmad.c: (gst_mad_chain): Negotiation fixes
41171         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
41172         (gst_audio_convert_link), (gst_audio_convert_channels):
41173         * gst/audioscale/gstaudioscale.c: (gst_audioscale_getcaps),
41174         (gst_audioscale_link), (gst_audioscale_get_buffer),
41175         (gst_audioscale_chain): Negotiation fixes
41176         * gst/audioscale/gstaudioscale.h:
41177         * gst/videofilter/gstvideofilter.c:
41178         (gst_videofilter_format_get_structure), (gst_videofilter_getcaps),
41179         (gst_videofilter_link), (gst_videofilter_init),
41180         (gst_videofilter_set_output_size), (gst_videofilter_setup),
41181         (gst_videofilter_find_format_by_structure):
41182         * gst/videofilter/gstvideofilter.h: Negotiation fixes
41183         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
41184         (gst_videoscale_link):
41185         * gst/videoscale/videoscale.c: (videoscale_get_structure),
41186         (videoscale_find_by_structure), (gst_videoscale_setup):
41187         * gst/videoscale/videoscale.h: Negotiation fixes
41188         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
41189         (gst_ximagesink_fixate), (gst_ximagesink_init): Add a fixate
41190         function, restrict resizing to a multiple of 4 (hack until
41191         everyone supports odd sizes correctly).
41192
41193 2003-12-29  Colin Walters  <walters@verbum.org>
41194
41195         * ext/esd/esdsink.c (gst_esdsink_link): Fix typo; get depth instead of
41196         signed.
41197
41198 2003-12-30  Jan Schmidt <thaytan@mad.scientist.com>
41199
41200         * ext/sndfile/gstsf.c: (gst_sf_loop):
41201           Fix warning about discarding const qualifier
41202
41203 2003-12-27  Jeremy Simon   <jesimon@libertysurf.fr>
41204
41205         * gst/cutter/gstcutter.c:
41206         * gst/videoscale/gstvideoscale.c:
41207         * gst/volenv/gstvolenv.c:
41208         * gst-libs/gst/audio/audio.c:
41209         * gst-libs/gst/video/video.c:
41210           Fix warnings
41211
41212 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
41213
41214         * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
41215           Don't send ALSA debugging to stderr.
41216         * ext/alsa/gstalsa.h:
41217           Use GST_WARNING instead of g_warning when ALSA functions fail.
41218
41219 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
41220
41221         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
41222           Free XVAdapterInfo correctly.
41223
41224 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
41225
41226         * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
41227         (gst_id3_tag_do_caps_nego), (gst_id3_tag_src_link):
41228           Make id3tag use correct caps nego.
41229
41230 2003-12-27  Amaury Jacquot <sxpert@esitcom.org>
41231
41232         * ext/ivorbis/vorbis.c:
41233         * ext/ivorbis/vorbisenc.h:
41234         * ext/ivorbis/vorbisfile.c:
41235           Modify so that it uses the new caps things
41236
41237 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
41238
41239         * testsuite/spider/spider1.c: (main):
41240         * testsuite/spider/spider2.c: (main):
41241         * testsuite/spider/spider3.c: (main):
41242           Make tests compile again. They probably don't work.
41243
41244 2003-12-24  Colin Walters  <walters@verbum.org>
41245
41246         * sys/oss/gstosssink.c (gst_osssink_sink_fixate): Return NULL if
41247         we can't fixate the caps anymore.
41248
41249 2003-12-23  David Schleef  <ds@schleef.org>
41250
41251         * gst/volume/gstvolume.c: (volume_init): Proxy getcaps.
41252         * sys/oss/gstosssink.c: (gst_osssink_init),
41253         (gst_osssink_sink_fixate): Add fixate function.
41254
41255 2003-12-24  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41256
41257         * ext/ffmpeg/gstffmpegcodecmap.c:
41258         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_getcaps),
41259         (gst_ffmpegcsp_srcconnect_func), (gst_ffmpegcsp_sinkconnect),
41260         (gst_ffmpegcsp_srcconnect), (gst_ffmpegcsp_get_type),
41261         (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
41262         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
41263         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
41264         (gst_ffmpegcsp_get_property), (gst_ffmpegcsp_register):
41265           fix typo in RGB masks, and move back to "old" colorspace
41266           capsnego code until whoever wrote this new crap has actually
41267           tested it so that it works.
41268           And yes, this works, keep it that way please.
41269
41270 2003-12-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41271
41272         * ext/divx/gstdivxdec.c: (gst_divxdec_base_init),
41273         (gst_divxdec_init), (gst_divxdec_negotiate):
41274         * ext/divx/gstdivxdec.h:
41275         * ext/divx/gstdivxenc.c: (gst_divxenc_base_init),
41276         (gst_divxenc_init):
41277         * ext/faac/gstfaac.c: (gst_faac_base_init), (gst_faac_init),
41278         (gst_faac_sinkconnect), (gst_faac_srcconnect):
41279         * ext/mpeg2enc/gstmpeg2enc.cc:
41280         * ext/mpeg2enc/gstmpeg2encoder.cc:
41281         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
41282         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_base_init),
41283         (dxr3audiosink_init), (dxr3audiosink_pcm_sinklink):
41284         * sys/dxr3/dxr3spusink.c: (dxr3spusink_base_init),
41285         (dxr3spusink_init):
41286         * sys/dxr3/dxr3videosink.c: (dxr3videosink_base_init),
41287         (dxr3videosink_init):
41288           Fix caps breakage after Dave's caps branch merge.
41289
41290 2003-12-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41291
41292         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
41293           Fix for 24bpp display.
41294
41295 2003-12-23  Colin Walters  <walters@verbum.org>
41296
41297         * ext/gnomevfs/gstgnomevfssink.c: Add ARG_HANDLE property that takes
41298         a GnomeVFSHandle directly.
41299
41300 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
41301
41302         * gst/volume/Makefile.am:
41303         * gst/volume/gstvolume.c: (volume_connect), (volume_parse_caps),
41304         (volume_base_init), (volume_init):
41305           Reenable volume element and fix to work with new caps stuff.
41306           Rhythmbox needs this.
41307
41308 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
41309
41310         * gst/qtdemux/qtdemux.c: (plugin_init):
41311           qtdemux requires bytestream
41312
41313 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
41314
41315         * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_link):
41316           Fix remaining caps handling errors due to CAPS merge.
41317
41318 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
41319
41320         * ext/faad/gstfaad.c: (gst_faad_base_init), (gst_faad_init),
41321         (gst_faad_sinkconnect), (gst_faad_srcgetcaps),
41322         (gst_faad_srcconnect):
41323           Port to new caps system.
41324
41325 2003-12-21  Julien MOUTTE  <julien@moutte.net>
41326
41327         * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
41328         (got_video_size), (main): using g_print instead of g_message.
41329         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup): Fixing EOS
41330         signal which was not emitted because of "switch" element added to the
41331         bin but not connected. (Removing from the bin temporarily)
41332
41333 2003-12-21  Julien MOUTTE  <julien@moutte.net>
41334
41335         * configure.ac: X_DISPLAY_MISSING is set to 1 if AC_PATH_XTRA fails to
41336         find X development files. I don't understand the previous tests and
41337         they fail on my debian/ppc unstable. This one works.
41338         * examples/gstplay/player.c: (main): Set the pipeline to READY before
41339         exiting.
41340         * gst-libs/gst/play/gstplay.c: (gst_play_get_length_callback),
41341         (gst_play_set_video_sink), (gst_play_set_audio_sink),
41342         (gst_play_set_visualization): Add some safety checks in set_ methods
41343         and state_change. This was throwing some ugly CRITICAL messages when
41344         pipeline was getting disposed and casts were failing.
41345
41346 2003-12-21  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41347
41348         * configure.ac:
41349           Improve mpeg2enc detection. This is for distributions that do
41350           ship mjpegtools, but without mpeg2enc. Also does object check
41351           for might there ever be ABI incompatibility.
41352         * ext/mpeg2enc/gstmpeg2enc.cc:
41353           Add Andrew as second maintainer (he's helping me), and also add
41354           an error if no caps was set. This happens if I pull before capsnego
41355           and that's something I should solve sometime else.
41356         * gst/matroska/matroska-demux.c:
41357         (gst_matroska_demux_parse_blockgroup):
41358           Fix time parsing.
41359         * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link),
41360         (gst_matroska_mux_track_header):
41361           Add caps to templates.
41362         * gst/mpegaudioparse/gstmpegaudioparse.c: (mp3_sink_factory):
41363           Add mpegversion=1 to prevent confusion with MPEG/AAC.
41364         * gst/mpegstream/gstmpegdemux.c:
41365           Remove layer since it causes warnings about unfixed caps.
41366         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
41367           Fix obvious typo (we error out if caps were set, we should of
41368           course error out if *no* caps were set).
41369         * sys/oss/gstosselement.c: (gst_osselement_convert):
41370           Fix format conversion, we confused bits/bytes.
41371         * sys/oss/gstosselement.h:
41372           Improve documentation for 'bps'.
41373         * sys/v4l/TODO:
41374           Remove stuff about plugins that need removing - this was done
41375           ages ago.
41376         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init),
41377         (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query):
41378         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_src_convert),
41379         (gst_v4lsrc_src_query):
41380         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
41381         (gst_v4l2src_src_convert), (gst_v4l2src_src_query):
41382           Add get_query_types(), get_formats() and query() functions.
41383
41384 2003-12-21  Thomas Vander Stichele  <thomas at apestaart dot org>
41385
41386         * ChangeLog: moved to gstreamer/docs/random/old/ChangeLog.gst-plugins
41387           * moved CVS to freedesktop.org