Add pkg-config files for libgstapp. Fixes bug #566761.
[platform/upstream/gstreamer.git] / ChangeLog
1 2009-01-06  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2
3         * configure.ac:
4         * pkgconfig/Makefile.am:
5         * pkgconfig/gstreamer-app-uninstalled.pc.in:
6         * pkgconfig/gstreamer-app.pc.in:
7         Add pkg-config files for libgstapp. Fixes bug #566761.
8
9 2009-01-06  Tim-Philipp Müller  <tim.muller at collabora co uk>
10
11         * gst-libs/gst/app/gstappsink.c:
12         * gst-libs/gst/app/gstappsink.h:
13         * gst-libs/gst/app/gstappsrc.c:
14         * gst-libs/gst/app/gstappsrc.h:
15           Make debug categories static. Use _element_class_set_details_simple().
16
17 2009-01-06  Tim-Philipp Müller  <tim.muller at collabora co uk>
18
19         * gst-libs/gst/app/gstappsink.c: (_GstAppSinkPrivate),
20           (gst_app_sink_class_init), (gst_app_sink_init),
21           (gst_app_sink_dispose), (gst_app_sink_finalize),
22           (gst_app_sink_unlock_start), (gst_app_sink_unlock_stop),
23           (gst_app_sink_flush_unlocked), (gst_app_sink_start),
24           (gst_app_sink_stop), (gst_app_sink_event), (gst_app_sink_preroll),
25           (gst_app_sink_render), (gst_app_sink_getcaps),
26           (gst_app_sink_set_caps), (gst_app_sink_get_caps),
27           (gst_app_sink_is_eos), (gst_app_sink_set_emit_signals),
28           (gst_app_sink_get_emit_signals), (gst_app_sink_set_max_buffers),
29           (gst_app_sink_get_max_buffers), (gst_app_sink_set_drop),
30           (gst_app_sink_get_drop), (gst_app_sink_pull_preroll),
31           (gst_app_sink_pull_buffer):
32         * gst-libs/gst/app/gstappsink.h: (GstAppSinkPrivate), (_GstAppSink):
33         * gst-libs/gst/app/gstappsrc.c: (_GstAppSrcPrivate),
34           (gst_app_src_class_init), (gst_app_src_init),
35           (gst_app_src_flush_queued), (gst_app_src_dispose),
36           (gst_app_src_finalize), (gst_app_src_set_property),
37           (gst_app_src_get_property), (gst_app_src_unlock),
38           (gst_app_src_unlock_stop), (gst_app_src_start), (gst_app_src_stop),
39           (gst_app_src_is_seekable), (gst_app_src_check_get_range),
40           (gst_app_src_query), (gst_app_src_do_seek), (gst_app_src_create),
41           (gst_app_src_set_caps), (gst_app_src_get_caps),
42           (gst_app_src_set_size), (gst_app_src_get_size),
43           (gst_app_src_set_stream_type), (gst_app_src_get_stream_type),
44           (gst_app_src_set_max_bytes), (gst_app_src_get_max_bytes),
45           (gst_app_src_set_latencies), (gst_app_src_set_latency),
46           (gst_app_src_get_latency), (gst_app_src_push_buffer_full),
47           (gst_app_src_push_buffer_action), (gst_app_src_end_of_stream):
48         * gst-libs/gst/app/gstappsrc.h: (GstAppSrcPrivate):
49           Move private data into a private instance struct. Add padding to
50           instance and class structures exposed in public headers. Add
51           Since markers to the gtk-doc blurbs (#566750).
52
53 2009-01-06  Wim Taymans  <wim.taymans@collabora.co.uk>
54
55         * tests/examples/app/appsrc_ex.c: (main):
56         Some comments.
57         When pulling a buffer we can get NULL when the element is EOS, don't try
58         to unref this NULL buffer.
59
60 2009-01-06  Jan Schmidt  <jan.schmidt@sun.com>
61
62         * gst-libs/gst/video/Makefile.am:
63         * gst-libs/gst/video/video.h:
64         Fix up build flags and include statement for the new generated
65         enumtypes files, to fix dist.
66
67 2009-01-05  Jan Schmidt  <jan.schmidt@sun.com>
68
69         * configure.ac:
70         * docs/libs/Makefile.am:
71         * docs/libs/gst-plugins-base-libs-docs.sgml:
72         * docs/libs/gst-plugins-base-libs-sections.txt:
73         * docs/plugins/Makefile.am:
74         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
75         * docs/plugins/gst-plugins-base-plugins-sections.txt:
76         * docs/plugins/gst-plugins-base-plugins.args:
77         * docs/plugins/gst-plugins-base-plugins.hierarchy:
78         * docs/plugins/gst-plugins-base-plugins.interfaces:
79         * docs/plugins/gst-plugins-base-plugins.prerequisites:
80         * docs/plugins/gst-plugins-base-plugins.signals:
81         * docs/plugins/inspect/plugin-app.xml:
82         * gst-libs/gst/Makefile.am:
83         * gst-libs/gst/app/gstappsink.c:
84         * gst-libs/gst/app/gstappsrc.c:
85         * tests/examples/Makefile.am:
86         * tests/examples/app/Makefile.am:
87
88         Move AppSrc/AppSink from gst-plugins-bad. Fixes #564421
89
90 2009-01-05  Wim Taymans  <wim.taymans@collabora.co.uk>
91
92         * gst-libs/gst/audio/gstbaseaudiosink.c:
93         (gst_base_audio_sink_change_state):
94         Avoid holding the OBJECT_LOCK when calling ringbuffer functions that
95         take the ringbuffer lock because rinbuffer lock > OBJECT_LOCK. We can do
96         this because the async_play method is deprecated and usually not called 
97         anymore.
98
99 2009-01-05  Wim Taymans  <wim.taymans@collabora.co.uk>
100
101         * gst/playback/gstplaybin2.c: (notify_source_cb), (activate_group):
102         Disconnect signal handlers before destroying a previous decodebin so
103         that we don't end up causing deadlocks. Fixes #566586.
104
105 2009-01-05  Wim Taymans  <wim.taymans@collabora.co.uk>
106
107         * gst/audiotestsrc/gstaudiotestsrc.c:
108         (gst_audio_test_src_class_init), (gst_audio_test_src_init),
109         (gst_audio_test_src_check_get_range),
110         (gst_audio_test_src_set_property),
111         (gst_audio_test_src_get_property):
112         * gst/audiotestsrc/gstaudiotestsrc.h:
113         Add property to control pull/push based scheduling.
114
115 2009-01-02  Alessandro Decina  <alessandro.d@gmail.com>
116
117         * configure.ac:
118         * tests/examples/seek/Makefile.am:
119         * tests/icles/Makefile.am:
120         Make the seek and colorkey examples depend on gtk+-x11 as they use
121         GDK_WINDOW_XID.
122         Fixes the build with gtk+-quartz.
123
124 2008-12-31  Jan Schmidt  <jan.schmidt@sun.com>
125
126         * win32/common/libgstaudio.def:
127         * win32/common/libgsttag.def:
128         * win32/common/libgstvideo.def:
129         Add new exports to win32 files.
130
131 2008-12-31  Edward Hervey  <edward.hervey@collabora.co.uk>
132
133         * gst-libs/gst/tag/gsttagdemux.c: (gst_tag_demux_result_get_type):
134         * gst-libs/gst/tag/gsttagdemux.h:
135         Add GType for GstTagDemuxResult enum.
136
137 2008-12-31  Edward Hervey  <edward.hervey@collabora.co.uk>
138
139         * gst-libs/gst/video/Makefile.am:
140         * gst-libs/gst/video/video.h:
141         Add glib-mkenum for GstVideoFormat enum GTYPE auto-generation.
142         This will help bindings to use it.
143
144 2008-12-31  Edward Hervey  <edward.hervey@collabora.co.uk>
145
146         * gst-libs/gst/audio/Makefile.am:
147         * gst-libs/gst/audio/audio.c:
148         * gst-libs/gst/audio/multichannel.h:
149         * gst-libs/gst/audio/testchannels.c:
150         * win32/MANIFEST:
151         * win32/common/audio-enumtypes.c:
152         (gst_audio_channel_position_get_type),
153         (gst_ring_buffer_state_get_type),
154         (gst_ring_buffer_seg_state_get_type),
155         (gst_buffer_format_type_get_type), (gst_buffer_format_get_type):
156         * win32/common/audio-enumtypes.h:
157         * win32/common/multichannel-enumtypes.c:
158         * win32/common/multichannel-enumtypes.h:
159         * win32/vs6/grammar.dsp:
160         * win32/vs6/libgstaudio.dsp:
161         * win32/vs7/libgstaudio.vcproj:
162         * win32/vs8/libgstaudio.vcproj:
163         Switch glib-mkenum for gst-libs/gst/audio from multichannel- to
164         audio- in order to wrap all enums declarations of that library.
165         This modification should not matter since that header file is not a
166         public header (it will be included by public headers).
167         Modify win32 crap^Wfiles accordingly.
168
169 2008-12-30  Edward Hervey  <edward.hervey@collabora.co.uk>
170
171         * gst-libs/gst/audio/gstbaseaudiosrc.h:
172         * gst-libs/gst/audio/gstbaseaudiosink.h:
173         Complete Sebastien's commit from the 13th by exporting the
174         _slave_method_get_type() methods.
175
176 2008-12-20  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
177
178         * ext/gio/gstgiobasesink.c: (gst_gio_base_sink_query):
179         * ext/gio/gstgiobasesrc.c: (gst_gio_base_src_class_init),
180         (gst_gio_base_src_query):
181         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_query):
182         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
183         (gst_gnome_vfs_src_query):
184         Implement URI query. Fixes bug #562949.
185
186 2008-12-20  Wim Taymans  <wim.taymans@collabora.co.uk>
187
188         * gst/playback/gstplaybin2.c: (no_more_pads_cb):
189         Add some debug info.
190
191         * gst/playback/gstplaysink.c: (gen_video_chain), (gen_audio_chain),
192         (gst_play_sink_reconfigure), (gst_play_sink_request_pad),
193         (gst_play_sink_release_pad):
194         Add some more debug info.
195         Reconfigure the audio chain when we switch between raw and encoded audio
196         in gapless playback.
197
198 2008-12-20  Wim Taymans  <wim.taymans@collabora.co.uk>
199
200         * gst-libs/gst/audio/gstbaseaudiosink.c:
201         (gst_base_audio_sink_setcaps):
202         Pause the write thread before deactivating and releasing the ringbuffer
203         to avoid a deadlock when we do gapless playback with different sample
204         rates in playbin2.  Fixes #564929.
205
206 2008-12-19  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
207
208         * gst-libs/gst/audio/gstbaseaudiosrc.c:
209         Make GstAudioSrcSlaveMethod get_type() function non-static
210         as it's public now.
211
212         * win32/common/libgstaudio.def:
213         * win32/common/libgstnetbuffer.def:
214         Add some missing functions to the list of exported symbols.
215
216 2008-12-18  Wim Taymans  <wim.taymans@collabora.co.uk>
217
218         Patch by: Andrew Feren <acferen at yahoo dot com>
219
220         * gst-libs/gst/netbuffer/gstnetbuffer.c:
221         (gst_netaddress_get_ip4_address), (gst_netaddress_get_ip6_address),
222         (gst_netaddress_get_address_bytes),
223         (gst_netaddress_set_address_bytes):
224         * gst-libs/gst/netbuffer/gstnetbuffer.h:
225         Make gst_netaddress_get_ip4_address fail for v6 addresses.
226         Make gst_netaddress_get_ip6_address either fail or return the v4
227         address as a transitional v6 address.
228         Add two convenience functions:
229         API: gst_netaddress_get_address_bytes()
230         API: gst_netaddress_set_address_bytes()
231         Fixes #564896.
232
233 2008-12-17  Stefan Kost  <ensonic@users.sf.net>
234
235         * gst/adder/Makefile.am:
236         * gst/adder/gstadder.c:
237           Cleanup variable names to make the adder-loop easier to understand.
238           Also try to use liboil to spee it up, but ifdef it out as it does not
239           make any change for me (Intel pentim M (sse,sse2) please try on other
240           systems).
241
242 2008-12-16  Wim Taymans  <wim.taymans@collabora.co.uk>
243
244         * docs/plugins/Makefile.am:
245         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
246         * docs/plugins/gst-plugins-base-plugins-sections.txt:
247         * gst/tcp/gsttcpclientsink.c:
248         * gst/tcp/gsttcpclientsrc.c:
249         * gst/tcp/gsttcpserversrc.c:
250         Add minimal docs to make the remaining tcp elements show up.
251         Fixes #564139.
252
253 2008-12-13  Tim-Philipp Müller  <tim.muller at collabora co uk>
254
255         * win32/common/config.h:
256           Update to CVS version.
257
258         * win32/common/config.h.in:
259           Hardcode path to plugin install helper exe, just like we hardcode
260           the paths in core. Removes another source of VCS conflicts for
261           people hacking gst-plugins-base on systems with autotools.
262
263 2008-12-13  Edward Hervey  <bilboed@gmail.com>
264
265         * m4/Makefile.am:
266         And a couple more .m4 that don't exist anymore with gettext 0.17
267
268 2008-12-13  Edward Hervey  <edward.hervey@collabora.co.uk>
269
270
271         * m4/Makefile.am:
272         inttypes.m4 hasn't been available since gettext-0.15, and since we now
273         require gettext >= 0.17 ... we can remove it from the list of files to
274         dist.
275
276 2008-12-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
277
278         * gst-libs/gst/audio/gstbaseaudiosink.c:
279         (gst_base_audio_sink_slave_method_get_type),
280         (gst_base_audio_sink_class_init):
281         * gst-libs/gst/audio/gstbaseaudiosink.h:
282         * gst-libs/gst/audio/gstbaseaudiosrc.c:
283         (gst_base_audio_src_slave_method_get_type),
284         (gst_base_audio_src_class_init):
285         * gst-libs/gst/audio/gstbaseaudiosrc.h:
286         API: Add GST_TYPE_BASE_AUDIO_(SRC|SINK)_SLAVE_METHOD to the
287         public API. This is needed for the C++ bindings to be able
288         to use this base classes. Fixes bug #564200, #564206.
289
290 2008-12-12  Edward Hervey  <edward.hervey@collabora.co.uk>
291
292         * gst-libs/gst/cdda/gstcddabasesrc.c:
293         (gst_cdda_base_src_handle_event):
294         Remove erroneous gst_buffer_ref().
295         * tests/check/libs/rtp.c: (GST_START_TEST):
296         Don't forget to unref the buffer once you're done with it.
297
298 2008-12-12  Stefan Kost  <ensonic@users.sf.net>
299
300         * gst/playback/gstplaybin.c:
301         * gst/playback/gstplaybin2.c:
302           XRef to GstXOverlay.
303
304 2008-12-12  Edward Hervey  <edward.hervey@collabora.co.uk>
305
306         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_finalize):
307         Free the factory array when finalizing.
308         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init):
309         Use a GstStaticPadTemplate since the src pad caps are fixed.
310
311 2008-12-12  Edward Hervey  <edward.hervey@collabora.co.uk>
312
313         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_base_init),
314         (gst_vorbis_enc_init):
315         Make vorbisenc's pad template behave like vorbisdec's. Fixes a leak with
316         pad templates.
317
318 2008-12-12  Edward Hervey  <edward.hervey@collabora.co.uk>
319
320         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
321         (gst_riff_create_video_template_caps):
322         Add mapping for VP6 in avi/riff.
323
324 2008-12-11  Edward Hervey  <edward.hervey@collabora.co.uk>
325
326         * gst/subparse/samiparse.c: (sami_context_push_state),
327         (sami_context_pop_state), (start_sami_element), (end_sami_element):
328         Some versions of libxml seem to be very picky as to strict formatting
329         of the input and never 'close' the final </body> tag.
330         In order to fix that bad behaviour, we trigger the flushing of
331         remaining data on both </body> and </sami>.
332         Fixes #557365
333
334 2008-12-11  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
335
336         Patch by: Guillaume Emont <guillaume at fluendo dot com>
337
338         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
339         Add typefinders for MS Word files and OS X .DS_Store files to
340         prevent them to be recognized as MPEG files. Fixes bug #564098.
341
342 2008-12-11  Wim Taymans  <wim.taymans@collabora.co.uk>
343
344         * gst/playback/gstplaysink.c: (gen_audio_chain),
345         (gst_play_sink_reconfigure):
346         Add some more debug info.
347         Fix linking of just an encoded sink.
348         Handle failure to create a sink chain more gracefully than crashing.
349
350 2008-12-11  Wim Taymans  <wim.taymans@collabora.co.uk>
351
352         * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
353         Pushing 10 buffers is enough to run the test.
354
355 2008-12-11  Wim Taymans  <wim.taymans@collabora.co.uk>
356
357         * tests/examples/seek/seek.c: (do_seek), (stop_cb),
358         (skip_toggle_cb), (rate_spinbutton_changed_cb), (msg_segment_done),
359         (main):
360         Hook up the SKIP seek flag.
361
362 2008-12-10  Wim Taymans  <wim.taymans@collabora.co.uk>
363
364         * gst/playback/gstplaybin2.c: (pad_added_cb):
365         Error out with a missing-plugin error when the input-selector was not
366         found.
367
368         * gst/playback/gstplaysink.c: (gst_play_sink_reconfigure):
369         Indentation.
370
371 2008-12-10  Wim Taymans  <wim.taymans@collabora.co.uk>
372
373         * gst/playback/gstplaysink.c: (gst_play_sink_class_init),
374         (gst_play_sink_dispose), (gst_play_sink_finalize), (try_element),
375         (gen_video_chain), (gen_audio_chain), (gst_play_sink_reconfigure),
376         (gst_play_sink_send_event), (gst_play_sink_change_state):
377         Use G_DEFINE_TYPE.
378         Try to set the selected sink to READY before using it. This will allow
379         for detection of incompatible formats sooner.
380         Don't cause a fatal error when conversion elements are missing but post
381         a missing-element message and a warning instead because things might
382         still link and run fine.
383         Simplyfy the construction of audio and video sink chains.
384
385 2008-12-10  Wim Taymans  <wim.taymans@collabora.co.uk>
386
387         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_class_init),
388         (gst_ogg_pad_dispose), (gst_ogg_pad_finalize):
389         Use G_DEFINE_TYPE for the OggPad to get some threadsafe type 
390         init from glib.
391
392 2008-12-10  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
393
394         Patch by: Luis Menina <liberforce at freeside dot fr>
395
396         * gst-libs/gst/floatcast/floatcast.h:
397         * gst/typefind/gsttypefindfunctions.c:
398         Include glib.h instead of a specific GLib header. Including single
399         GLib headers is deprecated. Fixes bug #563904.
400
401 2008-12-09  Julien Moutte  <julien@fluendo.com>
402
403         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps): 
404         Support higher max audio rates for some formats (WAV, Vorbis, LPCM).
405
406 2008-12-09  Stefan Kost  <ensonic@users.sf.net>
407
408         * gst-libs/gst/riff/riff-read.c:
409           Fix handling of odd chunks in riff metadata.
410
411 2008-12-08  Wim Taymans  <wim.taymans@collabora.co.uk>
412
413         * gst/volume/gstvolume.c: (gst_volume_class_init),
414         (volume_before_transform), (volume_transform_ip):
415         Use new basetransform vmethod to reconfigure the dynamic properties and
416         any pending volume/mute changes. Fixes #563508.
417
418 2008-12-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
419
420         * configure.ac:
421         First check for "theoraenc theoradec" and if that failed check
422         for "theora >= 1.0alpha5". The former appeared in 1.0beta3 and
423         deprecate the latter. Also linking on Windows fails with just "theora"
424         and the version check would fail for the release candidates.
425         Fixes bug #563718.
426
427 2008-12-08  Stefan Kost  <ensonic@users.sf.net>
428
429         * gst/playback/gstdecodebin.c:
430         * gst/playback/gstdecodebin2.c:
431           Add basic docs to decodebin and link to decodebin from decodebin2.
432           
433 2008-12-08  Wim Taymans  <wim.taymans@collabora.co.uk>
434
435         Patch by: Olivier Crete  <tester at tester ca>
436
437         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_packet_remove):
438         * gst-libs/gst/rtp/gstrtcpbuffer.h:
439         Implement gst_rtcp_packet_remove(). Fixes #563174.
440
441         * tests/check/libs/rtp.c: (GST_START_TEST), (rtp_suite):
442         Add unit test for some RTCP functions.
443
444 2008-12-04  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
445
446         * configure.ac:
447         Apparently AC_CONFIG_MACRO_DIR breaks when using more
448         than one macro directory, reverting last change.
449
450 2008-12-04  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
451
452         * configure.ac:
453         Set AC_CONFIG_MACRO_DIR to common/m4 to point autoconf to
454         our M4 macros.
455
456 2008-12-03  Edward Hervey  <edward.hervey@collabora.co.uk>
457
458         * sys/ximage/ximagesink.c: (gst_ximagesink_buffer_alloc):
459         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
460         Clear all flags on buffers returned from the image pool.
461         Fixes #563143
462
463 2008-11-29  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
464
465         Patch by: Cygwin Ports maintainer
466                   <yselkowitz at users dot sourceforge dot net>
467
468         * autogen.sh:
469         * configure.ac:
470         Require gettext 0.17 because older versions don't mix with libtool
471         2.2. At build time an older gettext version will still work.
472         Fixes bug #556091.
473
474 2008-11-28  Christian Schaller <christian.schaller@collabora.co.uk>
475
476         * gst/speexresample/Makefile.am: fix build by removing -lgstaudio 
477
478 2008-11-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
479
480         * docs/plugins/gst-plugins-base-plugins.args:
481         * docs/plugins/gst-plugins-base-plugins.hierarchy:
482         * docs/plugins/gst-plugins-base-plugins.interfaces:
483         * docs/plugins/gst-plugins-base-plugins.prerequisites:
484         * docs/plugins/inspect/plugin-videorate.xml:
485         * gst/speexresample/gstspeexresample.c:
486         Update documentation of speexresample for the new element name.
487
488 2008-11-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
489
490         * gst/speexresample/README:
491         Update README with the latest diff between the Speex resampler
492         and our copy.
493
494 2008-11-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
495
496         * gst/speexresample/gstspeexresample.c: (plugin_init):
497         Update the debug category from speex_resample to audioresample.
498
499 2008-11-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
500
501         * gst/audioresample/Makefile.am:
502         * gst/audioresample/buffer.c:
503         * gst/audioresample/buffer.h:
504         * gst/audioresample/debug.c:
505         * gst/audioresample/debug.h:
506         * gst/audioresample/functable.c:
507         * gst/audioresample/functable.h:
508         * gst/audioresample/gstaudioresample.c:
509         * gst/audioresample/gstaudioresample.h:
510         * gst/audioresample/resample.c:
511         * gst/audioresample/resample.h:
512         * gst/audioresample/resample_chunk.c:
513         * gst/audioresample/resample_functable.c:
514         * gst/audioresample/resample_ref.c:
515         * tests/check/elements/audioresample.c:
516         Remove audioresample files.
517
518 2008-11-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
519
520         * docs/plugins/inspect/plugin-audioresample.xml:
521         Regenerated for library filename change.
522
523 2008-11-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
524
525         * configure.ac:
526         * docs/plugins/Makefile.am:
527         * docs/plugins/gst-plugins-base-plugins-sections.txt:
528         * docs/plugins/gst-plugins-base-plugins.args:
529         * docs/plugins/gst-plugins-base-plugins.hierarchy:
530         * docs/plugins/gst-plugins-base-plugins.interfaces:
531         * docs/plugins/gst-plugins-base-plugins.prerequisites:
532         * docs/plugins/inspect/plugin-adder.xml:
533         * docs/plugins/inspect/plugin-alsa.xml:
534         * docs/plugins/inspect/plugin-audioconvert.xml:
535         * docs/plugins/inspect/plugin-audiorate.xml:
536         * docs/plugins/inspect/plugin-audioresample.xml:
537         * docs/plugins/inspect/plugin-audiotestsrc.xml:
538         * docs/plugins/inspect/plugin-cdparanoia.xml:
539         * docs/plugins/inspect/plugin-decodebin.xml:
540         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
541         * docs/plugins/inspect/plugin-gdp.xml:
542         * docs/plugins/inspect/plugin-gio.xml:
543         * docs/plugins/inspect/plugin-gnomevfs.xml:
544         * docs/plugins/inspect/plugin-libvisual.xml:
545         * docs/plugins/inspect/plugin-ogg.xml:
546         * docs/plugins/inspect/plugin-pango.xml:
547         * docs/plugins/inspect/plugin-playback.xml:
548         * docs/plugins/inspect/plugin-queue2.xml:
549         * docs/plugins/inspect/plugin-subparse.xml:
550         * docs/plugins/inspect/plugin-tcp.xml:
551         * docs/plugins/inspect/plugin-theora.xml:
552         * docs/plugins/inspect/plugin-typefindfunctions.xml:
553         * docs/plugins/inspect/plugin-uridecodebin.xml:
554         * docs/plugins/inspect/plugin-video4linux.xml:
555         * docs/plugins/inspect/plugin-videorate.xml:
556         * docs/plugins/inspect/plugin-videoscale.xml:
557         * docs/plugins/inspect/plugin-videotestsrc.xml:
558         * docs/plugins/inspect/plugin-volume.xml:
559         * docs/plugins/inspect/plugin-vorbis.xml:
560         * docs/plugins/inspect/plugin-ximagesink.xml:
561         * docs/plugins/inspect/plugin-xvimagesink.xml:
562         * gst/speexresample/gstspeexresample.c: (plugin_init):
563         * gst/speexresample/Makefile.am:
564         * tests/check/Makefile.am:
565         * tests/check/elements/speexresample.c: (setup_speexresample),
566         (GST_START_TEST), (test_pipeline):
567         Rename the moved speexresample to audioresample, integrate into the
568         build system and remove the old audioresample from the build system.
569         Fixes bug #558124, #385061, #346218, #116051.
570
571 2008-11-27  Wim Taymans  <wim.taymans@collabora.co.uk>
572
573         * gst-libs/gst/audio/gstbaseaudiosrc.c:
574         (gst_base_audio_src_get_offset), (gst_base_audio_src_create):
575         Avoid nasty int overflows after about 12 hours and 25 minutes when these
576         code paths are triggered. 
577         A free beer to Håvard Graff for finding this!
578
579 2008-11-27  Wim Taymans  <wim.taymans@collabora.co.uk>
580
581         Patch by: 이문형 <iwings at gmail dot com>
582
583         * gst-libs/gst/rtsp/gstrtspconnection.c:
584         (gst_rtsp_connection_connect):
585         A successful gst_poll_wait() doesn't always mean successful connect() on
586         Windows.  We should check errors by calling gst_poll_fd_has_error().
587         See #561924.
588
589 2008-11-25  Wim Taymans  <wim.taymans@collabora.co.uk>
590
591         * gst-libs/gst/rtp/gstrtcpbuffer.c:
592         Fix typo in the docs.
593
594 2008-11-25  Wim Taymans  <wim.taymans@collabora.co.uk>
595
596         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_sink_event):
597         If no stream was found before receiving EOS, post an error message.
598         Fixes #561924.
599
600 2008-11-25  Wim Taymans  <wim.taymans@collabora.co.uk>
601
602         * ext/theora/gsttheoraenc.h:
603         * ext/theora/theoraenc.c: (gst_theora_enc_init),
604         (theora_buffer_from_packet), (theora_push_packet),
605         (theora_enc_sink_event), (theora_enc_is_discontinuous),
606         (theora_enc_chain):
607         Parse segment events.
608         Pass incomming buffer timestamps to outgoing buffers.
609         Use the running_time to construct the granulepos.
610         Fixes #562163.
611
612 2008-11-25  Wim Taymans  <wim.taymans@collabora.co.uk>
613
614         * gst/playback/gstplaybin2.c: (activate_group):
615         Fix buffer-duration property.
616
617 2008-11-25  Wim Taymans  <wim.taymans@collabora.co.uk>
618
619         * gst-libs/gst/audio/gstbaseaudiosink.c:
620         (gst_base_audio_sink_drain), (gst_base_audio_sink_event),
621         (gst_base_audio_sink_sync_latency), (gst_base_audio_sink_render),
622         (gst_base_audio_sink_change_state):
623         Really fix audiosink drain handling by keeping track of the running_time
624         of the last sample.
625
626 2008-11-24  Michael Smith <msmith@songbirdnest.com>
627
628         * gst/playback/gstplaybin2.c:
629           Add notification of current stream. Add ability to configure buffer
630           sizes.
631         * gst/playback/gsturidecodebin.c:
632           Add ability to configure buffer sizes for streaming mode.
633           Bug #561734.
634
635 2008-11-24  Stefan Kost  <ensonic@users.sf.net>
636
637         * gst-libs/gst/audio/gstbaseaudiosink.c:
638           Time is already in running_time. Remove base_time handling. Fixes
639           audiosinks not draining and thus chopping some audio in the end.
640
641 2008-11-24  David Schleef  <ds@schleef.org>
642
643         * ext/ogg/gstoggmux.c:
644         * ext/ogg/gstoggmux.h:
645           If we're muxing a dirac stream, flush the page after every picture.
646
647 2008-11-24  Stefan Kost  <ensonic@users.sf.net>
648
649         * gst-libs/gst/audio/gstbaseaudiosink.c:
650           Add one log message to check for audio_drained. Sync one log message
651           with the condition. Send EOS after draining audio in pull mode.
652
653 2008-11-24  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
654
655         * ext/gio/gstgiobasesrc.c: (gst_gio_base_src_create):
656         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
657         Use gst_buffer_try_new_and_alloc() and fail properly if the
658         allocation failed. This prevents abort() if downstream elements
659         request an insane amount of memory.
660
661 2008-11-24  Wim Taymans  <wim.taymans@collabora.co.uk>
662
663         * gst/volume/gstvolume.c: (volume_choose_func),
664         (volume_update_volume), (gst_volume_set_volume),
665         (gst_volume_get_volume), (gst_volume_set_mute),
666         (gst_volume_class_init), (gst_volume_init),
667         (volume_process_double), (volume_process_float),
668         (volume_process_int32), (volume_process_int32_clamp),
669         (volume_process_int24), (volume_process_int24_clamp),
670         (volume_process_int16), (volume_process_int16_clamp),
671         (volume_process_int8), (volume_process_int8_clamp), (volume_setup),
672         (volume_transform_ip), (volume_set_property),
673         (volume_get_property):
674         * gst/volume/gstvolume.h:
675         Cleanup volume, define and use default values.
676         Recalculate new volume and mute setup before processing. Fixes #561789.
677
678         * tests/check/elements/volume.c: (GST_START_TEST), (volume_suite):
679         Add controller unit test. Patch by: Jonathan Matthew
680         Fix bogus test that messed with basetransform's internal state.
681
682 2008-11-22  Wim Taymans  <wim.taymans@collabora.co.uk>
683
684         * gst/videorate/gstvideorate.c:
685         Add jpeg and png image media types to the caps. Fixes #561436.
686
687 2008-11-22  Wim Taymans  <wim.taymans@collabora.co.uk>
688
689         * gst/playback/gstplaysink.c: (gen_audio_chain):
690         Don't post an error when we can't configure the volume but post a
691         warning instead. Fixes #561780.
692
693 2008-11-21  David Schleef  <ds@schleef.org>
694
695         Patch by: Jonathan Rosser <jonathan.rosser@rd.bbc.co.uk>
696
697         * gst/videotestsrc/gstvideotestsrc.c:
698         * gst/videotestsrc/gstvideotestsrc.h:
699         * gst/videotestsrc/videotestsrc.c:
700         * gst/videotestsrc/videotestsrc.h:
701           Add a zone plate pattern generator based on BBC R&D Report
702           1978/23 (yeah *that* 1978).  Try 'videotestsrc pattern=zone-plate
703           kx2=20 ky2=20 kt=1'.
704
705 2008-11-20  Michael Smith <msmith@songbirdnest.com>
706
707         * gst/playback/gstdecodebin2.c:
708           Fix random fat-fingering making this not compile.
709
710 2008-11-20  Michael Smith <msmith@songbirdnest.com>
711
712         * gst/playback/gstdecodebin2.c:
713           If the top-level type of the stream is plain text, don't try to decode
714           it, matching behaviour of decodebin.
715         * gst/playback/gstplaysink.c:
716           If we fail to generate a text chain (e.g. due to missing optional
717           plugins), don't crash.
718
719 2008-11-20  Michael Smith <msmith@songbirdnest.com>
720
721         * gst-libs/gst/rtsp/gstrtspdefs.c:
722           Fix win32 build. Oops.
723
724 2008-11-20  Michael Smith <msmith@songbirdnest.com>
725
726         * gst-libs/gst/rtsp/gstrtspdefs.c:
727           Use WSAGetLastError() rather than errno/h_errno on win32.
728
729 2008-11-20  Michael Smith <msmith@songbirdnest.com>
730
731         * gst-libs/gst/riff/riff-media.c:
732           Support WMA Lossless properly.
733
734 2008-11-18  David Schleef  <ds@schleef.org>
735
736         * gst/videotestsrc/gstvideotestsrc.c:
737         * gst/videotestsrc/gstvideotestsrc.h:
738         * gst/videotestsrc/videotestsrc.c:
739         * gst/videotestsrc/videotestsrc.h:
740           Add "colorspec" property, specifying whether to generate BT.601
741           or BT.709 video.  This only affects YCbCr values, not RGB, since
742           if you're generating a 709 test pattern, presumably you want
743           709 RGB primaries, not 601.  Also add "smpte75" pattern, which
744           uses 75% colors instead of 100%, since this is often more useful
745           for testing (and also follows the SMPTE EG-1 guideline).
746
747 2008-11-18  Alessandro Decina  <alessandro.d@gmail.com>
748
749         * gst/playback/gstdecodebin.c:
750         Add a "sink-caps" property to decodebin like it's done for decodebin2.
751         Fixes #560380.
752
753 2008-11-14  Jan Schmidt  <jan.schmidt@sun.com>
754
755         * gst/audioresample/gstaudioresample.c:
756         Guard against a NULL dereference I somehow encountered -
757         with a FLUSH_STOP arriving either before basetransform _start(),
758         or after _stop().
759
760         * gst/typefind/gsttypefindfunctions.c:
761         Make sure we never jump backwards when typefinding corrupt mov files.
762
763 2008-11-14  Jan Schmidt  <jan.schmidt@sun.com>
764
765         * gst-libs/gst/interfaces/propertyprobe.c:
766         Fix random type causing a docs warning.
767
768 2008-11-14  Stefan Kost  <ensonic@users.sf.net>
769
770         * sys/v4l/gstv4l.c:
771           Give it a minimal rank for autovideosrc.
772
773 2008-11-13  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
774
775         * gst/typefind/gsttypefindfunctions.c: (jp2_type_find),
776         (plugin_init):
777         Improve typefinding of ISO JPEG2000 mime types.
778
779 2008-11-13  Wim Taymans  <wim.taymans@collabora.co.uk>
780
781         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
782         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_setcaps),
783         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
784         * sys/xvimage/xvimagesink.h:
785         Avoid typechecking when we do trivial casts.
786         Move error handling out of the main program flow.
787         Sneak in the display-region caps property, not completely correct yet.
788         Cache the width/height in buffer_alloc instead of parsing it from the
789         caps all the time.
790
791 2008-11-13  Wim Taymans  <wim.taymans@collabora.co.uk>
792
793         * gst/playback/gstplaybin2.c: (deactivate_group):
794         don't try to unlink the selector sinkpad when we don't have it yet. This
795         can happen if an error occured before the group was complete.
796
797 2008-11-13  Wim Taymans  <wim.taymans@collabora.co.uk>
798
799         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data),
800         (gst_rtp_buffer_set_packet_len), (gst_rtp_buffer_get_packet_len),
801         (gst_rtp_buffer_get_header_len), (gst_rtp_buffer_get_version),
802         (gst_rtp_buffer_set_version), (gst_rtp_buffer_get_padding),
803         (gst_rtp_buffer_set_padding), (gst_rtp_buffer_pad_to),
804         (gst_rtp_buffer_get_extension), (gst_rtp_buffer_set_extension),
805         (gst_rtp_buffer_get_extension_data),
806         (gst_rtp_buffer_set_extension_data), (gst_rtp_buffer_get_ssrc),
807         (gst_rtp_buffer_set_ssrc), (gst_rtp_buffer_get_csrc_count),
808         (gst_rtp_buffer_get_csrc), (gst_rtp_buffer_set_csrc),
809         (gst_rtp_buffer_get_marker), (gst_rtp_buffer_set_marker),
810         (gst_rtp_buffer_get_payload_type),
811         (gst_rtp_buffer_set_payload_type), (gst_rtp_buffer_get_seq),
812         (gst_rtp_buffer_set_seq), (gst_rtp_buffer_get_timestamp),
813         (gst_rtp_buffer_set_timestamp),
814         (gst_rtp_buffer_get_payload_subbuffer),
815         (gst_rtp_buffer_get_payload_len), (gst_rtp_buffer_get_payload):
816         Avoid expensive type checks we already did as part of the 
817         _validate() function that should be called first.
818
819 2008-11-11  Wim Taymans  <wim.taymans@collabora.co.uk>
820
821         * gst-libs/gst/rtp/gstbasertpdepayload.c: (create_segment_event),
822         (gst_base_rtp_depayload_push_full),
823         (gst_base_rtp_depayload_set_gst_timestamp):
824         Fix some cases where a newsegment event was not sent.
825
826 2008-11-11  Wim Taymans  <wim.taymans@collabora.co.uk>
827
828         * gst/playback/gstplaybin2.c: (activate_group):
829         Catch state change errors and stop from the uridecodebin elements
830         instead of trying to continue in vain.
831
832 2008-11-10  Wim Taymans  <wim.taymans@collabora.co.uk>
833
834         * gst-libs/gst/audio/gstbaseaudiosink.c:
835         (gst_base_audio_sink_sync_latency), (gst_base_audio_sink_render),
836         (gst_base_audio_sink_callback):
837         Use gst_base_sink_do_preroll() to wait for PLAYING and before waiting
838         for the latency to expire, fixes #559567.
839
840 2008-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
841
842         * gst/adder/gstadder.c:
843           Change author string after seeing output of gst-inspector.
844
845 2008-11-10  Wim Taymans  <wim.taymans@collabora.co.uk>
846
847         * gst/playback/gstplaysink.c: (gst_play_sink_reconfigure):
848         Don't try to do crazy things when we only have a text pad without a
849         video pad. Fixes #559478.
850
851 2008-11-06  Wim Taymans  <wim.taymans@collabora.co.uk>
852
853         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
854         Fix case where we don't have a range for the rates or channels as is the
855         case with truespeech.
856
857 2008-11-05  Wim Taymans  <wim.taymans@collabora.co.uk>
858
859         * gst/volume/gstvolume.c: (volume_update_real_volume),
860         (gst_volume_set_volume), (gst_volume_get_volume),
861         (gst_volume_set_mute), (gst_volume_init), (volume_setup),
862         (volume_transform_ip), (volume_update_mute),
863         (volume_update_volume), (volume_get_property):
864         * gst/volume/gstvolume.h:
865         Keep negotiated state in a separate variable.
866         Protect the volume and mute properties with the object lock.
867         Protect modifying the transform with the transform lock.
868
869 2008-11-05  Wim Taymans  <wim.taymans@collabora.co.uk>
870
871         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
872         (gst_ffmpeg_pixfmt_to_caps):
873         Only convert caps to string when debug is enabled.
874
875 2008-11-04  Wim Taymans  <wim.taymans@collabora.co.uk>
876
877         * ext/theora/gsttheoradec.h:
878         * ext/theora/theoradec.c: (gst_theora_dec_init),
879         (gst_theora_dec_reset), (theora_dec_src_event),
880         (theora_dec_sink_event), (theora_handle_type_packet):
881         Copy seqnum.
882         Keep events in a pending list, like vorbisdec, instead of trying
883         to construct a segment event ourselves.
884
885         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
886         (vorbis_dec_src_event), (vorbis_dec_sink_event):
887         * ext/vorbis/vorbisdec.h:
888         Copy seqnum.
889
890 2008-11-04  Wim Taymans  <wim.taymans@collabora.co.uk>
891
892         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
893         (gst_ogg_demux_deactivate_current_chain),
894         (gst_ogg_demux_perform_seek), (gst_ogg_demux_handle_page),
895         (gst_ogg_demux_loop):
896         * ext/ogg/gstoggdemux.h:
897         Copy seqnums around to track playback segments and messages.
898
899 2008-11-03  Wim Taymans  <wim.taymans@collabora.co.uk>
900
901         Based on patch by: Matthias Kretz <kretz at kde dot org>
902
903         * ext/alsa/gstalsasink.c: (gst_alsasink_open),
904         (gst_alsasink_prepare), (gst_alsasink_unprepare),
905         (gst_alsasink_write):
906         Make all access non-blocking so that we can better handle unplugging
907         of usb devices. Fixes #559111
908
909 2008-11-03  Wim Taymans  <wim.taymans@collabora.co.uk>
910
911         Patch by: Damien Lespiau  <damien.lespiau gmail com>
912
913         * gst-libs/gst/rtsp/gstrtspconnection.c:
914         (gst_rtsp_connection_write):
915         Make the next call to poll not depend on previous calls to poll with or
916         without reading from the active descriptor. Fixes #544293.
917
918 2008-10-31  Wim Taymans  <wim.taymans@collabora.co.uk>
919
920         Patch by: Nick Haddad <nick at haddads dot net>
921
922         * gst-libs/gst/riff/riff-ids.h:
923         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
924         Add support for other fourcc codes that are commonly used for
925         'uncompressed RGB', including 'RGB ', 'RAW ', and 0.
926         Fixes #558553.
927
928 2008-10-30  Stefan Kost  <ensonic@users.sf.net>
929
930         * gst/audioresample/gstaudioresample.c:
931           Return the result of parent_class->event().
932
933 2008-10-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
934
935         * gst/audioresample/gstaudioresample.c:
936         (gst_audioresample_class_init), (audioresample_fixate_caps):
937         Fixate the rate to the nearest supported rate instead of
938         the first one. Fixes bug #549510.
939
940 2008-10-27  Wim Taymans  <wim.taymans@collabora.co.uk>
941
942         * win32/common/libgstaudio.def:
943         Add new symbols.
944
945 2008-10-23  Wim Taymans  <wim.taymans@collabora.co.uk>
946
947         * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
948         Attempt to make obfuscated code clearer.
949
950 2008-10-23  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
951
952         * docs/libs/gst-plugins-base-libs-sections.txt:
953         * gst-libs/gst/floatcast/floatcast.h:
954         Move float endianness conversion macros to core. Second part of
955         bug ##555196.
956
957 2008-10-22  Stefan Kost  <ensonic@users.sf.net>
958
959         * sys/ximage/ximagesink.h:
960         * sys/xvimage/xvimagesink.h:
961           Don't mark as gtk-doc docs as they aren't public.
962
963 2008-10-22  Stefan Kost  <ensonic@users.sf.net>
964
965         * sys/xvimage/xvimagesink.c:
966         * sys/xvimage/xvimagesink.h:
967         * tests/icles/Makefile.am:
968         * tests/icles/test-colorkey.c:
969           Allow setting colorkey if possible. Implement property probe interface
970           for optional X features (autopaint-colorkey, double-buffer and
971           colorkey). Fixes #554533
972
973 2008-10-22  Sebastian Dröge  <slomo@circular-chaos.org>
974
975         * gst-libs/gst/tag/tags.c: (gst_tag_image_data_to_image_buffer):
976         Remove useless buffer size assignment. It already has this value.
977
978 2008-10-20  Wim Taymans  <wim.taymans@collabora.co.uk>
979
980         * gst-libs/gst/audio/gstaudiosink.c:
981         (gst_audioringbuffer_class_init), (gst_audioringbuffer_acquire),
982         (gst_audioringbuffer_activate), (gst_audioringbuffer_release),
983         (gst_audioringbuffer_stop):
984         Implement a separate activate functions to start monitoring the segments
985         or, in pull mode, pulling in data.
986
987         * gst-libs/gst/audio/gstbaseaudiosink.c:
988         (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
989         (gst_base_audio_sink_query_pad), (gst_base_audio_sink_query),
990         (gst_base_audio_sink_setcaps), (gst_base_audio_sink_callback),
991         (gst_base_audio_sink_activate_pull),
992         (gst_base_audio_sink_async_play),
993         (gst_base_audio_sink_change_state):
994         Implement pad and element convert query function.
995         Activate the ringbuffer.
996         Use the segment last_stop value as the offset to pull.
997         Use new basesink _do_preroll() method to preroll in the pulling thread.
998         Take appropriate locking in the pulling thread.
999
1000         * gst-libs/gst/audio/gstringbuffer.h:
1001         Update some docs.
1002
1003 2008-10-20  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1004
1005         * gst/typefind/gsttypefindfunctions.c: (mxf_type_find):
1006         Improve MXF typefinding a bit by searching for a header partition
1007         pack instead of just a general partition pack and checking more
1008         bytes for valid values.
1009
1010 2008-10-20  Wim Taymans  <wim.taymans@collabora.co.uk>
1011
1012         * tests/icles/.cvsignore:
1013         update ignore file.
1014
1015         * tests/icles/Makefile.am:
1016         * tests/icles/test-box.c: (make_pipeline), (main):
1017         Add another interactive command line experimentation suite for
1018         dynamically boxing/cropping/saling an input video.
1019
1020 2008-10-17  Wim Taymans  <wim.taymans@collabora.co.uk>
1021
1022         * docs/libs/gst-plugins-base-libs-sections.txt:
1023         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_convert),
1024         (gst_ring_buffer_activate), (gst_ring_buffer_is_active):
1025         * gst-libs/gst/audio/gstringbuffer.h:
1026         Add methods to more accuratly control the pulling thread of a
1027         ringbuffer.
1028         Add format conversion helper code to the ringbuffer.
1029         API: GstRingBuffer:gst_ring_buffer_activate()
1030         API: GstRingBuffer:gst_ring_buffer_is_active()
1031         API: GstRingBuffer:gst_ring_buffer_convert()
1032
1033 2008-10-16  Wim Taymans  <wim.taymans@collabora.co.uk>
1034
1035         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func),
1036         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
1037         (gst_audioringbuffer_stop):
1038         Signal thread startup earlier so that we can immediatly go into pull
1039         mode when we have to and block on preroll.
1040
1041 2008-10-16  Wim Taymans  <wim.taymans@collabora.co.uk>
1042
1043         * gst-libs/gst/audio/gstringbuffer.c:
1044         (gst_ring_buffer_prepare_read):
1045         In pull mode we want the callback to prepull a buffer we can preroll on
1046         even when we are not yet playing.
1047
1048 2008-10-16  Stefan Kost  <ensonic@users.sf.net>
1049
1050         * ext/alsa/Makefile.am:
1051         * ext/cdparanoia/Makefile.am:
1052         * ext/gio/Makefile.am:
1053         * ext/gnomevfs/Makefile.am:
1054         * ext/libvisual/Makefile.am:
1055         * ext/ogg/Makefile.am:
1056         * ext/pango/Makefile.am:
1057         * ext/theora/Makefile.am:
1058         * ext/vorbis/Makefile.am:
1059         * gst/adder/Makefile.am:
1060         * gst/audioconvert/Makefile.am:
1061         * gst/audiorate/Makefile.am:
1062         * gst/audioresample/Makefile.am:
1063         * gst/audiotestsrc/Makefile.am:
1064         * gst/ffmpegcolorspace/Makefile.am:
1065         * gst/gdp/Makefile.am:
1066         * gst/playback/Makefile.am:
1067         * gst/subparse/Makefile.am:
1068         * gst/tcp/Makefile.am:
1069         * gst/typefind/Makefile.am:
1070         * gst/videorate/Makefile.am:
1071         * gst/videoscale/Makefile.am:
1072         * gst/videotestsrc/Makefile.am:
1073         * gst/volume/Makefile.am:
1074         * sys/v4l/Makefile.am:
1075         * sys/ximage/Makefile.am:
1076         * sys/xvimage/Makefile.am:
1077           Don't install static libs for plugins. Fixes #550851 for base.
1078
1079 2008-10-16  Wim Taymans  <wim.taymans@collabora.co.uk>
1080
1081         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_init):
1082         Set the default blocksize to -1 because we will then use the configured
1083         samplesperbuffer to create our output buffer.
1084
1085 2008-10-15  Edward Hervey  <edward.hervey@collabora.co.uk>
1086
1087         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
1088         (gst_riff_create_video_template_caps):
1089         Add mappping for the KMVC (Karl Morton's Video) Codec.
1090
1091 2008-10-15  Edward Hervey  <edward.hervey@collabora.co.uk>
1092
1093         * gst/typefind/gsttypefindfunctions.c: (flac_type_find):
1094         Don't forget to advance the offset of what we're matching against, else
1095         we end up in a forever loop.
1096
1097 2008-10-15  Sebastian Dröge  <slomo@circular-chaos.org>
1098
1099         * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
1100         Improve typefinding a bit. If we don't have a Unicode charset
1101         try GST_SUBTITLE_ENCODING and otherwise try ISO-8859-15.
1102
1103 2008-10-14  Edward Hervey  <edward.hervey@collabora.co.uk>
1104
1105         * ext/theora/theoradec.c: (theora_dec_decode_buffer):
1106         Fix build on macosx.
1107
1108 2008-10-13  Wim Taymans  <wim.taymans@collabora.co.uk>
1109
1110         Based on patch by: Robin Stocker <robin at nibor dot org>
1111
1112         * ext/theora/gsttheoradec.h:
1113         * ext/theora/theoradec.c: (gst_theora_dec_init),
1114         (theora_dec_setcaps), (theora_handle_type_packet),
1115         (theora_dec_decode_buffer), (theora_dec_change_state):
1116         Parse input caps and make the PAR override the encoded PAR when
1117         specified by a container. Fixes #555699.
1118
1119 2008-10-13  Wim Taymans  <wim.taymans@collabora.co.uk>
1120
1121         * gst-libs/gst/rtp/gstbasertpdepayload.c:
1122         (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain),
1123         (gst_base_rtp_depayload_set_gst_timestamp),
1124         (gst_base_rtp_depayload_change_state):
1125         * gst-libs/gst/rtp/gstbasertpdepayload.h:
1126         Add some more G_LIKELY
1127         Fail when the setcaps function was not called.
1128
1129         * gst-libs/gst/rtp/gstbasertppayload.c:
1130         (gst_basertppayload_set_outcaps):
1131         Propagate return value of setcaps.
1132
1133 2008-10-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1134
1135         * gst/subparse/Makefile.am:
1136         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
1137         (gst_sub_parse_class_init), (gst_sub_parse_init),
1138         (gst_convert_to_utf8), (detect_encoding), (convert_encoding),
1139         (get_next_line), (gst_sub_parse_data_format_autodetect),
1140         (feed_textbuf), (handle_buffer), (gst_sub_parse_change_state),
1141         (gst_subparse_type_find):
1142         * gst/subparse/gstsubparse.h:
1143         Add support for UTF16/UTF32 subtitles as long as the first bytes of
1144         the first buffer contain the BOM. This also adds support for other
1145         encodings that allow NUL bytes via the encoding property.
1146         Fixes bugs #552237 and #456788.
1147
1148 2008-10-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1149
1150         * gst-libs/gst/tag/tags.c: (gst_tag_image_data_to_image_buffer):
1151         Don't drop the last byte of image tags if they're not an URI list.
1152         Fixes bug #556066.
1153
1154 2008-10-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1155
1156         * gst/typefind/gsttypefindfunctions.c: (flac_type_find):
1157         For looking at the 4th byte we have to get 4 bytes of course
1158         and not 3.
1159
1160 2008-10-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1161
1162         * gst/typefind/gsttypefindfunctions.c: (flac_type_find):
1163         Improve FLAC-without-headers typefinding by looking at most of the
1164         frame header and checking if invalid values are used. Should prevent
1165         quite some false positives compared to the old version which only
1166         check if the first 14 bits are set.
1167
1168 2008-10-11  Stefan Kost  <ensonic@users.sf.net>
1169
1170         * sys/xvimage/xvimagesink.c:
1171           Don't assert on caps==NULL.
1172
1173 2008-10-10  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1174
1175         * gst/subparse/gstsubparse.c:
1176         (gst_sub_parse_data_format_autodetect), (handle_buffer),
1177         (gst_sub_parse_change_state):
1178         * gst/subparse/gstsubparse.h:
1179         * tests/check/elements/subparse.c: (GST_START_TEST):
1180         Add support for subtitle files with UTF-8 BOM at the beginning
1181         by simple stripping it from the first line before passing it
1182         to any parsing code. Fixes bug #555257 and playback of files
1183         created by Gnome Subtitles.
1184
1185 2008-10-10  Wim Taymans  <wim.taymans@collabora.co.uk>
1186
1187         * gst/audiotestsrc/gstaudiotestsrc.c:
1188         (gst_audio_test_src_class_init), (gst_audio_test_src_init),
1189         (gst_audio_test_src_src_fixate), (gst_audio_test_src_setcaps),
1190         (gst_audio_test_src_start), (gst_audio_test_src_stop),
1191         (gst_audio_test_src_do_seek), (gst_audio_test_src_check_get_range),
1192         (gst_audio_test_src_create):
1193         * gst/audiotestsrc/gstaudiotestsrc.h:
1194         Define the default property values in the usual place.
1195         Implement start/stop to reset values correctly.
1196         Calculate the sample size only once when we negotiate.
1197         Rename some values to make more sense.
1198         Keep track of our byte range.
1199         Add support for pull based scheduling. Disabled for now until we have
1200         the whole stack working.
1201         Set the BUFFER_OFFSET correctly.
1202
1203 2008-10-10  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1204
1205         Based on a patch by: xavierb at gmail dot com
1206
1207         * gst/subparse/gstsubparse.c:
1208         (gst_sub_parse_data_format_autodetect):
1209         * tests/check/elements/subparse.c: (GST_START_TEST):
1210         Make the detection of the used subtitle a bit less strict
1211         for srt subtitles. Fixes bug #555607.
1212
1213 2008-10-10  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1214
1215         * ext/vorbis/vorbisenc.c:
1216         (gst_vorbis_enc_buffer_check_discontinuous):
1217         Fix discontinuity detection which was broken by last commit.
1218
1219 2008-10-09  Tim-Philipp Müller  <tim.muller at collabora co uk>
1220
1221         * configure.ac::
1222           Require core CVS for ghostpad API additions used by decodebin2.
1223
1224 2008-10-08  Edward Hervey  <edward.hervey@collabora.co.uk>
1225
1226         * gst-libs/gst/audio/gstbaseaudiosrc.c:
1227         (gst_base_audio_src_create):
1228         Fix debug statements (space between '%' and actual format).
1229
1230 2008-10-08  Wim Taymans  <wim.taymans@collabora.co.uk>
1231
1232         * gst/playback/gstdecodebin2.c: (gst_decode_pad_activate):
1233         Remove bogus assert, the decodepad could have been created inside an
1234         already existing group.
1235
1236 2008-10-08  Andy Wingo  <wingo@pobox.com>
1237
1238         * gst/playback/gstdecodebin2.c (expose_pad): Fix typo: unset
1239         target instead of setting it.
1240         (gst_decode_pad_activate, gst_decode_pad_unblock): This is now the
1241         API for a decode pad. The bugfix is that we set the group in
1242         activate(), not when the pad was created because it might be NULL
1243         then.
1244         (gst_decode_group_control_source_pad, gst_decode_group_expose):
1245         Update to use the API.
1246
1247 2008-10-08  Andy Wingo  <wingo@pobox.com>
1248
1249         * gst/playback/gstdecodebin2.c (struct _GstDecodePad): Change to
1250         be a subclass of GstGhostPad.
1251         (analyze_new_pad): So, when emitting the signals that determine
1252         how we do autoplugging, already create the ghost pad and use it as
1253         the pad in the signal arguments. This allows applications to make
1254         a connection between the pad passed in e.g. autoplug-continue, and
1255         the pad passed in new-decoded-pad.
1256         (connect_pad, expose_pad): Update to receive the ghosted decode
1257         pad in the args, retargetting it as necessary if we have to plug
1258         the target pad through a multiqueue.
1259         (gst_decode_group_control_source_pad): Adapt to receive an
1260         already-ghosted pad that just needs activation, blocking, and
1261         drain notification.
1262         (sort_end_pads): Adapt for decode pads actually being pads.
1263         (gst_decode_group_expose): Adapt for decode pads actually being
1264         pads. Rewrite the decode pad names so they appear in order. Adds a
1265         new error case if we couldn't set the name.
1266         (gst_decode_group_free, gst_decode_group_hide): Adapt cleanup
1267         logic.
1268         (gst_decode_pad_set_blocked, gst_decode_pad_add_drained_check):
1269         New API for the decode pad, needed because we shouldn't do these
1270         things inside gst_decode_pad_new(), but after.
1271         (gst_decode_pad_new): Change to actually make the real pad, and
1272         delay the blocking/drainage bits.
1273
1274 2008-10-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1275
1276         Patch by: Daniel Drake <dsd at laptop dot org>
1277
1278         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear_collectpads):
1279         Unref all buffers when clearing collectpads. Fixes bug #546955.
1280
1281 2008-10-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1282
1283         Based on a patch by: Klaas <klaas at rivercrew dot net>
1284
1285         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_sink_event),
1286         (gst_vorbis_enc_buffer_check_discontinuous),
1287         (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
1288         * ext/vorbis/vorbisenc.h:
1289         Keep track of the upstream segments and use the running time on that
1290         segment instead of the buffer timestamp everywhere. Fixes bug #525807.
1291
1292 2008-10-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1293
1294         * gst/audioconvert/audioconvert.c: (audio_convert_convert):
1295         Prevent overflows with big buffer when calculating the size of
1296         the intermediate buffer by using gst_util_uint64_scale() instead of
1297         plain arithmetics. Fixes bug #552801.
1298
1299 2008-10-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1300
1301         Patch by: Pavel Zeldin <pzeldin at gmail dot com>
1302
1303         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_render_time),
1304         (gst_clock_overlay_class_init), (gst_clock_overlay_finalize),
1305         (gst_clock_overlay_init), (gst_clock_overlay_set_property),
1306         (gst_clock_overlay_get_property):
1307         * ext/pango/gstclockoverlay.h:
1308         API: Add ability to specify format for date/time display by
1309         adding a "time-format" property.
1310         Fixes bug #554879.
1311
1312 2008-10-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1313
1314         Patch by: Jan Gerber <j at oil21 dot org>
1315
1316         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
1317         (gst_riff_create_video_template_caps):
1318         Add FFV1 fourcc to support playback of FFMPEG lossless video
1319         in AVI. Fixes bug #555319.
1320
1321 2008-10-08  Wim Taymans  <wim.taymans@collabora.co.uk>
1322
1323         Patch by: Håvard Graff <havard dot graff at tandberg dot com>
1324
1325         * gst-libs/gst/audio/gstbaseaudiosrc.c:
1326         (gst_base_audio_src_create):
1327         Implement skew clock slaving. Fixes #552559.
1328
1329 2008-10-08  Wim Taymans  <wim.taymans@collabora.co.uk>
1330
1331         * gst-libs/gst/audio/multichannel.c:
1332         * gst-libs/gst/audio/testchannels.c:
1333         Fix include of config.h
1334
1335 2008-10-06  Wim Taymans  <wim.taymans@collabora.co.uk>
1336
1337         Based on Patch by: Tero Saarni <tero dot saarni at gmail dot com>
1338
1339         * gst-libs/gst/sdp/gstsdpmessage.c: (gst_sdp_parse_line),
1340         (print_media), (gst_sdp_message_dump):
1341         Fix parsing of the c= field containing multicast addresses.
1342         Fixes #552199.
1343         Add the connection info to the session or streams.
1344         Fix parsing of the bandwidth.
1345         Add debugging for the connections and bandwidths for a media.
1346         Add debugging for the bandwidth of the session. 
1347
1348 2008-10-06  Wim Taymans  <wim.taymans@collabora.co.uk>
1349
1350         * gst-libs/gst/rtp/gstbasertppayload.c:
1351         (gst_basertppayload_change_state):
1352         Configure the next seqnum and timestamp in the state change so that they
1353         can be queried soon after.
1354
1355 2008-10-06  Wim Taymans  <wim.taymans@collabora.co.uk>
1356
1357         * gst-libs/gst/rtp/gstbasertpdepayload.c:
1358         (gst_base_rtp_depayload_chain):
1359         Improve debugging of the rtptime.
1360
1361 2008-10-05  Jan Schmidt  <jan.schmidt@sun.com>
1362
1363         * configure.ac:
1364         Back to development -> 0.10.21.1
1365
1366 2008-10-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1367
1368         * gst/typefind/gsttypefindfunctions.c: (flac_type_find),
1369         (plugin_init):
1370         Add typefinding for FLAC without headers in the beginning.
1371         This is already handled by flacdec and friends.
1372
1373 2008-10-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1374
1375         * gst/typefind/gsttypefindfunctions.c: (mxf_type_find),
1376         (plugin_init):
1377         Add typefinder for MXF.
1378
1379 2008-10-03  Jan Schmidt  <jan.schmidt@sun.com>
1380
1381         * tests/icles/Makefile.am:
1382         Only build test-colorkey if GTK+ is available.
1383
1384 === release 0.10.21 ===
1385
1386 2008-10-03  Jan Schmidt <jan.schmidt@sun.com>
1387
1388         * configure.ac:
1389           releasing 0.10.21, "We Could Be Wrong"
1390
1391 2008-09-28  Jan Schmidt  <jan.schmidt@sun.com>
1392
1393         * configure.ac:
1394         0.10.20.4 pre-release
1395
1396 2008-09-25  Wim Taymans  <wim.taymans@collabora.co.uk>
1397
1398         Patch by: Vincent Penquerc'h <ogg dot k dot ogg dot k at googlemail dot com>
1399
1400         * ext/theora/theoraparse.c: (theora_parse_set_streamheader):
1401         Set the BOS flag on the BOS packet. Fixes #553244.
1402
1403 2008-09-23  Wim Taymans  <wim.taymans@collabora.co.uk>
1404
1405         * gst-libs/gst/rtsp/gstrtspmessage.c:
1406         (gst_rtsp_message_parse_request),
1407         (gst_rtsp_message_parse_response):
1408         Fix the g_return_val_if_fail() statements.
1409
1410 2008-09-22  Michael Smith <msmith@songbirdnest.com>
1411
1412         * gst-libs/gst/tag/gsttagdemux.c:
1413           Fail to activate if there's insufficient data in the file to be usable,
1414           preventing an assertion fail later. Fixes #552960
1415
1416 2008-09-15  Tim-Philipp Müller  <tim.muller at collabora co uk>
1417
1418         * gst-libs/gst/pbutils/descriptions.c:
1419         * gst/typefind/gsttypefindfunctions.c:
1420           Recognise Kate subtitle streams (#550582).
1421
1422 2008-09-13  Tim-Philipp Müller  <tim.muller at collabora co uk>
1423
1424         * gst-libs/gst/audio/audio.h: (GST_AUDIO_FIELD_SIGNED):
1425           Remove trailing comma from enum list, which causes problems
1426           with -pendantic (#550729).
1427
1428 2008-09-10  Jan Schmidt  <jan.schmidt@sun.com>
1429
1430         * configure.ac:
1431         0.10.20.2 pre-release
1432
1433         * po/LINGUAS:
1434         * po/id.po:
1435         * po/pt_BR.po:
1436
1437         New translations.
1438
1439 2008-09-05  Tim-Philipp Müller  <tim.muller at collabora co uk>
1440
1441         * gst-libs/gst/interfaces/propertyprobe.c:
1442           (gst_property_probe_get_properties),
1443           (gst_property_probe_get_property),
1444           (gst_property_probe_probe_property),
1445           (gst_property_probe_probe_property_name),
1446           (gst_property_probe_needs_probe),
1447           (gst_property_probe_needs_probe_name),
1448           (gst_property_probe_get_values),
1449           (gst_property_probe_get_values_name),
1450           (gst_property_probe_probe_and_get_values),
1451           (gst_property_probe_probe_and_get_values_name):
1452           More sanity checks for our second-favourite interface.
1453
1454 2008-09-05  Stefan Kost  <ensonic@users.sf.net>
1455
1456         * gst-libs/gst/interfaces/propertyprobe.c:
1457           Check for NULL pointer, in the hope that this fixes #532864.
1458
1459 2008-09-05  Tim-Philipp Müller  <tim.muller at collabora co uk>
1460
1461         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_class_init):
1462           No really, the next release is 0.10.21 (fix Since: tags in docs).
1463
1464 2008-09-04  Wim Taymans  <wim.taymans@collabora.co.uk>
1465
1466         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_stop):
1467         Disable a code path that is now called but causes a deadlock for some
1468         reason and is unneeded.
1469
1470 2008-09-04  Stefan Kost  <ensonic@users.sf.net>
1471
1472         * sys/xvimage/xvimagesink.c:
1473         * sys/xvimage/xvimagesink.h:
1474           Add a "draw-border" property that can be set to false to disable
1475           drawing borders.
1476           
1477         * tests/icles/test-colorkey.c:
1478         * tests/icles/Makefile.am:
1479           Add new test application for the colorkey handling.
1480
1481 2008-09-03  Edward Hervey  <edward.hervey@collabora.co.uk>
1482
1483         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
1484         Use a decent caps for TrueSpeech instead of a ffmpeg-specific one.
1485         This will also be fixed for upcoming gst-ffmpeg release so that once
1486         this release of -base is out, it will work with the latest gst-ffmpeg
1487         release.
1488
1489 2008-09-03  Edward Hervey  <edward.hervey@collabora.co.uk>
1490
1491         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
1492         (gst_riff_create_audio_template_caps):
1493         Add Truespeech mapping for RIFF formats (AVI/WAV).
1494         Fixes #550656
1495
1496 2008-09-03  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1497
1498         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
1499         Typefind video/mj2 and image/jp2 ISO JPEG2000 mime types.
1500         Fixes #550638.
1501
1502 2008-09-03  Stefan Kost  <ensonic@users.sf.net>
1503
1504         * configure.ac:
1505         * gst/subparse/Makefile.am:
1506         * gst/subparse/gstsubparse.c:
1507         * gst/subparse/samiparse.c:
1508         * tests/check/elements/subparse.c:
1509           Rework last change, so that we build subparse, but just disable the
1510           sami parse functionality, if we're configured to not use xml. In the
1511           tests only the sami test is disabled now.
1512
1513 2008-09-02  Stefan Kost  <ensonic@users.sf.net>
1514
1515         * configure.ac:
1516           Disable subparse when xml is disabled. It woundn't work anyway. Fixes
1517           test runs.
1518
1519 2008-09-02  Tim-Philipp Müller  <tim.muller at collabora co uk>
1520
1521         * po/POTFILES.in:
1522           Add some more files with strings for translation.
1523
1524 2008-09-02  Stefan Kost  <ensonic@users.sf.net>
1525
1526         * gst-libs/gst/tag/gstvorbistag.c:
1527         * tests/check/libs/tag.c:
1528           Use new geo location tags from core. Fixes #481169
1529
1530 2008-09-01  Edward Hervey  <edward.hervey@collabora.co.uk>
1531
1532         * tests/check/elements/audioresample.c: (setup_audioresample),
1533         (fail_unless_perfect_stream), (test_perfect_stream_instance),
1534         (test_discont_stream_instance):
1535         Now that GstBaseTransform is 'fixed' ... remove cruft from tests.
1536         Add debugging for coherence.
1537
1538 2008-08-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
1539
1540         Patch by: Jonathan Matthew  <notverysmart gmail com>
1541
1542         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
1543           Add typefinder for PDF documents (which is nice to have, since it's a
1544           common format, but also helps prevent false positives). Fixes #549814.
1545
1546 2008-08-27  Wim Taymans  <wim.taymans@collabora.co.uk>
1547
1548         * gst/playback/gstplaybin2.c: (selector_blocked), (pad_added_cb),
1549         (no_more_pads_cb):
1550         Fix nasty race where multiple decodebins could start pushing data before
1551         we manage to configure the sinks, resulting in not-linked errors in
1552         typical RTSP streaming cases.
1553
1554 2008-08-26  Wim Taymans  <wim.taymans@collabora.co.uk>
1555
1556         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_stop):
1557         Since we now call stop, we trigger this code path that causes a deadlock
1558         is apparently not needed.
1559
1560 2008-08-26  Wim Taymans  <wim.taymans@collabora.co.uk>
1561
1562         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_start),
1563         (gst_ring_buffer_stop):
1564         Also allow the case where the ringbuffer was paused when we try to stop
1565         it so that the basesrc stop function is still called.
1566
1567 2008-08-23  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1568
1569         Patch by: Mike Ruprecht <cmaiku at gmail dot com>
1570
1571         * sys/v4l/gstv4lelement.c: (gst_v4l_class_probe_devices):
1572         Reprobe devices again instead of taking a cached list as new
1573         devices could've been plugged in. Fixes bug #549062.
1574
1575 2008-08-23  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1576
1577         Patch by: Alessandro Dessina <alessandro nnva org>
1578
1579         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain),
1580         (gst_ogg_demux_activate_chain):
1581         Don't add pads and activate them for skeleton streams. These are already
1582         handled inside oggdemux. Fixes bug #537599.
1583
1584 2008-08-22  Wim Taymans  <wim.taymans@collabora.co.uk>
1585
1586         * ext/vorbis/vorbisdec.c: (vorbis_dec_change_state):
1587         Reset variable so that query and convert fail after going back to
1588         READY. Fixes #548898.
1589
1590 2008-08-22  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1591
1592         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_chain):
1593         If a buffer arrives with a timestamp before the timestamp+duration
1594         of the previous buffer clip it instead of dropping it completely.
1595         Slight improvement for the unfixable bug #548913.
1596
1597 2008-08-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1598
1599         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
1600         Take the current timestamp instead of timestamp+duration for the offset.
1601         This offset will later be used for calculating the timestamp and
1602         otherwise vorbisdec will interpolate timestamps wrong if upstream
1603         only sends timestamps and no granulepos.
1604
1605 2008-08-21  Stefan Kost  <ensonic@users.sf.net>
1606
1607         * tests/examples/seek/seek.c:
1608           Don't crash when having no visualisations.
1609
1610 2008-08-16  David Schleef  <ds@schleef.org>
1611
1612         * gst/typefind/gsttypefindfunctions.c: DV typefinding.  Remove
1613           check for a bit that is 0 in IEC 61384, but not SMPTE 314M.
1614           Fixes #548065.
1615
1616 2008-08-15  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1617
1618         * gst-libs/gst/pbutils/missing-plugins.c: (copy_and_clean_caps):
1619         When cleaning up the caps fields also remove "depth" for the same
1620         reason we remove "width".
1621
1622 2008-08-14  Tim-Philipp Müller  <tim.muller at collabora co uk>
1623
1624         * gst-libs/gst/pbutils/descriptions.c: (format_info_get_desc):
1625           Add Lead H.264 here as well.
1626
1627 2008-08-14  Julien Moutte  <julien@fluendo.com>
1628
1629         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
1630         (gst_riff_create_video_template_caps): Add Lead H.264 variant.
1631
1632 2008-08-13  Wim Taymans  <wim.taymans@collabora.co.uk>
1633
1634         * gst-libs/gst/audio/gstbaseaudiosrc.c:
1635         (gst_base_audio_src_create):
1636         When not slaved to another clock also subtract the base_time from our
1637         internal clock time to get the running time.
1638
1639 2008-08-12  David Schleef  <ds@schleef.org>
1640
1641         * ext/theora/theoraenc.c: Remove the 2000 kbit limit to bitrate,
1642           since it has no basis in libtheora.
1643
1644 2008-08-12  Stefan Kost  <ensonic@users.sf.net>
1645
1646         * gst-libs/gst/interfaces/propertyprobe.h:
1647           Remove double "interface" from doc-string.
1648
1649         * gst-libs/gst/interfaces/xoverlay.h:
1650           Document interface.
1651
1652         * gst-libs/gst/riff/riff.c:
1653           Add basic doc blobs.
1654
1655 2008-08-11  Stefan Kost  <ensonic@users.sf.net>
1656
1657         * gst-libs/gst/audio/Makefile.am:
1658           Don't try to build that example anymore.
1659
1660 2008-08-11  Stefan Kost  <ensonic@users.sf.net>
1661
1662         * gst-libs/gst/audio/.cvsignore:
1663         * gst-libs/gst/audio/Makefile.am:
1664         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
1665         * gst-libs/gst/audio/make_filter:
1666           Move audiofiltertemplate to gst-template.
1667
1668 2008-08-11  Stefan Kost  <ensonic@users.sf.net>
1669
1670         * docs/libs/gst-plugins-base-libs-sections.txt:
1671         * gst-libs/gst/audio/gstaudiosrc.h:
1672           More docs and shuffling. What can we do with the hundreds of #defines.
1673
1674 2008-08-11  Stefan Kost  <ensonic@users.sf.net>
1675
1676         * gst-libs/gst/audio/audio.h:
1677         * gst-libs/gst/audio/gstaudiofilter.h:
1678         * gst-libs/gst/audio/gstringbuffer.h:
1679         * gst-libs/gst/interfaces/propertyprobe.h:
1680         * gst-libs/gst/tag/gsttagdemux.h:
1681           Reducing number of dundocumented symbols.
1682
1683 2008-08-11  Stefan Kost  <ensonic@users.sf.net>
1684
1685         * gst-libs/gst/audio/audio.c:
1686           Fix doc comment syntax.
1687
1688         * gst-libs/gst/interfaces/propertyprobe.c:
1689           Add more doc-comments and a FIXME: for the signal.    
1690
1691 2008-08-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1692
1693         * ext/ogg/gstoggmux.c: (gst_ogg_mux_sink_event),
1694         (gst_ogg_mux_request_new_pad):
1695         * ext/ogg/gstoggmux.h:
1696         Don't pretend to support NEWSEGMENT events, instead override the
1697         GstCollectPads event function to return FALSE on NEWSEGMENT events
1698         and do the normal work for other events.
1699
1700         This prevents elements like flacenc to seek to the start and rewrite
1701         some data which then results in a broken Ogg packet.
1702
1703 2008-08-07  Tim-Philipp Müller  <tim.muller at collabora co uk>
1704
1705         Patch by: Frederic Crozat <fcrozat@mandriva.org>
1706
1707         * ext/alsa/gstalsaplugin.c: (plugin_init):
1708         * ext/cdparanoia/gstcdparanoiasrc.c: (plugin_init):
1709         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
1710         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init):
1711         * gst-libs/gst/audio/gstbaseaudiosrc.c: (_do_init):
1712         * gst-libs/gst/pbutils/pbutils.c: (gst_pb_utils_init):
1713         * gst-libs/gst/tag/tags.c: (gst_tag_register_tags_internal):
1714         * gst/playback/gstdecodebin.c: (plugin_init):
1715         * gst/playback/gstdecodebin2.c: (gst_decode_bin_plugin_init):
1716         * gst/playback/gstplayback.c: (plugin_init):
1717         * gst/playback/gstqueue2.c: (plugin_init):
1718         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_plugin_init):
1719         * sys/v4l/gstv4l.c: (plugin_init):
1720         Make sure gettext returns translations in UTF-8 encoding rather
1721         than in the current locale encoding (#546822).
1722
1723 2008-08-06  Stefan Kost  <ensonic@users.sf.net>
1724
1725         * gst-libs/gst/pbutils/descriptions.c:
1726           Add audio/x-qdm for qtdemux.
1727
1728 2008-08-05  Stefan Kost  <ensonic@users.sf.net>
1729
1730         * ext/vorbis/vorbisdec.c:
1731           Do not leak old taglist.
1732
1733 2008-08-04  Stefan Kost  <ensonic@users.sf.net>
1734
1735         * tests/icles/test-scale.c:
1736           Include <stdlib.h> for atoi().
1737
1738 2008-08-04  Andy Wingo  <wingo@pobox.com>
1739
1740         * gst/audiotestsrc/gstaudiotestsrc.c: Very crucial and important
1741         documentation fix.
1742
1743 2008-08-01  Stefan Kost  <ensonic@users.sf.net>
1744
1745         * gst/adder/gstadder.c:
1746           Cleanup lots of empty lines that came from gst-indent going havoc
1747           before I added the INDENT_ON/OFF marker some time agao.
1748
1749 2008-08-01  Stefan Kost  <ensonic@users.sf.net>
1750
1751         * configure.ac:
1752         * gst-libs/gst/riff/riff-read.c:
1753           Bump requirement to latest core and use new tag for riff formats.
1754           Needed for #520694.
1755
1756 2008-08-01  Wim Taymans  <wim.taymans@collabora.co.uk>
1757
1758         * tests/examples/dynamic/Makefile.am:
1759         * tests/examples/dynamic/codec-select.c: (make_encoder),
1760         (make_pipeline), (do_switch), (my_bus_callback), (main):
1761         Add example app that dynamically switches between 3 'encoders'.
1762
1763 2008-07-31  Wim Taymans  <wim.taymans@collabora.co.uk>
1764
1765         * gst/playback/gstplaysink.c: (gst_play_sink_set_vis_plugin):
1766         Add some more comments.
1767
1768 2008-07-31  Wim Taymans  <wim.taymans@collabora.co.uk>
1769
1770         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_getcaps),
1771         (gst_video_test_src_create):
1772         Discard buffers of the wrong size after renegotiation, this is perfectly
1773         possible with things like capsfilter that could suggest caps changes
1774         upstream without knowing the size of the buffer.
1775
1776 2008-07-31  Wim Taymans  <wim.taymans@collabora.co.uk>
1777
1778         * tests/icles/.cvsignore:
1779         * tests/icles/Makefile.am:
1780         * tests/icles/test-scale.c: (make_pipeline), (main):
1781         Add dynamic rescaling tests for the new basetransform.
1782
1783 2008-07-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
1784
1785         * gst/audioconvert/Makefile.am:
1786           Dist recently-added gstfastrandom.h.
1787
1788 2008-07-30  Edward Hervey  <edward.hervey@collabora.co.uk>
1789
1790         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
1791         Fix a "may be used uninitialized in this function" which weirdly only
1792         appears on macosx (?).
1793
1794 2008-07-30  Stefan Kost  <ensonic@users.sf.net>
1795
1796         * gst-libs/gst/riff/riff-ids.h:
1797           Adding acid chunk for tempo and loop information.
1798
1799 2008-07-29  Stefan Kost  <ensonic@users.sf.net>
1800
1801         * sys/xvimage/Makefile.am:
1802           floor() needs linking to $(LIBM).
1803
1804 2008-07-29  Stefan Kost  <ensonic@users.sf.net>
1805
1806         * ext/gnomevfs/gstgnomevfssrc.c:
1807           Aggregate short reads and add some comments and debug logging.
1808           Fixes #537380
1809
1810 2008-07-29  Stefan Kost  <ensonic@users.sf.net>
1811
1812         * gst/playback/gstplaybasebin.c:
1813           Fix property doc markup (its not a signal).
1814
1815         * sys/xvimage/xvimagesink.c:
1816           Add since tag for new proeprties (also add sice tags fro the last two
1817           other additions).
1818
1819 2008-07-29  Stefan Kost  <ensonic@users.sf.net>
1820
1821         * sys/xvimage/xvimagesink.c:
1822         * sys/xvimage/xvimagesink.h:
1823           Add autofill/colorkey properties. Fixes #538656.
1824
1825 2008-07-28  David Schleef  <ds@schleef.org>
1826
1827         * sys/xvimage/xvimagesink.c:
1828           Fix rounding errors when converting colorbalance values
1829           between hardware and object property ranges.  Partial
1830           fix for #537889, however, there still seems to be a small
1831           drift problem that could be totem's fault.
1832
1833 2008-07-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1834
1835         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
1836         (gst_ogg_demux_perform_seek), (gst_ogg_demux_handle_page):
1837         Don't use GST_CLOCK_TIME_NONE as start of NEWSEGMENT events.
1838         This fixes a critical warning.
1839
1840 2008-07-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1841
1842         * ext/ogg/gstoggmux.c:
1843         Allow muxing of CELT into Ogg streams.
1844
1845 2008-07-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1846
1847         * gst/typefind/gsttypefindfunctions.c: (celt_type_find),
1848         (plugin_init):
1849         Add simple typefinder for the CELT codec (www.celt-codec.org).
1850
1851 2008-07-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1852
1853         Patch by: Jan Gerber <j at oil21 dot org>
1854
1855         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_parse_skeleton_fisbone):
1856         Fix calculation of the start time from skeleton streams.
1857         Fixes bug #530068.
1858
1859 2008-07-24  Stefan Kost  <ensonic@users.sf.net>
1860
1861         * tests/examples/seek/seek.c:
1862           Use 64 bit constant GST_CLOCK_TIME_NONE instead of plain -1.
1863
1864 2008-07-23  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1865
1866         * gst/audioconvert/audioconvert.h:
1867         * gst/audioconvert/gstaudioquantize.c:
1868         (gst_audio_quantize_setup_dither),
1869         (gst_audio_quantize_free_dither):
1870         * gst/audioconvert/gstfastrandom.h:
1871         Implement a linear congruential generator as pseudo random number
1872         generator for the dither noise. This is about 2 times faster than
1873         using GLib's mersenne twister. Also this uses only integer math for
1874         generating integers while GLib internally uses floating point math.
1875
1876 2008-07-23  Michael Smith <msmith@songbirdnest.com>
1877
1878         * configure.ac:
1879           Remove AC_ISC_POSIX; it breaks on some systems and is not needed.
1880
1881 2008-07-23  Tim-Philipp Müller  <tim.muller at collabora co uk>
1882
1883         Patch by: Damien Lespiau  <damien.lespiau gmail com>
1884
1885         * gst-libs/gst/sdp/gstsdpmessage.c: (print_media):
1886           Use GST_STR_NULL to avoid crashes with libcs that don't
1887           like NULL strings in printf args (such as the win32 one).
1888           Fixes #544306.
1889
1890 2008-07-17  Jan Schmidt  <Jan.Schmidt@sun.com>
1891
1892         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls):
1893         Oops - set the size of the image used for probing back to 1x1, for
1894         consistency with ximagesink
1895
1896 2008-07-17  Jan Schmidt  <Jan.Schmidt@sun.com>
1897
1898         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
1899         (gst_ximagesink_ximage_new):
1900         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
1901         (gst_xvimagesink_xvimage_new):
1902
1903         Apparently on Solaris and OS/X (at least), it's not legal to ask the
1904         X server to attach to a shared memory segment after we've deleted it,
1905         with the result that MIT-SHM is disabled. Instead, remove it only after 
1906         X succeeds in attaching too.
1907
1908 2008-07-16  David Schleef  <ds@schleef.org>
1909
1910         * gst/audiotestsrc/gstaudiotestsrc.c:
1911         * gst/audiotestsrc/gstaudiotestsrc.h:
1912           Add 'ticks', a 1/30 second sine wave pulse every second.
1913
1914 2008-07-15  David Schleef  <ds@schleef.org>
1915
1916         * gst-libs/gst/video/video.c: Revert ABI change.
1917
1918 2008-07-15  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1919
1920         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
1921         Make it impossible to have NULL caps at the point where we set
1922         framerate and other things. Also don't return immediately for "3ivd"
1923         video and let framerate, etc be set. Might fix bug #542508.
1924
1925 2008-07-14  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1926
1927         * gst-libs/gst/video/video.c: (gst_video_format_parse_caps):
1928         Video format can also be conveniently determined from (many)
1929         non-fixed caps.
1930
1931 2008-07-14  Jan Schmidt  <thaytan@noraisin.net>
1932
1933         * gst/playback/gstplaybasebin.c:
1934         * gst/playback/gstplaybasebin.h:
1935         * gst/playback/gstplaybin.c:
1936         * gst/playback/gststreamselector.c:
1937         First stab at integrating DVD subpicture overlay into
1938         playbin. Successfully plugs and plays, but the queues need
1939         shrinking - 3 seconds of video is too much buffering.
1940
1941 2008-07-11  Stefan Kost  <ensonic@users.sf.net>
1942
1943         * gst/audioconvert/gstaudioconvert.c:
1944           Remove now obsolete note in the docs.
1945
1946 2008-07-11  Stefan Kost  <ensonic@users.sf.net>
1947
1948         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
1949         * docs/plugins/gst-plugins-base-plugins-overrides.txt:
1950         * docs/plugins/gst-plugins-base-plugins-sections.txt:
1951         * docs/plugins/gst-plugins-base-plugins.args:
1952         * docs/plugins/gst-plugins-base-plugins.hierarchy:
1953         * docs/plugins/gst-plugins-base-plugins.interfaces:
1954         * docs/plugins/gst-plugins-base-plugins.prerequisites:
1955         * docs/plugins/gst-plugins-base-plugins.signals:
1956         * docs/plugins/inspect/plugin-adder.xml:
1957         * docs/plugins/inspect/plugin-alsa.xml:
1958         * docs/plugins/inspect/plugin-audioconvert.xml:
1959         * docs/plugins/inspect/plugin-audiorate.xml:
1960         * docs/plugins/inspect/plugin-audioresample.xml:
1961         * docs/plugins/inspect/plugin-audiotestsrc.xml:
1962         * docs/plugins/inspect/plugin-cdparanoia.xml:
1963         * docs/plugins/inspect/plugin-decodebin.xml:
1964         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
1965         * docs/plugins/inspect/plugin-gdp.xml:
1966         * docs/plugins/inspect/plugin-gnomevfs.xml:
1967         * docs/plugins/inspect/plugin-libvisual.xml:
1968         * docs/plugins/inspect/plugin-ogg.xml:
1969         * docs/plugins/inspect/plugin-pango.xml:
1970         * docs/plugins/inspect/plugin-playback.xml:
1971         * docs/plugins/inspect/plugin-queue2.xml:
1972         * docs/plugins/inspect/plugin-subparse.xml:
1973         * docs/plugins/inspect/plugin-tcp.xml:
1974         * docs/plugins/inspect/plugin-theora.xml:
1975         * docs/plugins/inspect/plugin-typefindfunctions.xml:
1976         * docs/plugins/inspect/plugin-uridecodebin.xml:
1977         * docs/plugins/inspect/plugin-video4linux.xml:
1978         * docs/plugins/inspect/plugin-videorate.xml:
1979         * docs/plugins/inspect/plugin-videoscale.xml:
1980         * docs/plugins/inspect/plugin-videotestsrc.xml:
1981         * docs/plugins/inspect/plugin-volume.xml:
1982         * docs/plugins/inspect/plugin-vorbis.xml:
1983         * docs/plugins/inspect/plugin-ximagesink.xml:
1984         * docs/plugins/inspect/plugin-xvimagesink.xml:
1985         * ext/alsa/gstalsamixer.c:
1986         * ext/alsa/gstalsasink.c:
1987         * ext/alsa/gstalsasrc.c:
1988         * ext/gio/gstgiosink.c:
1989         * ext/gio/gstgiosrc.c:
1990         * ext/gio/gstgiostreamsink.c:
1991         * ext/gio/gstgiostreamsrc.c:
1992         * ext/gnomevfs/gstgnomevfssink.c:
1993         * ext/gnomevfs/gstgnomevfssrc.c:
1994         * ext/ogg/gstoggdemux.c:
1995         * ext/ogg/gstoggmux.c:
1996         * ext/pango/gstclockoverlay.c:
1997         * ext/pango/gsttextoverlay.c:
1998         * ext/pango/gsttextrender.c:
1999         * ext/pango/gsttimeoverlay.c:
2000         * ext/theora/theoradec.c:
2001         * ext/theora/theoraenc.c:
2002         * ext/theora/theoraparse.c:
2003         * ext/vorbis/vorbisdec.c:
2004         * ext/vorbis/vorbisenc.c:
2005         * ext/vorbis/vorbisparse.c:
2006         * ext/vorbis/vorbistag.c:
2007         * gst/adder/gstadder.c:
2008         * gst/audioconvert/gstaudioconvert.c:
2009         * gst/audioresample/gstaudioresample.c:
2010         * gst/audiotestsrc/gstaudiotestsrc.c:
2011         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
2012         * gst/gdp/gstgdpdepay.c:
2013         * gst/gdp/gstgdppay.c:
2014         * gst/playback/gstdecodebin2.c:
2015         * gst/playback/gstplaybin.c:
2016         * gst/playback/gstplaybin2.c:
2017         * gst/playback/gstqueue2.c:
2018         * gst/playback/gsturidecodebin.c:
2019         * gst/tcp/gstmultifdsink.c:
2020         * gst/tcp/gsttcpserversink.c:
2021         * gst/videorate/gstvideorate.c:
2022         * gst/videoscale/gstvideoscale.c:
2023         * gst/videotestsrc/gstvideotestsrc.c:
2024         * gst/volume/gstvolume.c:
2025         * sys/ximage/ximagesink.c:
2026         * sys/xvimage/xvimagesink.c:
2027           Cleanup Plugin docs. Link to signals and properties. Fix sub-section
2028           titles. Drop mentining that all our example pipelines are "simple"
2029           pipelines.
2030
2031 2008-07-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2032
2033         * tests/examples/seek/Makefile.am:
2034         Fix out of tree build by adding all required CFLAGS.
2035
2036 2008-07-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2037
2038         * gst/playback/gstdecodebin.c: (add_raw_queue):
2039         And ref the pad before returning it again when linking to the queue
2040         failed. Otherwise we will unref the pad twice later and things break.
2041
2042 2008-07-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2043
2044         * gst/playback/gstdecodebin.c: (add_raw_queue):
2045         If linking the raw pad with a queue fails, try it without a queue
2046         instead of failing completely. This should never happen.
2047
2048 2008-07-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2049
2050         Patch by: Evgeniy Stepanov <eugeni dot stepanov at gmail dot com>
2051
2052         * gst/playback/gstdecodebin.c: (add_raw_queue), (close_pad_link):
2053         Add a queue after a demuxer if the demuxer outputs raw data. This was
2054         done before only for non-raw data but is required in this case too.
2055         Fixes bug #540215.
2056
2057         decodebin2 doesn't have this issue because all streams of a group
2058         go through multiqueue.
2059
2060 2008-07-03  Wim Taymans  <wim.taymans@collabora.co.uk>
2061
2062         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
2063
2064         * gst-libs/gst/sdp/gstsdpmessage.c:
2065         Makes libgstsdp compile with mingw32 by defining the right WINVER so
2066         that getaddrinfo() can be used. Fixes #541358.
2067
2068 2008-07-01  Wim Taymans  <wim.taymans@collabora.co.uk>
2069
2070         * gst/videotestsrc/gstvideotestsrc.c:
2071         (gst_video_test_src_class_init), (gst_video_test_src_init),
2072         (gst_video_test_src_set_property),
2073         (gst_video_test_src_get_property), (gst_video_test_src_create):
2074         * gst/videotestsrc/gstvideotestsrc.h:
2075         Cleanups, use default property values as defines.
2076         Add property to enable/disable peer buffer allocation.
2077
2078 2008-06-30  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2079
2080         * tests/check/elements/gdpdepay.c: (gdpdepay_suite):
2081         * tests/check/pipelines/streamheader.c: (streamheader_suite):
2082         Enable unit tests on PPC again as the bugs are now fixed.
2083
2084 2008-06-30  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2085
2086         * gst-libs/gst/riff/riff-ids.h:
2087         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
2088         (gst_riff_create_audio_template_caps):
2089         Add support for ADPCM IMA DK3 and DK4 variant in RIFF containers.
2090         Fixes bug #540351.
2091
2092 2008-06-30  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2093
2094         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
2095         (gst_ffmpeg_pixfmt_to_caps):
2096         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
2097         (gst_ffmpegcsp_get_unit_size):
2098         Only set/get on the PAL8 format, ffmpegcolorspace doesn't support
2099         it on other formats. Also adjust the unit size only for that format
2100         to not include the palette. Fixes bug #540497.
2101
2102 2008-06-29  Stefan Kost  <ensonic@users.sf.net>
2103
2104         * gst/adder/gstadder.c:
2105           Use GST_DEBUG_FUNCPTR and remove some extra vlnak lines.
2106
2107 2008-06-27  Stefan Kost  <ensonic@users.sf.net>
2108
2109         * ChangeLog:
2110           ChangeLog surgery.
2111   
2112         * tests/examples/seek/seek.c:
2113           Move variable into ifdef too.
2114         
2115
2116 2008-06-27  Stefan Kost  <ensonic@users.sf.net>
2117
2118         * tests/examples/seek/seek.c:
2119           Include config.h and check if we have X. Remove XInitThread(), don't
2120           think its needed. Fixes: #540334.
2121
2122 2008-06-26  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2123
2124         Patch by: Sam Morris <sam at robots dot org to uk>
2125
2126         * gst-libs/gst/interfaces/mixertrack.c:
2127         (gst_mixer_track_class_init), (gst_mixer_track_get_property),
2128         (gst_mixer_track_set_property):
2129         API: Add "index" property to GstMixerTrack to differantiate between
2130         multiple mixer tracks with the same label.
2131
2132         * ext/alsa/gstalsamixeroptions.c: (gst_alsa_mixer_options_new):
2133         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
2134         Set the "index" property of GstMixerTrack to the index given by ALSA.
2135         Fixes bug #528299.
2136
2137 2008-06-25  Stefan Kost  <ensonic@users.sf.net>
2138
2139         * tests/examples/seek/Makefile.am:
2140         * tests/examples/seek/seek.c:
2141           Remove libgstvideo usage. Use gtk_get_option_group instead of
2142           gtk_init().
2143
2144 2008-06-24  Stefan Kost  <ensonic@users.sf.net>
2145
2146         * tests/check/Makefile.am:
2147           Name the test registry format neutral.
2148
2149 2008-06-24  Stefan Kost  <ensonic@users.sf.net>
2150
2151         * gst/playback/gstqueue2.c:
2152           Do not double notify. Remove the unsued return value.
2153
2154 2008-06-24  Stefan Kost  <ensonic@users.sf.net>
2155
2156         * ext/alsa/gstalsamixer.c:
2157           Also consider "speaker" as a name for master volume. If that doesn't
2158           help look for the first non-mono volume control that also has a
2159           playback switch.
2160
2161 2008-06-24  Stefan Kost  <ensonic@users.sf.net>
2162
2163         * ChangeLog:
2164           Forgot to save the ChangeLog :/
2165
2166 2008-06-24  Stefan Kost  <ensonic@users.sf.net>
2167
2168         * tests/examples/seek/Makefile.am:
2169         * tests/examples/seek/seek.c:
2170           Embedd the xwindow. Allow to play multiple files.
2171
2172 2008-06-24  Jan Schmidt  <jan.schmidt@sun.com>
2173
2174         * sys/ximage/ximagesink.c (gst_ximagesink_ximage_put),
2175         (gst_ximagesink_setcaps):
2176         * sys/ximage/ximagesink.h:
2177         When the caps change, make sure to re-draw borders in
2178         force-aspect-ratio=true mode.
2179         * sys/xvimage/xvimagesink.c (gst_xvimagesink_xvimage_put):
2180         Don't clear the border_draw flag until we actually draw the border.
2181         * tests/check/Makefile.am:
2182         Ignore alsasink/src during the states test too, so it doesn't fail
2183         when running without access to the sound device.
2184
2185 2008-06-22  Stefan Kost  <ensonic@users.sf.net>
2186
2187         * tests/examples/seek/seek.c:
2188           Fix crasher when playing a parse-launch line the 2nd time.
2189
2190 2008-06-21  Thomas Vander Stichele  <thomas at apestaart dot org>
2191
2192         * tests/check/pipelines/oggmux.c:
2193           Properly ifdef tests to fix compilation.
2194
2195 2008-06-20  Michael Smith <msmith@songbirdnest.com>
2196
2197         * gst/playback/gstplay-marshal.list:
2198         * gst/playback/gstplaybin2.c:
2199           Add get-video-pad, get-audio-pad, get-text-pad action signals to
2200           playbin2. This allows the user to get to the selector's sinkpads, and
2201           thus inspect a range of things - caps, tags, etc. 
2202
2203 2008-06-20  Michael Smith <msmith@songbirdnest.com>
2204
2205         * gst/playback/gstplaybin2.c:
2206           Use a different constant for the convert-frame signal id.
2207           Fixes #537009.
2208
2209 2008-06-20  Michael Smith <msmith@songbirdnest.com>
2210
2211         * gst/playback/gstplaybin2.c:
2212         * gst/playback/gstplaysink.c:
2213           Fix a whole bunch of typos in comments and log statements. 
2214
2215 2008-06-20  Michael Smith <msmith@songbirdnest.com>
2216
2217         * sys/xvimage/xvimagesink.c:
2218           Don't set colour balance values on the Xv port if the user hasn't
2219           changed them (via properties or the interface). Avoids accumulating
2220           rounding errors for the common case.
2221           Partial fix for bug #537889.
2222
2223 2008-06-20  Michael Smith <msmith@songbirdnest.com>
2224
2225         * gst/playback/gstdecodebin2.c:
2226           Ensure decodebin2 emits 'drained' signal once, and only once, when all
2227           pads are drained.
2228
2229 2008-06-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2230
2231         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_get_latency),
2232         (gst_vorbis_enc_src_query), (gst_vorbis_enc_chain):
2233         Report the encoder latency. Fixes #538232.
2234
2235 2008-06-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2236
2237         * gst/playback/gstplaybin2.c: (gst_play_bin_get_property),
2238         (notify_source), (activate_group):
2239         Implement the source property, emit notify when it changes in the
2240         underlying uridecodebin.
2241
2242 2008-06-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2243
2244         * tests/examples/seek/seek.c: (stop_cb):
2245         Free and clear the seek element list so that we don't use invalid
2246         references when seeking after recreating a gst-launch line.
2247
2248 2008-06-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2249
2250         * gst-libs/gst/audio/gstbaseaudiosink.c:
2251         (gst_base_audio_sink_query), (gst_base_audio_sink_skew_slaving),
2252         (gst_base_audio_sink_render):
2253         Report latency even if we are not live instead of hiding it.
2254         Take ts-offset and render-delay of the basesink into account when
2255         scheduling samples.
2256         Rework the clipping code so that we can take the various offsets into
2257         account and still do correct clipping.
2258
2259 2008-06-20  Jan Schmidt  <jan.schmidt@sun.com>
2260
2261         * configure.ac:
2262         Bump verion back to devel -> 0.10.20.1
2263
2264 2008-06-20  Sebastian Dröge  <slomo@circular-chaos.org>
2265
2266         * gst-libs/gst/tag/tags.c: (gst_tag_image_data_to_image_buffer):
2267         Don't increase the size of non-string image buffers by one as this
2268         might in theory confuse decoders. Still increase it by one for string
2269         image buffers to append '\0'.
2270
2271 2008-06-20  Sebastian Dröge  <slomo@circular-chaos.org>
2272
2273         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
2274         
2275         * gst/gdp/gstgdppay.c: (gst_gdp_pay_reset):
2276         Fix a buffer memleak and remove a confusing and wrong debug output.
2277         Fixes bug #538663.
2278
2279 === release 0.10.20 ===
2280
2281 2008-06-18  Jan Schmidt <jan.schmidt@sun.com>
2282
2283         * configure.ac:
2284           releasing 0.10.20, "Here I Go Again"
2285
2286 2008-06-11  Jan Schmidt  <jan.schmidt@sun.com>
2287
2288         * configure.ac:
2289         0.10.19.3 pre-release
2290
2291 2008-06-11  Jan Schmidt  <jan.schmidt@sun.com>
2292
2293         * gst-libs/gst/rtsp/gstrtspconnection.c:
2294         Fix build on win32.
2295         Patch By: David Schleef <ds@schleef.org>
2296         Fixes: #536874
2297
2298 2008-06-11  Sebastian Dröge  <slomo@circular-chaos.org>
2299
2300         * ext/gio/gstgiobasesrc.c: (gst_gio_base_src_finalize),
2301         (gst_gio_base_src_create):
2302         * ext/gio/gstgiobasesrc.h:
2303         Try to read the requested number of bytes, even if the first
2304         read returns less than requested, until nothing is read anymore
2305         or we have the requested amount of bytes. This fixes playback of
2306         files via Samba as Samba only allows to read 64k at once.
2307
2308         Implement a caching algorithm that makes sure that we read at
2309         least 4k of data every time. Some elements will try to read a few
2310         bytes, then seek, read again a few bytes and so on and this is
2311         painfully slow as every operation has to go over DBus if GVfs is
2312         used as backend.
2313
2314         Fixes bug #536849 and #536848.
2315
2316         * ext/gio/gstgiosrc.c: (gst_gio_src_class_init),
2317         (gst_gio_src_check_get_range):
2318         Override check_get_range() to blacklist http/https URIs
2319         and whitelist file URIs. More to be added on demand.
2320
2321 2008-06-05  Jan Schmidt  <jan.schmidt@sun.com>
2322
2323         * configure.ac:
2324         0.10.19.2 pre-release
2325
2326 2008-06-04  Jan Schmidt  <jan.schmidt@sun.com>
2327
2328         * win32/common/libgstrtsp.def:
2329         * win32/common/libgsttag.def:
2330         Add new API functions to the dll exports
2331
2332 2008-06-04  Michael Smith <msmith@songbirdnest.com>
2333
2334         * gst/playback/gstplaybasebin.c:
2335           Disconnect signals from decodebins we created before we remove it
2336           from playbin, to avoid crashes if the decodebin is eventually
2337           disposed after the playbin itself (possible if the app takes a
2338           reference on the decodebin).
2339           Fixes #536521.
2340
2341 2008-06-04  Tim-Philipp Müller  <tim.muller at collabora co uk>
2342
2343         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
2344           (mp3_type_find), (musepack_type_find), (MULTIPART_MAX_HEADER_SIZE),
2345           (mpeg_sys_type_find), (mpeg_ts_type_find), (mpeg4_video_type_find),
2346           (h264_video_type_find), (mpeg_video_stream_type_find),
2347           (dv_type_find), (mmsh_type_find):
2348           Bunch of small clean-ups: use gst_type_find_suggest_simple(); don't
2349           copy caps for no good reason (this may be desirable to make it easier
2350           to detect leaks, but then it should probably be done for all caps
2351           in the typefinder somewhere).
2352
2353 2008-06-04  Peter Kjellerstedt  <pkj@axis.com>
2354
2355         * tests/check/Makefile.am:
2356         Do not try to run the check tests for subparse unless it has been
2357         built.
2358
2359 2008-06-04  Peter Kjellerstedt  <pkj@axis.com>
2360
2361         * tests/check/pipelines/streamheader.c: (buffer_probe_cb),
2362         (test_multifdsink_gdp_vorbisenc), (streamheader_suite):
2363         Do not try to run a test which requires vorbisenc unless we have
2364         actually built it.
2365
2366 2008-06-04  Peter Kjellerstedt  <pkj@axis.com>
2367
2368         * gst-libs/gst/rtsp/gstrtspconnection.c:
2369         (gst_rtsp_connection_set_auth), (gst_rtsp_connection_set_auth_param),
2370         (gst_rtsp_connection_clear_auth_params),
2371         (gst_rtsp_connection_set_qos_dscp), (gst_rtsp_connection_get_ip):
2372         * gst-libs/gst/rtsp/gstrtspconnection.h:
2373         Add a couple of missing argument guards.
2374         Add a way of setting the DSCP for an RTSP connection.
2375         Add an accessor method for the ip member of GstRTSPConnection as all
2376         members are supposed to be private.
2377
2378 2008-06-04  Peter Kjellerstedt  <pkj@axis.com>
2379
2380         * gst/tcp/gstmultifdsink.c: (setup_dscp_client):
2381         Fixed accidental use of IPv4 options for all IPv6 addresses.
2382
2383 2008-06-04  Tim-Philipp Müller  <tim.muller at collabora co uk>
2384
2385         * gst-libs/gst/interfaces/mixertrack.h:
2386           Document mixer track flags.
2387
2388 2008-06-04  Sebastian Dröge  <slomo@circular-chaos.org>
2389
2390         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
2391
2392         * gst/gdp/gstgdppay.c: (gst_gdp_pay_reset_streamheader):
2393         Don't set caps on the buffers that contain a copy of the buffer
2394         including the caps of them resulting in an always increasing refcount
2395         of the caps and insanely large caps. Instead include a buffer without
2396         caps in the new caps. Fixes bug #536475.
2397
2398 2008-06-04  Sebastian Dröge  <slomo@circular-chaos.org>
2399
2400         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps):
2401         Transform a given PAR to a range on the struct with the generic
2402         height/width instead of the struct with the possibly restricted
2403         height/width.
2404
2405 2008-06-04  Sebastian Dröge  <slomo@circular-chaos.org>
2406
2407         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps):
2408         Prefer the given format if it contains something stricter than [1,MAX]
2409         for height or width and only put a structure that requires rescaling
2410         as second. This makes it possible to use videoscale in pipelines where
2411         the source can actually produce the wanted height/width but usually
2412         selects a different one from the requested.
2413
2414 2008-06-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
2415
2416         Based on patch by: John Millikin <jmillikin gmail com>
2417
2418         * gst-libs/gst/tag/gstvorbistag.c: (tag_matches), (gst_vorbis_tag_add),
2419           (gst_vorbis_tag_add_coverart):
2420           Retrieve COVERART tags from vorbis comments (#512333)
2421
2422 2008-06-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
2423
2424         * gst-libs/gst/tag/tag.h:
2425         * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum):
2426           Don't forget to add new enum value here too (should probably use
2427           glib-mkenums here...).
2428
2429 2008-06-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
2430
2431         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_add_id3_image):
2432         * gst-libs/gst/tag/tag.h: (GST_TAG_IMAGE_TYPE_NONE),
2433         * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum),
2434           (gst_tag_image_type_get_type), (gst_tag_image_type_is_valid),
2435           (gst_tag_image_data_to_image_buffer):
2436           Add two utility functions to avoid code duplication (#512333):
2437           API: add gst_tag_image_data_to_image_buffer()
2438           API: add gst_tag_list_add_id3_image()
2439           API: add GST_TAG_IMAGE_TYPE_NONE enum value
2440
2441 2008-06-03  Sebastian Dröge  <slomo@circular-chaos.org>
2442
2443         * win32/common/libgstaudio.def:
2444         Add gst_audio_check_channel_positions() to the exported symbols.
2445
2446 2008-06-03  Sebastian Dröge  <slomo@circular-chaos.org>
2447
2448         * docs/libs/gst-plugins-base-libs-sections.txt:
2449         * gst-libs/gst/audio/multichannel.c:
2450         (gst_audio_check_channel_positions):
2451         * gst-libs/gst/audio/multichannel.h:
2452         API: Make gst_audio_check_channel_positions() public.
2453
2454         * tests/check/libs/audio.c: (GST_START_TEST):
2455         Add some simple checks for gst_audio_check_channel_positions().
2456
2457 2008-06-02  Tim-Philipp Müller  <tim.muller at collabora co uk>
2458
2459         * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
2460           minrange and maxrange are scaled according to the frequency
2461           multiplier.
2462
2463 2008-06-02  Tim-Philipp Müller  <tim.muller at collabora co uk>
2464
2465         * ext/pango/Makefile.am:
2466         * ext/pango/gsttextoverlay.c: (gst_text_overlay_shade_y),
2467           (gst_text_overlay_blit_yuv420), (gst_text_overlay_push_frame):
2468           Use gstvideo functions to calculate strides and plane offsets. Fixes
2469           rendering issue ('ghost' images of the text on the chroma planes)
2470           with widths or heights that are not multiples of 8 (#506659 and
2471           probably also #485729).
2472
2473         * tests/icles/test-textoverlay.c: (show_text), (test_textoverlay),
2474           (main):
2475           Test with odd height/width too.
2476
2477 2008-06-02  Sebastian Dröge  <slomo@circular-chaos.org>
2478
2479         * gst/adder/gstadder.c: (gst_adder_query_duration),
2480         (gst_adder_query_latency):
2481         When using gst_element_iterate_pads() one has to unref every pad
2482         after usage.
2483
2484 2008-05-31  Mark Nauwelaerts  <mnauw@users.sf.net>
2485
2486         * gst-libs/gst/audio/gstbaseaudiosrc.c:
2487         (gst_base_audio_src_class_init):
2488         Add a gtk-doc chunk for the new properties to have a Since: indication.
2489
2490 2008-05-31  Mark Nauwelaerts  <mnauw@users.sf.net>
2491
2492         * gst-libs/gst/audio/gstbaseaudiosrc.c:
2493         (gst_base_audio_src_class_init), (gst_base_audio_src_dispose),
2494         (gst_base_audio_src_get_property), (gst_base_audio_src_setcaps),
2495         (gst_base_audio_src_change_state):
2496         Provide readable actual-buffer-time and actual-latency-time properties
2497         that reflect the configured ringbuffer values. Fixes #524724.
2498         API: GstBaseAudioSrc:actual-buffer-time
2499         API: GstBaseAudioSrc:actual-latency-time
2500
2501 2008-05-30  Wim Taymans  <wim.taymans@collabora.co.uk>
2502
2503         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push),
2504         (gst_basertppayload_change_state):
2505         Simply converting the running time into an RTP timestamp by scaling it
2506         based on the clock-rate is good enough for making an RTP timestamp. This
2507         has the added benefit that we can later on expose a property with the
2508         RTP timestamp of running time 0, as is needed for RTSP servers to
2509         generate the response of the PLAY request.
2510
2511 2008-05-30  Sebastian Dröge  <slomo@circular-chaos.org>
2512
2513         * gst/audioconvert/gstaudioconvert.c:
2514         (structure_has_fixed_channel_positions),
2515         (gst_audio_convert_transform_caps):
2516         Allow up to 11 positioned channels now that audioconvert can handle
2517         this but add no default positions for > 8 channels.
2518         
2519         * tests/check/elements/audioconvert.c: (GST_START_TEST):
2520         Add some unit tests for the above change: Test conversion of
2521         11 positioned channels to stereo and the other way around, test
2522         conversion of 15 unpositioned channels in different ways.
2523
2524 2008-05-29  Sebastian Dröge  <slomo@circular-chaos.org>
2525
2526         * win32/common/libgstaudio.def:
2527         Add gst_audio_clock_reset to the list of exported symbols.
2528
2529 2008-05-29  Sebastian Dröge  <slomo@circular-chaos.org>
2530
2531         * tests/check/elements/vorbisdec.c: (vorbisdec_suite):
2532         Remove wrong_channels_identification_header unit test as we now
2533         support 7 (and more channels).
2534
2535 2008-05-29  Sebastian Dröge  <slomo@circular-chaos.org>
2536
2537         * gst/audioconvert/gstchannelmix.c:
2538         (gst_channel_mix_fill_one_other):
2539         If mixing left or right to center (or the other way around) only take
2540         the complete value if we don't already have the original position in
2541         the source.
2542
2543 2008-05-29  Sebastian Dröge  <slomo@circular-chaos.org>
2544
2545         * gst-libs/gst/audio/multichannel.c:
2546         (gst_audio_check_channel_positions),
2547         (gst_audio_set_structure_channel_positions_list),
2548         (gst_audio_fixate_channel_positions):
2549         Allow rear center together with rear left/right and other previously
2550         conflicting channel positions. The reason why they weren't allowed
2551         was the channel mixing implementation in audioconvert.
2552         Also take this into account when fixing channel layouts.
2553
2554         Allow setting channel positions for 1/2 channels when using
2555         gst_audio_set_structure_channel_position().
2556
2557         * gst/audioconvert/gstchannelmix.c:
2558         (gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
2559         (gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
2560         (gst_channel_mix_fill_special), (gst_channel_mix_fill_matrix):
2561         Major rewrite of the channel mixing.
2562
2563         We now allow previously conflicting channel positions to appear
2564         together (rear center and rear left/right for example).
2565         Fixes bug #533817.
2566
2567         Rework the way channels are mixed together to take more possible
2568         channel positions into account, properly mix from/to side channels
2569         and don't assume that either center, left&right or nothing of a
2570         specific position is available anymore.
2571
2572         * tests/check/elements/audioconvert.c: (GST_START_TEST):
2573         Adjust unit tests with non-standard 1/2 channel layouts to the more
2574         correct new behaviour.
2575
2576         Add a unit test for 5.1->Stereo downmixing.
2577
2578 2008-05-29  Sebastian Dröge  <slomo@circular-chaos.org>
2579
2580         * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
2581         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_generate_sink_caps):
2582         Add sane defaults for the 7 and 8 channel layouts as those are
2583         undefined in the Vorbis spec. Use NONE channel layouts when decoding
2584         more than 8 channels instead of erroring out. Fixes bug #535356.
2585
2586 2008-05-28  Wim Taymans  <wim.taymans@collabora.co.uk>
2587
2588         * docs/plugins/Makefile.am:
2589         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
2590         * docs/plugins/gst-plugins-base-plugins-sections.txt:
2591         * ext/theora/theoraparse.c:
2592         Add theoraparse to the docs and fix some docs.
2593
2594 2008-05-28  Wim Taymans  <wim.taymans@collabora.co.uk>
2595
2596         * gst-libs/gst/cdda/gstcddabasesrc.c:
2597         (gst_cdda_base_src_add_track), (gst_cdda_base_src_create):
2598         Fix EOS condition and track addition check, the track.end sector is
2599         included in the track. Fixes #533265.
2600
2601 2008-05-28  Wim Taymans  <wim.taymans@collabora.co.uk>
2602
2603         Patch by: Mark Nauwelaerts <manauw at skynet be>
2604
2605         * gst/videorate/gstvideorate.c: (gst_video_rate_reset),
2606         (gst_video_rate_flush_prev), (gst_video_rate_event),
2607         (gst_video_rate_chain):
2608         * gst/videorate/gstvideorate.h:
2609         React (more) to NEWSEGMENT
2610         Small adjustment in timestamp calculation to prevent mismatches
2611         Fixes #435633.
2612
2613 2008-05-28  Tim-Philipp Müller  <tim.muller at collabora co uk>
2614
2615         * tests/examples/seek/seek.c: (make_parselaunch_pipeline):
2616           Initialise error to NULL as we should.
2617
2618 2008-05-28  Sebastian Dröge  <slomo@circular-chaos.org>
2619
2620         * gst/adder/gstadder.c: (gst_adder_query_duration),
2621         (gst_adder_query_latency), (gst_adder_query):
2622         Implement latency query.
2623
2624 2008-05-27  Sebastian Dröge  <slomo@circular-chaos.org>
2625
2626         * gst/adder/gstadder.c: (gst_adder_query_duration):
2627         Correctly resync the iterator if gst_iterator_next() returns
2628         GST_ITERATOR_RESYNC.
2629
2630 2008-05-27  Tim-Philipp Müller  <tim.muller at collabora co uk>
2631
2632         * win32/vs6/libgstpbutils.dsp:
2633           Add pbutils-enumtypes.c to sources (#518037).
2634
2635 2008-05-27  Wim Taymans  <wim.taymans@collabora.co.uk>
2636
2637         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
2638         (gst_audio_clock_reset), (gst_audio_clock_get_internal_time):
2639         * gst-libs/gst/audio/gstaudioclock.h:
2640         Add method to inform the clock that the time starts from 0 again. We use
2641         this info to calculate a clock offset so that the time we report in
2642         internal_time is monotonically increasing, as required by the clock base
2643         class. Fixes #521761.
2644         API: GstAudioClock::gst_audio_clock_reset()
2645
2646         * gst-libs/gst/audio/gstbaseaudiosink.c:
2647         (gst_base_audio_sink_skew_slaving),
2648         (gst_base_audio_sink_change_state):
2649         * gst-libs/gst/audio/gstbaseaudiosrc.c:
2650         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
2651         Reset reported time when we (re)create the ringbuffer.
2652
2653 2008-05-27  Tim-Philipp Müller  <tim.muller at collabora co uk>
2654
2655         * ext/alsa/gstalsamixertrack.c:
2656           (gst_alsa_mixer_track_update_alsa_capabilities):
2657           Make sure playback volumes aren't accidentally overwritten by
2658           capture volumes if an alsa mixer track has both playback and
2659           capture capabilities: we create two GstMixerTracks in that
2660           case, so make sure we query only the alsa capabilities that
2661           refer to the type of GstMixerTrack we created from the dual
2662           capability alsa element. Should fix issues with Audigy2 sound
2663           cards (#518082).
2664
2665 2008-05-27  Tim-Philipp Müller  <tim.muller at collabora co uk>
2666
2667         * tests/check/pipelines/oggmux.c: (test_pipeline):
2668           Don't use deprecated function.
2669
2670 2008-05-27  Wim Taymans  <wim.taymans@collabora.co.uk>
2671
2672         * gst/playback/gstdecodebin2.c:
2673         (gst_decode_group_control_source_pad), (gst_decode_group_expose):
2674         Check for NULL cases and log them, creating ghostpads can, for example,
2675         fail when the pad returns wrong caps.
2676
2677         * gst/playback/gstplaybin2.c: (perform_eos):
2678         When pushing out the EOS event, collect the return value and warn when
2679         something failed.
2680
2681 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
2682
2683         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
2684         (gst_riff_create_video_template_caps):
2685         Add support for DVCPRO.
2686
2687 2008-05-26  Tim-Philipp Müller  <tim.muller at collabora co uk>
2688
2689         * gst/videoscale/gstvideoscale.c: (DEFAULT_PROP_METHOD):
2690           Change default scaling method from nearest-neighbour to bilinear.
2691
2692 2008-05-26  Tim-Philipp Müller  <tim.muller at collabora co uk>
2693
2694         * tests/check/libs/video.c:
2695           More checks.
2696
2697 2008-05-25  Tim-Philipp Müller  <tim.muller at collabora co uk>
2698
2699         * gst/subparse/gstsubparse.c: (parser_state_init),
2700           (gst_sub_parse_format_autodetect), (handle_buffer):
2701         * gst/subparse/gstsubparse.h:
2702         * tests/check/elements/subparse.c: (test_tmplayer_style3b):
2703           Limit duration to a maximum of five seconds for tmplayer format where
2704           we can guess the duration only from the timestamp of the next line of
2705           text. We don't want to show a text for eternities just because nothing
2706           else is being said for a while.
2707
2708 2008-05-23  Wim Taymans  <wim.taymans@collabora.co.uk>
2709
2710         * gst-libs/gst/rtp/gstbasertpdepayload.c:
2711         (gst_base_rtp_depayload_chain),
2712         (gst_base_rtp_depayload_handle_sink_event),
2713         (gst_base_rtp_depayload_push_full),
2714         (gst_base_rtp_depayload_change_state):
2715         Check sequence numbers, mark input buffers with a discont flag for the
2716         subclass when we detected a gap, drop duplicate buffers. We do this
2717         because one can use the element without a jitterbuffer in front and we
2718         don't want to feed the subclasses invalid or reordered data.
2719         Do an error when the subclass did not provide a process function instead
2720         of crashing.
2721         Some other small cleanups.
2722
2723 2008-05-22  Tim-Philipp Müller  <tim.muller at collabora co uk>
2724
2725         * gst/videotestsrc/videotestsrc.c: (paint_hline_NV12_NV21):
2726           May just as well use the precalculated uvstride here.
2727
2728 2008-05-22  Jan Schmidt  <jan.schmidt@sun.com>
2729
2730         * docs/plugins/Makefile.am:
2731         * docs/plugins/gst-plugins-base-plugins-overrides.txt:
2732         * docs/plugins/gst-plugins-base-plugins-sections.txt:
2733         * docs/plugins/gst-plugins-base-plugins.args:
2734         * docs/plugins/gst-plugins-base-plugins.hierarchy:
2735         * docs/plugins/gst-plugins-base-plugins.interfaces:
2736         * docs/plugins/gst-plugins-base-plugins.prerequisites:
2737         * docs/plugins/inspect/plugin-adder.xml:
2738         * docs/plugins/inspect/plugin-alsa.xml:
2739         * docs/plugins/inspect/plugin-audioconvert.xml:
2740         * docs/plugins/inspect/plugin-audiorate.xml:
2741         * docs/plugins/inspect/plugin-audioresample.xml:
2742         * docs/plugins/inspect/plugin-audiotestsrc.xml:
2743         * docs/plugins/inspect/plugin-cdparanoia.xml:
2744         * docs/plugins/inspect/plugin-decodebin.xml:
2745         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
2746         * docs/plugins/inspect/plugin-gdp.xml:
2747         * docs/plugins/inspect/plugin-gio.xml:
2748         * docs/plugins/inspect/plugin-gnomevfs.xml:
2749         * docs/plugins/inspect/plugin-libvisual.xml:
2750         * docs/plugins/inspect/plugin-ogg.xml:
2751         * docs/plugins/inspect/plugin-pango.xml:
2752         * docs/plugins/inspect/plugin-playback.xml:
2753         * docs/plugins/inspect/plugin-queue2.xml:
2754         * docs/plugins/inspect/plugin-subparse.xml:
2755         * docs/plugins/inspect/plugin-tcp.xml:
2756         * docs/plugins/inspect/plugin-theora.xml:
2757         * docs/plugins/inspect/plugin-typefindfunctions.xml:
2758         * docs/plugins/inspect/plugin-uridecodebin.xml:
2759         * docs/plugins/inspect/plugin-video4linux.xml:
2760         * docs/plugins/inspect/plugin-videorate.xml:
2761         * docs/plugins/inspect/plugin-videoscale.xml:
2762         * docs/plugins/inspect/plugin-videotestsrc.xml:
2763         * docs/plugins/inspect/plugin-volume.xml:
2764         * docs/plugins/inspect/plugin-vorbis.xml:
2765         * docs/plugins/inspect/plugin-ximagesink.xml:
2766         * docs/plugins/inspect/plugin-xvimagesink.xml:
2767         * ext/cdparanoia/gstcdparanoiasrc.c:
2768         * ext/ogg/gstoggdemux.c:
2769         * ext/ogg/gstoggdemux.h:
2770         * ext/ogg/gstoggmux.c:
2771         * ext/ogg/gstoggmux.h:
2772         * gst/audioconvert/audioconvert.c:
2773         * gst/audioconvert/audioconvert.h:
2774         * gst/audioconvert/gstaudioconvert.h:
2775         * gst/gdp/gstgdpdepay.h:
2776         * gst/gdp/gstgdppay.h:
2777         * gst/playback/gstdecodebin.c:
2778         * gst/playback/gstdecodebin2.c:
2779         * gst/playback/gstplaybin.c:
2780         * gst/playback/gstplaybin2.c:
2781         * gst/playback/gsturidecodebin.c:
2782         * gst/tcp/gstmultifdsink.c:
2783         * gst/tcp/gstmultifdsink.h:
2784         * gst/tcp/gsttcp.h:
2785
2786         Add some documentation comments, and some new headers to be scanned.
2787         Rename some internal enum declarations (audioconvert's DitherType and
2788         NoiseShapingType, GstUnitType from the TCP elements) to match the
2789         documented GObject type names so that the docs pick them up.
2790         Name the playbin2 docs markups properly so they get picked up. They'll
2791         need renaming back when/if playbin2 becomes playbin.
2792
2793         100% symbol coverage for the plugin docs, booya.
2794
2795 2008-05-22  Sebastian Dröge  <slomo@circular-chaos.org>
2796
2797         Patch by: Thijs Vermeir <thijsvermeir@gmail.com>
2798
2799         * gst/videotestsrc/videotestsrc.c: (paint_hline_NV12_NV21):
2800         Fix generation of NV12/NV21 frames. Fixes bug #532454.
2801
2802 2008-05-22  Wim Taymans  <wim.taymans@collabora.co.uk>
2803
2804         Patch by: Sjoerd Simons <sjoerd at luon dot net>
2805
2806         * gst/playback/gstdecodebin.c: (remove_fakesink):
2807         Lock the fakesink before setting the state to NULL and removing it from
2808         the bin so that a concurrent state change cannot interfere. 
2809         Fixes #534331.
2810
2811 2008-05-21  Felipe Contreras  <felipe.contreras@gmail.com>
2812
2813         * docs/Makefile.am:
2814         Fix installing plugin documentation when gtk-doc is disabled.
2815
2816 2008-05-21  Felipe Contreras  <felipe.contreras@gmail.com>
2817
2818         * gst-libs/gst/rtsp/Makefile.am:
2819         Distribute, don't install md5.h
2820
2821 2008-05-21  Julien Moutte  <julien@fluendo.com>
2822
2823         * gst/tcp/gstmultifdsink.c: (setup_dscp_client): Use IPPROTO_IP
2824         instead of SOL_IP, works on more platforms.
2825         * gst/typefind/gsttypefindfunctions.c: (aac_type_find): Fix printf
2826         arguments.
2827
2828 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
2829
2830         * ext/vorbis/vorbisdec.c:
2831         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform):
2832         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_show_frame):
2833         Some debug and comment fixes.
2834
2835         * tests/examples/dynamic/addstream.c: (main):
2836         Fix , to ;
2837
2838 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
2839
2840         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
2841         * gst/playback/decodetest.c: (new_decoded_pad_cb):
2842         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
2843         (try_to_link_1), (elem_is_dynamic), (close_link), (type_found),
2844         (cleanup_decodebin):
2845         * gst/playback/gstdecodebin2.c: (gst_decode_bin_init),
2846         (connect_element), (gst_decode_group_control_demuxer_pad):
2847         * gst/playback/gstplaybasebin.c: (queue_remove_probe),
2848         (queue_out_of_data), (gen_preroll_element), (preroll_unlinked),
2849         (mute_group_type):
2850         * gst/playback/gstplaybin.c: (gst_play_bin_vis_blocked),
2851         (gst_play_bin_set_property), (handoff), (gen_video_element),
2852         (gen_text_element), (gen_audio_element), (gen_vis_element),
2853         (remove_sinks), (add_sink), (setup_sinks):
2854         * gst/playback/gstplaybin2.c: (pad_added_cb), (no_more_pads_cb):
2855         * gst/playback/gstplaysink.c: (gst_play_sink_get_video_sink),
2856         (gst_play_sink_get_audio_sink), (gst_play_sink_vis_unblocked),
2857         (gst_play_sink_vis_blocked), (gst_play_sink_set_vis_plugin),
2858         (gst_play_sink_get_vis_plugin), (gst_play_sink_set_mute),
2859         (gen_video_chain), (gen_text_chain), (gen_audio_chain),
2860         (gen_vis_chain), (gst_play_sink_reconfigure),
2861         (gst_play_sink_set_font_desc), (gst_play_sink_get_font_desc),
2862         (gst_play_sink_request_pad):
2863         * gst/playback/gsturidecodebin.c: (type_found), (setup_source):
2864         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
2865         (cb_newpad):
2866         * gst/playback/test6.c: (new_decoded_pad_cb):
2867         * tests/check/elements/audioconvert.c: (GST_START_TEST):
2868         * tests/check/elements/audiorate.c: (test_injector_chain),
2869         (do_perfect_stream_test):
2870         * tests/check/elements/ffmpegcolorspace.c: (GST_START_TEST):
2871         * tests/check/elements/gdpdepay.c: (GST_START_TEST):
2872         * tests/check/elements/gnomevfssink.c:
2873         * tests/check/elements/textoverlay.c:
2874         (notgst_check_setup_src_pad2), (notgst_check_teardown_src_pad2):
2875         * tests/check/elements/videotestsrc.c: (GST_START_TEST):
2876         * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
2877         * tests/check/pipelines/oggmux.c: (test_pipeline):
2878         * tests/check/pipelines/streamheader.c: (GST_START_TEST):
2879         * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
2880         * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
2881         * tests/examples/seek/scrubby.c: (make_wav_pipeline):
2882         * tests/examples/seek/seek.c: (make_mod_pipeline),
2883         (make_dv_pipeline), (make_wav_pipeline), (make_flac_pipeline),
2884         (make_sid_pipeline), (make_parse_pipeline), (make_vorbis_pipeline),
2885         (make_theora_pipeline), (make_vorbis_theora_pipeline),
2886         (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
2887         (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline),
2888         (update_fill), (msg_buffering):
2889         Don't use bad gst_element_get_pad().
2890
2891 2008-05-21  Stefan Kost  <ensonic@users.sf.net>
2892
2893         * gst-libs/gst/riff/riff-media.c:
2894           Fix wrong method name in docs. Fix calculation of strf fields for
2895           broken mulaw/alaw.
2896   
2897         * gst-libs/gst/riff/riff-read.c:
2898           Whitespace fix and removing double ';'.
2899
2900 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
2901
2902         * docs/design/part-playbin2.txt:
2903         Add some leftover doc.
2904
2905 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
2906
2907         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_fill_others):
2908         Fix copy & paste error in last commit.
2909
2910 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
2911
2912         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_fill_others):
2913         Add support for mixing GST_AUDIO_CHANNEL_POSITION_SIDE_* from/to
2914         other channel positions when source has SIDE channels and dest doesn't
2915         or the other way around.
2916
2917 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
2918
2919         Patch by: Henrik Eriksson <henriken at axis dot com>
2920
2921         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
2922         (gst_multi_fd_sink_init), (setup_dscp_client), (setup_dscp),
2923         (gst_multi_fd_sink_add_full), (gst_multi_fd_sink_set_property),
2924         (gst_multi_fd_sink_get_property):
2925         * gst/tcp/gstmultifdsink.h:
2926         Add support for DSCP QOS. Fixes #469933.
2927
2928 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
2929
2930         * tests/check/elements/audioconvert.c: (GST_START_TEST):
2931         Add another test that checks if conversion between standard 1 and 2
2932         channel layouts with and without positions set is working.
2933
2934 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
2935
2936         * gst-libs/gst/audio/multichannel.c:
2937         (gst_audio_check_channel_positions):
2938         Allow non-standard 2 channel layouts.
2939         
2940         * tests/check/elements/audioconvert.c: (GST_START_TEST):
2941         Add some tests for converting and remapping non-standard 1 and 2
2942         channel layouts.
2943
2944 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
2945
2946         * gst/audioconvert/gstchannelmix.c:
2947         (gst_channel_mix_fill_normalize):
2948         Prevent division by zero if the channel mix matrix contains only
2949         zeroes.
2950
2951 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
2952
2953         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
2954
2955         * gst/gdp/gstgdppay.c: (gst_gdp_pay_chain):
2956         Close a buffer memory leak. Fixes bug #534071.
2957
2958 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
2959
2960         * gst-libs/gst/rtsp/gstrtsptransport.h:
2961         Make the GstRTSPTransport struct members public as there are no
2962         setters/getters and it's supposed to be changed directly.
2963         Fixes bug #533087.
2964
2965 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
2966
2967         * gst/adder/gstadder.c:
2968         Adder also doesn't support audio/x-raw-int with width!=depth so don't
2969         claim this on the pad template caps.
2970
2971 2008-05-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2972
2973         * gst-libs/gst/audio/gstbaseaudiosink.c:
2974         (gst_base_audio_sink_sync_latency):
2975         We can only use our optimal calibration if we prerolled before the
2976         latency expired.
2977
2978 2008-05-20  Tim-Philipp Müller  <tim.muller at collabora co uk>
2979
2980         * configure.ac:
2981           Require core CVS for GstBaseSrc buffer caps setting magic.
2982
2983 2008-05-20  Sebastian Dröge  <slomo@circular-chaos.org>
2984
2985         * gst/audioconvert/gstaudioconvert.c:
2986         (gst_audio_convert_fixate_channels):
2987         Fix logic in last commit.
2988
2989 2008-05-20  Sebastian Dröge  <slomo@circular-chaos.org>
2990
2991         * gst/audioconvert/gstaudioconvert.c:
2992         (gst_audio_convert_fixate_channels):
2993         Passthrough the channel positions if the number of output channels is
2994         the same as the number of input channels, the input had a channel
2995         layout and downstream requests no special one. We did this already for
2996         > 2 channels but now it's also done for 1 channel. Fixes bug #533617.
2997
2998 2008-05-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2999
3000         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_init),
3001         (gst_gnome_vfs_src_finalize),
3002         (gst_gnome_vfs_src_received_headers_callback),
3003         (gst_gnome_vfs_src_create), (gst_gnome_vfs_src_stop):
3004         * ext/gnomevfs/gstgnomevfssrc.h:
3005         Set the ICY caps on the srcpad from where they get picked up by the base
3006         class now and set on the outgoing buffers.
3007
3008         * gst-libs/gst/audio/gstbaseaudiosrc.c:
3009         (gst_base_audio_src_create):
3010         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_buffer_new):
3011         BaseSrc now sets the caps on outgoing buffers automatically.
3012
3013 2008-05-20  Wim Taymans  <wim.taymans@collabora.co.uk>
3014
3015         * gst-libs/gst/audio/gstbaseaudiosink.c:
3016         (gst_base_audio_sink_resample_slaving),
3017         (gst_base_audio_sink_skew_slaving),
3018         (gst_base_audio_sink_sync_latency), (gst_base_audio_sink_render),
3019         (gst_base_audio_sink_async_play),
3020         (gst_base_audio_sink_change_state):
3021         Change the way in which the ringbuffer is started when dealing with a
3022         slaved clock and latency. We now sync to the clock until we reach
3023         upstream latency before starting the ringbuffer. This has the effect
3024         that we can accurately align the master and slave clocks and let the
3025         rate correction code take care of the initial drift or rounding errors
3026         instead of leaving them uncorrected with the old approach.
3027
3028 2008-05-20  Sebastian Dröge  <slomo@circular-chaos.org>
3029
3030         * gst/audioconvert/gstaudioconvert.c:
3031         (gst_audio_convert_fixate_channels):
3032         Correctly set the default channel positions when converting to 8
3033         channels.
3034
3035 2008-05-19  Tim-Philipp Müller  <tim.muller at collabora co uk>
3036
3037         * configure.ac:
3038           Error out if we don't have the required version of core.
3039
3040 2008-05-19  Tim-Philipp Müller  <tim.muller at collabora co uk>
3041
3042         * gst/typefind/gsttypefindfunctions.c: (aac_type_find):
3043           Use data scan helper in aac typefinder and stop scanning
3044           for headers when we've found a type. Also fix potential invalid
3045           memory access when calculating the frame length.
3046
3047 2008-05-19  Tim-Philipp Müller  <tim.muller at collabora co uk>
3048
3049         * gst/typefind/gsttypefindfunctions.c: (data_scan_ctx_ensure_data),
3050           (mpeg_sys_is_valid_pack):
3051           Don't modify scan context when we return FALSE in ensure_data, so
3052           it's possible to continue scanning, and we don't end up with a NULL
3053           data pointer and a positive size, which might bite us the next time
3054           we're called. Small constification.
3055
3056 2008-05-16  Sebastian Dröge  <slomo@circular-chaos.org>
3057
3058         * gst/adder/gstadder.c:
3059         Adder doesn't support 24 bit samples so don't claim it supports them
3060         in the pad template caps.
3061
3062 2008-05-14  Wim Taymans  <wim.taymans@collabora.co.uk>
3063
3064         * gst-libs/gst/rtp/gstbasertpdepayload.c:
3065         (gst_base_rtp_depayload_chain):
3066         Validate the RTP packet before further processing it. It's just too
3067         dangerous to accept random packets and people are not forced to use a
3068         jitterbuffer or session manager to filter out the bad packets.
3069
3070         * gst-libs/gst/rtp/gstrtpbuffer.c:
3071         (gst_rtp_buffer_set_extension_data),
3072         (gst_rtp_buffer_get_payload_subbuffer):
3073         Small cleanups.
3074         When setting extension data in a buffer that is too small, we fail and
3075         we should not set the extension bit.
3076         Change GST_WARNINGS into g_warning because they really are
3077         programming errors.
3078
3079         * tests/check/libs/rtp.c: (GST_START_TEST):
3080         Catch the g_warnings now in the unit tests and that fact that failing to
3081         set extension data left the extension bit untouched.
3082
3083 2008-05-14  Tim-Philipp Müller  <tim.muller at collabora co uk>
3084
3085         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init):
3086           Revert previous change which made basetransform handle buffer_alloc
3087           and which breaks things badly in the non-passthrough case since it
3088           returned buffers with a different (ie. sometimes smaller) size than
3089           the size requested.
3090
3091 2008-05-14  Wim Taymans  <wim.taymans@collabora.co.uk>
3092
3093         Patch by: Bernard B <b-gnome at largestprime dot net>
3094
3095         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_compare_seqnum):
3096         Fix seqnum compare function for bordercase values and fix the docs
3097         again. Fixes #533075.
3098
3099         * tests/check/libs/rtp.c: (GST_START_TEST), (rtp_suite):
3100         Add a testcase for seqnum compare function.
3101
3102 2008-05-14  Sebastian Dröge  <slomo@circular-chaos.org>
3103
3104         * gst/adder/gstadder.c: (gst_adder_setcaps),
3105         (gst_adder_class_init):
3106         Correctly declare the supported endianness on the pad templates
3107         and check for correct endianness in the set caps function. Adder
3108         only supports native endianness.
3109         Also use gst_element_class_set_details_simple().
3110
3111 2008-05-14  Stefan Kost  <ensonic@users.sf.net>
3112
3113         * sys/xvimage/xvimagesink.c:
3114           Better debug logging in port value handling. Merging separate port
3115           value loops into one.
3116
3117 2008-05-13  Wim Taymans  <wim.taymans@collabora.co.uk>
3118
3119         Patch by: Hannes Bistry <hannesb at gmx dot de>
3120
3121         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_start):
3122         * gst/tcp/gsttcpserversink.c:
3123         (gst_tcp_server_sink_handle_server_read),
3124         (gst_tcp_server_sink_handle_wait), (gst_tcp_server_sink_init_send):
3125         Fix regression in clientsrc because we did not add the fd to the poll
3126         set anymore. Fixes #532364.
3127         Do some cleanups here and there.
3128
3129 2008-05-13  Sebastian Dröge  <slomo@circular-chaos.org>
3130
3131         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
3132         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init):
3133         * gst/playback/gstplay-marshal.list:
3134         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_class_init):
3135         Use correct marshallers. GstCaps are a boxed type and no GObject
3136         subclass.
3137
3138 2008-05-13  Sebastian Dröge  <slomo@circular-chaos.org>
3139
3140         * win32/common/libgstrtsp.def:
3141         Add gst_rtsp_connection_(set|clear)_auth_param() to the exported
3142         symbols.
3143
3144 2008-05-13  Sebastian Dröge  <slomo@circular-chaos.org>
3145
3146         Patch by: Sjoerd Simons <sjoerd at luon dot net>
3147
3148         * tests/check/elements/audioresample.c:
3149         (live_switch_alloc_only_48000), (live_switch_get_sink_caps),
3150         (live_switch_push), (GST_START_TEST):
3151         Add unit test for the latest basetransform negotiation changes.
3152         See bug #526768.
3153
3154 2008-05-13  Sebastian Dröge  <slomo@circular-chaos.org>
3155
3156         * gst/ffmpegcolorspace/imgconvert.c: (nv12_to_nv21):
3157         Fix nv12<->nv21 conversion if stride is larger than width.
3158
3159 2008-05-13  Sebastian Dröge  <slomo@circular-chaos.org>
3160
3161         Patch by: Jan Gerber <j at oil21 dot org>
3162
3163         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_parse_skeleton_fishead),
3164         (gst_ogg_pad_parse_skeleton_fisbone):
3165         * ext/ogg/gstoggdemux.h:
3166         Parse presentation time from skeleton streams and use it as offset
3167         for the timestamps. Fixes bug #530068.
3168
3169 2008-05-12  Wim Taymans  <wim.taymans@collabora.co.uk>
3170
3171         * gst-libs/gst/audio/gstbaseaudiosink.c:
3172         (gst_base_audio_sink_render), (gst_base_audio_sink_async_play):
3173         Revert previous patch that attempted to more accurately calculate the
3174         initial offset between master and slave clock. The best thing we can do
3175         in general is take the time of both clocks as the diff since we don't
3176         know when the actual preroll happened.
3177
3178 2008-05-11  Tim-Philipp Müller  <tim.muller at collabora co uk>
3179
3180         * gst-libs/gst/pbutils/install-plugins.c:
3181           Fix docs: type and missing word.
3182
3183 2008-05-10  Tim-Philipp Müller  <tim.muller at collabora co uk>
3184
3185         * gst/typefind/gsttypefindfunctions.c: (h264_video_type_find):
3186           Don't do lots of 4-byte peeks, but use the 'new' data scan helper
3187           for this instead; don't check if we've found enough markers after
3188           each and every step, it's enough to do that only if we've actually
3189           found a new marker.
3190           Embed a G_UNLIKELY into the IS_MPEG_HEADER macro.
3191
3192 2008-05-10  Tim-Philipp Müller  <tim.muller at collabora co uk>
3193
3194         * gst/typefind/gsttypefindfunctions.c:
3195           (DATA_SCAN_CTX_CHUNK_SIZE), (DataScanCtx), (data_scan_ctx_advance),
3196           (data_scan_ctx_ensure_data), (GST_MPEGVID_TYPEFIND_TRY_SYNC),
3197           (mpeg_video_stream_type_find):
3198           Move scan helper thingy to the beginning of the file so we can use
3199           it in other typefind functions. Rename it to something more
3200           generic. Also improve handling of things towards the end of the
3201           typefind data: peek as much as we can if we know the size of the
3202           data, rather than just min_size.
3203
3204 2008-05-09  Jan Schmidt  <jan.schmidt@sun.com>
3205
3206         * docs/libs/gst-plugins-base-libs-sections.txt:
3207         * gst-libs/gst/interfaces/colorbalance.c:
3208         * gst-libs/gst/interfaces/colorbalance.h:
3209         * gst-libs/gst/interfaces/colorbalancechannel.c:
3210         * gst-libs/gst/interfaces/colorbalancechannel.h:
3211         * gst-libs/gst/interfaces/tuner.c:
3212         * gst-libs/gst/interfaces/tunerchannel.c:
3213         * gst-libs/gst/interfaces/tunerchannel.h:
3214         * gst-libs/gst/interfaces/tunernorm.c:
3215         * gst-libs/gst/interfaces/tunernorm.h:
3216         * gst-libs/gst/video/video.c:
3217         * gst-libs/gst/video/video.h:
3218         Document the GstTuner and GstColorBalance interfaces, and some
3219         other random API functions that needed it. 70% symbol coverage, woo.
3220
3221 2008-05-09  Wim Taymans  <wim.taymans@collabora.co.uk>
3222
3223         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_acquire):
3224         Choose to allocate one less segment but require one additional segment
3225         as latency. 
3226
3227         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_acquire):
3228         No need to increment the number of segments in the source.
3229
3230         * gst-libs/gst/audio/gstbaseaudiosink.c:
3231         (gst_base_audio_sink_get_time), (clock_convert_external),
3232         (gst_base_audio_sink_resample_slaving),
3233         (gst_base_audio_sink_skew_slaving),
3234         (gst_base_audio_sink_none_slaving), (gst_base_audio_sink_render),
3235         (gst_base_audio_sink_async_play):
3236         Remove adding latency when returning the internal time while subtracting
3237         it again when we use the value a little later.
3238         When calculating the end timestamp, we are making a rounding error
3239         with the current algorithm. Ensure that we don't accumulate these
3240         rounding errors when aligning samples by not resampling at all if we
3241         don't need to. Fixes #419351.
3242         Make the initial calibration of the clock slaving a little more
3243         predictable and accurate. Also handle the case where we don't do
3244         clock slaving.
3245
3246 2008-05-09  Sebastian Dröge  <slomo@circular-chaos.org>
3247
3248         Based on a patch by:
3249           Björn Benderius <bjoern dot benderius at axis dot com>
3250
3251         * gst/ffmpegcolorspace/avcodec.h:
3252         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
3253         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
3254         (gst_ffmpegcsp_avpicture_fill):
3255         * gst/ffmpegcolorspace/imgconvert.c: (nv12_to_nv21):
3256         * gst/ffmpegcolorspace/imgconvert_template.h:
3257         Add conversions from/to NV12 and NV21 and conversions between those
3258         two formats. Fixes bug #532166.
3259
3260 2008-05-08  Edward Hervey  <edward.hervey@collabora.co.uk>
3261
3262         * gst/typefind/gsttypefindfunctions.c: (h264_video_type_find):
3263         Abort the h264 typefinding as soon as _peek() doesn't return anything,
3264         which happens for example with files smaller than 128kb.
3265
3266 2008-05-08  Wim Taymans  <wim.taymans@collabora.co.uk>
3267
3268         Patch by: Wouter Cloetens <zombie at e2big dot org>
3269
3270         * gst-libs/gst/rtsp/Makefile.am:
3271         * gst-libs/gst/rtsp/gstrtspconnection.c:
3272         (gst_rtsp_connection_create), (md5_digest_to_hex_string),
3273         (auth_digest_compute_hex_urp), (auth_digest_compute_response),
3274         (add_auth_header), (gst_rtsp_connection_free),
3275         (gst_rtsp_connection_set_auth), (str_case_hash), (str_case_equal),
3276         (gst_rtsp_connection_set_auth_param),
3277         (gst_rtsp_connection_clear_auth_params):
3278         * gst-libs/gst/rtsp/gstrtspconnection.h:
3279         Add Digest authorization support for RTSP connections. See #532065.
3280
3281         * gst-libs/gst/rtsp/md5.c:
3282         * gst-libs/gst/rtsp/md5.h:
3283         Yeap, another md5 implementation until we can depend on a glib that has
3284         support for it.
3285
3286 2008-05-08  Sebastian Dröge  <slomo@circular-chaos.org>
3287
3288         Patch by: Sjoerd Simons <sjoerd at luon dot net>
3289
3290         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init):
3291         Let audioresample use the buffer allocation of basetransform instead
3292         of it's own stuff.
3293
3294         * tests/check/elements/audioresample.c: (alloc_only_48000),
3295         (GST_START_TEST), (audioresample_suite):
3296         Add unit test for the recent basetransform bugfix, where upstream
3297         changes caps to something that can't be passed through anymore.
3298
3299 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
3300
3301         * win32/common/config.h.in:
3302           Don't define GST_FUNCTION, if GLib supports MSVC we'd much rather
3303           use the real thing than having "???" unconditionally.
3304
3305 2008-05-07  Wim Taymans  <wim.taymans@collabora.co.uk>
3306
3307         * gst-libs/gst/audio/gstbaseaudiosink.c:
3308         (gst_base_audio_sink_query):
3309         Report the latency with the new seglatency parameter.
3310
3311         * gst-libs/gst/audio/gstringbuffer.c:
3312         (gst_ring_buffer_debug_spec_buff), (gst_ring_buffer_parse_caps),
3313         (gst_ring_buffer_acquire):
3314         * gst-libs/gst/audio/gstringbuffer.h:
3315         Add new field to the ringbufferspec to specify the expected latency
3316         between the underlying device read/write pointer, this is needed
3317         when writing sinks that sit a little closer to the hardware.
3318         Add some more docs for other fields.
3319
3320 2008-05-06  Sebastian Dröge  <slomo@circular-chaos.org>
3321
3322         * gst/volume/gstvolume.c: (volume_transform_ip):
3323         Return NOT_NEGOTIATED if we didn't set a process function yet for some
3324         reason instead of crashing later. Might fix bug #509125.
3325
3326 2008-05-06  Sebastian Dröge  <slomo@circular-chaos.org>
3327
3328         Based on a patch by: Tim-Philipp Müller  <tim.muller at collabora co uk>
3329
3330         * gst/audioconvert/audioconvert.c: (audio_convert_prepare_context):
3331         * gst/audioconvert/audioconvert.h:
3332         * gst/audioconvert/gstaudioconvert.c:
3333         (gst_audio_convert_parse_caps),
3334         (structure_has_fixed_channel_positions),
3335         (gst_audio_convert_transform_caps):
3336         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_fill_matrix):
3337         Add support for more than 8 channels and NONE channel layouts. For
3338         more than 8 channels no channel conversion is supported yet, only
3339         format conversions are supported. Fixes bug #398033.
3340
3341         * tests/check/elements/audioconvert.c: (verify_convert),
3342         (GST_START_TEST), (audioconvert_suite):
3343         Add some unit tests by Tim for checking the NONE channel layouts
3344         and more than 8 channels and add some more unit tests for channel
3345         conversions.
3346
3347 2008-05-06  Wim Taymans  <wim.taymans@collabora.co.uk>
3348
3349         * gst/playback/gstdecodebin2.c: (connect_pad):
3350         When autoplugging fails, set the element back to NULL before
3351         unreffing it.
3352
3353 2008-05-06  Sebastian Dröge  <slomo@circular-chaos.org>
3354
3355         * win32/common/libgstaudio.def:
3356         Add gst_base_audio_src_[sg]et_slave_method() to the exported
3357         symbols.
3358
3359 2008-05-05  Sebastian Dröge  <slomo@circular-chaos.org>
3360
3361         * gst/subparse/samiparse.c: (handle_start_sync),
3362         (end_sami_element), (characters_sami):
3363         Remove trailing, leading and double whitespaces.
3364         Correctly timestamp buffers and output the last buffer too.
3365
3366         * tests/check/elements/subparse.c: (GST_START_TEST),
3367         (subparse_suite):
3368         Add a simple unit test for SAMI parsing.
3369
3370 2008-05-05  Sebastian Dröge  <slomo@circular-chaos.org>
3371
3372         Patch by: Young-Ho Cha <ganadist at chollian dot net>
3373
3374         * gst/subparse/samiparse.c: (handle_start_sync),
3375         (start_sami_element), (end_sami_element), (characters_sami),
3376         (sami_context_reset):
3377         Only output characters inside the "sync" elements. There could be
3378         other elements like "style" that have some content but should
3379         not be printed. Fixes bug #467911.
3380
3381 2008-05-05  Sebastian Dröge  <slomo@circular-chaos.org>
3382
3383         * gst/playback/gstplaybasebin.c: (set_audio_mute),
3384         (set_active_source):
3385         * gst/playback/gstplaybasebin.h:
3386         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
3387         (playbin_set_audio_mute):
3388         Allow setting -1 as current-audio to mute the current audio stream,
3389         similar to what is done for subtitles. Fixes bug #342294.
3390
3391 2008-05-05  Edward Hervey  <edward.hervey at collabora co uk>
3392
3393         * gst-libs/gst/pbutils/descriptions.c: (formats): 
3394         It's SorensOn and not SorensEn.
3395
3396 2008-05-04  Tim-Philipp Müller  <tim.muller at collabora co uk>
3397
3398         * gst-libs/gst/pbutils/descriptions.c: (formats):
3399           Fix description of video/x-flash-video.
3400
3401 2008-05-04  Sebastian Dröge  <slomo@circular-chaos.org>
3402
3403         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func):
3404         * gst-libs/gst/audio/gstaudiosrc.c: (audioringbuffer_thread_func):
3405         * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
3406         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps_list):
3407         Remove some unused code.
3408
3409         * gst/audioconvert/gstaudioquantize.c:
3410         (gst_audio_quantize_free_noise_shaping):
3411         Don't return before freeing the noise shaping history.
3412
3413 2008-05-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
3414
3415         * tests/check/elements/subparse.c: (do_test),
3416           (test_tmplayer_style3b), (subparse_suite):
3417           Add unit test for the tmplayer variant from bug #530962.
3418
3419 2008-05-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
3420
3421         * gst/subparse/gstsubparse.c: (handle_buffer),
3422           (gst_sub_parse_sink_event):
3423         * gst/subparse/tmplayerparse.c: (tmplayer_process_buffer),
3424           (tmplayer_parse_line):
3425           Fix parsing of tmplayer subtitle variant where every single line contains
3426           text and there isn't an empty line after each line to determine the
3427           duration (#530962). Improve EOS handling for tmplayer subtitles a bit by
3428           making sure that we push out the last line of text without a duration if
3429           there's still text left in the buffer at the end.
3430
3431 2008-05-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
3432
3433         * gst/subparse/gstsubparse.c: (feed_textbuf):
3434           Fix detection of discontinuities based on the buffer offset (doesn't work
3435           so well if no buffer offset is set) and also check for the DISCONT buffer
3436           flag. This keeps the parser state from being reset after each buffer in
3437           the unit test.
3438
3439 2008-05-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
3440
3441         * gst/typefind/gsttypefindfunctions.c: (mpeg_video_stream_type_find):
3442           Further fine-tuning: don't absolutely require sequence or GOP headers
3443           (as introduced in the previous commit), but adjust the typefind
3444           probabilities returned accordingly if we don't see them. Also make sure
3445           picture header and first slice are somewhat close to each other (which
3446           is not perfect but still better than requiring a fixed offset or having
3447           no limit at all).
3448
3449 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
3450
3451         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
3452         (gst_basertppayload_sink_setcaps),
3453         (gst_basertppayload_sink_getcaps):
3454         Rename the setcaps/getcaps function internally to make it clear that
3455         they are called for the sink pad.
3456
3457 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
3458
3459         * gst-libs/gst/rtp/gstbasertpdepayload.c:
3460         (gst_base_rtp_depayload_class_init),
3461         (gst_base_rtp_depayload_handle_sink_event), (create_segment_event),
3462         (gst_base_rtp_depayload_packet_lost),
3463         (gst_base_rtp_depayload_set_gst_timestamp):
3464         * gst-libs/gst/rtp/gstbasertpdepayload.h:
3465         Catch packet-lost events from the jitterbuffer and convert them into a
3466         vmethod call (lost-packet) so that depayloaders can do something smart.
3467         Also add a default packet-lost function that sends out a segment update
3468         to the decoders.
3469
3470 2008-05-02  Stefan Kost  <ensonic@users.sf.net>
3471
3472         * gst/playback/test4.c:
3473         * gst/playback/test5.c:
3474         * gst/playback/test6.c:
3475         * gst/playback/test7.c:
3476           Also include config.h when relying on defines from it. Fixes the
3477           build. Its been a please to serve :)
3478
3479 2008-05-02  Thijs Vermeir <thijsvermeir@gmail.com>
3480
3481         * gst/videotestsrc/videotestsrc.c (paint_setup_NV12),
3482         (paint_setup_NV21), (paint_hline_NV12_NV21):
3483         Add support for NV12 and NV21 in videotestsrc
3484
3485 2008-05-02  Sebastian Dröge  <slomo@circular-chaos.org>
3486
3487         * gst/videoscale/gstvideoscale.c:
3488         * gst/videoscale/vs_4tap.c: (vs_image_scale_4tap_Y):
3489         * gst/videoscale/vs_image.c: (vs_image_scale_nearest_RGBA),
3490         (vs_image_scale_linear_RGBA), (vs_image_scale_nearest_RGB),
3491         (vs_image_scale_linear_RGB), (vs_image_scale_nearest_YUYV),
3492         (vs_image_scale_linear_YUYV), (vs_image_scale_nearest_UYVY),
3493         (vs_image_scale_linear_UYVY), (vs_image_scale_nearest_Y),
3494         (vs_image_scale_linear_Y), (vs_image_scale_nearest_RGB565),
3495         (vs_image_scale_linear_RGB565), (vs_image_scale_nearest_RGB555),
3496         (vs_image_scale_linear_RGB555):
3497         Support 1x1 images as input and output as for example the BBC HQ new
3498         streams have 1x1 GIFs in the playlists for some reason.
3499
3500 2008-05-01  Tim-Philipp Müller  <tim.muller at collabora co uk>
3501
3502         * gst/playback/gstdecodebin.c: (free_pad_probe_for_element),
3503           (try_to_link_1):
3504           If we can't activate one of the decoders we plugged in (such as,
3505           say, musepackdec) for some reason (it might not support push mode,
3506           for example), remove any pad probes that close_pad_link() might
3507           have set up. This makes sure we later don't try to remove a probe
3508           for a pad that doesn't exist any longer, and avoids nast warnings
3509           and probably other things too.
3510
3511 2008-04-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
3512
3513         * gst/typefind/gsttypefindfunctions.c:
3514           (mpeg_video_stream_ctx_ensure_data), (mpeg_video_stream_type_find),
3515           (plugin_init):
3516           Rework mpeg video stream typefinding a bit more: make sure sequence,
3517           GOP, picture and slice headers appear in the order they should and
3518           that we've in fact at least had one of each; fix picture header
3519           detection; decouple picture and slice header check - don't assume
3520           they're at a fixed offset, there may be extra data in between. Also,
3521           announce varying degrees of probability depending on what we found
3522           exactly (multiple pictures, at least one picture, just sequence and
3523           GOP headers). Finally, in _ensure_data(), take into account that we
3524           might be typefinding smaller amounts of data, such as the first
3525           buffer of a stream, so fall back to the minimum size needed as long
3526           as that's available, instead of erroring out if there's less than
3527           2kB of data. Fixes #526173. Conveniently also doesn't recognise the
3528           fuzzed file from #399342 as valid.
3529
3530 2008-04-30  Michael Smith <msmith@songbirdnest.com>
3531
3532         * ext/theora/theoradec.c:
3533           Cool kids don't divide by zero.
3534           Treat PAR of x:0 as 1:1.
3535           Fixes #530719.
3536
3537 2008-04-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
3538
3539         * gst/typefind/gsttypefindfunctions.c: (MpegVideoStreamCtx),
3540           (mpeg_video_stream_ctx_advance), (mpeg_video_stream_ctx_ensure_data),
3541           (mpeg_video_stream_type_find):
3542           Refactor a bit: use context structure to track parsing offset and
3543           size of available data and make the code a bit clearer. Fixes bad
3544           memory access in #356937.
3545
3546 2008-04-28  Michael Smith <msmith@songbirdnest.com>
3547
3548         * gst/playback/test4.c:
3549         * gst/playback/test5.c:
3550         * gst/playback/test6.c:
3551         * gst/tcp/gstmultifdsink.c:
3552           Include stdlib.h and unistd.h only if the appropriate HAVE_*_H macro
3553           is defined.
3554
3555 2008-04-28  Wim Taymans  <wim.taymans@collabora.co.uk>
3556
3557         * gst-libs/gst/audio/gstbaseaudiosink.h:
3558         Clarify some docs.
3559
3560         * gst-libs/gst/audio/gstbaseaudiosrc.c: (slave_method_get_type),
3561         (gst_base_audio_src_class_init), (gst_base_audio_src_init),
3562         (gst_base_audio_src_set_slave_method),
3563         (gst_base_audio_src_get_slave_method),
3564         (gst_base_audio_src_set_property),
3565         (gst_base_audio_src_get_property), (gst_base_audio_src_create):
3566         * gst-libs/gst/audio/gstbaseaudiosrc.h:
3567         Add property and methods for selecting the clock slave method in the
3568         source, like in the sink.
3569         We only implement "none" and "re-timestamp" for now.
3570         API: gst_base_audio_src_set_slave_method()
3571         API: gst_base_audio_src_get_slave_method()
3572
3573 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
3574
3575         * gst-libs/gst/rtp/gstrtpbuffer.c:
3576         Fix the docs about the seqnum compare function, it returns a difference.
3577
3578 2008-04-24  Edward Hervey  <edward.hervey@collabora.co.uk>
3579
3580         * ext/alsa/gstalsadeviceprobe.c:
3581         (gst_alsa_get_device_list): Don't return before freeing up
3582         the allocated structures.
3583
3584 2008-04-24  Stefan Kost  <ensonic@users.sf.net>
3585
3586         * gst/playback/gstplaybin.c:
3587           Remove obsolete streaminfo code and fix a leak. Fixes #529546
3588
3589 2008-04-23  Stefan Kost  <ensonic@users.sf.net>
3590
3591         * ext/ogg/gstoggdemux.c:
3592           Revert the event part, that should not go in.
3593
3594 2008-04-23  Stefan Kost  <ensonic@users.sf.net>
3595
3596         * ext/ogg/gstoggdemux.c:
3597           Don't leak GstPluginFeatures when filtering.
3598
3599 2008-04-23  Stefan Kost  <ensonic@users.sf.net>
3600
3601         * sys/xvimage/xvimagesink.c:
3602           Add some logging for cases when grabbing the xv failed.
3603
3604 2008-04-21  David Schleef  <ds@schleef.org>
3605
3606         * ext/ogg/gstoggmux.c:
3607           Update Ogg/Dirac muxing.  Removes the weird "KW-DIRAC" bos
3608           packet.  Should conform to what we currently think is the
3609           final Ogg/Dirac muxing spec.
3610
3611 2008-04-21  David Schleef  <ds@schleef.org>
3612
3613         * sys/xvimage/xvimagesink.c:
3614           Fix typo that causes the overlay keying color to bright green
3615           on a 16-bit display.  Dark grey good.  Bright green bad.
3616
3617 2008-04-21  Stefan Kost  <ensonic@users.sf.net>
3618
3619         * ext/gnomevfs/gstgnomevfsuri.c:
3620           Add  FIXME comment about using uri-list for source and sink.
3621
3622 2008-04-20  Sebastian Dröge  <slomo@circular-chaos.org>
3623
3624         * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header):
3625         GST_TYPE_FRACTION contains gints so correctly cast gint64 arguments to
3626         vaargs functions to gint. Otherwise the fractions will get 0 set
3627         instead of the correct value on big endian systems. Fixes bug #529018.
3628
3629 2008-04-20  Sebastian Dröge  <slomo@circular-chaos.org>
3630
3631         * ext/gnomevfs/gstgnomevfssink.c:
3632         (gst_gnome_vfs_sink_uri_get_protocols):
3633         * ext/gnomevfs/gstgnomevfssrc.c:
3634         (gst_gnome_vfs_src_uri_get_protocols):
3635         * ext/gnomevfs/gstgnomevfsuri.c: (_internal_get_supported_uris),
3636         (gst_gnomevfs_get_supported_uris):
3637         Get the list of supported URI schemes in a threadsafe way and use the
3638         same list for the source and sink.
3639
3640 2008-04-20  Sebastian Dröge  <slomo@circular-chaos.org>
3641
3642         * ext/gio/gstgio.c: (_internal_get_supported_protocols),
3643         (gst_gio_get_supported_protocols):
3644         Don't generate a new supported protocols list on each call but cache
3645         it. It's supposed to be static anyway, this way we only leak it once
3646         per process.
3647
3648         * ext/gio/gstgiosink.c: (gst_gio_sink_base_init),
3649         (gst_gio_sink_class_init), (gst_gio_sink_finalize),
3650         (gst_gio_sink_set_property), (gst_gio_sink_get_property),
3651         (gst_gio_sink_start):
3652         * ext/gio/gstgiosink.h:
3653         * ext/gio/gstgiosrc.c: (gst_gio_src_base_init),
3654         (gst_gio_src_class_init), (gst_gio_src_finalize),
3655         (gst_gio_src_set_property), (gst_gio_src_get_property),
3656         (gst_gio_src_start):
3657         * ext/gio/gstgiosrc.h:
3658         API: Add "file" properties where one can set a GFile as
3659         source/destination.
3660
3661         Add locking to the properties and use
3662         gst_element_class_set_details_simple() instead of a static
3663         GstElementDetails struct.
3664
3665 2008-04-19  Sebastian Dröge  <slomo@circular-chaos.org>
3666
3667         * gst/typefind/gsttypefindfunctions.c: (musepack_type_find),
3668         (plugin_init):
3669         Add "mpp" and "mp+" as possible extensions for MusePack files.
3670
3671         Add typefinding for MusePack StreamVersion 8 files and include the
3672         stream version in the caps.
3673
3674 2008-04-19  Sebastian Dröge  <slomo@circular-chaos.org>
3675
3676         * gst-libs/gst/rtp/gstrtppayloads.c:
3677         (gst_rtp_payload_info_for_name):
3678         Use g_ascii_strcasecmp() instead of the deprecated g_strcasecmp().
3679
3680 2008-04-18  Tim-Philipp Müller  <tim at centricular dot net>
3681
3682         * configure.ac:
3683           Bump Gtk+ requirement to 2.12.0 for gtk_range_set_fill_level
3684           (NB: this only affects compilation of some of the examples).
3685           Remove some configure.ac cruft that's not needed any longer.
3686
3687 2008-04-18  Edward Hervey  <edward.hervey@collabora.co.uk>
3688
3689         * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_chain):
3690         Don't validate the payload if there isn't any.
3691         Fixes #525915
3692
3693 2008-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
3694
3695         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_may_start):
3696         Use g_atomic_int_set() instead of gst_atomic_int_set().
3697
3698 2008-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
3699
3700         * ext/gio/gstgio.c: (gst_gio_get_supported_protocols):
3701         Return NULL instead of a gchar * array with one NULL element if we
3702         don't get any supported URI schemes from GIO.
3703
3704 2008-04-15  Stefan Kost  <ensonic@users.sf.net>
3705
3706         * gst/audiotestsrc/gstaudiotestsrc.c:
3707           Remove cpp style commented old code.
3708
3709 2008-04-15  Stefan Kost  <ensonic@users.sf.net>
3710
3711         * gst/playback/gstdecodebin2.c:
3712           Fix signal docs.
3713
3714 2008-04-14  Tim-Philipp Müller  <tim at centricular dot net>
3715
3716         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init),
3717           (gst_text_overlay_init):
3718           Fix textoverlay unit test again by making the supposed default
3719           value for the wait-text property the actual default value.
3720           Also fix Since: tag for new property.
3721
3722 2008-04-11  Tim-Philipp Müller  <tim at centricular dot net>
3723
3724         * gst-libs/gst/video/video.c: (gst_video_format_new_caps),
3725           (gst_video_format_to_fourcc), (gst_video_format_get_row_stride),
3726           (gst_video_format_get_pixel_stride),
3727           (gst_video_format_get_component_width),
3728           (gst_video_format_get_component_height),
3729           (gst_video_format_get_component_offset), (gst_video_format_get_size),
3730           (gst_video_format_convert):
3731           Add guards to these functions to ensure sane input values.
3732
3733         * tests/check/libs/video.c:
3734           Fix unit test not to create caps with width=0 and height=0.
3735
3736 2008-04-11  Wim Taymans  <wim.taymans@collabora.co.uk>
3737
3738         * docs/design/draft-keyframe-force.txt:
3739         Fix typo.
3740
3741         * gst/playback/gstqueue2.c: (update_buffering),
3742         (gst_queue_handle_src_query):
3743         Set buffering mode in the messages.
3744         Set buffering percent in the query.
3745
3746         * tests/examples/seek/seek.c: (update_fill), (msg_state_changed),
3747         (do_stream_buffering), (do_download_buffering), (msg_buffering):
3748         Do some more fancy things based on the buffering method in use.
3749
3750 2008-04-09  Wim Taymans  <wim.taymans@collabora.co.uk>
3751
3752         * tests/examples/seek/seek.c: (update_fill), (set_update_fill),
3753         (play_cb), (pause_cb), (stop_cb), (msg_state_changed),
3754         (msg_buffering), (main):
3755         Add basic download reports to seek using the new buffering API.
3756
3757 2008-04-09  Wim Taymans  <wim.taymans@collabora.co.uk>
3758
3759         * gst/playback/gstqueue2.c: (update_buffering),
3760         (gst_queue_close_temp_location_file), (gst_queue_handle_src_query),
3761         (gst_queue_src_checkgetrange_function):
3762         Include extra buffering stats in the buffering message.
3763         Implement BUFFERING query.
3764
3765         * gst/playback/gsturidecodebin.c: (do_async_start),
3766         (do_async_done), (type_found), (setup_streaming), (setup_source),
3767         (gst_uri_decode_bin_change_state):
3768         Only add decodebin2 when the type is found in streaming mode.
3769         Make uridecodebin async to PAUSED even when we don't have decodebin2
3770         added yet.
3771
3772 2008-04-09  Sebastian Dröge  <slomo@circular-chaos.org>
3773
3774         * ext/gio/gstgio.c: (gst_gio_get_supported_protocols):
3775         Filter cdda from the supported URI schemes. We can't support
3776         musicbrainz tags and everything else one expects from a cdda source
3777         with GIO. Fixes bug #526794.
3778
3779 2008-04-07  Jan Schmidt  <jan.schmidt@sun.com>
3780
3781         * sys/xvimage/xvimagesink.c (gst_xvimagesink_xvimage_new),
3782         (gst_xvimagesink_buffer_alloc):
3783         Fix calculation of 'expected size' for YV12 buffers.
3784         Be a little more verbose in the debug output for buffer-alloc'ed
3785         buffers which turn out to have the wrong size.
3786
3787 2008-04-07  Tim-Philipp Müller  <tim at centricular dot net>
3788
3789         * NEWS:
3790         * RELEASE:
3791         * gst-plugins-base.doap:
3792           Merge other changes from 0.10.19 release branch.
3793
3794 2008-04-06  Tim-Philipp Müller  <tim at centricular dot net>
3795
3796         * gst-libs/gst/audio/gstbaseaudiosink.c:
3797           (gst_base_audio_sink_class_init):
3798         * gst-libs/gst/audio/gstbaseaudiosrc.c:
3799           (gst_base_audio_src_class_init):
3800         * gst/playback/gstplayback.c: (plugin_init):
3801         * gst/volume/gstvolume.c: (plugin_init):
3802           Work around missing bits of thread-safety on older GLibs some
3803           more to avoid assertions when starting up multiple playbin
3804           objects concurrently (see #512382).
3805
3806 2008-04-06  Tim-Philipp Müller  <tim at centricular dot net>
3807
3808         * gst-libs/gst/pbutils/missing-plugins.c: (copy_and_clean_caps):
3809           Remove some more fields.
3810
3811 2008-04-06  Sebastian Dröge  <slomo@circular-chaos.org>
3812
3813         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
3814
3815         * configure.ac:
3816         Actually build dlls when cross-compiling with mingw32.
3817         Fixes bug #526247.
3818
3819 2008-04-03  Tim-Philipp Müller  <tim at centricular dot net>
3820
3821         * configure.ac:
3822           Bump version to 0.10.19.1 after the unplanned 0.10.19 release.
3823
3824 2008-04-03  Wim Taymans  <wim.taymans@collabora.co.uk>
3825
3826         * tests/examples/seek/seek.c: (play_cb), (pause_cb), (stop_cb),
3827         (msg_buffering), (connect_bus_signals), (main):
3828         Add statusbar.
3829         Add buffering support with feedback in the statusbar.
3830
3831 2008-04-03  Tim-Philipp Müller  <tim at centricular dot net>
3832
3833         * ext/ogg/gstoggmux.c:
3834           Fix sample pipeline description.
3835
3836 2008-04-03  Stefan Kost  <ensonic@users.sf.net>
3837
3838         * docs/plugins/Makefile.am:
3839         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
3840         * docs/plugins/gst-plugins-base-plugins-overrides.txt:
3841         * docs/plugins/gst-plugins-base-plugins-sections.txt:
3842           Add playbin, playbin2, decodebin, decodebin2, uridecodebin and oggmux
3843
3844         * docs/plugins/gst-plugins-base-plugins.args:
3845         * docs/plugins/gst-plugins-base-plugins.hierarchy:
3846         * docs/plugins/gst-plugins-base-plugins.interfaces:
3847         * docs/plugins/gst-plugins-base-plugins.prerequisites:
3848         * docs/plugins/inspect/plugin-adder.xml:
3849         * docs/plugins/inspect/plugin-alsa.xml:
3850         * docs/plugins/inspect/plugin-audioconvert.xml:
3851         * docs/plugins/inspect/plugin-audiorate.xml:
3852         * docs/plugins/inspect/plugin-audioresample.xml:
3853         * docs/plugins/inspect/plugin-audiotestsrc.xml:
3854         * docs/plugins/inspect/plugin-cdparanoia.xml:
3855         * docs/plugins/inspect/plugin-decodebin.xml:
3856         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
3857         * docs/plugins/inspect/plugin-gdp.xml:
3858         * docs/plugins/inspect/plugin-gnomevfs.xml:
3859         * docs/plugins/inspect/plugin-libvisual.xml:
3860         * docs/plugins/inspect/plugin-ogg.xml:
3861         * docs/plugins/inspect/plugin-pango.xml:
3862         * docs/plugins/inspect/plugin-playback.xml:
3863         * docs/plugins/inspect/plugin-queue2.xml:
3864         * docs/plugins/inspect/plugin-subparse.xml:
3865         * docs/plugins/inspect/plugin-tcp.xml:
3866         * docs/plugins/inspect/plugin-theora.xml:
3867         * docs/plugins/inspect/plugin-typefindfunctions.xml:
3868         * docs/plugins/inspect/plugin-uridecodebin.xml:
3869         * docs/plugins/inspect/plugin-video4linux.xml:
3870         * docs/plugins/inspect/plugin-videorate.xml:
3871         * docs/plugins/inspect/plugin-videoscale.xml:
3872         * docs/plugins/inspect/plugin-videotestsrc.xml:
3873         * docs/plugins/inspect/plugin-volume.xml:
3874         * docs/plugins/inspect/plugin-vorbis.xml:
3875         * docs/plugins/inspect/plugin-ximagesink.xml:
3876         * docs/plugins/inspect/plugin-xvimagesink.xml:
3877           Update introspection data.
3878
3879         * ext/ogg/gstoggmux.c:
3880           Document oggmux.
3881
3882         * gst/playback/gstdecodebin2.c:
3883           Don't use gtk-doc style comment start for private stuff, but make it
3884           formatted like this for consistency.
3885
3886 2008-04-03  Wim Taymans  <wim.taymans@collabora.co.uk>
3887
3888         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init),
3889         (gst_decode_bin_init), (gst_decode_bin_dispose),
3890         (gst_decode_bin_set_sink_caps), (gst_decode_bin_get_sink_caps),
3891         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
3892         (analyze_new_pad), (connect_pad), (expose_pad),
3893         (gst_decode_group_new), (gst_decode_group_control_demuxer_pad),
3894         (gst_decode_group_expose), (gst_decode_group_free),
3895         (do_async_start), (do_async_done), (gst_decode_bin_change_state):
3896         Remove fakesink hack, we can now implement this more elegantly.
3897         Added property to bypass typefinding.
3898         Removed underrun callback and demuxer pad probe, we now use the srcpad
3899         probe to expose groups.
3900         API::sink-caps property
3901
3902         * gst/playback/gstplaybin2.c: (no_more_pads_cb):
3903         Guard against multiple emissions of the no_more_pads signal, which
3904         happens when we are dealing with chained oggs.
3905
3906         * gst/playback/gsturidecodebin.c: (remove_decoders),
3907         (make_decoder), (type_found), (setup_streaming), (source_new_pad),
3908         (setup_source):
3909         For streams, use our own typefind element and plug our queue after it.
3910         We will need this to determine the type of buffering to use for the
3911         queue soon.
3912
3913 2008-04-03  Wim Taymans  <wim.taymans@collabora.co.uk>
3914
3915         * gst-libs/gst/audio/gstbaseaudiosink.c:
3916         (gst_base_audio_sink_skew_slaving), (gst_base_audio_sink_render):
3917         Guard against over and underflows because of clock slaving.
3918         When we are using our own clock, still compensate for any calibrations
3919         that we might have done to our clock.
3920
3921 2008-04-03  Wim Taymans  <wim.taymans@collabora.co.uk>
3922
3923         * ext/theora/theoradec.c: (theora_handle_type_packet),
3924         (theora_dec_chain):
3925         Don't try to do anything fancy with the return code from pushing an
3926         event, it does not have enough information to turn it into a
3927         GST_FLOW_ERROR.
3928
3929 2008-04-03  Wim Taymans  <wim.taymans@collabora.co.uk>
3930
3931         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_reset),
3932         (gst_ogg_demux_chain_elem_pad):
3933         Add small debug line.
3934         Pass return code from the internal decoder instead of the too generic
3935         GST_FLOW_ERROR.
3936
3937 2008-04-03  Sebastian Dröge  <slomo@circular-chaos.org>
3938
3939         * gst-libs/gst/cdda/Makefile.am:
3940         * gst-libs/gst/cdda/base64.c:
3941         * gst-libs/gst/cdda/base64.h:
3942         * gst-libs/gst/cdda/gstcddabasesrc.c:
3943         (gst_cddabasesrc_calculate_musicbrainz_discid):
3944         Use GLib's base64 implementation instead of our own.
3945
3946 2008-04-02  Wim Taymans  <wim.taymans@collabora.co.uk>
3947
3948         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
3949         (gst_ogg_demux_read_chain):
3950         Refix oggdemux, we only have a problem if we failed to find a chain and
3951         we are not EOF.
3952
3953 2008-04-02  Wim Taymans  <wim.taymans@collabora.co.uk>
3954
3955         Patch by: Victor STINNER <victor dot stinner at haypocalc dot com>
3956
3957         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
3958         (gst_ogg_demux_read_chain):
3959         When we fail to find a BOS page and we and up with no chain, error out
3960         properly instead of segfaulting. Fixes #525665.
3961
3962 2008-04-02  Wim Taymans  <wim.taymans@collabora.co.uk>
3963
3964         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
3965         (gst_ogg_demux_read_chain), (gst_ogg_demux_handle_page):
3966         The new-pad-group sequence is add-pads, no-more-pads, add-pads,
3967         no-more-pads...
3968
3969 2008-04-02  Wim Taymans  <wim.taymans@collabora.co.uk>
3970
3971         * gst/playback/gstqueue2.c: (update_out_rates),
3972         (gst_queue_open_temp_location_file),
3973         (gst_queue_close_temp_location_file), (gst_queue_handle_src_event),
3974         (gst_queue_handle_src_query), (gst_queue_set_property):
3975         Update the estimated input data when we push out a buffer.
3976         Add some debug info about the temp file.
3977         Only forward src events when we are not using a temp file.
3978         Don't block the duration query, we need to find something better.
3979         Don't leak the temp filename.
3980
3981 2008-04-01  Sebastian Dröge  <slomo@circular-chaos.org>
3982
3983         * configure.ac:
3984         Require GLib 2.12 and liboil 0.3.14.
3985
3986         * gst/volume/gstvolume.c: (volume_process_double):
3987         Unconditionally use liboil 0.3.14 function.
3988
3989 2008-03-31  Wim Taymans  <wim.taymans@collabora.co.uk>
3990
3991         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
3992         ms-gsm can have arbitrarty sample rates. See #481354.
3993
3994 2008-03-28  Wim Taymans  <wim.taymans@collabora.co.uk>
3995
3996         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
3997         MP4S is generic MPEG-4, not a microsoft variant.
3998
3999 2008-03-27  Michael Smith <msmith@fluendo.com>
4000
4001         * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_chain):
4002           Check the body CRC (if set) when depayloading.
4003           Fixes #522401.
4004
4005 2008-03-24  Tim-Philipp Müller  <tim at centricular dot net>
4006
4007         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init):
4008           Fix Since: version for new property.
4009
4010 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
4011
4012         * gst-libs/gst/rtsp/gstrtspconnection.c:
4013         (gst_rtsp_connection_connect), (gst_rtsp_connection_write),
4014         (gst_rtsp_connection_read_internal), (gst_rtsp_connection_poll):
4015         Don't error when poll_wait returns EAGAIN.
4016
4017 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
4018
4019         * gst/playback/gstqueue2.c: (gst_queue_is_filled):
4020         The queue is never filled when there are no buffers in the queue at all.
4021         Fixes #523993.
4022
4023 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
4024
4025         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
4026         (init_group), (free_group), (gst_play_bin_init),
4027         (gst_play_bin_finalize), (gst_play_bin_set_uri),
4028         (gst_play_bin_set_suburi), (gst_play_bin_get_video_tags),
4029         (gst_play_bin_get_audio_tags), (gst_play_bin_get_text_tags),
4030         (gst_play_bin_set_current_video_stream),
4031         (gst_play_bin_set_current_audio_stream),
4032         (gst_play_bin_set_current_text_stream),
4033         (gst_play_bin_set_encoding), (gst_play_bin_set_property),
4034         (gst_play_bin_get_property), (pad_added_cb), (pad_removed_cb),
4035         (no_more_pads_cb), (perform_eos), (autoplug_select_cb),
4036         (activate_group), (deactivate_group), (setup_next_source),
4037         (save_current_group), (gst_play_bin_change_state):
4038         Update some docs.
4039         Add new locks and conds to protect pipeline creation and group
4040         switching.
4041         Implement the sub-uri property.
4042         Keep track of pending uridecodebin creation and configure the output
4043         pipeline after all streams are configured.
4044         Propagate subtitle encoding to the uridecodebins.
4045         Implement getting the video/audio/visualisation elements.
4046         Use input-selector for stream switching.
4047         If we are asked to do visualisation, prefer to autoplug raw sinks
4048         instead of sinks that accept encoded data.
4049
4050 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
4051
4052         * gst/playback/gstplaysink.c: (gst_play_sink_class_init),
4053         (gst_play_sink_init), (gst_play_sink_dispose),
4054         (gst_play_sink_set_video_sink), (gst_play_sink_get_video_sink),
4055         (gst_play_sink_set_audio_sink), (gst_play_sink_get_audio_sink),
4056         (gst_play_sink_vis_unblocked), (gst_play_sink_vis_blocked),
4057         (gst_play_sink_set_vis_plugin), (gst_play_sink_get_vis_plugin),
4058         (gst_play_sink_set_volume), (gst_play_sink_get_volume),
4059         (gst_play_sink_set_mute), (gen_video_chain), (gen_text_chain),
4060         (gen_audio_chain), (gen_vis_chain), (gst_play_sink_reconfigure),
4061         (gst_play_sink_set_font_desc), (gst_play_sink_get_font_desc),
4062         (gst_play_sink_send_event_to_sink), (gst_play_sink_change_state):
4063         * gst/playback/gstplaysink.h:
4064         Add methods to get audio/video/vis elements.
4065         Add methods to set the font description for the overlay.
4066         Remove properties, we're using this element with its methods only.
4067         Add support for subtitles.
4068         Rearrange the locking a bit to not use the object lock for protecting
4069         the pipeline construction.
4070         Try to use the volume and mute property on the sink when its available.
4071         Implement the mute option with volume when the sink does not have a mute
4072         property.
4073         Only add volume element when the sink has no volume property.
4074         Only do visualisations with raw audio pads.
4075
4076 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
4077
4078         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init),
4079         (gst_text_overlay_init), (gst_text_overlay_set_property),
4080         (gst_text_overlay_get_property), (gst_text_overlay_src_event),
4081         (gst_text_overlay_text_event), (gst_text_overlay_video_event),
4082         (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
4083         (gst_text_overlay_change_state):
4084         * ext/pango/gsttextoverlay.h:
4085         Add property to configure waiting for text on the textpad or not, with
4086         the default behaviour being the old one (always wait for text before
4087         rendering the video). This default behaviour is usually not the best one
4088         because the text stream can very sparse and could require queueing a lot
4089         of video.
4090         Fix the flushing and EOS handing so that we don't mix up their meaning.
4091
4092 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
4093
4094         * gst/playback/gsturidecodebin.c:
4095         (gst_uri_decode_bin_autoplug_factories),
4096         (gst_uri_decode_bin_class_init), (gst_uri_decode_bin_init),
4097         (gst_uri_decode_bin_finalize), (gst_uri_decode_bin_set_encoding),
4098         (gst_uri_decode_bin_set_property),
4099         (gst_uri_decode_bin_get_property), (no_more_pads_full),
4100         (new_decoded_pad_cb), (gen_source_element), (remove_decoders),
4101         (proxy_autoplug_factories_signal), (make_decoder),
4102         (source_new_pad), (setup_source):
4103         Add a readonly source property and notify.
4104         Add new lock for protecting the construction of the pipeline.
4105         Keep track of the decodebins we plugged.
4106         Correctly proxy the autoplug signal so that it actually continues.
4107         Proxy subtitle-encoding to the decodebins.
4108
4109 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
4110
4111         * tests/examples/seek/seek.c: (audio_toggle_cb), (video_toggle_cb),
4112         (text_toggle_cb), (update_streams), (main):
4113         Rearrange some buttons in playbin2 and make some other boxes insensitive
4114         when needed.
4115         Add language codes to subtitle selection boxes when we gind the right
4116         tags for the streams.
4117
4118 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
4119
4120         * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose),
4121         (gst_decode_bin_set_caps), (gst_decode_bin_get_caps),
4122         (gst_decode_bin_set_subs_encoding),
4123         (gst_decode_bin_get_subs_encoding),
4124         (gst_decode_bin_autoplug_factories), (connect_pad), (are_raw_caps),
4125         (deactivate_free_recursive):
4126         Protect caps property with the object lock.
4127         Protect encoding property with the object lock.
4128         Keep list of elements we added that have the subtitle-encoding property.
4129         Distribute the subtitle-encoding to all of the elements when it
4130         changes.
4131
4132 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
4133
4134         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_release):
4135         Small debug improvement.
4136
4137         * gst-libs/gst/audio/gstbaseaudiosink.c:
4138         (gst_base_audio_sink_render):
4139         Fix bug in determining the sample start/stop position, we want to base
4140         this decision on the fact that we are going forwards or backwards, not
4141         slower or faster. This fixes some ugly resync warnings when playing at
4142         very slow speeds.
4143
4144 2008-03-23  Sebastian Dröge  <slomo@circular-chaos.org>
4145
4146         * ext/gio/gstgio.c: (gst_gio_get_supported_protocols):
4147         Correctly set the supported URI schemes and don't leave
4148         some schemes in the middle or at the start at NULL.
4149
4150 2008-03-23  Tim-Philipp Müller  <tim at centricular dot net>
4151
4152         * tests/check/elements/gdpdepay.c:
4153           Make test compile without unused function/variable warnings on PPC.
4154  
4155 2008-03-22  Sebastian Dröge  <slomo@circular-chaos.org>
4156
4157         * configure.ac:
4158         * ext/alsa/gstalsamixerelement.c:
4159         (gst_alsa_mixer_element_class_init):
4160         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init):
4161         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init):
4162         * ext/cdparanoia/gstcdparanoiasrc.c:
4163         (gst_cd_paranoia_src_class_init):
4164         * ext/gio/gstgiosink.c: (gst_gio_sink_class_init):
4165         * ext/gio/gstgiosrc.c: (gst_gio_src_class_init):
4166         * ext/gio/gstgiostreamsink.c: (gst_gio_stream_sink_class_init):
4167         * ext/gio/gstgiostreamsrc.c: (gst_gio_stream_src_class_init):
4168         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
4169         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init):
4170         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init):
4171         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init):
4172         * ext/pango/gsttextrender.c: (gst_text_render_class_init):
4173         * ext/theora/theoradec.c: (gst_theora_dec_class_init):
4174         * ext/theora/theoraenc.c: (gst_theora_enc_class_init):
4175         * ext/theora/theoraparse.c: (gst_theora_parse_class_init):
4176         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_class_init):
4177         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
4178         (gst_audio_filter_template_class_init):
4179         * gst-libs/gst/audio/gstbaseaudiosink.c:
4180         (gst_base_audio_sink_class_init):
4181         * gst-libs/gst/audio/gstbaseaudiosrc.c:
4182         (gst_base_audio_src_class_init):
4183         * gst-libs/gst/cdda/gstcddabasesrc.c:
4184         (gst_cdda_base_src_class_init):
4185         * gst-libs/gst/interfaces/mixertrack.c:
4186         (gst_mixer_track_class_init):
4187         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4188         (gst_base_rtp_depayload_class_init):
4189         * gst-libs/gst/rtp/gstbasertppayload.c:
4190         (gst_basertppayload_class_init):
4191         * gst/audioconvert/gstaudioconvert.c:
4192         (gst_audio_convert_class_init):
4193         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_class_init):
4194         * gst/audioresample/gstaudioresample.c:
4195         (gst_audioresample_class_init):
4196         * gst/audiotestsrc/gstaudiotestsrc.c:
4197         (gst_audio_test_src_class_init):
4198         * gst/gdp/gstgdppay.c: (gst_gdp_pay_class_init):
4199         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init):
4200         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
4201         (preroll_unlinked):
4202         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
4203         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init):
4204         * gst/playback/gstplaysink.c: (gst_play_sink_class_init):
4205         * gst/playback/gstqueue2.c: (gst_queue_class_init):
4206         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init):
4207         * gst/playback/gststreamselector.c: (gst_selector_pad_class_init),
4208         (gst_stream_selector_class_init):
4209         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_class_init):
4210         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
4211         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
4212         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
4213         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_class_init):
4214         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_class_init):
4215         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_class_init):
4216         * gst/videorate/gstvideorate.c: (gst_video_rate_class_init):
4217         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init):
4218         * gst/videotestsrc/gstvideotestsrc.c:
4219         (gst_video_test_src_class_init):
4220         * gst/volume/gstvolume.c: (gst_volume_class_init):
4221         * sys/v4l/gstv4lelement.c: (gst_v4lelement_class_init):
4222         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
4223         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
4224         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init):
4225         * sys/ximage/ximagesink.c: (gst_ximagesink_class_init):
4226         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_class_init):
4227         Use G_PARAM_STATIC_STRINGS everywhere for GParamSpecs that use
4228         static strings (i.e. all). This gives us less memory usage,
4229         fewer allocations and thus less memory defragmentation. Depend
4230         on core CVS for this. Fixes bug #523806.
4231
4232 2008-03-22  Sebastian Dröge  <slomo@circular-chaos.org>
4233
4234         * ext/gio/gstgio.c: (gst_gio_get_supported_protocols):
4235         Filter http and https protocols. GIO/GVfs handles them but it's
4236         impossible to implement iradio/icecast with it. Better use
4237         souphttpsrc or something else for this.
4238
4239         * ext/gio/gstgiobasesrc.c: (gst_gio_base_src_get_size):
4240         If getting the file informations by a query fails try it with the
4241         seek-to-end trick too.
4242
4243 2008-03-21  Sebastian Dröge  <slomo@circular-chaos.org>
4244
4245         * gst/volume/gstvolume.c: (gst_volume_interface_supported),
4246         (gst_volume_base_init), (gst_volume_class_init),
4247         (volume_process_double), (volume_process_float),
4248         (volume_transform_ip), (plugin_init):
4249         memset buffers to zero if we get a GAP buffer. We usually see a
4250         buffer as one unit so let's handle it as one and don't care about
4251         volume changes while processing one buffer.
4252         Also clean up some stuff a bit.
4253
4254 2008-03-21  Sebastian Dröge  <slomo@circular-chaos.org>
4255
4256         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
4257         (gst_audio_convert_create_silence_buffer),
4258         (gst_audio_convert_transform):
4259         Make audioconvert GAP-aware by outputting silence buffers when the
4260         input has the GAP flag set. This is up to 8x faster.
4261         Based on a patch by Stefan Kost. Fixes bug #517813.
4262
4263 2008-03-21  Sebastian Dröge  <slomo@circular-chaos.org>
4264
4265         * gst/volume/gstvolume.c: (volume_process_double):
4266         Use oil_scalarmultiply_f64_ns() for double processing when it's
4267         available at compile time.
4268
4269 2008-03-21  Sebastian Dröge  <slomo@circular-chaos.org>
4270
4271         * configure.ac:
4272         Fix lrint/lrintf checks to actually work. These functions are
4273         in libm on Linux at least so try to link to it.
4274
4275 2008-03-21  Jan Schmidt  <jan.schmidt@sun.com>
4276
4277         * configure.ac:
4278         Back to development - 0.10.18.1
4279
4280 === release 0.10.18 ===
4281
4282 2008-03-20  Jan Schmidt <jan.schmidt@sun.com>
4283
4284         * configure.ac:
4285           releasing 0.10.18, "I will follow"
4286
4287 2008-03-18  Jan Schmidt  <jan.schmidt@sun.com>
4288
4289         * configure.ac:
4290         * win32/common/config.h:
4291         0.10.17.4 pre-release
4292
4293 2008-03-18  Wim Taymans  <wim.taymans@collabora.co.uk>
4294
4295         * gst-libs/gst/sdp/gstsdpmessage.c: (gst_sdp_message_dump):
4296         Use GST_STR_NULL when trying to print strings that could be NULL because
4297         this might crash on some platforms. See #520808.
4298
4299 2008-03-18  Wim Taymans  <wim.taymans@collabora.co.uk>
4300
4301         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
4302
4303         * gst-libs/gst/rtsp/gstrtspconnection.c:
4304         (gst_rtsp_connection_connect), (gst_rtsp_connection_write),
4305         (read_line), (gst_rtsp_connection_read_internal):
4306         Generic Windows fixes that makes libgstrtsp work on Windows when
4307         coupled with the new GstPoll API. See #520808.
4308
4309 2008-03-17  Sebastian Dröge  <slomo@circular-chaos.org>
4310
4311         Patch by: Milosz Derezynski <internalerror at gmail dot com>
4312
4313         * ext/gio/gstgiobasesrc.c: (gst_gio_base_src_create):
4314           If seeking to a new position succeeds don't simply return from
4315           create() without creating a buffer. Do this only in the case
4316           seeking to the new position fails. Fixes bug #523054.
4317
4318 2008-03-17  Tim-Philipp Müller  <tim at centricular dot net>
4319
4320         * gst-libs/gst/video/video.c: (gst_video_format_parse_caps),
4321           (gst_video_format_from_rgba32_masks):
4322           Fix gst_video_format_parse_caps() for RGB caps with alpha channel
4323           (#522635).
4324
4325         * tests/check/libs/video.c: (test_parse_caps_rgb), (video_suite):
4326           Add unit test for the RGB caps parsing and creation, checking for
4327           internal consistency of the new API and consistency of the API with
4328           the old GST_VIDEO_CAPS_* defines.
4329
4330 2008-03-14  David Schleef  <ds@schleef.org>
4331
4332         * gst/videotestsrc/videotestsrc.c:  Oops, revert last change
4333           because -base is in freeze.
4334
4335 2008-03-14  David Schleef  <ds@schleef.org>
4336
4337         Patch by: William M. Brack
4338
4339         * gst/videotestsrc/videotestsrc.c: Fix Bayer pattern generation.
4340
4341 2008-03-14  Wim Taymans  <wim.taymans@collabora.co.uk>
4342
4343         * gst/playback/gststreamselector.c: (gst_selector_pad_event),
4344         (gst_selector_pad_chain):
4345         * gst/playback/gststreamselector.h:
4346         Revert change that caused regression until a real fix is found.
4347         Fixes #522203.
4348
4349 2008-03-12  Michael Smith <msmith@fluendo.com>
4350
4351         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps):
4352         * gst-libs/gst/audio/gstringbuffer.h:
4353           Rename recently added buffer types to make more sense.
4354         * ext/alsa/gstalsasink.c: (alsasink_parse_spec),
4355         (gst_alsasink_write):
4356           Adapt for above API changes.
4357           Fixes bug #520523.
4358
4359 2008-03-11  Sebastian Dröge  <slomo@circular-chaos.org>
4360
4361         * win32/common/libgstnetbuffer.def:
4362         Add new symbol gst_netaddress_equal. Fixes bug #521743.
4363
4364 2008-03-11  Jan Schmidt  <jan.schmidt@sun.com>
4365
4366         * configure.ac:
4367         * win32/common/config.h:
4368         0.10.17.3 pre-release
4369
4370 2008-03-10  Wim Taymans  <wim.taymans@collabora.co.uk>
4371
4372         * gst-libs/gst/audio/gstbaseaudiosrc.c:
4373         (gst_base_audio_src_create):
4374         Fix duration when no clock was provided. Fixes #520300.
4375
4376 2008-03-07  Wim Taymans  <wim.taymans@collabora.co.uk>
4377
4378         Patch by: Olivier Crete  <tester at tester ca>
4379
4380         * docs/libs/gst-plugins-base-libs-sections.txt:
4381         * gst-libs/gst/netbuffer/gstnetbuffer.c: (gst_netaddress_equal):
4382         * gst-libs/gst/netbuffer/gstnetbuffer.h:
4383         Add trivial function to compare GstNetAddress. See #520626.
4384         API: GstNetBuffer::gst_netaddress_equal
4385
4386 2008-03-07  Wim Taymans  <wim.taymans@collabora.co.uk>
4387
4388         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
4389         Update mode property docs, it's deprecated now.
4390
4391 2008-03-07  Wim Taymans  <wim.taymans@collabora.co.uk>
4392
4393         * gst-libs/gst/rtsp/gstrtspconnection.c:
4394         (gst_rtsp_connection_create):
4395         * gst/tcp/gstmultifdsink.c: (gst_fdset_mode_get_type),
4396         (gst_multi_fd_sink_class_init), (gst_multi_fd_sink_start):
4397         * gst/tcp/gstmultifdsink.h:
4398         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_start):
4399         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_start):
4400         Remove GstPollMode from gstpoll constructor.
4401
4402 2008-03-04  Jan Schmidt  <jan.schmidt@sun.com>
4403
4404         * configure.ac:
4405         * win32/common/config.h:
4406         0.10.17.2 pre-release
4407
4408 2008-03-03  Jan Schmidt  <jan.schmidt@sun.com>
4409
4410         * gst/Makefile.am:
4411         GST_PLUGINS_ALL correctly lists subparse and tcp now, don't distclean
4412         them twice
4413
4414         * win32/common/libgstinterfaces.def:
4415         * win32/common/libgstrtp.def:
4416         Add new API to the defs
4417
4418 2008-03-03  Peter Kjellerstedt  <pkj@axis.com>
4419
4420         Patch by: Mersad Jelacic  <mersad at axis dot com>
4421
4422         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
4423         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
4424         API: add gst_base_rtp_audio_payload_set_samplebits_options() to make it
4425         possible to specify the sample size in bits. (#509637)
4426
4427 2008-03-03  Tim-Philipp Müller  <tim at centricular dot net>
4428
4429         * tests/check/libs/mixer.c:
4430           Add a few simple checks for the new message types.
4431
4432 2008-03-03  Tim-Philipp Müller  <tim at centricular dot net>
4433
4434         * docs/libs/gst-plugins-base-libs-sections.txt:
4435         * gst-libs/gst/interfaces/mixer.c: (gst_mixer_option_changed),
4436           (gst_mixer_options_list_changed), (gst_mixer_mixer_changed),
4437           (gst_mixer_message_get_type),
4438           (gst_mixer_message_parse_option_changed),
4439           (gst_mixer_message_parse_options_list_changed):
4440         * gst-libs/gst/interfaces/mixer.h: (GstMixerType),
4441           (GST_MIXER_MESSAGE_OPTION_CHANGED),
4442           (GST_MIXER_MESSAGE_OPTIONS_LIST_CHANGED),
4443           (GST_MIXER_MESSAGE_MIXER_CHANGED):
4444           API: add gst_mixer_options_list_changed(), gst_mixer_mixer_changed()
4445           and gst_mixer_message_parse_options_list_changed(). Fixes #519916.
4446
4447 2008-03-03  Tim-Philipp Müller  <tim at centricular dot net>
4448
4449         * gst-libs/gst/interfaces/mixeroptions.c: (gst_mixer_options_init),
4450           (gst_mixer_options_get_values):
4451         * gst-libs/gst/interfaces/mixeroptions.h:
4452           (GST_MIXER_OPTIONS_GET_CLASS), (GstMixerOptionsClass),
4453           (_GstMixerOptions), (_GstMixerOptionsClass):
4454           API: add GstMixerOptions::get_values vfunc (#519906)
4455
4456 2008-03-03  Peter Kjellerstedt  <pkj@axis.com>
4457
4458         * configure.ac:
4459         Use AG_GST_CHECK_PLUGIN and AG_GST_DISABLE_PLUGIN to simplify which
4460         plug-ins are included/excluded. (#498222)
4461
4462 2008-03-03  Sebastian Dröge  <slomo@circular-chaos.org>
4463
4464         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
4465         Add typefinder for IMelody files, using audio/x-imelody.
4466         See bug #519516.
4467
4468 2008-03-03  Sebastian Dröge  <slomo@circular-chaos.org>
4469
4470         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_get_type):
4471         * ext/alsa/gstalsasink.c: (set_hwparams):
4472         * ext/alsa/gstalsasrc.c: (set_hwparams):
4473         * ext/gio/gstgio.c: (gst_gio_uri_handler_get_uri):
4474         * ext/ogg/gstoggmux.h:
4475         * ext/ogg/gstogmparse.c:
4476         * gst-libs/gst/audio/audio.c:
4477         * gst-libs/gst/fft/kiss_fft_f64.c: (kiss_fft_f64_alloc):
4478         * gst-libs/gst/pbutils/missing-plugins.c:
4479         (gst_missing_uri_sink_message_new),
4480         (gst_missing_element_message_new),
4481         (gst_missing_decoder_message_new),
4482         (gst_missing_encoder_message_new):
4483         * gst-libs/gst/rtp/gstbasertppayload.c:
4484         * gst-libs/gst/rtp/gstrtcpbuffer.c:
4485         (gst_rtcp_packet_bye_get_reason):
4486         * gst/audioconvert/gstaudioconvert.c:
4487         * gst/audioresample/gstaudioresample.c:
4488         * gst/ffmpegcolorspace/imgconvert.c:
4489         * gst/playback/test.c: (gen_video_element), (gen_audio_element):
4490         * gst/typefind/gsttypefindfunctions.c:
4491         * gst/videoscale/vs_4tap.c:
4492         * gst/videoscale/vs_4tap.h:
4493         * sys/v4l/gstv4lelement.c:
4494         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_any_caps):
4495         * sys/v4l/v4l_calls.c:
4496         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init),
4497         (gst_v4lsrc_try_capture):
4498         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
4499         (gst_ximagesink_ximage_new):
4500         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
4501         (gst_xvimagesink_xvimage_new):
4502         * tests/check/elements/audioconvert.c:
4503         * tests/check/elements/audioresample.c:
4504         (fail_unless_perfect_stream):
4505         * tests/check/elements/audiotestsrc.c: (setup_audiotestsrc):
4506         * tests/check/elements/decodebin.c:
4507         * tests/check/elements/gdpdepay.c: (setup_gdpdepay),
4508         (setup_gdpdepay_streamheader):
4509         * tests/check/elements/gdppay.c: (setup_gdppay), (GST_START_TEST),
4510         (setup_gdppay_streamheader):
4511         * tests/check/elements/gnomevfssink.c: (setup_gnomevfssink):
4512         * tests/check/elements/multifdsink.c: (setup_multifdsink):
4513         * tests/check/elements/textoverlay.c:
4514         * tests/check/elements/videorate.c: (setup_videorate):
4515         * tests/check/elements/videotestsrc.c: (setup_videotestsrc):
4516         * tests/check/elements/volume.c: (setup_volume):
4517         * tests/check/elements/vorbisdec.c: (setup_vorbisdec):
4518         * tests/check/elements/vorbistag.c:
4519         * tests/check/generic/clock-selection.c:
4520         * tests/check/generic/states.c: (setup), (teardown):
4521         * tests/check/libs/cddabasesrc.c:
4522         * tests/check/libs/video.c:
4523         * tests/check/pipelines/gio.c:
4524         * tests/check/pipelines/oggmux.c:
4525         * tests/check/pipelines/simple-launch-lines.c:
4526         (simple_launch_lines_suite):
4527         * tests/check/pipelines/streamheader.c:
4528         * tests/check/pipelines/theoraenc.c:
4529         * tests/check/pipelines/vorbisdec.c:
4530         * tests/check/pipelines/vorbisenc.c:
4531         * tests/examples/seek/scrubby.c:
4532         * tests/examples/seek/seek.c: (query_positions_elems),
4533         (query_positions_pads):
4534         * tests/icles/stress-xoverlay.c: (myclock):
4535         Correct all relevant warnings found by the sparse semantic code
4536         analyzer. This include marking several symbols static, using
4537         NULL instead of 0 for pointers and using "foo (void)" instead
4538         of "foo ()" for declarations.
4539
4540         * win32/common/libgstrtp.def:
4541         Add gst_rtp_buffer_set_extension_data to the symbol definition file.
4542
4543 2008-03-02  Tim-Philipp Müller  <tim at centricular dot net>
4544
4545         Patch by: José Alburquerque <jaalburqu svn gnome org>
4546
4547         * gst/playback/gstplaybin2.c:
4548           Make the function signature of the _get_*_tags() functions match
4549           the signature of the vfuncs they implement, ie. return a
4550           GstTagList rather than a GstStructure, which is more correct,
4551           even if one is typedef'ed to the other (#518940).
4552
4553 2008-03-02  Tim-Philipp Müller  <tim at centricular dot net>
4554
4555         * gst-libs/gst/rtsp/gstrtspconnection.c:
4556           Don't include unix headers unconditionally (fixes #518037).
4557
4558 2008-03-02  Tim-Philipp Müller  <tim at centricular dot net>
4559
4560         * tests/check/libs/video.c: (paintinfo), (paintinfo_struct),
4561           (fourcc_list_struct), (fourcc_list), (fourcc_get_size),
4562           (paint_setup_I420), (paint_setup_YV12), (paint_setup_AYUV),
4563           (paint_setup_YUY2), (paint_setup_UYVY), (paint_setup_YVYU),
4564           (paint_setup_IYU2), (paint_setup_Y41B), (paint_setup_Y42B),
4565           (paint_setup_Y800), (paint_setup_YVU9), (paint_setup_YUV9),
4566           (gst_video_format_is_packed), (video_format_is_packed):
4567           Add unit test that makes sure that the strides, offsets and
4568           sizes returned for the various YUV formats by the new video API
4569           match the old reference implementation in videotestsrc.
4570
4571 2008-03-02  Tim-Philipp Müller  <tim at centricular dot net>
4572
4573         * gst-libs/gst/video/video.c: (gst_video_calculate_display_ratio),
4574           (gst_video_format_from_fourcc), (gst_video_format_to_fourcc),
4575           (gst_video_format_is_rgb), (gst_video_format_is_yuv),
4576           (gst_video_format_has_alpha), (gst_video_format_get_row_stride),
4577           (gst_video_format_get_pixel_stride),
4578           (gst_video_format_get_component_width),
4579           (gst_video_format_get_component_height),
4580           (gst_video_format_get_component_offset), (gst_video_format_get_size):
4581         * gst-libs/gst/video/video.h: (GST_VIDEO_FORMAT_Y41B),
4582           (GST_VIDEO_FORMAT_Y42B):
4583           API: add GST_VIDEO_FORMAT_Y41B and GST_VIDEO_FORMAT_Y42B.
4584
4585 2008-03-02  Tim-Philipp Müller  <tim at centricular dot net>
4586
4587         * gst-libs/gst/video/video.c: (gst_video_format_get_component_offset):
4588           YV12 is I420 with swapped components 1 and 2, so the offset of
4589           component 1 for I420 should be the offset for component 2 for YV12
4590           and vice versa.
4591
4592 2008-02-29  Rene Stadler  <mail@renestadler.de>
4593
4594         * sys/v4l/gstv4lelement.c:
4595         Add missing semicolon to fix indentation.
4596
4597 2008-02-29  Julien Moutte  <julien@fluendo.com>
4598
4599         * ext/alsa/gstalsa.c: (gst_alsa_open_iec958_pcm),
4600         (gst_alsa_probe_supported_formats): Probe for IEC958 pcm to detect
4601         if we can do SPDIF output.
4602         * ext/alsa/gstalsa.h:
4603         * ext/alsa/gstalsasink.c: (set_hwparams), (alsasink_parse_spec),
4604         (gst_alsasink_prepare), (gst_alsasink_close), (gst_alsasink_write):
4605         * ext/alsa/gstalsasink.h: Initial support for SPDIF.
4606         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps):
4607         * gst-libs/gst/audio/gstringbuffer.h: Add non linear buffer types
4608         to support AC3, EC3 and IEC958 buffers.
4609
4610 2008-02-29  Tim-Philipp Müller  <tim at centricular dot net>
4611
4612         * gst-libs/gst/interfaces/mixer.c: (GST_MIXER_MESSAGE_HAS_TYPE),
4613           (gst_mixer_message_parse_mute_toggled),
4614           (gst_mixer_message_parse_record_toggled),
4615           (gst_mixer_message_parse_volume_changed),
4616           (gst_mixer_message_parse_option_changed):
4617           De-cruft and fix message type assertions (NULL is not a really
4618           valid mixer message type string).
4619
4620 2008-02-29  Wim Taymans  <wim.taymans@collabora.co.uk>
4621
4622         * ext/libvisual/visual.c: (gst_vis_src_negotiate):
4623         When negotiating, actually start from a format that we can support
4624         instead of from the too generic template.
4625
4626 2008-02-29  Wim Taymans  <wim.taymans@collabora.co.uk>
4627
4628         * gst/playback/gstplaybin2.c: (gst_play_bin_set_property):
4629         Enable vis setting.
4630
4631         * gst/playback/gstplaysink.c: (gst_play_sink_init),
4632         (gst_play_sink_dispose), (gst_play_sink_vis_unblocked),
4633         (gst_play_sink_vis_blocked), (gst_play_sink_set_vis_plugin),
4634         (gen_vis_chain):
4635         Implement vis switching while playing.
4636
4637 2008-02-28  David Schleef  <ds@schleef.org>
4638
4639         * gst-libs/gst/riff/riff-media.c: Add Dirac mapping
4640
4641 2008-02-28  Wim Taymans  <wim.taymans@collabora.co.uk>
4642
4643         Patch by: Peter Kjellerstedt  <pkj at axis com>
4644
4645         * gst/tcp/Makefile.am:
4646         * gst/tcp/fdsetstress.c:
4647         * gst/tcp/gstfdset.c:
4648         * gst/tcp/gstfdset.h:
4649         Removed fdset and stress test, they are now known as GstPoll in
4650         core. 
4651
4652         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
4653         (gst_multi_fd_sink_add_full), (gst_multi_fd_sink_remove),
4654         (gst_multi_fd_sink_clear), (gst_multi_fd_sink_remove_client_link),
4655         (gst_multi_fd_sink_handle_client_write),
4656         (gst_multi_fd_sink_queue_buffer),
4657         (gst_multi_fd_sink_handle_clients), (gst_multi_fd_sink_start),
4658         (gst_multi_fd_sink_stop):
4659         * gst/tcp/gstmultifdsink.h:
4660         * gst/tcp/gsttcp.c: (gst_tcp_socket_read), (gst_tcp_socket_close),
4661         (gst_tcp_read_buffer), (gst_tcp_gdp_read_buffer),
4662         (gst_tcp_gdp_read_caps):
4663         * gst/tcp/gsttcp.h:
4664         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_init),
4665         (gst_tcp_client_sink_setcaps), (gst_tcp_client_sink_render),
4666         (gst_tcp_client_sink_start), (gst_tcp_client_sink_stop):
4667         * gst/tcp/gsttcpclientsink.h:
4668         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_init),
4669         (gst_tcp_client_src_create), (gst_tcp_client_src_start),
4670         (gst_tcp_client_src_stop), (gst_tcp_client_src_unlock):
4671         * gst/tcp/gsttcpclientsrc.h:
4672         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_handle_wait),
4673         (gst_tcp_server_sink_init_send), (gst_tcp_server_sink_close):
4674         * gst/tcp/gsttcpserversink.h:
4675         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_init),
4676         (gst_tcp_server_src_create), (gst_tcp_server_src_start),
4677         (gst_tcp_server_src_stop), (gst_tcp_server_src_unlock):
4678         * gst/tcp/gsttcpserversrc.h:
4679         Port to GstPoll. See #505417.
4680
4681 2008-02-28  Wim Taymans  <wim.taymans@collabora.co.uk>
4682
4683         Patch by: Peter Kjellerstedt  <pkj at axis com>
4684
4685         * gst-libs/gst/rtsp/gstrtspconnection.c:
4686         (gst_rtsp_connection_create), (gst_rtsp_connection_connect),
4687         (gst_rtsp_connection_write), (gst_rtsp_connection_read_internal),
4688         (gst_rtsp_connection_receive), (gst_rtsp_connection_close),
4689         (gst_rtsp_connection_free), (gst_rtsp_connection_poll),
4690         (gst_rtsp_connection_flush):
4691         * gst-libs/gst/rtsp/gstrtspconnection.h:
4692         Use GstPoll for the rtsp connection. See #505417.
4693
4694 2008-02-27  Wim Taymans  <wim.taymans@collabora.co.uk>
4695
4696         * tests/examples/seek/seek.c: (vis_toggle_cb), (filter_features),
4697         (init_visualization_features), (vis_combo_cb), (shot_cb), (main):
4698         Add combo box for visualisations, populate it with a factory list
4699         of all visualisation plugins, configure vis plugin instance in
4700         playbin2. 
4701
4702 2008-02-27  Wim Taymans  <wim.taymans@collabora.co.uk>
4703
4704         * tests/check/libs/rtp.c: (GST_START_TEST):
4705         Add check for RTP buffer defaults, padding and marker bit API.
4706
4707 2008-02-27  Sebastian Dröge  <slomo@circular-chaos.org>
4708
4709         * gst-libs/gst/cdda/sha1.c: (sha_transform):
4710         Use memcpy() instead of upcasting a byte array to long *. This
4711         fixes an unaligned memory access, resulting in SIGBUS on IA64.
4712         This should be ported to GCheckSum once we can use GLib 2.16.
4713         Partially fixes bug #500833.
4714
4715 2008-02-27  Tim-Philipp Müller  <tim at centricular dot net>
4716
4717         * gst-libs/gst/tag/gsttagdemux.c: (gst_tag_demux_chain):
4718           Push tag event after the newsegment event. Log the pointer of
4719           the buffer we're actually going to push rather than the buffer
4720           we're feeding to _make_metadata_writable().
4721
4722 2008-02-25  Sebastian Dröge  <slomo@circular-chaos.org>
4723
4724         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
4725         Comment smoke typefinder for now. The smokedec plugin needs one
4726         frame per buffer but we have no parser yet, thus it simply crashes
4727         in most situations.
4728
4729 2008-02-25  Sebastian Dröge  <slomo@circular-chaos.org>
4730
4731         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
4732         Add typefinder for the smoke video codec. Copied from the jpeg plugin.
4733
4734 2008-02-25  Sebastian Dröge  <slomo@circular-chaos.org>
4735
4736         * gst/typefind/gsttypefindfunctions.c: (mid_type_find),
4737         (plugin_init):
4738         Add midi typefinder, copied from the timidity plugin.
4739
4740 2008-02-23  Tim-Philipp Müller  <tim at centricular dot net>
4741
4742         Based on patch by: Tomasz Sałaciński <tsalacinski gmail com>
4743
4744         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
4745         * tests/check/elements/subparse.c: (test_microdvd_with_italics),
4746           (subparse_suite):
4747           Forward slashes at the beginning and end of a line also signify
4748           italics (Fixes: #518162).
4749
4750 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
4751
4752         * tests/check/gst-plugins-base.supp:
4753         Add a suppression for a cached value in GIO that wasn't moved
4754         while moving gio from -bad to -base.
4755
4756 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
4757
4758         Patch by: Brian Cameron <brian dot cameron at sun dot com>
4759
4760         * configure.ac:
4761         Don't hardcode -Wall and -Werror for configure checks, this fails
4762         with non-GCC compilers. Fixes bug #517991.
4763
4764 2008-02-21  Stefan Kost  <ensonic@users.sf.net>
4765
4766         * gst/audioconvert/gstaudioconvert.c:
4767         * gst/audioconvert/gstaudioquantize.c:
4768         * gst/audioconvert/gstaudioquantize.h:
4769           Make audioconvert gap aware. If noiseshaping is used, wait for
4770           noiseshaping to converge before marking as GAP. Fixes #517813.
4771
4772 2008-02-21  Stefan Kost  <ensonic@users.sf.net>
4773
4774         * gst/audiotestsrc/gstaudiotestsrc.c:
4775           Mark buffers as GAP,if volume is 0.0 and fix the previous logic.
4776
4777 2008-02-20  Sebastian Dröge  <slomo@circular-chaos.org>
4778
4779         * ext/gnomevfs/gstgnomevfssink.c:
4780         (gst_gnome_vfs_sink_handle_event):
4781         Return FALSE when seeking for a new segment fails instead
4782         of silently ignoring the failure and appending every buffer
4783         that comes for the new segment.
4784
4785 2008-02-20  Wim Taymans  <wim.taymans@collabora.co.uk>
4786
4787         * gst/playback/gstplaysink.c: (find_property),
4788         (gst_play_sink_find_property), (gen_video_chain),
4789         (gst_play_sink_reconfigure), (gst_play_sink_get_last_frame):
4790         Recursively search the sink element for a last-frame property so that we
4791         can also find the property in autovideosink and friends that don't
4792         always proxy the internal sink properties.
4793
4794 2008-02-19  Tim-Philipp Müller  <tim at centricular dot net>
4795
4796         * gst-libs/gst/audio/multichannel.c:
4797           (GST_AUDIO_CHANNEL_POSITIONS_FIELD_NAME),
4798           (gst_audio_get_channel_positions), (gst_audio_set_channel_positions),
4799           (gst_audio_set_structure_channel_positions_list),
4800           (add_list_to_struct), (gst_audio_set_caps_channel_positions_list),
4801           (gst_audio_fixate_channel_positions):
4802           Fix confusing terminology in docs and code: structure fields are
4803           'fields' and not 'properties'.
4804
4805 2008-02-19  Tim-Philipp Müller  <tim at centricular dot net>
4806
4807         * gst-libs/gst/audio/multichannel.c:
4808           (gst_audio_check_channel_positions), (add_list_to_struct):
4809           Give more useful warning messages if one of the channel
4810           layout enums passed to us is invalid and if the "channels"
4811           field in the caps has a GType we don't expect.
4812
4813 2008-02-19  Tim-Philipp Müller  <tim at centricular dot net>
4814
4815         * gst-libs/gst/audio/multichannel.c:
4816           Fix typo in docs blurb.
4817
4818 2008-02-19  Julien Moutte  <julien@fluendo.com>
4819
4820         Patch by: Josep Torra Valles <josep@fluendo.com>
4821
4822         * gst/typefind/gsttypefindfunctions.c: Increase the MPEG PS
4823         typefind lookup to fix typefinding on HD clips.
4824
4825 2008-02-19  Tim-Philipp Müller  <tim at centricular dot net>
4826
4827         * gst/playback/gstscreenshot.c:
4828         * gst/playback/gstscreenshot.h:
4829           Fix up copyright (I rewrote the GStreamer-0.10 code for
4830           this from scratch back in the days).
4831
4832 2008-02-19  Wim Taymans  <wim.taymans@collabora.co.uk>
4833
4834         * gst/playback/Makefile.am:
4835         * gst/playback/gstscreenshot.c: (feed_fakesrc), (save_result),
4836         (create_element), (gst_play_frame_conv_convert):
4837         * gst/playback/gstscreenshot.h:
4838         Add screenshot conversion code from totem.
4839
4840         * gst/playback/gstplay-marshal.list:
4841         * gst/playback/gstplaybin2.c: (gst_play_marshal_BUFFER__BOXED),
4842         (gst_play_bin_class_init), (gst_play_bin_convert_frame),
4843         (gst_play_bin_get_property), (no_more_pads_cb), (activate_group):
4844         Implement frame property to get a color-unconverted snapshot.
4845         Implement convert-frame action signal to get a converted snapshot image.
4846         Configure connection speed in uridecodebin.
4847         Document some more properties.
4848
4849         * gst/playback/gstplaysink.c: (gst_play_sink_class_init),
4850         (gen_video_chain), (gen_audio_chain), (gst_play_sink_reconfigure),
4851         (gst_play_sink_get_last_frame):
4852         * gst/playback/gstplaysink.h:
4853         Use last-buffer property of the video sink to get a video snapshot.
4854
4855         * tests/examples/seek/seek.c: (shot_cb), (main):
4856         Add snapshot button for playbin2 and use the frame property to save the
4857         frame as a png in the current directory.
4858
4859 2008-02-19  Sebastian Dröge  <slomo@circular-chaos.org>
4860
4861         Patch by: Josep Torra Valles <josep at fluendo dot com>
4862
4863         * gst/typefind/gsttypefindfunctions.c: (h264_video_type_find),
4864         (plugin_init):
4865         Add typefinding support for h264 elementary streams.
4866         Fixes bug #517420.
4867
4868 2008-02-18  Stefan Kost  <ensonic@users.sf.net>
4869
4870         * configure.ac:
4871           Require CVS of core for new API in collectpads.
4872
4873         * gst/adder/gstadder.c:
4874           Use new API to make adder sparse stream aware.
4875
4876 2008-02-18  Wim Taymans  <wim.taymans@collabora.co.uk>
4877
4878         * gst/playback/gstplaybin2.c: (pad_added_cb), (pad_removed_cb),
4879         (no_more_pads_cb):
4880         Get the object data correct so that we can remove our channels
4881         correctly.
4882
4883         * gst/playback/gstplaysink.c: (gen_video_chain), (gen_audio_chain),
4884         (gen_vis_chain), (gst_play_sink_reconfigure),
4885         (gst_play_sink_request_pad):
4886         Add option to disable async behaviour in the sinks when possible. This
4887         makes it possible to avoid an audio queue when dealing with
4888         visualisations.
4889         Add option to add a queue for the audio path.
4890
4891         * tests/examples/seek/seek.c: (clear_streams), (update_streams),
4892         (main):
4893         Disable the vis checkbox to match the defaults of playbin2.
4894         Only get the stream info when we need to.
4895
4896 2008-02-17  Sebastian Dröge  <slomo@circular-chaos.org>
4897
4898         * ext/gio/gstgiobasesink.c: (gst_gio_base_sink_stop),
4899         (gst_gio_base_sink_set_stream):
4900         * ext/gio/gstgiobasesrc.c: (gst_gio_base_src_stop),
4901         (gst_gio_base_src_set_stream):
4902         * ext/gio/gstgiosink.c: (gst_gio_sink_start):
4903         * ext/gio/gstgiosrc.c: (gst_gio_src_start):
4904         Don't use async operations as they require a running main loop.
4905         This makes us block again when closing streams and unable
4906         to mount the enclosing volume of an URI if it isn't yet.
4907
4908 2008-02-15  Wim Taymans  <wim.taymans@collabora.co.uk>
4909
4910         * gst/playback/gstplaysink.c: (gst_play_sink_set_mute),
4911         (gst_play_sink_get_mute), (gen_video_chain), (gen_audio_chain),
4912         (gen_vis_chain), (gst_play_sink_reconfigure),
4913         (gst_play_sink_request_pad):
4914         Move tee in front of the audio and vis pipelines.
4915         Add queue for audio for now.
4916         Add visualisation support.
4917
4918         * tests/examples/seek/seek.c: (main):
4919         Visualisation is by default disabled.
4920
4921 2008-02-15  Sebastian Dröge  <slomo@circular-chaos.org>
4922
4923         * ext/gio/gstgiobasesink.c: (close_stream_cb):
4924         * ext/gio/gstgiobasesrc.c: (close_stream_cb):
4925         Improve debugging a bit.
4926
4927         * ext/gio/gstgiosink.c: (mount_cb), (gst_gio_sink_start):
4928         * ext/gio/gstgiosink.h:
4929         * ext/gio/gstgiosrc.c: (mount_cb), (gst_gio_src_start):
4930         * ext/gio/gstgiosrc.h:
4931         Try to mount the enclosing volume of a GFile if it isn't mounted
4932         yet. This requires us to wait for an async operation to finish, done
4933         with an nested GMainLoop. Authentication is not supported yet, will
4934         come later.
4935
4936 2008-02-14  Wim Taymans  <wim.taymans@collabora.co.uk>
4937
4938         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
4939         (gst_play_bin_set_property), (gst_play_bin_get_property),
4940         (pad_added_cb), (pad_removed_cb), (no_more_pads_cb):
4941         * gst/playback/gstplaysink.c: (gst_play_sink_set_mute),
4942         (gst_play_sink_get_mute), (gen_audio_chain):
4943         * gst/playback/gstplaysink.h:
4944         Add mute property.
4945
4946         * gst/playback/gststreamselector.c: (gst_selector_pad_event),
4947         (gst_selector_pad_chain):
4948         * gst/playback/gststreamselector.h:
4949         Make sure we forward the event only once.
4950
4951         * tests/examples/seek/seek.c: (stop_cb), (mute_toggle_cb), (main):
4952         Add and implement the mute button for playbin2.
4953
4954 2008-02-13  Wim Taymans  <wim.taymans@collabora.co.uk>
4955
4956         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
4957
4958         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_delay):
4959         Add some more debug info.
4960         Make sure we never return a negative delay. Fixes #516246.
4961
4962 2008-02-12  Tim-Philipp Müller  <tim at centricular dot net>
4963
4964         * ext/alsa/gstalsasink.c: (gst_alsasink_delay):
4965           Revert patch that makes the sink hold the object lock when
4966           calling snd_pcm_delay(), since it breaks playback for me.
4967
4968 2008-02-12  Julien Moutte  <julien@fluendo.com>
4969
4970         * tests/examples/seek/seek.c: (rate_spinbutton_changed_cb): Add
4971         some seek flags when changing rate.
4972
4973 2008-02-12  Wim Taymans  <wim.taymans@collabora.co.uk>
4974
4975         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
4976         (gst_base_rtp_audio_payload_handle_frame_based_buffer),
4977         (gst_base_rtp_audio_payload_handle_sample_based_buffer):
4978         Fix potential leaks.
4979
4980         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_chain):
4981         Fix leak when there is no function configured.
4982
4983 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
4984
4985         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_buffer_class_init),
4986         (gst_v4lsrc_buffer_finalize):
4987         Correctly chain up the finalize method.
4988
4989 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
4990
4991         * ext/gio/gstgiostreamsink.c:
4992         * ext/gio/gstgiostreamsrc.c:
4993         Add documentation and example code for giostreamsink/giostreamsrc.
4994
4995         * tests/check/pipelines/gio.c: (GST_START_TEST):
4996         Ask the GMemoryOutputStream for the data instead of assuming that
4997         the pointer to the data stayed the same. It could've been realloc'ed.
4998
4999 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
5000
5001         * ext/gio/gstgiosink.c:
5002         * ext/gio/gstgiosrc.c:
5003         Make the documentation of giosink/giosrc complete, large parts
5004         are based on the gnomevfssink/gnomevfssrc docs.
5005
5006 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
5007
5008         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
5009         * docs/plugins/gst-plugins-base-plugins-sections.txt:
5010         * docs/plugins/gst-plugins-base-plugins.args:
5011         * docs/plugins/gst-plugins-base-plugins.hierarchy:
5012         * docs/plugins/gst-plugins-base-plugins.interfaces:
5013         * docs/plugins/gst-plugins-base-plugins.prerequisites:
5014         * docs/plugins/gst-plugins-base-plugins.signals:
5015         * docs/plugins/inspect/plugin-adder.xml:
5016         * docs/plugins/inspect/plugin-audioconvert.xml:
5017         * docs/plugins/inspect/plugin-audiorate.xml:
5018         * docs/plugins/inspect/plugin-audioresample.xml:
5019         * docs/plugins/inspect/plugin-decodebin.xml:
5020         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
5021         * docs/plugins/inspect/plugin-gdp.xml:
5022         * docs/plugins/inspect/plugin-gio.xml:
5023         * docs/plugins/inspect/plugin-gnomevfs.xml:
5024         * docs/plugins/inspect/plugin-libvisual.xml:
5025         * docs/plugins/inspect/plugin-ogg.xml:
5026         * docs/plugins/inspect/plugin-pango.xml:
5027         * docs/plugins/inspect/plugin-playback.xml:
5028         * docs/plugins/inspect/plugin-queue2.xml:
5029         * docs/plugins/inspect/plugin-subparse.xml:
5030         * docs/plugins/inspect/plugin-theora.xml:
5031         * docs/plugins/inspect/plugin-uridecodebin.xml:
5032         * docs/plugins/inspect/plugin-videorate.xml:
5033         * docs/plugins/inspect/plugin-videoscale.xml:
5034         * docs/plugins/inspect/plugin-volume.xml:
5035         * docs/plugins/inspect/plugin-vorbis.xml:
5036         Add the GIO documentation again and while at that run make update.
5037
5038 2008-02-11  Tim-Philipp Müller  <tim at centricular dot net>
5039
5040         * ext/alsa/gstalsa.h: (GST_CHECK_ALSA_VERSION):
5041         * ext/alsa/gstalsasink.c: (set_swparams):
5042         * ext/alsa/gstalsasrc.c: (set_swparams), (gst_alsasrc_open):
5043           Don't use snd_pcm_sw_params_set_xfer_align() if we're compiling
5044           against libasound >= 1.0.16, since it's been deprecated in
5045           0.10.16, and alignment is always 1 then, apparently. (#512899)
5046
5047 2008-02-11  Tim-Philipp Müller  <tim at centricular dot net>
5048
5049         * gst/playback/gstplaybin.c: (gen_audio_element):
5050         * gst/playback/gstplaysink.c: (gen_audio_chain):
5051           Handle case where we can't create the volume element a bit
5052           better (#514307).
5053
5054 2008-02-11  Tim-Philipp Müller  <tim at centricular dot net>
5055
5056         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_check_get_range):
5057         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
5058           Add support for https protocol. Fixes #510229.
5059
5060 2008-02-11  Julien Moutte  <julien@fluendo.com>
5061         
5062         Patch by: Alan Peevers <peeves@pacbell.net>
5063
5064         * ext/alsa/gstalsasink.c: (gst_alsasink_delay): Take appropriate
5065         lock when calling alsa methods.
5066
5067 2008-02-11  Tim-Philipp Müller  <tim at centricular dot net>
5068
5069         * gst/typefind/gsttypefindfunctions.c:
5070           Bump rank of jpeg and png typefinders, which will return maximum
5071           probability in the most common cases (thus short-circuiting more
5072           expensive typefinders like the mp3 one for these two quite common
5073           image types).
5074
5075 2008-02-11  Sebastian Dröge  <slomo@circular-chaos.org>
5076
5077         * ext/theora/theoraparse.c:
5078         Fix long description of the theora parser to be more verbose than just
5079         the type name.
5080
5081 2008-02-11  Sebastian Dröge  <slomo@circular-chaos.org>
5082
5083         Patch by: Branko Čibej <brane at xbc dot nu>
5084
5085         * sys/xvimage/xvimagesink.c:
5086         Fix build of xvimagesink if we don't have XShm, e.g. on Mac OS X.
5087         Fixes bug #515654.
5088
5089 2008-02-09  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5090
5091         * gst/playback/gstplaybasebin.c:
5092         Set is_dynamic as True if there are elements with both request
5093         and sometimes src pad templates instead of breaking out when it
5094         finds the first pad template that is a src.
5095
5096 2008-02-08  Wim Taymans  <wim.taymans@collabora.co.uk>
5097
5098         * tests/examples/seek/seek.c: (stop_cb), (clear_streams),
5099         (update_streams), (video_combo_cb), (audio_combo_cb),
5100         (text_combo_cb), (volume_spinbutton_changed_cb), (main):
5101         Add some stream switching and volume gui for playbin2.
5102
5103 2008-02-08  Wim Taymans  <wim.taymans@collabora.co.uk>
5104
5105         * gst/playback/gstplay-marshal.list:
5106         Added marshal for streamselector Tags.
5107
5108         * gst/playback/gstplaybasebin.c: (set_active_source):
5109         Streamselector now selects pads based on the pad object instead of its
5110         name.
5111
5112         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
5113         (init_group), (gst_play_bin_init), (get_group), (get_tags),
5114         (gst_play_bin_get_video_tags), (gst_play_bin_get_audio_tags),
5115         (gst_play_bin_get_text_tags),
5116         (gst_play_bin_set_current_video_stream),
5117         (gst_play_bin_set_current_audio_stream),
5118         (gst_play_bin_set_current_text_stream),
5119         (gst_play_bin_set_property), (gst_play_bin_get_property),
5120         (pad_added_cb), (pad_removed_cb), (autoplug_select_cb):
5121         Remove option to mute streams with the current-a/v/t property, we have
5122         this functionality in the flags.
5123         Add signals to notify when the number of A/V/T channels changed.
5124         Add action signals to get tags for the A/V/T streams.
5125         Implement setting the current A/V/T stream.
5126         Rearrange some things to simplify stream selection.
5127         Implement volume.
5128
5129         * gst/playback/gstplaysink.c: (gst_play_sink_set_volume),
5130         (gst_play_sink_get_volume), (gst_play_sink_set_property),
5131         (gst_play_sink_get_property), (gen_video_chain), (gen_audio_chain),
5132         (activate_vis), (gst_play_sink_reconfigure):
5133         * gst/playback/gstplaysink.h:
5134         Add and implement volume setting methods.
5135
5136         * gst/playback/gststreamselector.c: (gst_selector_pad_class_init),
5137         (gst_selector_pad_finalize), (gst_selector_pad_get_property),
5138         (gst_selector_pad_event), (gst_stream_selector_class_init),
5139         (gst_stream_selector_init), (gst_stream_selector_finalize),
5140         (gst_stream_selector_set_property),
5141         (gst_stream_selector_get_property),
5142         (gst_stream_selector_get_linked_pad),
5143         (gst_stream_selector_request_new_pad):
5144         * gst/playback/gststreamselector.h:
5145         Add pad properties for tags and status of pads.
5146         Keep tags on pads.
5147         Make active pad selection based on pad object instead of name.
5148
5149 2008-02-08  Stefan Kost  <ensonic@users.sf.net>
5150
5151         * configure.ac:
5152           Revert last change as we now check in gtk-doc.m4 for sed.
5153
5154 2008-02-08  Jan Schmidt  <Jan.Schmidt@sun.com>
5155
5156         * configure.ac:
5157         Find and subst SED when building the docs.
5158
5159 2008-02-08  Julien Moutte  <julien@fluendo.com>
5160
5161         * tests/examples/seek/seek.c: (stop_cb), (connect_bus_signals),
5162         (main): Make sure bus signals are reconnected when pressing STOP
5163         and then PLAY again for a parse launch pipeline. Fix a ref leak
5164         on the bus.
5165         * win32/common/config.h: Updated.
5166
5167 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
5168
5169         * configure.ac:
5170         Make DISABLE_DEPRECATED defined *only* during CVS, not during
5171         pre-releases or releases.
5172
5173 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
5174
5175         * configure.ac:
5176         * ext/gio/Makefile.am:
5177         Subst GIO_LDFLAGS to avoid undefined Makefile var error Zaheer is
5178         reporting
5179
5180 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
5181
5182         * docs/plugins/Makefile.am:
5183         Add the headers which need scanning for the GIO plugin. The rest of
5184         the docs still need migrating.
5185
5186 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
5187
5188         * ext/Makefile.am:
5189         * tests/check/Makefile.am:
5190         * tests/check/pipelines/.cvsignore:
5191         Add gio in a few more places.
5192
5193 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
5194
5195         * configure.ac:
5196         * ext/Makefile.am:
5197         * tests/check/Makefile.am:
5198         Move gio plugin from -bad and mark as experimental.
5199
5200 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
5201
5202         * gst-libs/gst/interfaces/mixeroptions.c:
5203         * gst-libs/gst/interfaces/mixertrack.c:
5204         Comment out a couple of other things which break the build when
5205         GST_DISABLE_DEPRECATED isn't on but -Werror is.
5206
5207 2008-02-07  Tim-Philipp Müller  <tim at centricular dot net>
5208
5209         * docs/libs/gst-plugins-base-libs-sections.txt:
5210           Fix pbutils header.
5211
5212 2008-02-07  Wim Taymans  <wim.taymans@collabora.co.uk>
5213
5214         * gst-libs/gst/rtsp/gstrtspmessage.c: (gst_rtsp_message_unset):
5215         Fix compiler warning.
5216
5217 2008-02-07  Wim Taymans  <wim.taymans@collabora.co.uk>
5218
5219         Patch by: Peter Kjellerstedt  <pkj at axis com>
5220
5221         * gst-libs/gst/sdp/gstsdpmessage.c: (is_multicast_address):
5222         Clear the addrinfo struct using memset. Fixes #514937.
5223
5224 2008-02-06  Wim Taymans  <wim.taymans@collabora.co.uk>
5225
5226         * gst/tcp/gstfdset.h:
5227         Remove unused field to same some memory.
5228
5229         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
5230         Mark action signals as such.
5231
5232 2008-02-06  Michael Smith <msmith@fluendo.com>
5233
5234         * ext/theora/theoradec.c: (_theora_granule_frame),
5235         (_inc_granulepos):
5236           Increment granulepos for new-bitstream versions appropriately.
5237           Fixes #514623.
5238
5239 2008-02-04  Wim Taymans  <wim.taymans@collabora.co.uk>
5240
5241         * tests/examples/seek/seek.c: (do_seek),
5242         (rate_spinbutton_changed_cb), (update_streams), (main):
5243         Remove obsolete stream_time reset after flushing seek, core does that
5244         automatically now.
5245         Improve accuracy of speed spinbutton.
5246         Only do playbin2 stuff when we actually use it.
5247
5248 2008-02-02  Tim-Philipp Müller  <tim at centricular dot net>
5249
5250         * tests/check/Makefile.am:
5251           Revert previous change of the test environment's GST_PLUGIN_PATH.
5252           The problem is not with the plugins, but with element factories
5253           and only occurs if elements are split out from existing plugins
5254           or if plugins change name (see #512740).
5255
5256 2008-02-02  Tim-Philipp Müller  <tim at centricular dot net>
5257
5258         * tests/check/Makefile.am:
5259           Fix the tests environment's GST_PLUGIN_PATH: we want the directory
5260           with the core's plugins first and our local build directories last,
5261           since we might be building against an installed core, and that
5262           core's plugin directory may contain older or other versions of
5263           our own -base plugins, but we really do want to test our local
5264           ones (if there are multiple plugins or element factories with the
5265           same name, those inspected last will trump those read in earlier).
5266           Fixes #512740 for the most part.
5267
5268 2008-02-02  Sebastian Dröge  <slomo@circular-chaos.org>
5269
5270         * configure.ac:
5271         * gst-libs/gst/rtsp/gstrtspconnection.c: (add_date_header):
5272         Use gmtime_r if available as gmtime is not MT-safe.
5273         Fixes bug #511810.
5274
5275 2008-02-02  Sebastian Dröge  <slomo@circular-chaos.org>
5276
5277         * gst-libs/gst/rtsp/gstrtspconnection.c: (add_date_header):
5278         Cast glong to time_t as time_t might have a different type on
5279         other platforms, like FreeBSD, and we get a compiler warning
5280         otherwise. Fixes bug #511825.
5281
5282 2008-02-01  Wim Taymans  <wim.taymans@collabora.co.uk>
5283
5284         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
5285         (get_group), (get_n_pads), (gst_play_bin_get_property),
5286         (pad_added_cb), (no_more_pads_cb), (perform_eos),
5287         (autoplug_select_cb), (deactivate_group):
5288         Remove stream-info, we going for something easier.
5289         Refactor getting the current group.
5290         Implement getting the number of audio/video/text streams.
5291
5292         * gst/playback/gststreamselector.c:
5293         (gst_stream_selector_class_init), (gst_stream_selector_init),
5294         (gst_stream_selector_get_property),
5295         (gst_stream_selector_request_new_pad),
5296         (gst_stream_selector_release_pad):
5297         * gst/playback/gststreamselector.h:
5298         Add property for number of pads.
5299
5300         * tests/examples/seek/seek.c: (set_scale), (update_flag),
5301         (vis_toggle_cb), (audio_toggle_cb), (video_toggle_cb),
5302         (text_toggle_cb), (update_streams), (msg_async_done),
5303         (msg_state_changed), (main):
5304         Block slider callback when updating the slider position.
5305         Add gui elements for controlling playbin2.
5306         Add callback for async_done that updates position/duration.
5307
5308 2008-02-01  Stefan Kost  <ensonic@users.sf.net>
5309
5310         * docs/plugins/Makefile.am:
5311         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
5312         * docs/plugins/gst-plugins-base-plugins-sections.txt:
5313         * docs/plugins/gst-plugins-base-plugins.hierarchy:
5314         * docs/plugins/gst-plugins-base-plugins.interfaces:
5315         * docs/plugins/gst-plugins-base-plugins.prerequisites:
5316           First round of plugin docs cleansups.
5317
5318         * docs/plugins/inspect/plugin-adder.xml:
5319         * docs/plugins/inspect/plugin-alsa.xml:
5320         * docs/plugins/inspect/plugin-audioconvert.xml:
5321         * docs/plugins/inspect/plugin-audiorate.xml:
5322         * docs/plugins/inspect/plugin-audioresample.xml:
5323         * docs/plugins/inspect/plugin-audiotestsrc.xml:
5324         * docs/plugins/inspect/plugin-cdparanoia.xml:
5325         * docs/plugins/inspect/plugin-decodebin.xml:
5326         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
5327         * docs/plugins/inspect/plugin-gdp.xml:
5328         * docs/plugins/inspect/plugin-gnomevfs.xml:
5329         * docs/plugins/inspect/plugin-libvisual.xml:
5330         * docs/plugins/inspect/plugin-ogg.xml:
5331         * docs/plugins/inspect/plugin-pango.xml:
5332         * docs/plugins/inspect/plugin-subparse.xml:
5333         * docs/plugins/inspect/plugin-tcp.xml:
5334         * docs/plugins/inspect/plugin-theora.xml:
5335         * docs/plugins/inspect/plugin-typefindfunctions.xml:
5336         * docs/plugins/inspect/plugin-video4linux.xml:
5337         * docs/plugins/inspect/plugin-videorate.xml:
5338         * docs/plugins/inspect/plugin-videoscale.xml:
5339         * docs/plugins/inspect/plugin-videotestsrc.xml:
5340         * docs/plugins/inspect/plugin-volume.xml:
5341         * docs/plugins/inspect/plugin-vorbis.xml:
5342         * docs/plugins/inspect/plugin-ximagesink.xml:
5343         * docs/plugins/inspect/plugin-xvimagesink.xml:
5344           Regenerate.
5345
5346         * ext/ogg/Makefile.am:
5347         * ext/ogg/gstoggmux.c:
5348         * ext/ogg/gstoggmux.h:
5349           Add header for oggmux. the c-file needs a doc blob still.
5350
5351 2008-02-01  Wim Taymans  <wim.taymans@collabora.co.uk>
5352
5353         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
5354
5355         * gst-libs/gst/rtp/gstrtpbuffer.c:
5356         (gst_rtp_buffer_set_extension_data):
5357         * gst-libs/gst/rtp/gstrtpbuffer.h:
5358         * tests/check/libs/rtp.c: (GST_START_TEST), (rtp_suite):
5359         Add gst_rtp_buffer_set_extension_data() 
5360         Add a unit test for this addition. Fixes #511478.
5361         API: GstRTPBuffer:gst_rtp_buffer_set_extension_data()
5362
5363 2008-01-30  Jan Schmidt  <jan.schmidt@sun.com>
5364
5365         * configure.ac:
5366         Back to CVS
5367
5368 === release 0.10.17 ===
5369
5370 2008-01-30  Jan Schmidt <jan.schmidt@sun.com>
5371
5372         * configure.ac:
5373           releasing 0.10.17, "Peanut Butter and Jelly"
5374
5375 2008-01-30  Jan Schmidt  <jan.schmidt@sun.com>
5376
5377         * gst-libs/gst/interfaces/mixeroptions.c:
5378         * gst-libs/gst/interfaces/mixertrack.c:
5379         Also remove the conditional registration of the signals
5380         that disappeared with the ABI change in 0.10.14
5381
5382 2008-01-30  Jan Schmidt  <jan.schmidt@sun.com>
5383
5384         * gst-libs/gst/rtsp/gstrtspconnection.c:
5385         Revert patch to gstrtspconnection.c for brown paper bag
5386         release of -base. Re-opens: #511825
5387
5388 2008-01-30  Jan Schmidt  <jan.schmidt@sun.com>
5389
5390         * gst-libs/gst/interfaces/mixeroptions.h:
5391         * gst-libs/gst/interfaces/mixertrack.h:
5392         Change the way these deprecated function pointers are removed
5393         so that the compiled ABI is unconditionally smaller. This 
5394         sets in stone an ABI break that actually occurred when the
5395         things were deprecated in 0.10.14, which seems to be the best
5396         fix as the only known users are oss-mixer and sunaudio-mixer in 
5397         gst-plugins-good.
5398         Fixes: #513018
5399
5400 2008-01-30  Tim-Philipp Müller  <tim at centricular dot net>
5401
5402         * win32/common/libgstpbutils.def:
5403           Export the two new _get_type() functions which are needed
5404           by the python bindings.
5405
5406 2008-01-29  Sebastian Dröge  <slomo@circular-chaos.org>
5407
5408         * gst-libs/gst/rtsp/gstrtspconnection.c: (add_date_header):
5409         Cast glong to time_t as time_t might have a different type on
5410         other platforms, like FreeBSD, and we get a compiler warning
5411         otherwise. Fixes bug #511825.
5412
5413 2008-01-29  Sebastian Dröge  <slomo@circular-chaos.org>
5414
5415         * gst-libs/gst/audio/gstaudiofilter.c:
5416         (gst_audio_filter_class_init):
5417         Initialize the GstRingerBuffer class to get it's debug category
5418         initialized. gst_ring_buffer_parse_caps() uses the ringbuffer debug
5419         category and otherwise we get some g_critical(). Fixes bug #512334.
5420
5421 2008-01-28  Jan Schmidt  <jan.schmidt@sun.com>
5422
5423         * configure.ac:
5424         Back to CVS
5425
5426 === release 0.10.16 ===
5427
5428 2008-01-28  Jan Schmidt <jan.schmidt@sun.com>
5429
5430         * configure.ac:
5431           releasing 0.10.16, "Scheduled Interruption"
5432
5433 2008-01-22  Wim Taymans  <wim.taymans@collabora.co.uk>
5434
5435         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
5436
5437         * gst-libs/gst/rtp/gstrtpbuffer.c:
5438         (gst_rtp_buffer_get_extension_data):
5439         Fix typos and wrong extension check. Fixes #511274.
5440
5441 2008-01-18  Jan Schmidt  <jan.schmidt@sun.com>
5442
5443         * po/sk.po:
5444         Oops - add new sk.po mentioned in the LINGUAS I just committed
5445
5446 2008-01-17  Jan Schmidt  <jan.schmidt@sun.com>
5447
5448         * po/LINGUAS:
5449         Add ca translation to the disted list.
5450
5451         * win32/vs6/libgstsdp.dsp:
5452         Convert line endings to CRLF
5453
5454 2008-01-17  Sebastien Moutte <sebastien@moutte.net>
5455
5456         * win32/MANIFEST:
5457         Add win32/vs6/libgstrtsp.dsp to MANIFEST
5458
5459 2008-01-14  Jan Schmidt  <jan.schmidt@sun.com>
5460
5461         * win32/common/libgstsdp.def:
5462         * win32/common/libgstvideo.def:
5463         Add new API declarations
5464
5465 2008-01-14  Jan Schmidt  <jan.schmidt@sun.com>
5466
5467         * ext/theora/gsttheoradec.h:
5468         * ext/theora/gsttheoraparse.h:
5469         * ext/theora/theoradec.c:
5470         * ext/theora/theoraparse.c:
5471         Take a 2nd stab at handling libtheora granulepos changes in the decoder
5472         and parser by inspecting the bitstream version of the incoming data.
5473
5474 2008-01-14  Sebastian Dröge  <slomo@circular-chaos.org>
5475
5476         * configure.ac:
5477         * pkgconfig/Makefile.am:
5478         * pkgconfig/gstreamer-audio-uninstalled.pc.in:
5479         * pkgconfig/gstreamer-audio.pc.in:
5480         * pkgconfig/gstreamer-cdda-uninstalled.pc.in:
5481         * pkgconfig/gstreamer-cdda.pc.in:
5482         * pkgconfig/gstreamer-fft-uninstalled.pc.in:
5483         * pkgconfig/gstreamer-fft.pc.in:
5484         * pkgconfig/gstreamer-floatcast-uninstalled.pc.in:
5485         * pkgconfig/gstreamer-floatcast.pc.in:
5486         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
5487         * pkgconfig/gstreamer-interfaces.pc.in:
5488         * pkgconfig/gstreamer-netbuffer-uninstalled.pc.in:
5489         * pkgconfig/gstreamer-netbuffer.pc.in:
5490         * pkgconfig/gstreamer-pbutils-uninstalled.pc.in:
5491         * pkgconfig/gstreamer-pbutils.pc.in:
5492         * pkgconfig/gstreamer-riff-uninstalled.pc.in:
5493         * pkgconfig/gstreamer-riff.pc.in:
5494         * pkgconfig/gstreamer-rtp-uninstalled.pc.in:
5495         * pkgconfig/gstreamer-rtp.pc.in:
5496         * pkgconfig/gstreamer-rtsp-uninstalled.pc.in:
5497         * pkgconfig/gstreamer-rtsp.pc.in:
5498         * pkgconfig/gstreamer-sdp-uninstalled.pc.in:
5499         * pkgconfig/gstreamer-sdp.pc.in:
5500         * pkgconfig/gstreamer-tag-uninstalled.pc.in:
5501         * pkgconfig/gstreamer-tag.pc.in:
5502         * pkgconfig/gstreamer-video-uninstalled.pc.in:
5503         * pkgconfig/gstreamer-video.pc.in:
5504         Provide one pkg-config file for every gst-plugins-base library.
5505         This makes linking to those libraries much more intuitive and
5506         provides standard pkg-config behaviour for them. Fixes bug #499697.
5507
5508 2008-01-13  David Schleef  <ds@schleef.org>
5509
5510         * gst/videoscale/vs_4tap.c:
5511           Fix valgrind error on 4tap scaling method.
5512
5513 2008-01-13  Sebastien Moutte  <sebastien@moutte.net>
5514
5515         * gst-libs/gst/sdp/gstsdpmessage.c: (is_multicast_address):
5516         Include Winsock2.h for VS6 and use a different way initialize
5517         hints structure so it can build with VS6.
5518         * win32/MANIFEST:
5519         * win32/vs6/libgstsdp.dsp:
5520         * win32/common/libgstsdp.def:
5521         Add new files for libgstsdp.
5522         * win32/vs6/grammar.dsp:
5523         Copy pbutils-enumtypes* from win32/common to pbutils sources folder.
5524         * win32/vs6/gst_plugins_base.dsw:
5525         * win32/vs6/libgstdecodebin.dsp:
5526         * win32/vs6/libgstdecodebin2.dsp:
5527         * win32/vs6/libgstplaybin.dsp:
5528         * win32/vs6/libgstvolume.dsp:
5529         Add new dependencies to the link list.
5530
5531 2008-01-13  Julien Moutte  <julien@fluendo.com>
5532
5533         * win32/common/config.h:
5534         * win32/common/gstrtsp-enumtypes.c: (gst_rtsp_result_get_type),
5535         (gst_rtsp_event_get_type), (gst_rtsp_family_get_type),
5536         (gst_rtsp_state_get_type), (gst_rtsp_version_get_type),
5537         (gst_rtsp_method_get_type), (gst_rtsp_auth_method_get_type),
5538         (gst_rtsp_header_field_get_type), (gst_rtsp_status_code_get_type):
5539         * win32/common/interfaces-enumtypes.c:
5540         (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
5541         (gst_mixer_message_type_get_type), (gst_mixer_flags_get_type),
5542         (gst_mixer_track_flags_get_type),
5543         (gst_tuner_channel_flags_get_type):
5544         * win32/common/multichannel-enumtypes.c:
5545         (gst_audio_channel_position_get_type):
5546         * win32/common/pbutils-enumtypes.c:
5547         (gst_install_plugins_return_get_type):
5548         * win32/common/pbutils-enumtypes.h: Update/Add generated files
5549         in the win32 build directory.
5550
5551 2008-01-12  Jan Schmidt  <Jan.Schmidt@sun.com>
5552
5553         * tests/check/Makefile.am:
5554         Fix CFLAGS to also pull in the gstcheck cflags from AM_CFLAGS.
5555
5556         * tests/check/elements/audiorate.c: (do_perfect_stream_test):
5557         * tests/check/elements/playbin.c:
5558         * tests/check/libs/mixer.c: (test_element_interface_supported),
5559         (gst_implements_interface_init):
5560         * tests/check/libs/rtp.c: (GST_START_TEST):
5561         Fix various assignment type mismatches.
5562
5563 2008-01-12  Jan Schmidt  <Jan.Schmidt@sun.com>
5564
5565         * configure.ac:
5566         * gst-libs/gst/rtsp/Makefile.am:
5567         Add test to see if hstrerror is available or if we need libresolv
5568         (Solaris) for it, then use it in libgstrtsp.
5569
5570 2008-01-12  Jan Schmidt  <Jan.Schmidt@sun.com>
5571
5572         * gst-libs/gst/tag/Makefile.am:
5573         Fix include path order
5574
5575 2008-01-11  Edward Hervey  <edward.hervey@collabora.co.uk>
5576
5577         * gst-libs/gst/pbutils/install-plugins.c:
5578         (gst_install_plugins_context_copy),
5579         (gst_install_plugins_context_get_type):
5580         * gst-libs/gst/pbutils/install-plugins.h:
5581         Add GBoxed GType for GstInstallPluginsContext, this eases the wrapping
5582         for bindings.
5583
5584 2008-01-11  Michael Smith <msmith@fluendo.com>
5585
5586         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
5587         (_theora_granule_frame), (_theora_granule_start_time),
5588         (theora_dec_sink_convert), (theora_dec_decode_buffer):
5589           Adapt for post-alpha meaning of granulepos, when we
5590           have a newer version of libtheora.
5591         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
5592         (theora_enc_get_ogg_packet_end_time), (theora_enc_sink_event),
5593         (theora_enc_is_discontinuous), (theora_enc_chain):
5594           Likewise.
5595         * tests/check/Makefile.am:
5596           Link libtheora into theoraenc test so we can check which version of
5597           libtheora we're testing against.
5598         * tests/check/pipelines/theoraenc.c: (check_libtheora),
5599         (check_buffer_granulepos),
5600         (check_buffer_granulepos_from_starttime), (GST_START_TEST),
5601         (theoraenc_suite):
5602           Adapt tests to check the values that are now defined for theora; make
5603           the tests backwards-adapt the passed values if we're running against an
5604           old libtheora.
5605           Fixes #497964
5606
5607 2008-01-10  Tim-Philipp Müller  <tim at centricular dot net>
5608
5609         * gst-libs/gst/audio/gstbaseaudiosink.c:
5610           (gst_base_audio_sink_class_init):
5611         * gst-libs/gst/audio/gstbaseaudiosrc.c:
5612           (gst_base_audio_src_class_init):
5613           Ref audio clock class from a thread-safe context to make sure
5614           we're not bit by GObjects lack of thread-safety here (#349410),
5615            however unlikely that may be in practice.
5616
5617 2008-01-10  Sebastian Dröge  <slomo@circular-chaos.org>
5618
5619         * autogen.sh:
5620           Add -Wno-portability to the automake parameters to stop warnings
5621           about GNU make extensions being used. We require GNU make in almost
5622           every Makefile anyway.
5623           
5624         * configure.ac:
5625           Use AM_PROG_CC_C_O as a compiler that accepts both -c and -o
5626           at the same time is required for per target flags.
5627
5628 2008-01-08  Tim-Philipp Müller  <tim at centricular dot net>
5629
5630         * gst-libs/gst/tag/gsttagdemux.c: (gst_tag_demux_pull_start_tag):
5631           Post an error message if we can't pull as many bytes as we need
5632           for the tag. This makes sure the user gets to see a proper error
5633           message if a file with a partial ID3 tag is fed to decodebin, and
5634           not a 'no ID3 tag demuxer' error, which would be confusing
5635           (see #508138).
5636
5637 2008-01-08  Tim-Philipp Müller  <tim at centricular dot net>
5638
5639         * gst-libs/gst/pbutils/descriptions.c: (formats):
5640           Add description strings for ID3, APE, and ICY tags.
5641
5642 2008-01-08  Tim-Philipp Müller  <tim at centricular dot net>
5643
5644         * gst/playback/gstdecodebin.c: (try_to_link_1):
5645           Make sure we error out correctly if we can't activate one of
5646           the elements we've added.  Fixes #508138.
5647           
5648 2008-01-07  Tim-Philipp Müller  <tim at centricular dot net>
5649
5650         Patch by: Bastien Nocera <hadess at hadess net>
5651
5652         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume),
5653           (check_if_volumes_are_the_same), (gst_alsa_mixer_set_volume):
5654           Use snd_mixer_selem_set_{playback|capture}_volume_all() if
5655           the volume is the same for all channels. This works around
5656           some problem in alsa that leaves us with inconsistent state
5657           for some reason (#486840).
5658
5659 2008-01-07  Tim-Philipp Müller  <tim at centricular dot net>
5660
5661         Patch by: Jerone Young <jerone at gmail com>
5662
5663         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_find_master_mixer):
5664           If there's no mixer track by the name of 'Master' or 'Front',
5665           check if there's one called 'PCM' before trying the generic
5666           fallback logic (fixes #506928, where we pick 'Mic' as master
5667           track for the AD1984 card in a Thinkpad T61/X61 laptop).
5668
5669 2008-01-07  Wim Taymans  <wim.taymans@collabora.co.uk>
5670
5671         * gst/playback/gstplay-enum.c:
5672         (register_gst_autoplug_select_result),
5673         (gst_autoplug_select_result_get_type), (register_gst_play_flags),
5674         (gst_play_flags_get_type):
5675         * gst/playback/gstplay-enum.h:
5676         Add enums for configuration flags.
5677
5678         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
5679         (init_group), (gst_play_bin_init), (gst_play_bin_set_property),
5680         (gst_play_bin_get_property), (no_more_pads_cb),
5681         (autoplug_select_cb), (gst_play_bin_change_state):
5682         Merge mode with flags.
5683         Add more property getters/setters, defaults and docs.
5684         Add properties to get number of audio/video/text streams.
5685         Create sink object in _init so that we can always rely on it being
5686         there.
5687
5688         * gst/playback/gstplaysink.c: (gst_play_sink_init),
5689         (gen_video_chain), (gen_audio_chain), (gen_vis_chain),
5690         (activate_vis), (gst_play_sink_reconfigure),
5691         (gst_play_sink_set_flags), (gst_play_sink_get_flags),
5692         (gst_play_sink_change_state):
5693         * gst/playback/gstplaysink.h:
5694         Use flags to configure the sink pipelines.
5695         Add tee before audio pipeline so that we can use it for visualisations.
5696         Start working on integrating visualisations.
5697         Remove mode, we can do everything with the flags now.
5698         Add method to configue the sink pipeline.
5699
5700 2008-01-06  Tim-Philipp Müller  <tim at centricular dot net>
5701
5702         * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
5703           (check_buffer_timestamp), (check_buffer_duration):
5704           Turn these functions into macros so we can see right away
5705           where the failure occured.
5706
5707 2008-01-05  Julien Moutte  <julien@fluendo.com>
5708
5709         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new): Add
5710         debugging information to understand how X calculates the stride
5711         for XvImages.
5712
5713 2008-01-03  Sebastian Dröge  <slomo@circular-chaos.org>
5714
5715         * gst/volume/Makefile.am:
5716         * gst/volume/gstvolume.c: (volume_choose_func),
5717         (gst_volume_base_init), (gst_volume_class_init), (gst_volume_init),
5718         (volume_setup):
5719         * gst/volume/gstvolume.h:
5720         Use GstAudioFilter as base class for the volume element instead of
5721         plain GstBaseTransform.
5722
5723 2008-01-03  Sebastian Dröge  <slomo@circular-chaos.org>
5724
5725         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type):
5726         Don't set element details for the abstract GstAudioFilter class.
5727
5728 2008-01-02  Sebastian Dröge  <slomo@circular-chaos.org>
5729
5730         * gst-libs/gst/audio/gstaudiofilter.c:
5731         (gst_audio_filter_class_init), (gst_audio_filter_get_unit_size):
5732         Implement get_unit_size() vmethod of GstBaseTransform.
5733
5734 2008-01-01  Edward Hervey  <edward.hervey@collabora.co.uk>
5735
5736         * gst-libs/gst/pbutils/Makefile.am:
5737         * gst-libs/gst/pbutils/pbutils.h:
5738         Use glib-enum generator to have a proper enum GType for
5739         GST_TYPE_INSTALL_PLUGINS_RETURN so we can easily wrap it in bindings.
5740
5741 2007-12-31  David Schleef  <ds@schleef.org>
5742
5743         * tests/check/Makefile.am:
5744         * tests/check/pipelines/theoraenc.c:
5745           Reenable theoraenc test, which fails on the buildbot but
5746           not locally.
5747
5748 2007-12-31  David Schleef  <ds@schleef.org>
5749
5750         * docs/libs/.cvsignore:
5751         * docs/plugins/.cvsignore:
5752           Add *-undeclared.txt to fix buildbot.
5753
5754 2007-12-31  David Schleef  <ds@schleef.org>
5755
5756         * tests/check/Makefile.am:
5757           Second attempt at disabling theoraenc test long enough to
5758           get buildbot to compile -base.
5759
5760 2007-12-31  David Schleef  <ds@schleef.org>
5761
5762         * tests/check/pipelines/theoraenc.c:
5763           Disable theoraenc test long enough to get the buildbot to
5764           compile a recent -base.
5765
5766 2007-12-31  Wim Taymans  <wim.taymans@collabora.co.uk>
5767
5768         * tests/examples/seek/seek.c: (stop_cb):
5769         Make sure we reset the slider value to 0.0 without racing against a
5770         possible g_idle that sets it to something else.
5771
5772 2007-12-31  Thijs Vermeir  <thijsvermeir@gmail.com>
5773
5774         * sys/ximage/ximagesink.c:
5775         fix typo
5776
5777 2007-12-30  Wim Taymans  <wim.taymans@collabora.co.uk>
5778
5779         * gst-libs/gst/rtsp/gstrtspdefs.c: (rtsp_init_status):
5780         * gst-libs/gst/rtsp/gstrtspdefs.h:
5781         Add Location header so that we can start implementing redirects.
5782         See #506025.
5783
5784 2007-12-29  Thijs Vermeir  <thijsvermeir@gmail.com>
5785
5786         * gst/subparse/gstssaparse.c:
5787         combine if's
5788
5789 2007-12-29  Thijs Vermeir  <thijsvermeir@gmail.com>
5790
5791         * gst/subparse/gstssaparse.c:
5792         remove duplicate log message
5793
5794 2007-12-29  Sebastian Dröge  <slomo@circular-chaos.org>
5795
5796         * ext/libvisual/visual.c: (gst_visual_chain):
5797         Fix 'xyz may be used uninitialized' compiler warnings caused
5798         by broken g_assert_not_reached() macro in GLib-2.15.x and don't
5799         abort() in any case but properly report the error.
5800
5801 2007-12-28  Wim Taymans  <wim.taymans@collabora.co.uk>
5802
5803         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
5804         (gst_play_bin_finalize), (gst_play_bin_set_uri),
5805         (gst_play_bin_set_suburi), (gst_play_bin_set_property),
5806         (gst_play_bin_get_property), (pad_removed_cb), (drained_cb),
5807         (autoplug_select_cb), (activate_group), (deactivate_group),
5808         (setup_next_source), (save_current_group),
5809         (gst_play_bin_change_state):
5810         Code cleanups.
5811         Remove next-uri, we can use the uri property just fine.
5812         Fix some crasher.
5813         Unref uridecodebin when switching.
5814         Fix going to READY.
5815
5816         * gst/playback/gstplaysink.c: (gst_play_sink_class_init),
5817         (gst_play_sink_init), (gst_play_sink_dispose),
5818         (gst_play_sink_finalize), (gst_play_sink_vis_unblocked),
5819         (gst_play_sink_vis_blocked), (gst_play_sink_set_video_sink),
5820         (gst_play_sink_set_audio_sink), (gst_play_sink_set_vis_plugin),
5821         (gst_play_sink_set_property), (gst_play_sink_get_property),
5822         (gen_video_chain), (gen_text_element), (gen_audio_chain),
5823         (gen_vis_element), (gst_play_sink_get_mode),
5824         (gst_play_sink_set_mode), (gst_play_sink_set_flags),
5825         (gst_play_sink_get_flags), (gst_play_sink_request_pad),
5826         (gst_play_sink_release_pad), (gst_play_sink_send_event_to_sink),
5827         (gst_play_sink_change_state):
5828         * gst/playback/gstplaysink.h:
5829         Add some locking to make things threadsafe.
5830
5831         * gst/playback/test7.c: (about_to_finish_cb):
5832         Fix test.
5833
5834 2007-12-22  Tim-Philipp Müller  <tim at centricular dot net>
5835
5836         * gst/videoscale/gstvideoscale.c: (gst_video_scale_set_property),
5837           (gst_video_scale_get_property), (gst_video_scale_transform_caps),
5838           (gst_video_scale_transform):
5839           Don't claim to be able to handle/transform caps that can't really
5840           be handled by the currently selected scaling method (here: RGB or
5841           packed YUV with 4-tap method). Also add locking to method property.
5842
5843         * tests/check/pipelines/simple-launch-lines.c: (setup_pipeline),
5844           (test_basetransform_based):
5845           Some test pipelines for the above (not entirely valgrind clean yet
5846           apparently).
5847
5848 2007-12-21  David Schleef  <ds@schleef.org>
5849
5850         * gst-libs/gst/video/video.c:
5851         * gst-libs/gst/video/video.h:
5852           Add additional RGBA and RGB-24 video formats.
5853
5854 2007-12-21  Tim-Philipp Müller  <tim at centricular dot net>
5855
5856         * tests/check/elements/playbin.c: (test_sink_usage_video_only_stream),
5857           (test_suburi_error_unknowntype), (test_suburi_error_invalidfile),
5858           (test_suburi_error_wrongproto), (test_missing_primary_decoder):
5859         * tests/check/libs/cddabasesrc.c: (GST_START_TEST), (GST_START_TEST),
5860           (cddabasesrc_suite):
5861           Don't use GST_PLUGIN_DEFINE_STATIC, it's not portable and will be
5862           deprecated in the future (see #498924).
5863
5864 2007-12-21  Tim-Philipp Müller  <tim at centricular dot net>
5865
5866         * gst/playback/gststreamselector.c: (gst_selector_pad_event):
5867           Don't leak event.
5868
5869 2007-12-20  Thijs Vermeir <thijsvermeir@gmail.com>
5870
5871         * gst-libs/gst/riff/riff-read.c:
5872         Use GST_ROUND_UP_2 macro
5873
5874 2007-12-20  Tim-Philipp Müller  <tim at centricular dot net>
5875
5876         * gst/playback/.cvsignore:
5877           Ignore more.
5878
5879 2007-12-20  Tim-Philipp Müller  <tim at centricular dot net>
5880
5881         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init):
5882         * gst/playback/gstplaybasebin.c: (set_subtitles_visible),
5883           (set_active_source):
5884         * gst/playback/gstplaybasebin.h:
5885         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
5886           (setup_sinks), (playbin_set_subtitles_visible):
5887           Make switching off of subtitles work. To avoid all kind of
5888           problems with unlinking of the subtitle input, we just keep
5889           the subtitle inputs linked as they are and tell textoverlay
5890           not to render them. Fixes #373011.
5891           Other subtitle switching issues (esp. when there are both
5892           external and in-stream subtitles) remain. They'll be solved
5893           in playbin2.
5894
5895 2007-12-18  Wim Taymans  <wim.taymans@collabora.co.uk>
5896
5897         * gst/playback/gststreamselector.c: (gst_selector_pad_init):
5898         Init the pad segment too.
5899
5900 2007-12-18  Wim Taymans  <wim.taymans@collabora.co.uk>
5901
5902         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func),
5903         (gst_audioringbuffer_open_device),
5904         (gst_audioringbuffer_close_device), (gst_audioringbuffer_acquire),
5905         (gst_audioringbuffer_release), (gst_audioringbuffer_start),
5906         (gst_audioringbuffer_pause), (gst_audioringbuffer_stop),
5907         (gst_audio_sink_create_ringbuffer):
5908         Improve debug output.
5909
5910         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_start),
5911         (gst_ring_buffer_pause), (gst_ring_buffer_delay):
5912         Prevent some functions from doing things and failing when the
5913         ringbuffer is not yet acquired.
5914
5915 2007-12-18  Sebastian Dröge  <slomo@circular-chaos.org>
5916
5917         * gst-libs/gst/interfaces/interfaces.h:
5918           Also remove interfaces.h from CVS as it is not needed anymore.
5919
5920 2007-12-18  Sebastian Dröge  <slomo@circular-chaos.org>
5921
5922         * gst-libs/gst/interfaces/Makefile.am:
5923           interfaces.h is not used anymore so remove it from the build
5924           process.
5925
5926 2007-12-17  David Schleef  <ds@schleef.org>
5927
5928         * gst/videotestsrc/gstvideotestsrc.c:
5929         * gst/videotestsrc/gstvideotestsrc.h:
5930           Add a "blink" pattern.  Turn on the pain.  Apologies.  It's useful
5931           for testing vertical refresh synchronization.
5932
5933 2007-12-17  David Schleef  <ds@schleef.org>
5934
5935         * docs/libs/gst-plugins-base-libs-sections.txt:
5936         * gst-libs/gst/video/video.c:
5937         * gst-libs/gst/video/video.h:
5938           Add new GstVideFormat enum and write a bunch of helper functions
5939           based around it.
5940
5941 2007-12-17  Tim-Philipp Müller  <tim at centricular dot net>
5942
5943         * Makefile.am:
5944           Use new common/win32.mak.
5945
5946 2007-12-17  Wim Taymans  <wim.taymans@collabora.co.uk>
5947
5948         * gst-libs/gst/audio/gstbaseaudiosrc.c:
5949         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
5950         Add debug info.
5951         When going from PLAYING to PAUSED, pause the ringbuffer before calling
5952         the parent state change function, just like the audiosink, because the
5953         parent waits for the element to finish its processing before completing
5954         the state change. This makes going to PAUSED a lot snappier.
5955         When going from READY to PAUSED, don't allow the ringbuffer to start
5956         yet.
5957
5958 2007-12-17  Edward Hervey  <edward.hervey@collabora.co.uk>
5959
5960         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
5961         Yet another fix for broken software that produce files with an empty
5962         blockalign field. Instead of completely failing, make a second attempt
5963         at guessing the width/depth by looking at strf->size.
5964
5965 2007-12-16  Tim-Philipp Müller  <tim at centricular dot net>
5966
5967         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_do_seek),
5968           (gst_cdda_base_src_handle_track_seek), (gst_cdda_base_src_create):
5969         * gst-libs/gst/pbutils/install-plugins.c:
5970           (gst_install_plugins_spawn_child), (gst_install_plugins_supported):
5971         * gst-libs/gst/pbutils/missing-plugins.c:
5972           (gst_missing_plugin_message_get_installer_detail),
5973           (gst_missing_encoder_installer_detail_new):
5974         * gst-libs/gst/rtsp/gstrtspconnection.c: (gst_rtsp_connection_send):
5975         * gst-libs/gst/rtsp/gstrtspmessage.c: (gst_rtsp_message_unset):
5976           Turn a few g_assert_not_reached() into g_return_val_if_reached() to
5977           avoid compiler warnings (#503930).
5978
5979 2007-12-17  Edward Hervey  <edward.hervey@collabora.co.uk>
5980
5981         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
5982         Be apologetic of software that use the 'jpeg' instead of 'JPEG' FOURCC
5983         for jpeg video streams.
5984         Add the 'avc1'/'AVC1' fourcc mapping for h264, same software-comment as
5985         for the above modification.
5986
5987 2007-12-15  Tim-Philipp Müller  <tim at centricular dot net>
5988
5989         * gst-libs/gst/interfaces/xoverlay.c: (gst_x_overlay_expose),
5990           (gst_x_overlay_handle_events):
5991           More guards (we don't want klass to end up being NULL).
5992
5993 2007-12-14  Sebastian Dröge  <slomo@circular-chaos.org>
5994
5995         * configure.ac:
5996         * gst/volume/gstvolume.c: (gst_volume_init):
5997           Use new gst_base_transform_set_gap_aware() function as volume
5998           correctly handles GST_BUFFER_FLAG_GAP. Require core 0.10.15.1 
5999           for this.
6000
6001 2007-12-14  Wim Taymans  <wim.taymans@collabora.co.uk>
6002
6003         * tests/examples/seek/seek.c: (msg_segment_done), (main):
6004         Don't go to READY on EOS as this avoids testing of seeking and
6005         restarting after EOS, use the stop button when you want to READY.
6006         Don't try to do a flushing seek in segment-done, it does not make
6007         sense to use this for gapless playback and is not needed.
6008
6009 2007-12-14  Wim Taymans  <wim.taymans@collabora.co.uk>
6010
6011         * gst/playback/gstqueue2.c: (gst_queue_init), (gst_queue_finalize),
6012         (reset_rate_timer), (update_in_rates), (update_out_rates),
6013         (gst_queue_locked_enqueue), (gst_queue_locked_dequeue),
6014         (gst_queue_chain), (gst_queue_loop):
6015         Use separate timers for input and output rates.
6016         Pause measuring the output rate when we block for more data.
6017         See #503262.
6018
6019 2007-12-14  Wim Taymans  <wim.taymans@collabora.co.uk>
6020
6021         * gst/playback/gstqueue2.c: (gst_queue_chain):
6022         Pause the timer to measure the input rate when we block because the
6023         queue is filled. See #503262.
6024
6025 2007-12-13  Wim Taymans  <wim.taymans@collabora.co.uk>
6026
6027         Patch by: Peter Kjellerstedt  <pkj at axis com>
6028
6029         * gst-libs/gst/rtsp/gstrtspconnection.c:
6030         (gst_rtsp_connection_free):
6031         Close control sockets. Fixes #503440.
6032
6033 2007-12-13  Wim Taymans  <wim.taymans@collabora.co.uk>
6034
6035         * gst/playback/gstdecodebin2.c: (analyze_new_pad), (connect_pad):
6036         Expose the right pad in the right place with the right element.
6037
6038 2007-12-13  Tim-Philipp Müller  <tim at centricular dot net>
6039
6040         * gst-libs/gst/pbutils/descriptions.c: (formats):
6041           Add description for 'private' dts caps (who come up with that name?).
6042
6043 2007-12-13  Tim-Philipp Müller  <tim at centricular dot net>
6044
6045         * Makefile.am:
6046           Add check-exports target and run it with 'make check'.
6047
6048         * configure.ac:
6049           Be stricter about what we export in our libraries: change regexp so that
6050           we only export _gst_foo(), but not __gst_foo().
6051
6052         * gst-libs/gst/cdda/base64.h: (rfc822_binary):
6053         * gst-libs/gst/cdda/sha1.h: (sha_init), (sha_update), (sha_final):
6054           Change internal functions to __gst_foo so they dont' get exported.
6055
6056         * win32/common/libgstaudio.def:
6057           Add missing symbols.
6058
6059 2007-12-11  David Schleef  <ds@schleef.org>
6060
6061         * ChangeLog: remove conflict markers
6062
6063 2007-12-11  Tim-Philipp Müller  <tim at centricular dot net>
6064
6065         * ext/gnomevfs/Makefile.am:
6066         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_unicodify):
6067           Use gst_tag_freeform_string_to_utf8() here, which also takes
6068           into account any character sets specified by the user via
6069           environment variables.
6070
6071 2007-12-10  Wim Taymans  <wim.taymans@gmail.com>
6072
6073         * gst/audioconvert/Makefile.am:
6074         Also link to libm.
6075
6076 2007-12-10  Wim Taymans  <wim.taymans@gmail.com>
6077
6078         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
6079         No need for floating point operations here. avoids having to link
6080         against the math library too.
6081
6082 2007-12-10  Tim-Philipp Müller  <tim at centricular dot net>
6083
6084         * gst-libs/gst/pbutils/descriptions.c: (formats),
6085           (format_info_get_desc):
6086         * tests/check/libs/pbutils.c: (GST_START_TEST), (caps_strings),
6087           (GST_START_TEST):
6088           Add one or two missing formats.  Generate ADPCM description
6089           dynamically depending on layout/format.
6090
6091 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
6092
6093         * configure.ac:
6094           Don't define GST_DISABLE_DEPRECATED for releases. Fixes #498181.
6095
6096 2007-12-08  Tim-Philipp Müller  <tim at centricular dot net>
6097
6098         Patch by: Robin Stocker <robin dot stocker at gmx dot ch>
6099
6100         * gst/subparse/gstsubparse.c: (gst_sub_parse_data_format_autodetect):
6101           Some .srt files start with chunk number 0 and not chunk number 1,
6102           recognise and accept those as well (fixes #502497).
6103
6104         * tests/check/elements/subparse.c: (srt_input), (srt_input0),
6105           (test_src):
6106           Add unit test for the above.
6107
6108 2007-12-06  Wim Taymans  <wim.taymans@gmail.com>
6109
6110         * gst/playback/gstplay-enum.c:
6111         (register_gst_autoplug_select_result),
6112         (gst_autoplug_select_result_get_type):
6113         * gst/playback/gstplay-enum.h:
6114         Add missing files.
6115
6116 2007-12-05  Wim Taymans  <wim.taymans@gmail.com>
6117
6118         * gst/playback/Makefile.am:
6119         Group decodebin2 and uridecodebin into the same plugin so that they
6120         can share the GEnumType.
6121
6122         * gst/playback/gstdecodebin2.c: (_gst_array_accumulator),
6123         (_gst_select_accumulator), (gst_decode_bin_class_init),
6124         (gst_decode_bin_init), (gst_decode_bin_autoplug_sort),
6125         (gst_decode_bin_autoplug_select), (gst_decode_bin_autoplug_add),
6126         (analyze_new_pad), (connect_pad), (gst_decode_bin_plugin_init):
6127         Add signal to sort factories instead of the more awkward autoplug-select
6128         signal.
6129         Modify autoplug_select so that we can try, skip or expose the
6130         autopluggin of an element on a pad.
6131
6132         * gst/playback/gstfactorylists.c: (compare_ranks),
6133         (decoders_filter), (sinks_filter), (gst_factory_list_is_type),
6134         (element_filter), (gst_factory_list_get_elements),
6135         (gst_factory_list_debug), (gst_factory_list_filter):
6136         * gst/playback/gstfactorylists.h:
6137         Simplify the API, allow getting elements based on mask.
6138
6139         * gst/playback/gstplay-marshal.list:
6140         Add some more marshallers.
6141
6142         * gst/playback/gstplaybin2.c: (init_group), (gst_play_bin_init),
6143         (gst_play_bin_finalize), (pad_removed_cb), (autoplug_factories_cb),
6144         (autoplug_select_cb), (activate_group):
6145         Add support for managing non-raw sinks by providing a custom element and
6146         sink list to decodebin2.
6147         Try to plug non-raw sinks when decodebin2 using autoplug-select of
6148         decodebin2.
6149
6150         * gst/playback/gstplaysink.c: (gen_video_chain), (gen_audio_chain),
6151         (gst_play_sink_set_mode), (gst_play_sink_request_pad):
6152         * gst/playback/gstplaysink.h:
6153         Add support for raw and non-raw sinks. 
6154         Add support to force sinks selected by playbin2.
6155         Don't plug raw converters for non-raw sinks.
6156
6157         * gst/playback/gsturidecodebin.c: (_gst_array_accumulator),
6158         (_gst_select_accumulator), (gst_uri_decode_bin_class_init),
6159         (proxy_autoplug_select_signal), (gst_uri_decode_bin_plugin_init),
6160         (plugin_init):
6161         Use right accumulators.
6162         Proxy new signal.
6163
6164 2007-12-03  Wim Taymans  <wim.taymans@gmail.com>
6165
6166         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
6167         Use runnning time as the base time instead of the timestamp.
6168         Spotted by Saur on IRC.
6169
6170 2007-12-03  Edward Hervey  <bilboed@bilboed.com>
6171
6172         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
6173         Add 'WVC1' codec mapping for Windows Media VC-1 video codec.
6174
6175 2007-12-03  Wim Taymans  <wim.taymans@gmail.com>
6176
6177         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_bisect_forward_serialno),
6178         (gst_ogg_demux_read_chain):
6179         If we find a new serial number but it does not contain a BOS page, make
6180         sure we initialize the chain to NULL because else we will try to scan it
6181         and crash. Fixes #500763
6182
6183 2007-11-30  Wim Taymans  <wim.taymans@gmail.com>
6184
6185         * gst/playback/Makefile.am:
6186         * gst/playback/gstfactorylists.c: (compare_ranks), (print_feature),
6187         (get_feature_array), (decoders_filter), (sinks_filter),
6188         (gst_factory_list_get_decoders), (gst_factory_list_get_sinks),
6189         (gst_factory_list_filter):
6190         * gst/playback/gstfactorylists.h:
6191         Refactor some common code to filter factories and check caps compat.
6192
6193         * gst/playback/gstdecodebin.c:
6194         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init),
6195         (gst_decode_bin_init), (gst_decode_bin_dispose),
6196         (gst_decode_bin_autoplug_continue),
6197         (gst_decode_bin_autoplug_factories),
6198         (gst_decode_bin_autoplug_select), (analyze_new_pad),
6199         (find_compatibles):
6200         * gst/playback/gstplaybin.c:
6201         * gst/playback/gstplaybin2.c: (gst_play_bin_class_init),
6202         (gst_play_bin_init), (gst_play_bin_finalize),
6203         (autoplug_factories_cb), (activate_group):
6204         * gst/playback/gstqueue2.c:
6205         * gst/playback/gsturidecodebin.c: (proxy_unknown_type_signal),
6206         (proxy_autoplug_continue_signal),
6207         (proxy_autoplug_factories_signal), (proxy_autoplug_select_signal),
6208         (proxy_drained_signal):
6209         Add some more debug info and use factor filtering code.
6210
6211 2007-11-26  Stefan Kost  <ensonic@users.sf.net>
6212
6213         * gst/audiotestsrc/gstaudiotestsrc.c:
6214         * gst/volume/gstvolume.c:
6215         * gst/volume/gstvolume.h:
6216           Add GAP-flag support.
6217
6218 2007-11-24  Julien MOUTTE  <julien@moutte.net>
6219
6220         * tests/examples/seek/seek.c: (main): Increase the range of the
6221         rate selector as I would like to test QOS behavior at higher
6222         forward and reverse playback speed like say 64x.
6223
6224 2007-11-23  Sebastian Dröge  <slomo@circular-chaos.org>
6225
6226         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
6227         (audioresample_query), (audioresample_query_type),
6228         (gst_audioresample_set_property):
6229         Implement latency query.
6230
6231 2007-11-21  Wim Taymans  <wim.taymans@gmail.com>
6232
6233         * gst-libs/gst/audio/gstbaseaudiosink.c:
6234         (gst_base_audio_sink_drain):
6235         Our EOS time contains the base_time, _wait_eos() expects a running_time
6236         so we have to subtract the base_time again before calling the function.
6237         This fixes an EOS regression where the base_time was added twice and EOS
6238         took longer and longer in certain situations.
6239         Fixes #498767.
6240
6241 2007-11-21  Wim Taymans  <wim.taymans@gmail.com>
6242
6243         * docs/libs/gst-plugins-base-libs-sections.txt:
6244         * gst-libs/gst/audio/gstbaseaudiosink.c: (slave_method_get_type),
6245         (gst_base_audio_sink_set_provide_clock),
6246         (gst_base_audio_sink_get_provide_clock),
6247         (gst_base_audio_sink_set_slave_method),
6248         (gst_base_audio_sink_get_slave_method),
6249         (gst_base_audio_sink_set_property),
6250         (gst_base_audio_sink_get_property), (gst_base_audio_sink_drain),
6251         (gst_base_audio_sink_none_slaving),
6252         (gst_base_audio_sink_handle_slaving):
6253         * gst-libs/gst/audio/gstbaseaudiosink.h:
6254         Expose methods for some object properties so that subclasses can more
6255         easily configure them.
6256         Added slave method none, that completely disables slaving to the
6257         internal clock.
6258         API: gst_base_audio_sink_set_provide_clock()
6259         API: gst_base_audio_sink_get_provide_clock()
6260         API: gst_base_audio_sink_set_slave_method()
6261         API: gst_base_audio_sink_get_slave_method()
6262
6263         * gst-libs/gst/audio/gstbaseaudiosrc.c:
6264         (gst_base_audio_src_set_provide_clock),
6265         (gst_base_audio_src_get_provide_clock),
6266         (gst_base_audio_src_set_property),
6267         (gst_base_audio_src_get_property), (gst_base_audio_src_create):
6268         * gst-libs/gst/audio/gstbaseaudiosrc.h:
6269         Expose methods for some object properties so that subclasses can more
6270         easily configure them.
6271         API: gst_base_audio_src_set_provide_clock()
6272         API: gst_base_audio_src_get_provide_clock()
6273
6274 2007-11-20  Wim Taymans  <wim.taymans@gmail.com>
6275
6276         Patch by: Joe Peterson <lavajoe at gentoo dot org>
6277
6278         * gst-libs/gst/sdp/gstsdpmessage.c:
6279         Fix compilation on FreeBSD (Gentoo). Fixes #498228.
6280
6281 2007-11-19  Sebastian Dröge  <slomo@circular-chaos.org>
6282
6283         * tests/check/libs/fft.c: (GST_START_TEST):
6284         Fix scaling to really have dB instead of something else.
6285
6286 2007-11-19  Julien MOUTTE  <julien@moutte.net>
6287
6288         * tests/examples/seek/seek.c: (main): There's a nice macro to check
6289         GTK version, use it.
6290
6291 2007-11-19  Julien MOUTTE  <julien@moutte.net>
6292
6293         * tests/examples/seek/seek.c: (main): Try to support stable version
6294         of GTK.
6295
6296 2007-11-17  Stefan Kost  <ensonic@users.sf.net>
6297
6298         * gst/playback/README:
6299         * gst/playback/test7.c:
6300           Fix the build + little README update.
6301
6302 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
6303
6304         * tests/examples/seek/seek.c: (make_playerbin2_pipeline), (main):
6305         Add playbin2 seek pipeline.
6306
6307 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
6308
6309         * gst/playback/Makefile.am:
6310         * gst/playback/gstplayback.c: (plugin_init):
6311         * gst/playback/test7.c: (update_scale), (warning_cb), (error_cb),
6312         (eos_cb), (about_to_finish_cb), (main):
6313         Add playbin2.
6314         Added gapless playback example.
6315
6316         * gst/playback/gstplaybasebin.c:
6317         * gst/playback/gstplaybasebin.h:
6318         * gst/playback/gstplaybin.c: (gst_play_bin_plugin_init):
6319         * gst/playback/gstqueue2.c:
6320         * gst/playback/test.c:
6321         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_class_init),
6322         (pad_removed_cb):
6323         * gst/playback/gststreaminfo.h:
6324         Change email.
6325
6326         * gst/playback/gstplaybin2.c: (gst_play_bin_get_type),
6327         (gst_play_bin_class_init), (init_group), (gst_play_bin_init),
6328         (gst_play_bin_dispose), (gst_play_bin_set_uri),
6329         (gst_play_bin_set_suburi), (gst_play_bin_set_property),
6330         (gst_play_bin_get_property), (gst_play_bin_handle_message),
6331         (pad_added_cb), (pad_removed_cb), (no_more_pads_cb), (perform_eos),
6332         (drained_cb), (unlink_group), (activate_group),
6333         (setup_next_source), (gst_play_bin_change_state),
6334         (gst_play_bin2_plugin_init):
6335         Added raw first version of playbin2. Does chained oggs and gapless
6336         playback fine. No support for raw sinks yet. No visualisations or
6337         subtitles yet.
6338
6339         * gst/playback/gstplaysink.c: (gst_play_sink_get_type),
6340         (gst_play_sink_class_init), (gst_play_sink_init),
6341         (gst_play_sink_dispose), (gst_play_sink_vis_unblocked),
6342         (gst_play_sink_vis_blocked), (gst_play_sink_set_video_sink),
6343         (gst_play_sink_set_audio_sink), (gst_play_sink_set_vis_plugin),
6344         (gst_play_sink_set_property), (gst_play_sink_get_property),
6345         (post_missing_element_message), (free_chain), (add_chain),
6346         (activate_chain), (gen_video_chain), (gen_text_element),
6347         (gen_audio_chain), (gen_vis_element), (gst_play_sink_get_mode),
6348         (gst_play_sink_set_mode), (gst_play_sink_request_pad),
6349         (gst_play_sink_release_pad), (gst_play_sink_send_event_to_sink),
6350         (gst_play_sink_send_event), (gst_play_sink_change_state):
6351         * gst/playback/gstplaysink.h:
6352         Added Element that abstracts the sinks and their pipelines for playbin2.
6353
6354 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
6355
6356         * gst/playback/gststreamselector.c: (gst_selector_pad_get_type),
6357         (gst_selector_pad_class_init), (gst_selector_pad_init),
6358         (gst_selector_pad_finalize), (gst_selector_pad_reset),
6359         (gst_selector_pad_get_linked_pads), (gst_selector_pad_event),
6360         (gst_selector_pad_getcaps), (gst_selector_pad_bufferalloc),
6361         (gst_selector_pad_chain), (gst_stream_selector_get_type),
6362         (gst_stream_selector_base_init), (gst_stream_selector_class_init),
6363         (gst_stream_selector_init), (gst_stream_selector_set_property),
6364         (gst_stream_selector_get_linked_pad),
6365         (gst_stream_selector_getcaps),
6366         (gst_stream_selector_is_active_sinkpad),
6367         (gst_stream_selector_activate_sinkpad),
6368         (gst_stream_selector_get_linked_pads),
6369         (gst_stream_selector_request_new_pad),
6370         (gst_stream_selector_release_pad):
6371         * gst/playback/gststreamselector.h:
6372         Improve streamselector, make it select and unselect the current pad more
6373         intelligently. 
6374         Subclass GstPad for the sinkpads of the selector.
6375         Handle segments more correctly.
6376         Fix caps negotiation.
6377         Implement release_pad.
6378
6379 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
6380
6381         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init),
6382         (gst_decode_group_check_if_drained), (source_pad_event_probe),
6383         (remove_fakesink):
6384         Add drained signal fired when decodebin finishes decoding the data.
6385         Remove deprecated STATE_DIRTY message.
6386
6387         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_class_init),
6388         (unknown_type_cb), (new_decoded_pad_cb), (pad_removed_cb),
6389         (analyse_source), (proxy_drained_signal), (make_decoder),
6390         (source_new_pad), (value_list_append_structure_list),
6391         (handle_redirect_message), (handle_message):
6392         Proxy the new drained signal.
6393         Handle pad removed from decodebin.
6394         Handle redirect messages by sorting multiple redirections based on the
6395         connection speed.
6396
6397 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
6398
6399         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
6400
6401         * gst-libs/gst/rtsp/gstrtspmessage.c: (gst_rtsp_message_unset):
6402         Fix leaking headers. Fixes #496761.
6403
6404 2007-11-16  Wim Taymans  <wim.taymans@gmail.com>
6405
6406         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
6407
6408         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
6409         (gst_ximagesink_change_state):
6410         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get):
6411         Don't leak the PAR on errors. Fixes #496731.
6412
6413 2007-11-16  Tim-Philipp Müller  <tim at centricular dot net>
6414
6415         * gst-libs/gst/tag/gstid3tag.c: (user_tag_matches),
6416           (gst_tag_from_id3_user_tag):
6417           Add mapping for audio cd discid tags, so we can extract
6418           them from tags as well (see #347848). Also compare identifiers
6419           in ID3v2 TXXX frames in a case-insensitive way to increase
6420           compatibility when reading tags (discid vs. DiscID vs. DiscId).
6421
6422 2007-11-16  Jan Schmidt  <jan.schmidt@sun.com>
6423
6424         * gst-plugins-base.doap:
6425         Oops, fix the release name.
6426
6427 2007-11-16  Jan Schmidt  <jan.schmidt@sun.com>
6428
6429         * gst-plugins-base.doap:
6430         Add 0.10.15 release
6431
6432 2007-11-16  Jan Schmidt  <jan.schmidt@sun.com>
6433
6434         * configure.ac:
6435         Back to CVS
6436
6437 === release 0.10.15 ===
6438
6439 2007-11-15  Jan Schmidt <jan.schmidt@sun.com>
6440
6441         * configure.ac:
6442           releasing 0.10.15, "No need to argue"
6443
6444 2007-11-15  Jan Schmidt  <jan.schmidt@sun.com>
6445
6446         * win32/vs6/libgstfft.dsp:
6447         Convert line endings to DOS.
6448
6449 2007-11-15  Sebastien Moutte <sebastien@moutte.net>
6450
6451         * win32/vs6/gst_plugins_base.dsw:
6452         * win32/vs6/libgstfft.dsp:
6453         * win32/MANIFEST:
6454         Add a project file for fft plugin and remove socket
6455         based plugin which don't build from the workspace.
6456         * win32/vs6/libgstaudio.dsp:
6457         * win32/vs6/libgstrtp.dsp:
6458         * win32/vs6/libgsttag.dsp:
6459         Convert line endings back to DOS.
6460         Fixes #496724
6461
6462 2007-11-14  Jan Schmidt  <jan.schmidt@sun.com>
6463
6464         * win32/vs6/libgstinterfaces.dsp:
6465         * win32/vs6/libgstrtsp.dsp:
6466         Convert line endings back to DOS
6467
6468 2007-11-14  Jan Schmidt  <jan.schmidt@sun.com>
6469
6470         * gst-libs/gst/fft/kiss_fft_f32.h:
6471         * gst-libs/gst/fft/kiss_fft_f64.h:
6472         * gst-libs/gst/fft/kiss_fft_s16.h:
6473         * gst-libs/gst/fft/kiss_fft_s32.h:
6474         Don't include malloc.h which doesn't exist on Mac OSX.
6475         Instead, pull in glib.h and use g_malloc/g_free for 
6476         consistency. Fixes: #496548
6477
6478 2007-11-09  Stefan Kost  <ensonic@users.sf.net>
6479
6480         * gst/playback/gstdecodebin2.c:
6481           Dont leak ghostpad. Fixes #475451.
6482
6483 2007-11-09  Wim Taymans  <wim.taymans@gmail.com>
6484
6485         * docs/design/design-decodebin.txt:
6486         * gst/playback/gstdecodebin2.c: (analyze_new_pad):
6487         Update some more docs and comments.
6488
6489 2007-11-06  Tim-Philipp Müller  <tim at centricular dot net>
6490
6491         Patch by: Sebastien Moutte  <sebastien moutte net>
6492
6493         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_ntp_to_unix),
6494           (gst_rtcp_unix_to_ntp):
6495         * gst-libs/gst/rtp/gstrtppayloads.c: (gst_rtp_payload_info_for_name):
6496           Fix some C99-isms and and a missing function that some versions of
6497           MSVC don't like too much (#494346).
6498
6499         * win32/vs6/gst_plugins_base.dsw:
6500         * win32/vs6/libgstaudio.dsp:
6501         * win32/vs6/libgstrtp.dsp:
6502         * win32/vs6/libgsttag.dsp:
6503           Update vs6 projects files (#494346).
6504
6505 2007-11-06  Tim-Philipp Müller  <tim at centricular dot net>
6506
6507         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
6508
6509         * win32/common/libgstaudio.def:
6510         * win32/common/libgstcdda.def:
6511         * win32/common/libgstinterfaces.def:
6512         * win32/common/libgstnetbuffer.def:
6513         * win32/common/libgstpbutils.def:
6514         * win32/common/libgstrtp.def:
6515         * win32/common/libgstrtsp.def:
6516         * win32/common/libgsttag.def:
6517         * win32/common/libgstvideo.def:
6518           More missing symbols to export (fixes #493986).
6519
6520 2007-11-06  Sebastian Dröge  <slomo@circular-chaos.org>
6521
6522         * docs/libs/gst-plugins-base-libs-sections.txt:
6523         * gst-libs/gst/fft/gstfftf32.c:
6524         * gst-libs/gst/fft/gstfftf32.h:
6525         * gst-libs/gst/fft/gstfftf64.c:
6526         * gst-libs/gst/fft/gstfftf64.h:
6527         * gst-libs/gst/fft/gstffts16.c:
6528         * gst-libs/gst/fft/gstffts16.h:
6529         * gst-libs/gst/fft/gstffts32.c:
6530         * gst-libs/gst/fft/gstffts32.h:
6531         * tests/check/libs/fft.c: (GST_START_TEST):
6532         Remove the magnitude and phase calculation functions as these have
6533         very special use cases and can't even be used for the spectrum
6534         element. Also adjust the docs to mention some properties of the used
6535         FFT implemention, i.e. how the values are scaled. Fixes #492098.
6536
6537 2007-11-06  Tim-Philipp Müller  <tim at centricular dot net>
6538
6539         * gst/playback/gstplaybasebin.c: (queue_threshold_reached),
6540           (finish_source):
6541           Avoid crash when there are external subtitles (fixes #491722).
6542
6543 2007-11-03  Tim-Philipp Müller  <tim at centricular dot net>
6544
6545         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
6546         * ext/alsa/gstalsasrc.c: (gst_alsasrc_open):
6547           'Could not open resource for writing' is not an acceptable
6548           error message when we can't open the audio device (see #492334),
6549           even less so when we're trying to open it to record something.
6550
6551 2007-11-02  Tim-Philipp Müller  <tim at centricular dot net>
6552
6553         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
6554
6555         * win32/common/libgstrtp.def:
6556           Add some more missing symbols (#492813).
6557
6558 2007-11-02  Tim-Philipp Müller  <tim at centricular dot net>
6559
6560         Patch by: Thijs Vermeir <thijsvermeir@gmail.com>
6561
6562         * tests/check/elements/audioconvert.c: (verify_convert):
6563           Add check to make sure that the out caps have a channel layout
6564           set on them where they should have one.
6565
6566 2007-11-01  Tim-Philipp Müller  <tim at centricular dot net>
6567
6568         Patch by: Vincent Torri <vtorri at univ-evry dot fr>
6569
6570         * gst-libs/gst/fft/kiss_fft_s16.h: (KISS_FFT_S16_MALLOC):
6571         * gst-libs/gst/fft/kiss_fft_s32.h: (KISS_FFT_S32_MALLOC):
6572           Include our own _stdint.h instead of sys/types.h, makes MingW happy
6573           (#492306).
6574
6575         * gst-libs/gst/rtsp/gstrtspconnection.c: (gst_rtsp_connection_create):
6576           Use _pipe directly, GLib doesn't have a pipe() macro any longer
6577           (it disappeared in GLib 2.14.0) (#492306).
6578
6579         * gst-libs/gst/sdp/Makefile.am:
6580         * gst-libs/gst/sdp/gstsdpmessage.c:
6581           Fix includes and LIBS for win32/Mingw (#492306).
6582
6583         * tests/examples/dynamic/addstream.c (pause_play_stream):
6584           Use more portable g_usleep() instead of sleep() (#492306).
6585
6586 2007-11-01  Tim-Philipp Müller  <tim at centricular dot net>
6587
6588         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
6589
6590         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
6591           (gst_ring_buffer_parse_caps):
6592           Return NULL instead of an enum that happens to be 0, fixes warning
6593           on MSVC (#492114).
6594
6595         * gst-libs/gst/audio/gstringbuffer.h:
6596           No trailing commas in enum list (for gcc-2.9x).
6597
6598         * gst/videotestsrc/videotestsrc.c: (random_char):
6599           Make information loss explicit instead of implicitly truncating to
6600           eight bits via the return value.  Fixes runtime error on MSVC when
6601           using the debug CRT (#492114).
6602
6603         * win32/common/config.h.in:
6604           Fix a bunch of '#undef FOO bar', which MSVC doesn't like (#492114).
6605
6606         * win32/common/libgstinterfaces.def:
6607         * win32/common/libgstrtp.def:
6608           Export a few more symbols (#492114).
6609
6610 2007-11-01  Stefan Kost  <ensonic@users.sf.net>
6611
6612         * gst-libs/gst/audio/audio.c:
6613         * gst-libs/gst/audio/audio.h:
6614           Readd the deprecation guards, but preserve compilability.
6615
6616 2007-10-31  Tim-Philipp Müller  <tim at centricular dot net>
6617
6618         * gst/audioconvert/gstaudioconvert.c: (find_suitable_channel_layout),
6619           (gst_audio_convert_fixate_channels), (gst_audio_convert_fixate_caps):
6620           Preserve channel layout when fixating the number of channels in the
6621           output caps, or make sure there's a suitable channel position layout
6622           set on the caps if required. Fixes #430677.
6623
6624 2007-10-31  Tim-Philipp Müller  <tim at centricular dot net>
6625
6626         * tests/check/elements/decodebin.c: (test_text_plain_streams):
6627           Make sure the pipeline really operates in push mode as it should
6628           in this case.
6629
6630 2007-10-31  Tim-Philipp Müller  <tim at centricular dot net>
6631
6632         * gst-libs/gst/audio/audio.h:
6633           Don't guard deprecated enum with #ifndef DISABLE_DEPRECATED, or
6634           compilation with DISABLE_DEPRECATED and without REMOVE_DEPRECATED
6635           (ie. normal cvs builds) will fail.
6636
6637 2007-10-31  Stefan Kost  <ensonic@users.sf.net>
6638
6639         * docs/libs/Makefile.am:
6640         * gst-libs/gst/audio/audio.c:
6641         * gst-libs/gst/audio/audio.h:
6642         * gst-libs/gst/interfaces/mixer.c:
6643           tell gtk-doc about the deprecation guard. Apply more doc fixes.
6644
6645 2007-10-31  Tim-Philipp Müller  <tim at centricular dot net>
6646
6647         * tests/check/libs/audio.c: (init_value_to_channel_layout),
6648           (test_channel_layout_value_intersect), (audio_suite):
6649           Add simple unit test to make sure GstValue intersection
6650           of channel layouts works the way I think it does.
6651
6652 2007-10-30  Stefan Kost  <ensonic@users.sf.net>
6653
6654         * docs/libs/gst-plugins-base-libs-sections.txt:
6655         * gst-libs/gst/audio/gstaudiofilter.h:
6656         * gst-libs/gst/interfaces/mixer.h:
6657         * gst-libs/gst/rtp/gstbasertpdepayload.c:
6658         * gst-libs/gst/rtp/gstbasertpdepayload.h:
6659         * gst-libs/gst/sdp/gstsdpmessage.c:
6660           Fix the docs according to what gtk-doc complained about.
6661
6662 2007-10-30  Stefan Kost  <ensonic@users.sf.net>
6663
6664         * tests/icles/stress-playbin.c:
6665           Fix the build.
6666
6667 2007-10-30  Tim-Philipp Müller  <tim at centricular dot net>
6668
6669         * gst/playback/gstdecodebin.c: (close_pad_link), (type_found):
6670         * gst/playback/gstdecodebin2.c: (analyze_new_pad):
6671           Post nice/more useful error message if we don't have a decoder for
6672           the primary type.
6673
6674 2007-10-30  Wim Taymans  <wim.taymans@gmail.com>
6675
6676         * gst/playback/gstdecodebin2.c: (gst_decode_group_expose):
6677         Be a bit more useful, unblock the pads after we fired the no-more-pads
6678         signal so that we can use the signal to inspect and connect all pads
6679         without having to keep extra state outside of decodebin.
6680
6681 2007-10-30  Wim Taymans  <wim.taymans@gmail.com>
6682
6683         * gst/playback/gsturidecodebin.c:
6684         (gst_uri_decode_bin_autoplug_continue),
6685         (gst_uri_decode_bin_class_init), (no_more_pads_full):
6686         Implement default signal handler so that we return TRUE when nothing is
6687         connected.
6688
6689 2007-10-28  Sebastian Dröge  <slomo@circular-chaos.org>
6690
6691         * gst-libs/gst/riff/riff-media.c:
6692         (gst_riff_wavext_add_channel_layout),
6693         (gst_riff_wave_add_default_channel_layout),
6694         (gst_riff_wavext_get_default_channel_mask),
6695         (gst_riff_create_audio_caps):
6696         Use the ALSA channel layout as default for wav files without channel
6697         layout information. This fixes playback of chan-id.wav on 5.1 systems
6698         for example. Also refactor the channel layout setting a bit and add
6699         more default channel orders. Fixes #489010.
6700
6701 2007-10-26  Tim-Philipp Müller  <tim at centricular dot net>
6702
6703         * tests/check/libs/tag.c: (test_musicbrainz_tag_registration):
6704           GST_TAG_MUSICBRAINZ_SORTNAME is deprecated and we compile with
6705           -DGST_DISABLE_DEPRECATED, so use new GST_TAG_ARTIST_SORTNAME
6706           instead.
6707
6708 2007-10-25  Wim Taymans  <wim.taymans@gmail.com>
6709
6710         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init),
6711         (gst_decode_bin_dispose), (gst_decode_bin_set_caps),
6712         (gst_decode_bin_set_subs_encoding),
6713         (gst_decode_bin_get_subs_encoding), (gst_decode_bin_set_property),
6714         (gst_decode_bin_get_property), (analyze_new_pad):
6715         Move subtitle encoding property to decodebin2 so that it can set the
6716         property value on all elements that it autoplugs and that require it.
6717         Make caps refcounting more consistent in get/set.
6718
6719         * gst/playback/gsturidecodebin.c: (_gst_boolean_accumulator),
6720         (gst_uri_decode_bin_class_init), (gst_uri_decode_bin_init),
6721         (gst_uri_decode_bin_finalize), (gst_uri_decode_bin_set_property),
6722         (gst_uri_decode_bin_get_property), (proxy_unknown_type_signal),
6723         (proxy_autoplug_continue_signal),
6724         (proxy_autoplug_factories_signal), (proxy_autoplug_select_signal),
6725         (make_decoder):
6726         Proxy properties and relevant signals from the internal decodebin.
6727         Make properties MT safe.
6728
6729 2007-10-25  Tim-Philipp Müller  <tim at centricular dot net>
6730
6731         * gst-libs/gst/tag/tag.h: (GST_TAG_MUSICBRAINZ_SORTNAME):
6732         * gst-libs/gst/tag/tags.c:
6733           Deprecate GST_TAG_MUSICBRAINZ_SORTNAME, replaced by the newly-added
6734           GST_TAG_ARTIST_SORTNAME (in an API and ABI compatible way).
6735
6736         * gst-libs/gst/tag/gstid3tag.c: (tag_matches):
6737           Map ID3v2 TSOP, TSOA and TSOT frames to new SORTNAME tags (#414539).
6738
6739         * gst-libs/gst/tag/gstvorbistag.c: (tag_matches),
6740           (gst_tag_to_vorbis_comments):
6741           Map new SORTNAME tags (these tags aren't even semi-official, so I'm
6742           just mapping everything I found in the wild) (#414539).
6743
6744 2007-10-24  Wim Taymans  <wim.taymans@gmail.com>
6745
6746         Inspired by patch of: René Stadler <mail at renestadler dot de>
6747
6748         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init),
6749         (gst_decode_bin_autoplug_continue),
6750         (gst_decode_bin_autoplug_factories),
6751         (gst_decode_bin_autoplug_select), (analyze_new_pad), (connect_pad),
6752         (find_compatibles):
6753         * gst/playback/gstplay-marshal.list:
6754         Remove the autoplug-sort signal and replace it with a binding friendly
6755         autoplug-select signal.
6756         Add an autoplug-factories signal that can be used to generate a list of
6757         factories to try to autoplug.
6758         Add the GstPad to the autoplugging signal args as it might be needed to
6759         make a good factory selection.
6760         Fix up the marshallers for this. Fixes #407282.
6761
6762 2007-10-23  Tim-Philipp Müller  <tim at centricular dot net>
6763
6764         * gst-libs/gst/tag/gsttagdemux.c:
6765           Don't abort with an assertion if we receive a seek event with
6766           a start type of NONE (see launchpad bug #155878).
6767
6768 2007-10-22  Wim Taymans  <wim.taymans@gmail.com>
6769
6770         * sys/ximage/ximagesink.c: (gst_ximagesink_event_thread),
6771         (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
6772         (gst_ximagesink_change_state), (gst_ximagesink_reset):
6773         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_event_thread),
6774         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_xcontext_clear),
6775         (gst_xvimagesink_change_state), (gst_xvimagesink_reset):
6776         Make sure that before we clean up the X resources, we shutdown and join
6777         the event thread.
6778         Also make sure the event thread does not shut down immediatly after
6779         startup because the running variable is not yet correctly set.
6780         Fixes #378770. 
6781
6782 2007-10-16  Wim Taymans  <wim.taymans@gmail.com>
6783
6784         * gst/playback/gstdecodebin.c: (new_pad), (type_found):
6785         Make the window for a race in typefind and shutting down smaller until
6786         we figure out the right locking here. Avoids #485753 usually.
6787
6788         * gst/playback/gstdecodebin2.c: (type_found), (pad_added_group_cb):
6789         Remove unneeded lock causing a race in typefind and shutting down.
6790         Fixes #485753.
6791
6792         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
6793         Also remove sinks when going to NULL because we might not complete the
6794         state change to PAUSED, causing the PAUSED->READY state change not to
6795         happen.
6796
6797 2007-10-16  Wim Taymans  <wim.taymans@gmail.com>
6798
6799         * gst-libs/gst/audio/gstbaseaudiosink.c:
6800         (gst_base_audio_sink_drain), (gst_base_audio_sink_change_state):
6801         Also explicitly release the ringbuffer when going to NULL because it
6802         is required in the setcaps function, before the state change to PAUSED
6803         completes.
6804
6805 2007-10-16  Tim-Philipp Müller  <tim at centricular dot net>
6806
6807         * tests/icles/.cvsignore:
6808         * tests/icles/Makefile.am:
6809         * tests/icles/stress-playbin.c:
6810           Does what it says on the tin.
6811
6812 2007-10-15  Wim Taymans  <wim.taymans@gmail.com>
6813
6814         * gst/playback/gstqueue2.c: (gst_queue_init), (gst_queue_push_one):
6815         Fix queue negotiation. See #486758.
6816
6817 2007-10-12  Jan Schmidt  <Jan.Schmidt@sun.com>
6818
6819         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
6820         (gst_xvimagesink_xwindow_new),
6821         (gst_xvimagesink_update_colorbalance),
6822         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_xcontext_get):
6823
6824         Fix handling of some of the X atoms. If the last parameter is True,
6825         XInternAtom won't create the atom if it doesn't exist, and therefore
6826         might return None. This causes X errors on Xv implementations that
6827         don't provide the colour balance attributes.
6828
6829 2007-10-11  Tim-Philipp Müller  <tim at centricular dot net>
6830
6831         * gst-libs/gst/tag/gstvorbistag.c:
6832         * tests/check/libs/tag.c:
6833           Extract vorbis comment LICENSE tags correctly.
6834
6835 2007-10-11  Tim-Philipp Müller  <tim at centricular dot net>
6836
6837         Patch by: Jason Kivlighn  <jkivlighn gmail com>
6838
6839         * gst-libs/gst/tag/gstid3tag.c:
6840         * tests/check/libs/tag.c:
6841           Map ID3v2 WCOP frame to GST_TAG_COPYRIGHT_URI (#447000).
6842
6843 2007-10-10  Tim-Philipp Müller  <tim at centricular dot net>
6844
6845         * gst-libs/gst/tag/gsttagdemux.c:
6846           Don't error out when a buggy downstream element doesn't
6847           handle the newsegment event we send properly (especially
6848           not without posting a meaningful error message on the
6849           bus). See bug #471370 and launchpad bug #136264.
6850
6851 2007-10-10  Wim Taymans  <wim.taymans@gmail.com>
6852
6853         * gst-libs/gst/audio/gstbaseaudiosink.c:
6854         (gst_base_audio_sink_drain):
6855         Use new basesink method to make our EOS drain interruptable.
6856
6857 2007-10-10  Jan Schmidt  <Jan.Schmidt@sun.com>
6858
6859         * gst-libs/gst/rtp/gstrtppayloads.c:
6860         Fix silly search-replace oversight.
6861
6862 2007-10-09  Wim Taymans  <wim.taymans@gmail.com>
6863
6864         Patch by: Laurent Glayal <spglegle at yahoo dot fr>
6865
6866         * gst-libs/gst/rtp/gstbasertppayload.c: (copy_fixed),
6867         (gst_basertppayload_set_outcaps):
6868         Fix caps memleak. Fixes #484989.
6869
6870
6871 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
6872
6873         * gst-libs/gst/rtp/gstbasertpdepayload.c:
6874         (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain):
6875         Fix debug output.
6876
6877 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
6878
6879         * gst-libs/gst/audio/gstbaseaudiosrc.c:
6880         (gst_base_audio_src_create):
6881         Also handle the case where there is no clock set on the audio source,
6882         like in the unit tests.
6883
6884 2007-10-08  Jan Schmidt  <Jan.Schmidt@sun.com>
6885
6886         * gst-libs/gst/rtp/gstrtppayloads.c:
6887         Use unsigned G_MAXUINT8 instead of -1 to initialise a guint8
6888         to avoid compiler warnings
6889
6890 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
6891
6892         * gst/playback/gstdecodebin.c: (type_found),
6893         (gst_decode_bin_change_state):
6894         * gst/playback/gstdecodebin2.c: (type_found),
6895         (gst_decode_bin_change_state):
6896         Don't disconnect the have_type signal because we never reconnect it
6897         later on. Instead keep a variable to see if we already detected a type.
6898
6899 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
6900
6901         * gst/playback/gstdecodebin.c: (add_fakesink), (type_found):
6902         * gst/playback/gstdecodebin2.c: (gst_decode_bin_init),
6903         (type_found):
6904         Unlink the signal handler when we found the type, we're not going to do
6905         anything sensible with more type_found signals anyway.
6906
6907 2007-10-06  Tim-Philipp Müller  <tim at centricular dot net>
6908
6909         * gst-libs/gst/tag/gsttagdemux.c:
6910           Don't leak caps.
6911
6912 2007-10-06  Tim-Philipp Müller  <tim at centricular dot net>
6913
6914         * gst-libs/gst/tag/Makefile.am:
6915         * gst-libs/gst/tag/gsttagdemux.c:
6916         * gst-libs/gst/tag/gsttagdemux.h:
6917           API: add GstTagDemux base class for simple tag demuxers.
6918
6919         * docs/libs/gst-plugins-base-libs-docs.sgml:
6920         * docs/libs/gst-plugins-base-libs-sections.txt:
6921           Add GstTagDemux to docs.
6922
6923 2007-10-05  Sebastian Dröge  <slomo@circular-chaos.org>
6924
6925         * gst-libs/gst/rtp/gstrtpbuffer.c:
6926         (gst_rtp_buffer_get_payload_subbuffer):
6927         Fix bug introduced with last commit which inverted the logic and
6928         caused all buffers to be dropped. Fixes #483620.
6929         Thanks to Laurent Glayal <spglegle at yahoo dot fr> for noticing.
6930
6931 2007-10-04  Stefan Kost  <ensonic@users.sf.net>
6932
6933         * gst-libs/gst/rtp/gstrtpbuffer.c:
6934           Replace g_return_if_val (as it could be disabled), with regular return
6935           and warning.
6936
6937 2007-10-03  Stefan Kost  <ensonic@users.sf.net>
6938
6939         * tests/check/pipelines/simple-launch-lines.c:
6940           Print message name and not just number.
6941
6942 2007-10-02  Wim Taymans  <wim.taymans@gmail.com>
6943
6944         * gst-libs/gst/audio/gstbaseaudiosink.c:
6945         (gst_base_audio_sink_async_play):
6946         When slaved to the clock, don't try to align a sample with the previous
6947         one when going to PLAYING again.
6948
6949 2007-10-02  Stefan Kost  <ensonic@users.sf.net>
6950
6951         * tests/examples/snapshot/snapshot.c:
6952           Fix the build.
6953
6954 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
6955
6956         * gst-libs/gst/sdp/gstsdpmessage.h:
6957         Add RFC 3556 bandwidth modifiers.
6958
6959 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
6960
6961         * docs/libs/gst-plugins-base-libs-docs.sgml:
6962         * docs/libs/gst-plugins-base-libs-sections.txt:
6963         * gst-libs/gst/rtp/gstrtppayloads.c:
6964         Update documentation.
6965
6966 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
6967
6968         * gst-libs/gst/rtp/Makefile.am:
6969         * gst-libs/gst/rtp/gstrtppayloads.c: (gst_rtp_payload_info_for_pt),
6970         (gst_rtp_payload_info_for_name):
6971         * gst-libs/gst/rtp/gstrtppayloads.h:
6972         Added new file and header to deal with payload info.
6973
6974         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data),
6975         (gst_rtp_buffer_default_clock_rate):
6976         * gst-libs/gst/rtp/gstrtpbuffer.h:
6977         Payload specific stuff is move to new headers.
6978         Implement _default_clock rate using the new payload function.
6979
6980         * gst-libs/gst/sdp/gstsdpmessage.c: (is_multicast_address),
6981         (gst_sdp_parse_line):
6982         * gst-libs/gst/sdp/gstsdpmessage.h:
6983         Add some more comments.
6984
6985 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
6986
6987         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
6988         (sdp_check_header), (sdp_type_find), (plugin_init):
6989         Add typefind function for application/sdp.
6990         Remove some old dirac typefind code that was ifdeffed out.
6991
6992 2007-09-29  Sebastien Moutte <sebastien@moutte.net>
6993
6994         * win32/common/libgstaudio.def:
6995         Add new exported functions.
6996         * win32/vs6/grammar.dsp:
6997         Add autogeneration and copy of some autegenerated files from win32/common
6998         for rtsp library.
6999         * win32/vs6/libgstaudioconvert.dsp:
7000         Add gstaudioquantize.c to the build.
7001         * win32/vs6/libgstinterfaces.dsp:
7002         Add videoorientation.c to the build.
7003         * win32/vs6/libgstriff.dsp:
7004         Add libgsttag to the link libraries list.
7005         * win32/vs6/libgstvolume.dsp:
7006         Add liboil to the link.
7007         * win32/vs6/gst_plugins_base.dsw:
7008         * win32/vs6/libgstrtsp.dsp:
7009         * win32/common/libgstrtsp.def:
7010         Add files to build libgstrtsp library.
7011         
7012 2007-09-26  Wim Taymans  <wim.taymans@gmail.com>
7013
7014         * tests/examples/snapshot/snapshot.c: (main):
7015         Print error when pipeline failed to construct.
7016
7017 2007-09-25  Tim-Philipp Müller  <tim at centricular dot net>
7018
7019         * configure.ac:
7020         * gst-libs/gst/tag/gstid3tag.c:
7021         * gst-libs/gst/tag/gstvorbistag.c:
7022           Add mappings for the new GST_TAG_COMPOSER for vorbis comments
7023           and ID3v2 tags.
7024
7025 2007-09-25  Tim-Philipp Müller  <tim at centricular dot net>
7026
7027         * gst-libs/gst/floatcast/floatcast.h:
7028           Don't include config.h in an installed public header, this
7029           might break compilation of applications that don't have such
7030           a header and doesn't necessarily do what it's supposed to do
7031           anyway (ie. check for the lrint/lrintf defines) (#442065).
7032           Add docs for the various macros and document how this header
7033           has to be used (link against libm, etc.); add a few FIXMEs;
7034           include math.h for non-c99 code path.  Based on patch by
7035           Jan Schmidt.
7036           
7037 2007-09-25  Sebastian Dröge  <slomo@circular-chaos.org>
7038
7039         * configure.ac:
7040         Use AG_GST_ARG_WITH_PLUGINS and AG_GST_ARG_ENABLE_EXTERNAL instead
7041         of duplicating these macros in configure.ac.
7042
7043 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
7044
7045         * po/hu.po:
7046         * po/sv.po:
7047         * po/uk.po:
7048           Updated translations to 0.10.14
7049
7050 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
7051
7052         translated by: Jakub Bogusz <qboosh@pld-linux.org>
7053
7054         * po/pl.po:
7055           Added Polish translation.
7056
7057 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
7058
7059         translated by: Ilkka Tuohela <hile@iki.fi>
7060
7061         * po/fi.po:
7062           Added Finnish translation.
7063
7064 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
7065
7066         translated by: Jorge González González <aloriel@gmail.com>
7067
7068         * po/es.po:
7069           Added Spanish translation.
7070
7071 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
7072
7073         translated by: Mogens Jaeger <mogens@jaeger.tf>
7074
7075         * po/da.po:
7076           Added Danish translation.
7077
7078 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
7079
7080         translated by: Funda Wang <fundawang@linux.net.cn>
7081
7082         * po/zh_CN.po:
7083           Added Chinese (simplified) translation.
7084
7085 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
7086
7087         translated by: Alexander Shopov <ash@contact.bg>
7088
7089         * po/bg.po:
7090           Added Bulgarian translation.
7091
7092 2007-09-21  Wim Taymans  <wim.taymans@gmail.com>
7093
7094         * gst/playback/gstqueue2.c: (gst_queue_push_one):
7095         Fix compilation wrt printf arguments.
7096
7097 2007-09-20  Wim Taymans  <wim.taymans@gmail.com>
7098
7099         * configure.ac:
7100         * tests/examples/Makefile.am:
7101         * tests/examples/snapshot/.cvsignore:
7102         * tests/examples/snapshot/Makefile.am:
7103         * tests/examples/snapshot/snapshot.c: (main):
7104         Add simple snapshot example program using appsink.
7105
7106 2007-09-20  Stefan Kost  <ensonic@users.sf.net>
7107
7108         * tests/check/generic/states.c:
7109           Improved state change unit test.
7110
7111 2007-09-19  Stefan Kost  <ensonic@users.sf.net>
7112
7113         * docs/plugins/.cvsignore:
7114         * tests/check/.cvsignore:
7115           Ignore registries in any format.
7116
7117 2007-09-19  Wim Taymans  <wim.taymans@gmail.com>
7118
7119         * gst-libs/gst/rtp/gstbasertpdepayload.c:
7120         (gst_base_rtp_depayload_chain),
7121         (gst_base_rtp_depayload_set_gst_timestamp):
7122         Only copy timestamp on outgoing packets if the depayloader did not set
7123         one.
7124         Also copy duration on outgoing packets.
7125
7126 2007-09-19  Wim Taymans  <wim.taymans@gmail.com>
7127
7128         * gst-libs/gst/rtp/gstbasertppayload.c: (copy_fixed),
7129         (gst_basertppayload_set_outcaps):
7130         Fix compilation because of missing %d in printf.
7131         When fixating caps, fixate what we can and throw away all remaining
7132         unfixed caps, subclasses should do something smart if they need to.
7133
7134 2007-09-19  Stefan Kost  <ensonic@users.sf.net>
7135
7136         * ext/gnomevfs/gstgnomevfssrc.c:
7137           Improve debug logs a bit and be more verbose if things go wrong.
7138
7139 2007-09-17  Jan Schmidt  <Jan.Schmidt@sun.com>
7140
7141         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
7142         (gst_text_overlay_set_property):
7143         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
7144         * gst-libs/gst/audio/gstbaseaudiosink.c:
7145         (gst_base_audio_sink_render):
7146         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_ntp_to_unix),
7147         (gst_rtcp_unix_to_ntp):
7148         * gst-libs/gst/rtsp/gstrtspmessage.c: (gst_rtsp_message_get_type):
7149         * gst/playback/gstqueue2.c:
7150         * tests/examples/seek/seek.c: (set_scale):
7151         Fix a bunch of compile warnings shown with Forte.
7152
7153         * gst/audiorate/gstaudiorate.c:
7154         Always pull in config.h before including any system headers.
7155
7156 2007-09-17  Wim Taymans  <wim.taymans@gmail.com>
7157
7158         * gst/playback/gstqueue2.c: (update_buffering),
7159         (gst_queue_locked_flush), (gst_queue_locked_enqueue),
7160         (gst_queue_handle_sink_event), (gst_queue_chain),
7161         (gst_queue_push_one), (gst_queue_sink_activate_push),
7162         (gst_queue_src_activate_push), (gst_queue_src_activate_pull):
7163         Also fix #476514 for queue2.
7164
7165 2007-09-16  Wim Taymans  <wim.taymans@gmail.com>
7166
7167         * gst-libs/gst/rtp/gstbasertpdepayload.c:
7168         (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_setcaps),
7169         (gst_base_rtp_depayload_chain),
7170         (gst_base_rtp_depayload_handle_sink_event),
7171         (gst_base_rtp_depayload_push_full),
7172         (gst_base_rtp_depayload_set_gst_timestamp),
7173         (gst_base_rtp_depayload_change_state):
7174         Remove code to deal with RTP to GST time conversion, we now just copy
7175         the GST timestamp we receive to the outgoing buffers.
7176         Handle segment and flushes correctly.
7177
7178         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
7179         When we have no valid input timestamp, use the previous rtp timestamp on
7180         the outgoing RTP packet instead of the RTP base time.
7181
7182 2007-09-15  David Schleef  <ds@schleef.org>
7183
7184         * ext/alsa/gstalsa.c:
7185         * ext/alsa/gstalsadeviceprobe.c:
7186         * ext/alsa/gstalsamixer.c:
7187         * ext/alsa/gstalsasink.c:
7188         * ext/alsa/gstalsasrc.c:
7189           Change alsa alloca's to malloc to fix warnings on gcc-4.2.
7190
7191 2007-09-15  Wim Taymans  <wim.taymans@gmail.com>
7192
7193         * gst-libs/gst/rtp/gstbasertppayload.c:
7194         (gst_basertppayload_set_outcaps), (gst_basertppayload_push):
7195         Add some debug info when negotiating caps.
7196
7197 2007-09-14  Wim Taymans  <wim.taymans@gmail.com>
7198
7199         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data):
7200         A buffer with an empty payload is also a valid buffer.
7201
7202 2007-09-14  Wim Taymans  <wim.taymans@gmail.com>
7203
7204         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_event),
7205         (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
7206         (gst_basertppayload_change_state):
7207         Make sure we start our RTP timestamp from the random base RTP
7208         timestamp even if the buffer timestamp starts from some random value.
7209
7210 2007-09-14  Wim Taymans  <wim.taymans@gmail.com>
7211
7212         * configure.ac:
7213         * tests/examples/Makefile.am:
7214         * tests/examples/dynamic/.cvsignore:
7215         * tests/examples/dynamic/Makefile.am:
7216         * tests/examples/dynamic/addstream.c: (create_stream),
7217         (pause_play_stream), (message_received), (eos_message_received),
7218         (perform_step), (main):
7219         Add simple exmple app to demonstrate starting and pausing live and
7220         non-live bins in a PLAYING pipeline.
7221
7222 2007-09-14  Julien MOUTTE  <julien@moutte.net>
7223
7224         * gst/typefind/gsttypefindfunctions.c: (plugin_init): Add some
7225         typefind for QCP files (RFC #3625)
7226
7227 2007-09-13  Wim Taymans  <wim.taymans@gmail.com>
7228
7229         * gst-libs/gst/audio/gstbaseaudiosink.c:
7230         (gst_base_audio_sink_init):
7231         Disable pull mode scheduling, we're not ready for it yet and it subtly
7232         breaks a lot of things.
7233
7234 2007-09-12  Tim-Philipp Müller  <tim at centricular dot net>
7235
7236         * tests/check/elements/libvisual.c:
7237           Test all libvisual plugins, not just the first one; this reproduces
7238           bug #450336 quite easily.  Looks like a problem with the 'jess'
7239           visualisation.
7240
7241 2007-09-12  Tim-Philipp Müller  <tim at centricular dot net>
7242
7243         * tests/check/Makefile.am:
7244         * tests/check/elements/.cvsignore:
7245         * tests/check/elements/libvisual.c:
7246           Add basic libvisual test case in an attempt to reproduce bug #450336.
7247           Doesn't reproduce that bug, but some other crasher instead (invalid
7248           free), at least with make elements/libvisual.forever and the bumscope
7249           plugin on x86-64/gutsy. Leaving test disabled for now.
7250
7251 2007-09-11  Wim Taymans  <wim.taymans@gmail.com>
7252
7253         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
7254
7255         * gst-libs/gst/rtsp/gstrtspconnection.c:
7256         (gst_rtsp_connection_read_internal), (gst_rtsp_connection_read),
7257         (read_body), (gst_rtsp_connection_receive):
7258         Make sure we can not cancel in the middle of receiving a message.
7259         Fixes #475731.
7260
7261 2007-09-11  Tim-Philipp Müller  <tim at centricular dot net>
7262
7263         Patch by: Josep Torra Valles <josep@fluendo.com>
7264
7265         * gst/playback/gstplaybasebin.c:
7266           Increase upper limit for audio queue a bit; fixes preroll problem
7267           with playbin and decodebin2 when playing a quicktime trailer with
7268           multichannel audio via http (#464666).
7269
7270 2007-09-10  Wim Taymans  <wim.taymans@gmail.com>
7271
7272         * gst-libs/gst/audio/gstbaseaudiosrc.c:
7273         (gst_base_audio_src_class_init), (gst_base_audio_src_init),
7274         (gst_base_audio_src_provide_clock),
7275         (gst_base_audio_src_set_property),
7276         (gst_base_audio_src_get_property), (gst_base_audio_src_create):
7277         * gst-libs/gst/audio/gstbaseaudiosrc.h:
7278         Allow othe clocks than the internal clock to be used for the pipeline.
7279         Add property to disable clock provide.
7280         API: GstBaseAudioSrc::provide-clock
7281
7282 2007-09-10  Stefan Kost  <ensonic@users.sf.net>
7283
7284         * gst/playback/gstdecodebin2.c:
7285           Don't leak request pads. Fixes #475395.
7286
7287 2007-09-09  Sebastian Dröge  <slomo@circular-chaos.org>
7288
7289         Patch by: René Stadler <mail at renestadler dot de>
7290
7291         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
7292         (gst_ximage_buffer_class_init):
7293         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
7294         (gst_xvimage_buffer_class_init):
7295         Correctly chain up finalize with the parent class to prevent
7296         memory leaks. Fixes #474880.
7297
7298 2007-09-09  Sebastian Dröge  <slomo@circular-chaos.org>
7299
7300         * gst/volume/gstvolume.c: (volume_choose_func):
7301         * tests/check/elements/volume.c: (GST_START_TEST):
7302         Revert the latest change: floating point samples are allowed to
7303         have any value, not only values in the range [-1,1]. Thanks to Andy
7304         Wingo for noticing.
7305         Also fix processing of int32 samples with volumes > 4 by making the
7306         unity value smaller which prevents overflows.
7307
7308 2007-09-07  Tim-Philipp Müller  <tim at centricular dot net>
7309
7310         * gst-libs/gst/rtp/gstrtpbuffer.c:
7311         * tests/check/libs/rtp.c:
7312           Fix gst_rtp_buffer_set_csrc() and enable csrc-related unit test checks.
7313
7314 2007-09-07  Tim-Philipp Müller  <tim at centricular dot net>
7315
7316         Based on patch by: Haakon Sporsheim  <haakon.sporsheim at tandberg com>
7317
7318         * gst-libs/gst/rtp/gstrtpbuffer.c:
7319           Fix up GstRTPHeader helper struct so that compilers will not under
7320           any circumstances add padding in between our fields, as currently
7321           happens with MSVC on win32, because that would lead to us sending
7322           out RTP payloads with broken RTP headers (#471194).
7323           Fix assertion guards for gst_rtp_buffer_get_csrc() and _set_csrc().
7324           
7325         * tests/check/Makefile.am:
7326         * tests/check/libs/.cvsignore:
7327         * tests/check/libs/rtp.c:
7328           Add some simple unit tests for GstRTPBuffer. Some are disabled
7329           because the code tested still needs fixing (set_csrc() does not work).
7330
7331 2007-09-07  Tim-Philipp Müller  <tim at centricular dot net>
7332
7333         * win32/MANIFEST:
7334         * win32/common/gstrtsp-enumtypes.c:
7335         * win32/common/gstrtsp-enumtypes.h:
7336         * win32/common/interfaces-enumtypes.c:
7337         * win32/common/interfaces-enumtypes.h:
7338         * win32/common/multichannel-enumtypes.c:
7339           Add rtsp enumtypes (#474384) and update others.
7340
7341 2007-09-06  Stefan Kost  <ensonic@users.sf.net>
7342
7343         * configure.ac:
7344           Fix configure check for HAVE_LIBXML_HTML.
7345
7346 2007-09-06  Tim-Philipp Müller  <tim at centricular dot net>
7347
7348         * tests/check/libs/.cvsignore:
7349           Ignore more, in case the build bots work again one day.
7350
7351 2007-09-06  Sebastian Dröge  <slomo@circular-chaos.org>
7352
7353         Reviewed by:  Stefan Kost  <ensonic@users.sf.net>
7354
7355         * configure.ac:
7356         * gst-libs/gst/Makefile.am:
7357         * gst-libs/gst/fft/Makefile.am:
7358         * gst-libs/gst/fft/_kiss_fft_guts_f32.h:
7359         * gst-libs/gst/fft/_kiss_fft_guts_f64.h:
7360         * gst-libs/gst/fft/_kiss_fft_guts_s16.h:
7361         * gst-libs/gst/fft/_kiss_fft_guts_s32.h:
7362         * gst-libs/gst/fft/gstfft.c: (gst_fft_next_fast_length):
7363         * gst-libs/gst/fft/gstfft.h:
7364         * gst-libs/gst/fft/gstfftf32.c: (gst_fft_f32_new),
7365         (gst_fft_f32_fft), (gst_fft_f32_inverse_fft), (gst_fft_f32_free),
7366         (gst_fft_f32_window), (gst_fft_f32_magnitude), (gst_fft_f32_phase):
7367         * gst-libs/gst/fft/gstfftf32.h:
7368         * gst-libs/gst/fft/gstfftf64.c: (gst_fft_f64_new),
7369         (gst_fft_f64_fft), (gst_fft_f64_inverse_fft), (gst_fft_f64_free),
7370         (gst_fft_f64_window), (gst_fft_f64_magnitude), (gst_fft_f64_phase):
7371         * gst-libs/gst/fft/gstfftf64.h:
7372         * gst-libs/gst/fft/gstffts16.c: (gst_fft_s16_new),
7373         (gst_fft_s16_fft), (gst_fft_s16_inverse_fft), (gst_fft_s16_free),
7374         (gst_fft_s16_window), (gst_fft_s16_magnitude), (gst_fft_s16_phase):
7375         * gst-libs/gst/fft/gstffts16.h:
7376         * gst-libs/gst/fft/gstffts32.c: (gst_fft_s32_new),
7377         (gst_fft_s32_fft), (gst_fft_s32_inverse_fft), (gst_fft_s32_free),
7378         (gst_fft_s32_window), (gst_fft_s32_magnitude), (gst_fft_s32_phase):
7379         * gst-libs/gst/fft/gstffts32.h:
7380         * gst-libs/gst/fft/kiss_fft_f32.c: (kf_bfly2), (kf_bfly4),
7381         (kf_bfly3), (kf_bfly5), (kf_bfly_generic), (kf_work), (kf_factor),
7382         (kiss_fft_f32_alloc), (kiss_fft_f32_stride), (kiss_fft_f32),
7383         (kiss_fft_f32_cleanup), (kiss_fft_f32_next_fast_size):
7384         * gst-libs/gst/fft/kiss_fft_f32.h:
7385         * gst-libs/gst/fft/kiss_fft_f64.c: (kf_bfly2), (kf_bfly4),
7386         (kf_bfly3), (kf_bfly5), (kf_bfly_generic), (kf_work), (kf_factor),
7387         (kiss_fft_f64_alloc), (kiss_fft_f64_stride), (kiss_fft_f64),
7388         (kiss_fft_f64_cleanup), (kiss_fft_f64_next_fast_size):
7389         * gst-libs/gst/fft/kiss_fft_f64.h:
7390         * gst-libs/gst/fft/kiss_fft_s16.c: (kf_bfly2), (kf_bfly4),
7391         (kf_bfly3), (kf_bfly5), (kf_bfly_generic), (kf_work), (kf_factor),
7392         (kiss_fft_s16_alloc), (kiss_fft_s16_stride), (kiss_fft_s16),
7393         (kiss_fft_s16_cleanup), (kiss_fft_s16_next_fast_size):
7394         * gst-libs/gst/fft/kiss_fft_s16.h:
7395         * gst-libs/gst/fft/kiss_fft_s32.c: (kf_bfly2), (kf_bfly4),
7396         (kf_bfly3), (kf_bfly5), (kf_bfly_generic), (kf_work), (kf_factor),
7397         (kiss_fft_s32_alloc), (kiss_fft_s32_stride), (kiss_fft_s32),
7398         (kiss_fft_s32_cleanup), (kiss_fft_s32_next_fast_size):
7399         * gst-libs/gst/fft/kiss_fft_s32.h:
7400         * gst-libs/gst/fft/kiss_fftr_f32.c: (kiss_fftr_f32_alloc),
7401         (kiss_fftr_f32), (kiss_fftri_f32):
7402         * gst-libs/gst/fft/kiss_fftr_f32.h:
7403         * gst-libs/gst/fft/kiss_fftr_f64.c: (kiss_fftr_f64_alloc),
7404         (kiss_fftr_f64), (kiss_fftri_f64):
7405         * gst-libs/gst/fft/kiss_fftr_f64.h:
7406         * gst-libs/gst/fft/kiss_fftr_s16.c: (kiss_fftr_s16_alloc),
7407         (kiss_fftr_s16), (kiss_fftri_s16):
7408         * gst-libs/gst/fft/kiss_fftr_s16.h:
7409         * gst-libs/gst/fft/kiss_fftr_s32.c: (kiss_fftr_s32_alloc),
7410         (kiss_fftr_s32), (kiss_fftri_s32):
7411         * gst-libs/gst/fft/kiss_fftr_s32.h:
7412         * gst-libs/gst/fft/kiss_version:
7413         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
7414         * pkgconfig/gstreamer-plugins-base.pc.in:
7415         Add libgstfft, a FFT library based on Kiss FFT which is
7416         BSD licensed. Supported sample formats are int16, int32,
7417         float and double. For those formats a real FFT and IFFT
7418         can be done, different windowing functions can be applied
7419         and functions for extracting the magnitude and phase exist.
7420         Fixes #468619.
7421
7422         * docs/libs/Makefile.am:
7423         * docs/libs/gst-plugins-base-libs-docs.sgml:
7424         * docs/libs/gst-plugins-base-libs-sections.txt:
7425         Integrate libgstfft into the docs.
7426
7427         * tests/check/Makefile.am:
7428         * tests/check/libs/fft.c: (GST_START_TEST), (fft_suite), (main):
7429         Add unit tests for libgstfft, currently only testing the FFT.
7430         Unit tests for IFFT will follow soon.
7431
7432 2007-09-05  Wim Taymans  <wim.taymans@gmail.com>
7433
7434         Patch by: Peter Kjellerstedt  <pkj at axis com>
7435
7436         * gst-libs/gst/sdp/gstsdpmessage.c: (gst_sdp_time_init),
7437         (gst_sdp_message_init), (gst_sdp_message_uninit),
7438         (is_multicast_address), (gst_sdp_message_as_text),
7439         (gst_sdp_message_get_origin), (gst_sdp_message_set_connection),
7440         (gst_sdp_message_get_connection), (gst_sdp_message_add_bandwidth),
7441         (gst_sdp_message_add_time), (gst_sdp_message_add_zone),
7442         (gst_sdp_message_get_key), (gst_sdp_message_get_attribute_val_n),
7443         (gst_sdp_message_get_attribute_val), (gst_sdp_message_add_media),
7444         (gst_sdp_media_init), (gst_sdp_media_uninit),
7445         (gst_sdp_media_as_text), (gst_sdp_media_set_port_info),
7446         (gst_sdp_media_connections_len), (gst_sdp_media_add_connection),
7447         (gst_sdp_media_bandwidths_len), (gst_sdp_media_get_bandwidth),
7448         (gst_sdp_media_add_bandwidth), (gst_sdp_media_attributes_len),
7449         (gst_sdp_parse_line), (print_media), (gst_sdp_message_dump):
7450         * gst-libs/gst/sdp/gstsdpmessage.h:
7451         Separate INIT_ARRAY() and related macros into two versions, one for
7452         structures and one for pointers (e.g., INIT_ARRAY() and
7453         INIT_PTR_ARRAY()). This fixes a segmentation error on freeing the
7454         lists of emails and phone numbers.
7455         Add missing const as appropriate.
7456         Change all gint to guint since they all actually represent unsigned
7457         values.
7458         Do not use time as a variable name as it shadows the global time().
7459         Add gst_sdp_message_as_text() and gst_sdp_media_as_text().
7460         Actually implement gst_sdp_message_add_time().
7461         Make gst_sdp_message_add_time() take repeat times as an argument.
7462         Store repeat times in GstSDPTime as a GArray rather than as gchar**.
7463         Corrected the definition of gst_sdp_media_get_bandwidth() (was
7464         misspelled as badwidth).
7465         gst-indented and a little clean up. Fixes #471067.
7466
7467 2007-09-05  Sebastian Dröge  <slomo@circular-chaos.org>
7468
7469         * gst/volume/gstvolume.c: (volume_choose_func),
7470         (volume_process_double), (volume_process_double_clamp),
7471         (volume_process_float_clamp):
7472         Correctly clamp float/double samples in the [-1.0,1.0] range to
7473         prevent weird effects.
7474         * tests/check/elements/volume.c: (GST_START_TEST), (volume_suite):
7475         Add unit tests for all samples types that had none before.
7476
7477 2007-09-05  Tim-Philipp Müller  <tim at centricular dot net>
7478
7479         * gst-libs/gst/rtp/gstrtpbuffer.c:
7480           Need to include stdlib.h for abs() here too.
7481
7482 2007-09-05  Tim-Philipp Müller  <tim at centricular dot net>
7483
7484         * gst/playback/gststreaminfo.c:
7485           Fix build.
7486
7487 2007-09-05  Stefan Kost  <ensonic@users.sf.net>
7488
7489         * gst/playback/gststreaminfo.c:
7490           Clean up some half-disabled code and comment.
7491
7492 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
7493
7494         Patch by: Laurent Glayal <spglegle at yahoo dot fr>
7495
7496         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
7497         (gst_base_rtp_payload_audio_handle_event):
7498         Return FALSE from the event handler to let the parent class handle the
7499         event. Fixes #446766.
7500
7501         * gst-libs/gst/rtp/gstbasertpdepayload.c:
7502         (gst_base_rtp_depayload_chain), (gst_base_rtp_depayload_push_full):
7503         Mark outgoing buffers as DISCONT if the incomming buffer was DISCONT.
7504
7505         * gst-libs/gst/rtp/gstbasertppayload.c:
7506         Bump the MTU to 1400.
7507
7508 2007-09-03  Johan Dahlin  <jdahlin@async.com.br>
7509
7510         * gst/typefind/gsttypefindfunctions.c (plugin_init): 
7511         Add an audio/x-nsf typefind function for the nsfdec element.
7512
7513 2007-09-03  Renato Filho  <renato.filho@indt.org.br>
7514         * gst/playback/gstplaybasebin.c:
7515         Included "myth://" on stream_uris list for enable buffering to mythtv files
7516
7517 2007-09-03  Wim Taymans  <wim.taymans@gmail.com>
7518
7519         * docs/libs/gst-plugins-base-libs-sections.txt:
7520         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_packet_get_rb),
7521         (gst_rtcp_packet_sdes_copy_entry), (gst_rtcp_ntp_to_unix),
7522         (gst_rtcp_unix_to_ntp):
7523         * gst-libs/gst/rtp/gstrtcpbuffer.h:
7524         Fix parsing of RB blocks.
7525         Fix docs.
7526         Added helper functions to convert to/from UNIX and NTP time.
7527         API: gst_rtcp_ntp_to_unix()
7528         API: gst_rtcp_unix_to_ntp()
7529
7530         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data),
7531         (gst_rtp_buffer_get_header_len),
7532         (gst_rtp_buffer_get_extension_data),
7533         (gst_rtp_buffer_get_payload_subbuffer),
7534         (gst_rtp_buffer_get_payload_len), (gst_rtp_buffer_get_payload),
7535         (gst_rtp_buffer_ext_timestamp):
7536         * gst-libs/gst/rtp/gstrtpbuffer.h:
7537         Fix some more docs.
7538         Implement handling of packets with extensions.
7539         Fix padding check in _validate().
7540         Added function to get extension data.
7541         API: gst_rtp_buffer_get_header_len()
7542         API: gst_rtp_buffer_get_extension_data()
7543
7544 2007-09-03  Wim Taymans  <wim.taymans@gmail.com>
7545
7546         * gst-libs/gst/rtp/gstbasertpdepayload.c:
7547         (gst_base_rtp_depayload_class_init),
7548         (gst_base_rtp_depayload_set_gst_timestamp):
7549         Add some more docs for the queue-delay property and fix a typo in a
7550         comment.
7551
7552         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
7553         Fix typo.
7554
7555 2007-09-03  Wim Taymans  <wim.taymans@gmail.com>
7556
7557         * gst-libs/gst/audio/gstbaseaudiosink.c:
7558         (gst_base_audio_sink_skew_slaving), (gst_base_audio_sink_render),
7559         (gst_base_audio_sink_change_state):
7560         When skew slaving, try to hover around the middle of a segment so that
7561         we at most drift by half a segment.
7562         If we are aligning in the oposite direction of the clock skew, we don't
7563         have to resync.
7564
7565 2007-08-31  Wim Taymans  <wim.taymans@gmail.com>
7566
7567         * gst-libs/gst/rtp/gstbasertpdepayload.c:
7568         (gst_base_rtp_depayload_setcaps),
7569         (gst_base_rtp_depayload_set_gst_timestamp):
7570         Be less silly with the segment start, just apply the clock-base to the
7571         timestamp.
7572
7573 2007-08-31  Wim Taymans  <wim.taymans@gmail.com>
7574
7575         * gst-libs/gst/rtp/gstbasertpdepayload.c:
7576         (gst_base_rtp_depayload_class_init),
7577         (gst_base_rtp_depayload_finalize),
7578         (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain),
7579         (gst_base_rtp_depayload_handle_sink_event),
7580         (gst_base_rtp_depayload_set_gst_timestamp),
7581         (gst_base_rtp_depayload_change_state):
7582         * gst-libs/gst/rtp/gstbasertpdepayload.h:
7583         Deprecate the queue handling thread thing and remove the code.
7584         Use new method to calculate the extended timestamp.
7585
7586 2007-08-31  Wim Taymans  <wim.taymans@gmail.com>
7587
7588         * gst-libs/gst/rtp/gstrtcpbuffer.c:
7589         (gst_rtcp_packet_sdes_copy_entry):
7590         Use g_strndup which does exactly what we want.
7591
7592         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_compare_seqnum),
7593         (gst_rtp_buffer_ext_timestamp):
7594         * gst-libs/gst/rtp/gstrtpbuffer.h:
7595         Add helper function to compare seqnums.
7596         Add helper function to calculate extended timestamps.
7597         API: gst_rtp_buffer_compare_seqnum()
7598         API: gst_rtp_buffer_ext_timestamp()
7599
7600 2007-08-30  Wim Taymans  <wim.taymans@gmail.com>
7601
7602         * gst-libs/gst/rtp/gstrtcpbuffer.c:
7603         (gst_rtcp_packet_sdes_get_entry),
7604         (gst_rtcp_packet_sdes_copy_entry):
7605         * gst-libs/gst/rtp/gstrtcpbuffer.h:
7606         Fix and document SDES item data function.
7607         Add new function that makes a proper copy of SDES item data.
7608         API: gst_rtcp_packet_sdes_copy_entry()
7609
7610 2007-08-30  Stefan Kost  <ensonic@users.sf.net>
7611
7612         * configure.ac:
7613         * gst/Makefile.am:
7614           The tcp and subparse plugins are under gst, but not totaly free of
7615           dependencies. Handle selection inconfigure.ac, so that they show up
7616           on the final list of what is build and what is not. Maybe they should
7617           better be moved to ext.
7618
7619 2007-08-30  Stefan Kost  <ensonic@users.sf.net>
7620
7621         Patch by: Daniel Díaz  <yosoy@danieldiaz.org>
7622
7623         * configure.ac:
7624         * gst/Makefile.am:
7625           Check if libxml provides HTML parser which subparse needs.
7626           Fixes #451970.
7627
7628 2007-08-29  Tim-Philipp Müller  <tim at centricular dot net>
7629
7630         * ext/alsa/gstalsa.c:
7631           Fix typo and compilation on big endian systems.
7632
7633 2007-08-29  Tim-Philipp Müller  <tim at centricular dot net>
7634
7635         * gst/subparse/gstssaparse.c:
7636           Convert SSA newline codes into actual newline characters (#470766).
7637
7638 2007-08-28  Tim-Philipp Müller  <tim at centricular dot net>
7639
7640         * docs/libs/gst-plugins-base-libs-sections.txt:
7641         * gst-libs/gst/pbutils/install-plugins.c:
7642         * gst-libs/gst/pbutils/install-plugins.h:
7643         * tests/check/libs/pbutils.c:
7644           API: also add gst_install_plugins_supported() while we're at it
7645           (see #470456).
7646
7647 2007-08-28  Tim-Philipp Müller  <tim at centricular dot net>
7648
7649         * docs/libs/gst-plugins-base-libs-sections.txt:
7650         * gst-libs/gst/pbutils/missing-plugins.c:
7651         * gst-libs/gst/pbutils/missing-plugins.h:
7652         * tests/check/libs/pbutils.c:
7653           API: add gst_missing_*_installer_detail_new() convenience API so
7654           that applications that know exactly what they're missing can request
7655           installer detail strings for those items directly instead of having
7656           to first create a dummy missing-plugin message and then get the
7657           installer detail string from that.  Fixes #470456.
7658
7659 2007-08-27  Jan Schmidt  <thaytan@mad.scientist.com>
7660
7661         * gst/playback/gstdecodebin.c: (close_pad_link):
7662         We need to set up delayed-linking whenever the caps are non-fixed,
7663         not just when there are multiple types - use gst_pad_is_fixed()
7664         to test.
7665
7666 2007-08-26  Tim-Philipp Müller  <tim at centricular dot net>
7667
7668         * gst-libs/gst/pbutils/missing-plugins.c:
7669           (gst_missing_plugin_message_get_installer_detail):
7670           Add missing separator in PID fallback case.
7671
7672 2007-08-24  Jan Schmidt  <thaytan@mad.scientist.com>
7673
7674         * ext/alsa/Makefile.am:
7675         There is no GST_PLUGINS_BASE_LIBS defined.
7676         
7677         * ext/alsa/gstalsa.c:
7678         * ext/alsa/gstalsasink.c: (gst_alsasink_delay):
7679         * ext/alsa/gstalsasrc.c: (gst_alsasrc_delay):
7680         Add support for ALSA 24-bit formats.
7681         snd_pcm_delay can return an error code, especially
7682         during XRUNS. In that case, the best we can do is assume
7683         delay = 0.
7684
7685         * gst/audioconvert/Makefile.am:
7686         Add flags from -base before any more-remote dependencies.
7687
7688 2007-08-23  Sebastian Dröge  <slomo@circular-chaos.org>
7689
7690         Based on a patch by: Davyd Madeley <davyd at madeley dot id dot au>
7691
7692         * gst/volume/gstvolume.c: (volume_choose_func),
7693         (volume_update_real_volume), (gst_volume_set_volume),
7694         (gst_volume_init), (volume_process_int32),
7695         (volume_process_int32_clamp), (volume_process_int24),
7696         (volume_process_int24_clamp), (volume_process_int16),
7697         (volume_process_int16_clamp), (volume_process_int8),
7698         (volume_process_int8_clamp), (volume_update_volume), (plugin_init):
7699         * gst/volume/gstvolume.h:
7700         Add support for int32, int24 and int8 to the volume element.
7701         Fixes #445529.
7702
7703 2007-08-23  Tim-Philipp Müller  <tim at centricular dot net>
7704
7705         * tests/examples/Makefile.am:
7706           Fix even more.
7707
7708 2007-08-23  Stefan Kost  <ensonic@users.sf.net>
7709
7710         * configure.ac:
7711         * docs/libs/Makefile.am:
7712         * docs/libs/gst-plugins-base-libs-docs.sgml:
7713         * docs/libs/gst-plugins-base-libs-sections.txt:
7714         * ext/gnomevfs/gstgnomevfssrc.c:
7715         * ext/gnomevfs/gstgnomevfssrc.h:
7716         * gst-libs/gst/Makefile.am:
7717         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
7718         * pkgconfig/gstreamer-plugins-base.pc.in:
7719         * sys/v4l/v4lsrc_calls.c:
7720         * tests/examples/Makefile.am:
7721         * win32/common/config.h:
7722           Revert unwanted commit. many thanks to moap. I want a fix for 
7723           https://thomas.apestaart.org/moap/trac/ticket/239
7724
7725 2007-08-23  Stefan Kost  <ensonic@users.sf.net>
7726
7727         * gst/volume/gstvolume.c:
7728           Move passthrough below gst_object_sync_values(). Fixes #442654.
7729
7730 2007-08-22  Wim Taymans  <wim.taymans@gmail.com>
7731
7732         * gst-libs/gst/audio/audio.c:
7733         Clarify the docs a little.
7734
7735 2007-08-22  Stefan Kost  <ensonic@users.sf.net>
7736
7737         * gst/volume/gstvolume.c:
7738           Enable liboil for float and add more details about problems with
7739           int16.
7740
7741 2007-08-21  Wim Taymans  <wim.taymans@gmail.com>
7742
7743         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps):
7744         Fix RGB24 masks as spotted by _ke (Daniel G. Siegel) on IRC.
7745
7746 2007-08-21  Wim Taymans  <wim.taymans@gmail.com>
7747
7748         * ext/vorbis/vorbisdec.c: (vorbis_dec_push_forward):
7749         When calculating the first timestamp of the buffers, don't go below 0
7750         and clip the samples because the offset was on the eos page.
7751         Fixes #466717.
7752
7753 2007-08-21  Wim Taymans  <wim.taymans@gmail.com>
7754
7755         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_read_chain),
7756         (gst_ogg_demux_collect_chain_info):
7757         Also submit the eos page when trying to find the first timestamp.
7758         See #466717.
7759
7760 2007-08-17  Sebastian Dröge  <slomo@circular-chaos.org>
7761
7762         * gst-libs/gst/audio/audio.h:
7763         Use gst_util_uint64_scale() instead of doing the math
7764         with double for GST_FRAMES_TO_CLOCK_TIME() and
7765         GST_CLOCK_TIME_TO_FRAMES(). For large timestamps this
7766         prevents rounding errors. Fixes #467667.
7767
7768 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
7769
7770         * gst-libs/gst/rtsp/gstrtspconnection.c:
7771         (gst_rtsp_connection_connect), (gst_rtsp_connection_write),
7772         (gst_rtsp_connection_read), (gst_rtsp_connection_poll):
7773         * gst-libs/gst/rtsp/gstrtspconnection.h:
7774         Small cleanups.
7775         On shutdown, don't read the control socket yet.
7776         Set timeout value correctly in all cases.
7777         Add function to check if the server accepts reads or writes.
7778         API: gst_rtsp_connection_poll()
7779
7780         * gst-libs/gst/rtsp/gstrtspdefs.h:
7781         Fix compilation with -pedantic.
7782         Add enum for _poll.
7783
7784 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
7785
7786         Patch by: Olivier Crete  <tester at tester ca>
7787
7788         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
7789         (gst_basertppayload_getcaps):
7790         * gst-libs/gst/rtp/gstbasertppayload.h:
7791         Add getcaps vfunc to basertppayload. See #465146.
7792
7793 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
7794
7795         * gst/playback/gstplaybasebin.c: (queue_threshold_reached):
7796         Only post buffering messages when we are a stream.
7797
7798 2007-08-15  Tim-Philipp Müller  <tim at centricular dot net>
7799
7800         * gst-libs/gst/pbutils/install-plugins.c:
7801         * gst-libs/gst/pbutils/missing-plugins.c:
7802           Small docs fix and addition.
7803
7804 2007-08-13  Tim-Philipp Müller  <tim at centricular dot net>
7805
7806         * tests/icles/.cvsignore:
7807         * tests/icles/Makefile.am:
7808         * tests/icles/test-textoverlay.c:
7809           Add a dumb little test for textoverlay alignments.
7810
7811 2007-08-13  Tim-Philipp Müller  <tim at centricular dot net>
7812
7813         Patch by: Dan Williams  <dcbw redhat com>
7814
7815         * ext/pango/gsttextoverlay.c:
7816         * ext/pango/gsttextoverlay.h:
7817           API: add "line-alignment" property (#459334). Add gtk-doc blurb for
7818           "silent" property so there's a Since tag in the API reference.
7819
7820 2007-08-12  Wim Taymans  <wim.taymans@gmail.com>
7821
7822         * gst-libs/gst/rtp/gstbasertppayload.c:
7823         (gst_basertppayload_set_outcaps):
7824         * gst-libs/gst/rtp/gstbasertppayload.h:
7825         Improve caps negotiation so that downstream elements can confiure
7826         certain RTP properties by fixing them on the caps. See #465146.
7827         Add docs.
7828
7829 2007-08-11  Tim-Philipp Müller  <tim at centricular dot net>
7830
7831         * docs/libs/gst-plugins-base-libs-sections.txt:
7832         * gst-libs/gst/rtp/gstbasertpdepayload.c:
7833         * gst-libs/gst/rtp/gstbasertpdepayload.h:
7834           Mark as deprecated some macros which were presumably meant to be
7835           private API and accidentally exposed in the public header file.
7836           Also actually _init() lock (only works at the moment because the
7837           struct is zeroed out when created and the initial values in the
7838           mutex struct are zeroes too). (#459585)
7839
7840 2007-08-10  Stefan Kost  <ensonic@users.sf.net>
7841
7842         * docs/libs/Makefile.am:
7843           Remove cruft and do some cleanups.
7844
7845         * docs/libs/gst-plugins-base-libs-docs.sgml:
7846           Prepare for comming gtkdoc features (rebase against online docs).
7847
7848 2007-08-10  Michael Smith <msmith@fluendo.com>
7849
7850         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
7851           Debug output fixes.
7852         * tests/check/elements/audiorate.c: (do_perfect_stream_test),
7853         (GST_START_TEST):
7854           Change the number of buffers used; 500 is too many and leads to
7855           timeouts.
7856
7857 2007-08-10  Tim-Philipp Müller  <tim at centricular dot net>
7858
7859         * gst/playback/gstqueue2.c:
7860         * gst/videorate/gstvideorate.c:
7861           Printf format fixes (#465028).
7862
7863 2007-08-09  Michael Smith <msmith@fluendo.com>
7864
7865         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
7866           If we have a large (> 1 second) discontinuity, push a series of
7867           smaller buffers rather than a single very large buffer. Avoids
7868           unreasonably large single buffer allocations when encountering a
7869           large gap.
7870         * tests/check/elements/audiorate.c: (GST_START_TEST),
7871         (audiorate_suite):
7872           Add a test for this.
7873
7874 2007-08-09  Jan Schmidt  <thaytan@mad.scientist.com>
7875
7876         * gst/playback/gstplaybasebin.c: (group_commit),
7877         (queue_remove_probe), (queue_threshold_reached):
7878
7879         Patch by: Josep Torra Valles <josep@fluendo.com>
7880         Fixes: #465015
7881         Make sure we remove the check_queues buffer probe from the 
7882         correct queue to avoid racily going back to "buffering 99%" when
7883         buffering is actually complete.
7884
7885         Also, fix the spelling of Josep's surname in the ChangeLog.
7886
7887 2007-08-09  Stefan Kost  <ensonic@users.sf.net>
7888
7889         * ext/ogg/gstoggmux.c:
7890           Do not leak oggmux instance.
7891         
7892         * ext/vorbis/vorbisenc.c:
7893           Also log values.
7894
7895 2007-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
7896
7897         * po/hu.po:
7898         * po/it.po:
7899         * po/nl.po:
7900         * po/uk.po:
7901         * po/vi.po:
7902           Updated translations.
7903
7904 2007-08-08  Stefan Kost  <ensonic@users.sf.net>
7905
7906         patch by: Yang Hong <hongyang@redflag-linux.com>
7907
7908         * ext/pango/gsttextoverlay.c:
7909         * ext/pango/gsttextoverlay.h:
7910           Add 'silent' property to GstTimeOverlay. Fixes #462979
7911
7912 2007-08-08  Wim Taymans  <wim.taymans@gmail.com>
7913
7914         Patch by: Josep Torra Valles <josep@fluendo.com>
7915
7916         * docs/plugins/gst-plugins-base-plugins.args:
7917         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_class_init),
7918         (gst_uri_decode_bin_init), (gst_uri_decode_bin_set_property),
7919         (gst_uri_decode_bin_get_property), (gen_source_element):
7920         Add connection-speed property. Fixes #464690.
7921
7922 2007-08-07  Wim Taymans  <wim.taymans@gmail.com>
7923
7924         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
7925
7926         * configure.ac:
7927         * gst-libs/gst/rtsp/Makefile.am:
7928         * gst-libs/gst/rtsp/gstrtspconnection.c:
7929         (gst_rtsp_connection_connect):
7930         Fix compilation on windows. Fixes #464320.
7931
7932 2007-08-07  Wim Taymans  <wim.taymans@gmail.com>
7933
7934         Patch by: Josep Torra Valles <josep@fluendo.com>
7935
7936         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
7937         (gst_play_base_bin_init), (queue_threshold_reached),
7938         (gen_source_element), (setup_substreams),
7939         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
7940         (gst_play_base_bin_get_streaminfo_value_array):
7941         * gst/playback/gstplaybasebin.h:
7942         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
7943         (gst_play_bin_set_property), (gst_play_bin_get_property),
7944         (gst_play_bin_handle_redirect_message):
7945         Move connection-speed property from playbin to playbasebin so that we
7946         can also configure it in source elements that have the connection-speed
7947         property. Fixes #464028.
7948         Add some debug info here and there.
7949
7950 2007-08-06  Sebastian Dröge  <slomo@circular-chaos.org>
7951
7952         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_query):
7953         Properly respond to conversion queries. Fixes #464079.
7954
7955 2007-08-03  Sebastian Dröge  <slomo@circular-chaos.org>
7956
7957         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_init),
7958         (gst_audio_test_src_src_fixate), (gst_audio_test_src_setcaps),
7959         (gst_audio_test_src_init_sine_table),
7960         (gst_audio_test_src_change_wave), (gst_audio_test_src_create):
7961         * gst/audiotestsrc/gstaudiotestsrc.h:
7962         Add float/double and int32 support to audiotestsrc. Fixes #460422.
7963         Also set the default volume to the default value specified in the
7964         GParamSpec.
7965
7966 2007-08-03  Sebastian Dröge  <slomo@circular-chaos.org>
7967
7968         Patch by: Jens Granseuer <jensgr at gmx dot net>
7969
7970         * gst/audioconvert/gstaudioquantize.c:
7971         Fix C89 incompatibilities and spelling of explanations. Fixes #463215.
7972
7973 2007-08-03  Wim Taymans  <wim.taymans@gmail.com>
7974
7975         * gst-libs/gst/rtsp/gstrtsptransport.c: (gst_rtsp_transport_parse):
7976         Add rdt manager for rdt transport.
7977         Fix parsing of RDT transport.
7978
7979 2007-08-03  Jan Schmidt  <thaytan@mad.scientist.com>
7980
7981         * configure.ac:
7982         Back to CVS
7983
7984 === release 0.10.14 ===
7985
7986 2007-08-03  Jan Schmidt <thaytan@mad.scientist.com>
7987
7988         * configure.ac:
7989           releasing 0.10.14, "Light Years Ahead"
7990
7991 2007-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
7992
7993         * tests/check/libs/audio.c: (GST_START_TEST):
7994         Fix the test to reflect the behaviour of gst_audio_clip_buffer.
7995
7996 2007-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
7997
7998         * gst-libs/gst/audio/audio.c:
7999         When clipping a buffer with no timestamp, assume it is
8000         within the segment without warnings.
8001
8002         Fixes: #460978
8003
8004 2007-07-27  Wim Taymans  <wim.taymans@gmail.com>
8005
8006         * gst-libs/gst/rtsp/gstrtspextension.c: (gst_rtsp_extension_send):
8007         Fire the signal on the object, not the interface.
8008
8009 2007-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
8010
8011         * gst-libs/gst/rtsp/.cvsignore:
8012         Ber. Don't include the full path, idiot.
8013
8014 2007-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
8015
8016         * gst-libs/gst/rtsp/.cvsignore:
8017         Ignore generated files.
8018
8019 2007-07-26  Jan Schmidt  <thaytan@mad.scientist.com>
8020
8021         * gst-libs/gst/interfaces/Makefile.am:
8022         * gst-libs/gst/interfaces/interfaces-marshal.list:
8023         * gst-libs/gst/interfaces/rtspextension.c:
8024         * gst-libs/gst/interfaces/rtspextension.h:
8025         * gst-libs/gst/rtsp/Makefile.am:
8026         * gst-libs/gst/rtsp/gstrtsp.h:
8027         * gst-libs/gst/rtsp/gstrtspextension.c:
8028         (gst_rtsp_extension_get_type), (gst_rtsp_extension_iface_init),
8029         (gst_rtsp_extension_detect_server),
8030         (gst_rtsp_extension_before_send), (gst_rtsp_extension_after_send),
8031         (gst_rtsp_extension_parse_sdp), (gst_rtsp_extension_setup_media),
8032         (gst_rtsp_extension_configure_stream),
8033         (gst_rtsp_extension_get_transports),
8034         (gst_rtsp_extension_stream_select), (gst_rtsp_extension_send):
8035         * gst-libs/gst/rtsp/gstrtspextension.h:
8036         * gst-libs/gst/rtsp/rtsp-marshal.list:
8037         Move the rtspextension.h interface into gstrtspextension.h
8038         as part of libgstrtsp instead of libgstinterfaces, because it's
8039         only for use within plugins, not applications. 
8040         Add stuff to do the enum & marshal generation needed in libgstrtsp now.
8041         Use the GST_TYPE_RTSP_RESULT enum type for the return value of the 
8042         signal that the GstRTSPExtension interface emits, since G_TYPE_ENUM
8043         is abstract.
8044
8045 2007-07-26  Wim Taymans  <wim.taymans@gmail.com>
8046
8047         * gst-libs/gst/interfaces/Makefile.am:
8048         * gst-libs/gst/interfaces/interfaces-marshal.list:
8049         * gst-libs/gst/interfaces/rtspextension.c:
8050         (gst_rtsp_extension_iface_init),
8051         (gst_rtsp_extension_stream_select), (gst_rtsp_extension_send):
8052         * gst-libs/gst/interfaces/rtspextension.h:
8053         Fix marshaller for the send signal.
8054         Add URL to stream selection interface method.
8055
8056 2007-07-26  Jan Schmidt  <thaytan@mad.scientist.com>
8057
8058         * gst-libs/gst/riff/Makefile.am:
8059         Pull in our dependencies from -base before those from outside.
8060
8061 2007-07-26  Wim Taymans  <wim.taymans@gmail.com>
8062
8063         * docs/libs/gst-plugins-base-libs-sections.txt:
8064         * gst-libs/gst/rtsp/gstrtspbase64.c: (gst_rtsp_base64_decode_ip):
8065         * gst-libs/gst/rtsp/gstrtspbase64.h:
8066         API: gst_rtsp_base64_decode_ip()
8067         Added function to decode Base64 in-place.
8068
8069 2007-07-26  Jan Schmidt  <thaytan@mad.scientist.com>
8070
8071         * tests/check/libs/.cvsignore:
8072         Ignore the mixer test binary.
8073
8074 2007-07-26  Jan Schmidt  <thaytan@mad.scientist.com>
8075
8076         * ext/vorbis/vorbisdec.c: (vorbis_dec_push_forward):
8077         Gratuitous comment change to trigger a rebuild on the buildbots.
8078
8079 2007-07-25  Wim Taymans  <wim.taymans@gmail.com>
8080
8081         * gst-libs/gst/sdp/gstsdpmessage.c: (gst_sdp_media_get_media),
8082         (gst_sdp_media_get_port), (gst_sdp_media_get_num_ports),
8083         (gst_sdp_media_get_proto), (gst_sdp_media_formats_len),
8084         (gst_sdp_media_get_format), (gst_sdp_media_get_information),
8085         (gst_sdp_media_connections_len), (gst_sdp_media_get_connection),
8086         (gst_sdp_media_bandwidths_len), (gst_sdp_media_get_badwidth),
8087         (gst_sdp_media_get_key), (gst_sdp_media_attributes_len),
8088         (gst_sdp_media_get_attribute), (gst_sdp_media_get_attribute_val_n),
8089         (gst_sdp_media_get_attribute_val):
8090         * gst-libs/gst/sdp/gstsdpmessage.h:
8091         Constify args where we can.
8092
8093 2007-07-25  Wim Taymans  <wim.taymans@gmail.com>
8094
8095         * gst-libs/gst/interfaces/Makefile.am:
8096         * gst-libs/gst/interfaces/rtspextension.c:
8097         (gst_rtsp_extension_get_type), (gst_rtsp_extension_iface_init),
8098         (gst_rtsp_extension_detect_server),
8099         (gst_rtsp_extension_before_send), (gst_rtsp_extension_after_send),
8100         (gst_rtsp_extension_parse_sdp), (gst_rtsp_extension_setup_media),
8101         (gst_rtsp_extension_configure_stream),
8102         (gst_rtsp_extension_get_transports),
8103         (gst_rtsp_extension_stream_select), (gst_rtsp_extension_send):
8104         * gst-libs/gst/interfaces/rtspextension.h:
8105         Move interface for RTSP extensions from -good to here.
8106         Added helper methods to invoke interface methods.
8107
8108 2007-07-25  Wim Taymans  <wim.taymans@gmail.com>
8109
8110         * docs/libs/gst-plugins-base-libs-sections.txt:
8111         * gst-libs/gst/rtsp/gstrtspdefs.h:
8112         * gst-libs/gst/rtsp/gstrtspmessage.c: (key_value_foreach),
8113         (gst_rtsp_message_get_type), (gst_rtsp_message_parse_request),
8114         (gst_rtsp_message_init_response),
8115         (gst_rtsp_message_parse_response), (gst_rtsp_message_new_data),
8116         (gst_rtsp_message_parse_data), (gst_rtsp_message_add_header),
8117         (gst_rtsp_message_remove_header), (gst_rtsp_message_get_header),
8118         (gst_rtsp_message_append_headers), (gst_rtsp_message_set_body),
8119         (gst_rtsp_message_get_body), (dump_key_value):
8120         * gst-libs/gst/rtsp/gstrtspmessage.h:
8121         * gst-libs/gst/rtsp/gstrtsprange.c: (parse_npt_time),
8122         (parse_npt_range), (parse_clock_range), (parse_smpte_range),
8123         (gst_rtsp_range_parse):
8124         * gst-libs/gst/rtsp/gstrtsprange.h:
8125         * gst-libs/gst/rtsp/gstrtsptransport.c:
8126         * gst-libs/gst/rtsp/gstrtspurl.c:
8127         Fix some more RTSP docs.
8128         Add some missing methods for dealing with messages.
8129
8130 2007-07-24  Wim Taymans  <wim.taymans@gmail.com>
8131
8132         * docs/libs/gst-plugins-base-libs-docs.sgml:
8133         * docs/libs/gst-plugins-base-libs-sections.txt:
8134         * gst-libs/gst/rtsp/gstrtspbase64.c: (gst_rtsp_base64_encode):
8135         * gst-libs/gst/rtsp/gstrtspbase64.h:
8136         * gst-libs/gst/rtsp/gstrtspconnection.c:
8137         (gst_rtsp_connection_connect), (add_auth_header),
8138         (gst_rtsp_connection_write), (gst_rtsp_connection_send),
8139         (read_body), (gst_rtsp_connection_receive),
8140         (gst_rtsp_connection_next_timeout),
8141         (gst_rtsp_connection_reset_timeout),
8142         (gst_rtsp_connection_set_auth):
8143         * gst-libs/gst/rtsp/gstrtspconnection.h:
8144         * gst-libs/gst/rtsp/gstrtspdefs.c: (rtsp_init_status):
8145         * gst-libs/gst/rtsp/gstrtspdefs.h:
8146         * gst-libs/gst/rtsp/gstrtspmessage.h:
8147         * gst-libs/gst/rtsp/gstrtsprange.c: (parse_npt_time),
8148         (parse_npt_range), (parse_clock_range), (parse_smpte_range),
8149         (gst_rtsp_range_parse):
8150         * gst-libs/gst/rtsp/gstrtspurl.h:
8151         Added beginnings of RTSP documentation.
8152
8153 2007-07-24  Wim Taymans  <wim.taymans@gmail.com>
8154
8155         * docs/libs/Makefile.am:
8156         * docs/libs/gst-plugins-base-libs-docs.sgml:
8157         * docs/libs/gst-plugins-base-libs-sections.txt:
8158         * gst-libs/gst/sdp/gstsdp.h:
8159         * gst-libs/gst/sdp/gstsdpmessage.c: (gst_sdp_message_set_origin),
8160         (gst_sdp_message_set_connection), (gst_sdp_message_add_bandwidth),
8161         (gst_sdp_message_add_time), (gst_sdp_message_add_zone),
8162         (gst_sdp_message_set_key), (gst_sdp_message_get_attribute_val_n),
8163         (gst_sdp_message_get_attribute_val),
8164         (gst_sdp_message_add_attribute), (gst_sdp_media_new),
8165         (gst_sdp_media_init), (gst_sdp_media_uninit), (gst_sdp_media_free),
8166         (gst_sdp_media_get_media), (gst_sdp_media_set_media),
8167         (gst_sdp_media_get_port), (gst_sdp_media_get_num_ports),
8168         (gst_sdp_media_set_port_info), (gst_sdp_media_get_proto),
8169         (gst_sdp_media_set_proto), (gst_sdp_media_formats_len),
8170         (gst_sdp_media_get_format), (gst_sdp_media_add_format),
8171         (gst_sdp_media_get_information), (gst_sdp_media_set_information),
8172         (gst_sdp_media_connections_len), (gst_sdp_media_get_connection),
8173         (gst_sdp_media_add_connection), (gst_sdp_media_bandwidths_len),
8174         (gst_sdp_media_get_badwidth), (gst_sdp_media_add_bandwidth),
8175         (gst_sdp_media_set_key), (gst_sdp_media_get_key),
8176         (gst_sdp_media_attributes_len), (gst_sdp_media_add_attribute),
8177         (gst_sdp_media_get_attribute_val_n),
8178         (gst_sdp_media_get_attribute_val), (gst_sdp_message_parse_buffer),
8179         (print_media), (gst_sdp_message_dump):
8180         * gst-libs/gst/sdp/gstsdpmessage.h:
8181         Document the SDP library.
8182         Add some of the missing SDPMedia methods.
8183
8184 2007-07-24  Wim Taymans  <wim.taymans@gmail.com>
8185
8186         * configure.ac:
8187         * gst-libs/gst/Makefile.am:
8188         * gst-libs/gst/rtsp/Makefile.am:
8189         * gst-libs/gst/rtsp/gstrtspbase64.c: (gst_rtsp_base64_encode):
8190         * gst-libs/gst/rtsp/gstrtspbase64.h:
8191         * gst-libs/gst/rtsp/gstrtspconnection.c: (inet_aton),
8192         (gst_rtsp_connection_create), (gst_rtsp_connection_connect),
8193         (add_auth_header), (add_date_header), (gst_rtsp_connection_write),
8194         (gst_rtsp_connection_send), (read_line), (read_string), (read_key),
8195         (parse_response_status), (parse_request_line), (parse_line),
8196         (gst_rtsp_connection_read), (read_body),
8197         (gst_rtsp_connection_receive), (gst_rtsp_connection_close),
8198         (gst_rtsp_connection_free), (gst_rtsp_connection_next_timeout),
8199         (gst_rtsp_connection_reset_timeout), (gst_rtsp_connection_flush),
8200         (gst_rtsp_connection_set_auth):
8201         * gst-libs/gst/rtsp/gstrtspconnection.h:
8202         * gst-libs/gst/rtsp/gstrtspdefs.c: (rtsp_init_status),
8203         (gst_rtsp_strresult), (gst_rtsp_method_as_text),
8204         (gst_rtsp_version_as_text), (gst_rtsp_header_as_text),
8205         (gst_rtsp_status_as_text), (gst_rtsp_find_header_field),
8206         (gst_rtsp_find_method):
8207         * gst-libs/gst/rtsp/gstrtspdefs.h:
8208         * gst-libs/gst/rtsp/gstrtspmessage.c: (key_value_foreach),
8209         (gst_rtsp_message_new), (gst_rtsp_message_init),
8210         (gst_rtsp_message_new_request), (gst_rtsp_message_init_request),
8211         (gst_rtsp_message_new_response), (gst_rtsp_message_init_response),
8212         (gst_rtsp_message_init_data), (gst_rtsp_message_unset),
8213         (gst_rtsp_message_free), (gst_rtsp_message_add_header),
8214         (gst_rtsp_message_remove_header), (gst_rtsp_message_get_header),
8215         (gst_rtsp_message_append_headers), (gst_rtsp_message_set_body),
8216         (gst_rtsp_message_take_body), (gst_rtsp_message_get_body),
8217         (gst_rtsp_message_steal_body), (dump_mem), (dump_key_value),
8218         (gst_rtsp_message_dump):
8219         * gst-libs/gst/rtsp/gstrtspmessage.h:
8220         * gst-libs/gst/rtsp/gstrtsprange.c: (parse_npt_time),
8221         (parse_npt_range), (parse_clock_range), (parse_smpte_range),
8222         (gst_rtsp_range_parse), (gst_rtsp_range_free):
8223         * gst-libs/gst/rtsp/gstrtsprange.h:
8224         * gst-libs/gst/rtsp/gstrtsptransport.c: (gst_rtsp_transport_new),
8225         (gst_rtsp_transport_init), (gst_rtsp_transport_get_mime),
8226         (gst_rtsp_transport_get_manager), (parse_mode), (parse_range),
8227         (range_as_text), (rtsp_transport_mode_as_text),
8228         (rtsp_transport_profile_as_text), (rtsp_transport_ltrans_as_text),
8229         (gst_rtsp_transport_parse), (gst_rtsp_transport_as_text),
8230         (gst_rtsp_transport_free):
8231         * gst-libs/gst/rtsp/gstrtsptransport.h:
8232         * gst-libs/gst/rtsp/gstrtspurl.c: (gst_rtsp_url_parse),
8233         (gst_rtsp_url_free), (gst_rtsp_url_set_port),
8234         (gst_rtsp_url_get_port), (gst_rtsp_url_get_request_uri):
8235         * gst-libs/gst/rtsp/gstrtspurl.h:
8236         * gst-libs/gst/sdp/Makefile.am:
8237         * gst-libs/gst/sdp/gstsdp.h:
8238         * gst-libs/gst/sdp/gstsdpmessage.c: (gst_sdp_origin_init),
8239         (gst_sdp_connection_init), (gst_sdp_bandwidth_init),
8240         (gst_sdp_time_init), (gst_sdp_zone_init), (gst_sdp_key_init),
8241         (gst_sdp_attribute_init), (gst_sdp_message_new),
8242         (gst_sdp_message_init), (gst_sdp_message_uninit),
8243         (gst_sdp_message_free), (gst_sdp_media_new), (gst_sdp_media_init),
8244         (gst_sdp_media_uninit), (gst_sdp_media_free),
8245         (gst_sdp_message_set_origin), (gst_sdp_message_get_origin),
8246         (gst_sdp_message_set_connection), (gst_sdp_message_get_connection),
8247         (gst_sdp_message_add_bandwidth), (gst_sdp_message_add_time),
8248         (gst_sdp_message_add_zone), (gst_sdp_message_set_key),
8249         (gst_sdp_message_get_key), (gst_sdp_message_get_attribute_val_n),
8250         (gst_sdp_message_get_attribute_val),
8251         (gst_sdp_message_add_attribute), (gst_sdp_message_add_media),
8252         (gst_sdp_media_add_attribute), (gst_sdp_media_add_bandwidth),
8253         (gst_sdp_media_add_format), (gst_sdp_media_get_attribute),
8254         (gst_sdp_media_get_attribute_val_n),
8255         (gst_sdp_media_get_attribute_val), (gst_sdp_media_get_format),
8256         (read_string), (read_string_del), (gst_sdp_parse_line),
8257         (gst_sdp_message_parse_buffer), (print_media),
8258         (gst_sdp_message_dump):
8259         * gst-libs/gst/sdp/gstsdpmessage.h:
8260         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
8261         Move SDP and RTSP from helper objects in -good to a reusable library.
8262         Use a proper gst_ namespace.
8263
8264 2007-07-23  Sebastian Dröge  <slomo@circular-chaos.org>
8265
8266         * ext/vorbis/vorbisdec.c: (vorbis_dec_push_forward),
8267         (vorbis_dec_flush_decode):
8268         Use the new buffer clipping function from gstaudio here.
8269
8270 2007-07-23  Sebastian Dröge  <slomo@circular-chaos.org>
8271
8272         * docs/libs/gst-plugins-base-libs-sections.txt:
8273         * gst-libs/gst/audio/audio.c: (gst_audio_buffer_clip):
8274         * gst-libs/gst/audio/audio.h:
8275         * tests/check/libs/audio.c: (GST_START_TEST), (audio_suite):
8276         API: Add buffer clipping function for raw audio buffers. Fixes #456656.
8277         Also add deprecation guards for gst_audio_structure_set_int() to the
8278         header.
8279
8280 2007-07-23  Stefan Kost  <ensonic@users.sf.net>
8281
8282         * docs/libs/gst-plugins-base-libs-sections.txt:
8283           Cleanup the docs.
8284
8285 2007-07-23  Wim Taymans  <wim.taymans@gmail.com>
8286
8287         Patch by: Dan Williams <dcbw at redhat dot com>
8288
8289         * gst/playback/gstplaybasebin.c:
8290         (gst_play_base_bin_get_streaminfo_value_array):
8291         Don't return NULL when querying the stream info value array but instead
8292         return an empty array. Fixes #459204.
8293
8294 2007-07-23  Tim-Philipp Müller  <tim at centricular dot net>
8295
8296         * gst/playback/gsturidecodebin.c:
8297           Init debug category before using it.
8298
8299 2007-07-21  Jan Schmidt  <thaytan@noraisin.net>
8300
8301         * gst-libs/gst/interfaces/mixer.h:
8302         Add padding vars in place of the signal pointers
8303         when building with DISABLE_DEPRECATED so that the
8304         interface structure doesn't change size.
8305
8306 2007-07-20  Jan Schmidt  <thaytan@noraisin.net>
8307
8308         * docs/libs/gst-plugins-base-libs-sections.txt:
8309         * ext/alsa/gstalsamixer.c:
8310         * ext/alsa/gstalsamixer.h:
8311         * ext/alsa/gstalsamixerelement.c:
8312         * ext/alsa/gstalsamixertrack.c:
8313         * gst-libs/gst/interfaces/mixer.c:
8314         * gst-libs/gst/interfaces/mixer.h:
8315         * gst-libs/gst/interfaces/mixeroptions.c:
8316         * gst-libs/gst/interfaces/mixeroptions.h:
8317         * gst-libs/gst/interfaces/mixertrack.c:
8318         * gst-libs/gst/interfaces/mixertrack.h:
8319         * tests/check/Makefile.am:
8320         * tests/check/libs/mixer.c:
8321
8322         Patch By: Marc-Andre Lureau <marcandre.lureau@gmail.com>
8323         Fixes: #152864 
8324
8325         Add support for notifying mixer changes on the message bus, and
8326         implement it in alsamixer.
8327
8328         API: gst_mixer_get_mixer_flags
8329         API: gst_mixer_message_parse_mute_toggled
8330         API: gst_mixer_message_parse_record_toggled
8331         API: gst_mixer_message_parse_volume_changed
8332         API: gst_mixer_message_parse_option_changed
8333         API: GstMixerMessageType
8334         API: GstMixerFlags
8335
8336 2007-07-20  Michael Smith <msmith@fluendo.com>
8337
8338         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
8339         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_setcaps):
8340           xcontext->im_format is only for testing XShm support (as the header
8341           file comments document). Use xvimage->im_format for everything else.
8342           Avoids spurious warnings on buffer allocation before setcaps.
8343
8344 2007-07-20  Stefan Kost  <ensonic@users.sf.net>
8345
8346         * tests/examples/volume/Makefile.am:
8347         * tests/icles/Makefile.am:
8348           We should use $(LIBM).
8349
8350 2007-07-20  Stefan Kost  <ensonic@users.sf.net>
8351
8352         * tests/icles/Makefile.am:
8353           This needs -lm.
8354
8355 2007-07-16  Wim Taymans  <wim.taymans@gmail.com>
8356
8357         * gst-libs/gst/rtp/gstbasertppayload.c:
8358         (gst_basertppayload_class_init), (gst_basertppayload_init),
8359         (gst_basertppayload_set_property),
8360         (gst_basertppayload_get_property):
8361         Don't break ABI, restore previous ranges. Keep the default random
8362         selection of timestamp and seqnum offset but as soon as the app sets a
8363         specific value, use that one.
8364
8365 2007-07-14  Wim Taymans  <wim.taymans@gmail.com>
8366
8367         Patch by: Bastien Nocera <hadess at hadess dot net>
8368
8369         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
8370         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
8371         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
8372         * sys/xvimage/xvimagesink.h:
8373         Add option to turn off double-buffering for debugging purposes.
8374         Fixes #437169.
8375
8376 2007-07-14  Wim Taymans  <wim.taymans@gmail.com>
8377
8378         Patch by: Jorn Baayen <jorn at openedhand dot com>
8379
8380         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
8381         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
8382         (gst_ximagesink_init), (gst_ximagesink_class_init):
8383         * sys/ximage/ximagesink.h:
8384         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents),
8385         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
8386         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
8387         * sys/xvimage/xvimagesink.h:
8388         add 'handle-expose' property. Useful for video widgets which may want to
8389         be in control of Expose behaviour. Fixes #380625
8390
8391 2007-07-14  Wim Taymans  <wim.taymans@gmail.com>
8392
8393         * gst-libs/gst/rtp/gstbasertppayload.c:
8394         (gst_basertppayload_class_init), (gst_basertppayload_init),
8395         (gst_basertppayload_event), (gst_basertppayload_push),
8396         (gst_basertppayload_set_property),
8397         (gst_basertppayload_get_property),
8398         (gst_basertppayload_change_state):
8399         * gst-libs/gst/rtp/gstbasertppayload.h:
8400         Fix ranges of rtp payloader properties so that the full range can be
8401         used in addition to -1 (random).
8402         Fix wrong seqnum reporting in caps.
8403         Fixes #420326.
8404
8405 2007-07-13  Wim Taymans  <wim.taymans@gmail.com>
8406
8407         * gst/videorate/gstvideorate.c: (gst_video_rate_init),
8408         (gst_video_rate_query):
8409         Use boilerplate.
8410         Add latency query, might not be perfect yet but already works a lot
8411         better. Fixes #442557.
8412
8413 2007-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
8414
8415         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
8416         (gst_xvimagesink_setcaps):
8417         * sys/xvimage/xvimagesink.h:
8418         After a caps change, redraw our borders to avoid garbage left there
8419         when the image format changes to a smaller size, like 16:9 -> 4:3
8420         Also, hold the flow_lock a bit longer in the set_caps while we're
8421         fiddling with the xcontext.
8422
8423 2007-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
8424
8425         * Makefile.am:
8426         * configure.ac:
8427         * tests/Makefile.am:
8428         Remove bogus check for libcheck, since we check for
8429         gstreamer-check and it pulls in the required info from there, and we
8430         weren't actually _using_ the information for libcheck ourselves
8431         anyway.
8432
8433 2007-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
8434
8435         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
8436         (gst_ffmpeg_caps_to_pixfmt):
8437         Fix the r_mask test for RGBA32 on little-endian.
8438         Fix a stupid typo that would have obviously broken 
8439         compilation on big-endian, if anyone was testing.
8440
8441 2007-07-12  Wim Taymans  <wim.taymans@gmail.com>
8442
8443         * gst/videotestsrc/videotestsrc.c: (paint_hline_AYUV),
8444         (paint_hline_str4):
8445         * gst/videotestsrc/videotestsrc.h:
8446         Add alpha to the color struct.
8447         Use a default alpha value of 255 instead of 128.
8448
8449 2007-07-12  Wim Taymans  <wim.taymans@gmail.com>
8450
8451         * gst/playback/gstplaybasebin.c: (no_more_pads_full),
8452         (setup_source):
8453         Clear the dynamic pads counter when starting a new uri. This makes
8454         reusing playbin work again.
8455         Fixes #454264.
8456
8457 2007-07-12  Stefan Kost  <ensonic@users.sf.net>
8458
8459         * configure.ac:
8460           Use pkg-config to locate check.
8461
8462 2007-07-12  Tim-Philipp Müller  <tim at centricular dot net>
8463
8464         * configure.ac:
8465         * tests/check/elements/volume.c: (GST_START_TEST):
8466           Fix 'make check' build against core CVS.
8467
8468 2007-07-10  Stefan Kost  <ensonic@users.sf.net>
8469
8470         * gst-libs/gst/interfaces/propertyprobe.c:
8471         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
8472         * gst-libs/gst/tag/gstvorbistag.c:
8473           Make gtk-doc happy.
8474
8475 2007-07-08  Tim-Philipp Müller  <tim at centricular dot net>
8476
8477         * gst-libs/gst/audio/gstbaseaudiosink.c:
8478         (gst_base_audio_sink_callback):
8479           Quick hack to make audiosinks stop at EOS when operating in
8480           pull-mode; needs to be fixed properly some day.
8481
8482 2007-07-06  Stefan Kost  <ensonic@users.sf.net>
8483
8484         * docs/libs/gst-plugins-base-libs-sections.txt:
8485           Fix location of includes in the docs.
8486
8487 2007-07-06  Jan Schmidt  <thaytan@mad.scientist.com>
8488
8489         * gst/ffmpegcolorspace/avcodec.h:
8490         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
8491         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
8492         (gst_ffmpegcsp_avpicture_fill):
8493         * gst/ffmpegcolorspace/imgconvert.c: (img_convert),
8494         (img_get_alpha_info):
8495         Add 2 new pixel formats - ABGR32 and ARGB32, which are reflections
8496         of the existing BGRA32 and RGBA32 formats with the alpha at the other
8497         end of the word. Partially fixes #451908
8498
8499 2007-07-05  Stefan Kost  <ensonic@users.sf.net>
8500
8501         * docs/libs/Makefile.am:
8502         * docs/plugins/Makefile.am:
8503           Simplify --extra-dir as gtkdoc scans recursively.
8504
8505 2007-07-03  Wim Taymans  <wim.taymans@gmail.com>
8506
8507         * gst/adder/gstadder.c: (gst_adder_sink_getcaps),
8508         (gst_adder_request_new_pad):
8509         Make getcaps more robust by not using the proxycaps function. This makes
8510         sure that we don't end up recursively calling getcaps upstream.
8511         See #316248.
8512
8513 2007-06-29  Wim Taymans  <wim.taymans@gmail.com>
8514
8515         * gst/audioconvert/audioconvert.c:
8516         Include math.h to fix compilation.
8517
8518 2007-06-29  Jan Schmidt  <thaytan@mad.scientist.com>
8519
8520         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
8521         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
8522         Add a mapping for YUV format "IYU1", which is a 4:1:1 packed pixel
8523         format, as produced by some dc1394 cameras like the iSight.
8524         See http://www.fourcc.org/yuv.php#IYU1
8525
8526 2007-06-28  Sebastian Dröge  <slomo@circular-chaos.org>
8527
8528         * gst/audioconvert/Makefile.am:
8529         * gst/audioconvert/audioconvert.c: (audio_convert_get_func_index),
8530         (check_default), (audio_convert_prepare_context),
8531         (audio_convert_clean_context), (audio_convert_convert):
8532         * gst/audioconvert/audioconvert.h:
8533         * gst/audioconvert/gstaudioconvert.c:
8534         (gst_audio_convert_dithering_get_type),
8535         (gst_audio_convert_ns_get_type), (gst_audio_convert_class_init),
8536         (gst_audio_convert_init), (gst_audio_convert_set_caps),
8537         (gst_audio_convert_set_property), (gst_audio_convert_get_property):
8538         * gst/audioconvert/gstaudioconvert.h:
8539         * gst/audioconvert/gstaudioquantize.c:
8540         (gst_audio_quantize_setup_noise_shaping),
8541         (gst_audio_quantize_free_noise_shaping),
8542         (gst_audio_quantize_setup_dither),
8543         (gst_audio_quantize_free_dither),
8544         (gst_audio_quantize_setup_quantize_func),
8545         (gst_audio_quantize_setup), (gst_audio_quantize_free):
8546         * gst/audioconvert/gstaudioquantize.h:
8547         Implement dithering and noise shaping in audioconvert. By default now
8548         TPDF dithering (and no noise shaping) will be used when converting
8549         from a higher bit depth to 20 bit depth or smaller, otherwise
8550         everything will be as it is now.
8551         For the last audioconvert in a pipeline it would make sense to
8552         use some kind of noise shaping, enabling it by default for all
8553         conversions would give undesired results though. Fixes #360246.
8554         * tests/check/elements/audioconvert.c: (setup_audioconvert),
8555         (GST_START_TEST):
8556         Adjust unit test for the new audioconvert.
8557
8558 2007-06-28  Wim Taymans  <wim@fluendo.com>
8559
8560         * gst/playback/gstqueue2.c: (apply_segment), (update_buffering):
8561         Use other metrics as well when estimating the buffer level.
8562
8563 2007-06-28  Wim Taymans  <wim@fluendo.com>
8564
8565         * gst/playback/gstplaybasebin.c: (make_decoder), (setup_source):
8566         Small debug improvement.
8567
8568         * gst/playback/gstqueue2.c: (apply_segment), (update_buffering),
8569         (plugin_init):
8570         Tweak the rate estimation period.
8571         When calculating the buffer filledness in rate estimation mode, don't
8572         mix it with other metrics.
8573
8574 2007-06-28  Wim Taymans  <wim@fluendo.com>
8575
8576         * gst/playback/gstdecodebin2.c: (gst_decode_group_new),
8577         (gst_decode_group_expose), (gst_decode_group_free), (add_fakesink):
8578         When creating the groups, allow for a 5 second, unlimited buffers
8579         preroll phase after which we expose the group.
8580         When the group is exposed, use a small number of buffers up to a 2
8581         second limit. Also disconnect the overrun signal from multiqueue when we
8582         exposed the group because it is not needed anymore.
8583
8584 2007-06-27  Tim-Philipp Müller  <tim at centricular dot net>
8585
8586         * gst-libs/gst/tag/tags.c: (gst_tag_freeform_string_to_utf8):
8587           Don't pass trailing zeroes in fixed-size string arrays in ID3v1 tags
8588           to utf8-validate; fixes recognition of ID3v1 tags in UTF-8 encoding
8589           (#451707); also, output some debugging info when dealing with
8590           freeform strings.
8591
8592         * tests/check/libs/tag.c: (GST_START_TEST), (tag_suite):
8593           Add unit test for the above.
8594
8595 2007-06-27  Tim-Philipp Müller  <tim at centricular dot net>
8596
8597         * gst-libs/gst/pbutils/descriptions.c: (caps_are_rtp_caps):
8598           Add description for Windows Media RTP caps.
8599
8600         * gst-libs/gst/pbutils/missing-plugins.c: (copy_and_clean_caps):
8601           Remove RTP fields that don't define the format from caps.
8602
8603 2007-06-27  Tim-Philipp Müller  <tim at centricular dot net>
8604
8605         * ext/vorbis/vorbisdec.c: (vorbis_dec_decode_buffer):
8606           Skip empty buffers, but not empty header buffers. That way the original
8607           vorbisdec unit test still passes (#451145); also, take into account
8608           that those empty packets might carry a granulepos.
8609
8610         * tests/check/Makefile.am:
8611         * tests/check/elements/vorbisdec.c:
8612         (_create_codebook_header_buffer), (_create_audio_buffer),
8613         (GST_START_TEST), (vorbisdec_suite):
8614           Add unit test that sends an empty packet.
8615
8616 2007-06-27  Wim Taymans  <wim@fluendo.com>
8617
8618         * ext/vorbis/vorbisdec.c: (vorbis_dec_decode_buffer):
8619         Don't error out on 0-sized packets, just emit a warning because this is
8620         not a fatal error. Fixes #451145.
8621
8622 2007-06-25  Stefan Kost  <ensonic@users.sf.net>
8623
8624         * docs/plugins/gst-plugins-base-plugins.args:
8625         * docs/plugins/gst-plugins-base-plugins.signals:
8626         * docs/plugins/inspect/plugin-adder.xml:
8627         * docs/plugins/inspect/plugin-alsa.xml:
8628         * docs/plugins/inspect/plugin-audioconvert.xml:
8629         * docs/plugins/inspect/plugin-audiorate.xml:
8630         * docs/plugins/inspect/plugin-audioresample.xml:
8631         * docs/plugins/inspect/plugin-audiotestsrc.xml:
8632         * docs/plugins/inspect/plugin-cdparanoia.xml:
8633         * docs/plugins/inspect/plugin-decodebin.xml:
8634         * docs/plugins/inspect/plugin-decodebin2.xml:
8635         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
8636         * docs/plugins/inspect/plugin-gdp.xml:
8637         * docs/plugins/inspect/plugin-gnomevfs.xml:
8638         * docs/plugins/inspect/plugin-libvisual.xml:
8639         * docs/plugins/inspect/plugin-ogg.xml:
8640         * docs/plugins/inspect/plugin-pango.xml:
8641         * docs/plugins/inspect/plugin-playbin.xml:
8642         * docs/plugins/inspect/plugin-subparse.xml:
8643         * docs/plugins/inspect/plugin-tcp.xml:
8644         * docs/plugins/inspect/plugin-theora.xml:
8645         * docs/plugins/inspect/plugin-typefindfunctions.xml:
8646         * docs/plugins/inspect/plugin-video4linux.xml:
8647         * docs/plugins/inspect/plugin-videorate.xml:
8648         * docs/plugins/inspect/plugin-videoscale.xml:
8649         * docs/plugins/inspect/plugin-videotestsrc.xml:
8650         * docs/plugins/inspect/plugin-volume.xml:
8651         * docs/plugins/inspect/plugin-vorbis.xml:
8652         * docs/plugins/inspect/plugin-ximagesink.xml:
8653         * docs/plugins/inspect/plugin-xvimagesink.xml:
8654           Update docs with caps info.
8655
8656 2007-06-25  Tim-Philipp Müller  <tim at centricular dot net>
8657
8658         * po/POTFILES.in:
8659           Add more files with translatable strings (#450875).
8660
8661 2007-06-23  Edward Hervey  <edward@fluendo.com>
8662
8663         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_find_chains):
8664         The chain should be freed if we error out here, else it will leak.
8665         * gst/playback/gstdecodebin.c: (disconnect_unlinked_signals),
8666         (cleanup_decodebin):
8667         Don't forget to *properly* remove the signals, else it will leak.
8668
8669 2007-06-22  Jan Schmidt  <thaytan@noraisin.net>
8670
8671         * MAINTAINERS:
8672         Updating all the maintainers files
8673
8674 2007-06-21  Stefan Kost  <ensonic@users.sf.net>
8675
8676         * tests/examples/seek/seek.c: (update_scale), (play_cb), (stop_cb),
8677         (main):
8678           Destroy and recreate parse-launch based pipeline after stop to be able
8679           to play again. Reorder some code and add more comments.
8680
8681 2007-06-20  Jan Schmidt  <thaytan@mad.scientist.com>
8682
8683         * gst/playback/gstdecodebin2.c: (analyze_new_pad):
8684         When handling a delayed-caps notification case, mark
8685         the group as dynamic so that the nbdynamic count is
8686         incremented and decremented correctly. Fixes: #449156
8687         Patch by: Wim Taymans <wim@fluendo.com>
8688
8689 2007-06-19  Andy Wingo  <wingo@pobox.com>
8690
8691         * gst-libs/gst/audio/gstbaseaudiosink.c
8692         (gst_base_audio_sink_init): Enable pull-mode operation.
8693
8694 2007-06-19  Michael Smith <msmith@fluendo.com>
8695
8696         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
8697           Change minimum rate back to 1000 to allow low-sample-rate wav files
8698           to play back.
8699
8700 2007-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
8701
8702         * po/vi.po:
8703           Update translations.
8704
8705 2007-06-15  David Schleef  <ds@schleef.org>
8706
8707         * gst/playback/gstqueue2.c:
8708           Fix compile error from ignored return value.
8709
8710 2007-06-15  Michael Smith <msmith@fluendo.com>
8711
8712         * gst/videoscale/vs_4tap.c: (vs_image_scale_4tap_Y):
8713           Update tmpbuf for all neccesary rows, not just one, as is required
8714           when downscaling.
8715           Fixes #402076.
8716
8717 2007-06-15  Michael Smith <msmith@fluendo.com>
8718
8719         * tests/check/pipelines/oggmux.c: (validate_ogg_page), (is_video),
8720         (eos_buffer_probe):
8721           Add a test that ensures we set DELTA_UNIT on all non-header,
8722           non-video buffers, if we have a video stream.
8723         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
8724         (gst_ogg_mux_process_best_pad):
8725           Move setting delta_pad to earlier, where we inspect all pads, so
8726           that leading audio pages don't get DELTA_UNIT unset if they come
8727           before the first DELTA_UNIT from video pages. Fixes the newly-added
8728           test. Fixes #385527.
8729
8730 2007-06-14  Tim-Philipp Müller  <tim at centricular dot net>
8731
8732         * tests/check/pipelines/streamheader.c: (streamheader_suite):
8733           Disable test_multifdsink_gdp_vorbisenc() on ppc64 since it
8734           fails on the p5-ppc64 build bot and the failure looks like it is due
8735           to the same issue as #348114, ie. a compiler bug.
8736
8737 2007-06-13  Edward Hervey  <edward@fluendo.com>
8738
8739         * gst/playback/gstqueue2.c: (gst_queue_create_read):
8740         Fix build on MacOSX.
8741
8742 2007-06-13  Wim Taymans  <wim@fluendo.com>
8743
8744         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
8745         (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain):
8746         Fix compilation on mingw. Fixes #446972.
8747
8748 2007-06-12  Wim Taymans  <wim@fluendo.com>
8749
8750         Patches by: Thiago Sousa Santos <thiagossantos at gmail dot com>
8751
8752         * gst/playback/gstqueue2.c: (update_buffering),
8753         (gst_queue_locked_enqueue):
8754         Fix a division by zero when the max percent is <= 0. Fixes #446572.
8755         also update the buffering status when receiving events. Fixes #446551.
8756
8757 2007-06-11  Wim Taymans  <wim@fluendo.com>
8758
8759         Based on patch by: Thiago Sousa Santos <thiagossantos at gmail dot com>
8760
8761         * gst/playback/gstqueue2.c: (gst_queue_peer_query),
8762         (gst_queue_handle_src_query):
8763         Wait for preroll before attempting to forward a duration query upstream.
8764         Fixes #445505.
8765
8766 2007-06-07  Sebastien Moutte  <sebastien@moutte.net>
8767
8768         * gst-libs/gst/rtp/gstbasertpdepayload.c: 
8769         (gst_base_rtp_depayload_set_gst_timestamp):
8770         Use G_GINT64_CONSTANT macro for int64 constant.
8771         * win32/common/libgstinterfaces.def:
8772         * win32/common/libgsttag.def:
8773         Add new exported functions.
8774
8775 2007-06-07  Tim-Philipp Müller  <tim at centricular dot net>
8776
8777         * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers):
8778           The BOS page of the first Dirac video stream needs to come before
8779           the BOS page of any Vorbis streams or other audio streams, just like
8780           it is with Theora.
8781
8782 2007-06-07  Wim Taymans  <wim@fluendo.com>
8783
8784         * gst/playback/gstqueue2.c: (gst_queue_get_range):
8785         Fix compilation.
8786
8787 2007-06-06  Wim Taymans  <wim@fluendo.com>
8788
8789         Patch by: Thiago Sousa Santos <thiagossantos at gmail dot com>
8790
8791         * gst/playback/gstqueue2.c: (gst_queue_init),
8792         (gst_queue_handle_sink_event), (gst_queue_chain),
8793         (gst_queue_get_range), (gst_queue_src_checkgetrange_function),
8794         (gst_queue_sink_activate_push), (gst_queue_src_activate_push),
8795         (gst_queue_src_activate_pull):
8796         Add pull based scheduling and fix some deadlocks. Fixes #444523.
8797         Does not yet completely work because duration queries upstream won't
8798         block yet.
8799
8800 2007-06-06  Wim Taymans  <wim@fluendo.com>
8801
8802         * configure.ac:
8803         * gst/playback/gstqueue2.c: (gst_queue_create_read):
8804         Some more fseeko checks.
8805
8806 2007-06-06  Wim Taymans  <wim@fluendo.com>
8807
8808         * configure.ac:
8809         check for large file support.
8810
8811 2007-06-05  Sebastian Dröge  <slomo@circular-chaos.org>
8812
8813         Based on a patch by Sven Arvidsson <sa at whiz dot se>:
8814
8815         * gst/subparse/gstsubparse.c: (parse_subrip),
8816         (subviewer_unescape_newlines), (parse_subviewer),
8817         (gst_sub_parse_data_format_autodetect),
8818         (gst_sub_parse_format_autodetect), (gst_subparse_type_find):
8819         * gst/subparse/gstsubparse.h:
8820         Add support for SubViewer version 1 and 2 subtitles. Fixes #394061.
8821         * tests/check/elements/subparse.c: (GST_START_TEST),
8822         (subparse_suite):
8823         Add a unit test for both SubViewer formats.
8824
8825 2007-06-01  Michael Smith <msmith@fluendo.com>
8826
8827         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_do_seek):
8828           Don't overflow intermediate values when seeking to large time values
8829           in audiotestsrc.
8830
8831 2007-06-05  Wim Taymans  <wim@fluendo.com>
8832
8833         * gst/playback/gstqueue2.c: (gst_queue_have_data),
8834         (gst_queue_create_read), (gst_queue_read_item_from_file),
8835         (gst_queue_open_temp_location_file), (gst_queue_locked_enqueue):
8836         Include stdio to define fseeko.
8837
8838 2007-06-05  Wim Taymans  <wim@fluendo.com>
8839
8840         Patch by: Edward Hervey  <edward@fluendo.com>
8841
8842         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_fixate),
8843         (gst_v4lsrc_query):
8844         Make v4lsrc output segments in GST_FORMAT_TIME. Fixes #442553.
8845
8846 2007-06-05  Tim-Philipp Müller  <tim at centricular dot net>
8847
8848         * gst-libs/gst/riff/Makefile.am:
8849         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_info):
8850           Use gst_tag_utf8_from_freeform_string() from libgsttag instead of
8851           our own implementation.
8852
8853 2007-06-05  Wim Taymans  <wim@fluendo.com>
8854
8855         * gst-libs/gst/rtp/gstbasertpdepayload.c:
8856         (gst_base_rtp_depayload_setcaps),
8857         (gst_base_rtp_depayload_set_gst_timestamp),
8858         (gst_base_rtp_depayload_change_state):
8859         Handle timestamp wraparound.
8860
8861 2007-06-05  Wim Taymans  <wim@fluendo.com>
8862
8863         * gst/playback/gsturidecodebin.c: (no_more_pads_full),
8864         (new_decoded_pad), (remove_pads), (make_decoder), (setup_source),
8865         (gst_uri_decode_bin_change_state):
8866         Make sure we name srcpads uniquely even when using different internal
8867         decodebins.
8868         Signal no-more-pads when no more dynamic elements exist.
8869         Remove pads on cleanup.
8870
8871 2007-06-05  Wim Taymans  <wim@fluendo.com>
8872
8873         Based on patch by: Thiago Sousa Santos <thiagossantos at gmail dot com>
8874
8875         * gst/playback/gstqueue2.c: (gst_queue_class_init),
8876         (gst_queue_init), (gst_queue_finalize),
8877         (gst_queue_write_buffer_to_file), (gst_queue_have_data),
8878         (gst_queue_create_read), (gst_queue_read_item_from_file),
8879         (gst_queue_open_temp_location_file),
8880         (gst_queue_close_temp_location_file), (gst_queue_locked_flush),
8881         (gst_queue_locked_enqueue), (gst_queue_locked_dequeue),
8882         (gst_queue_is_empty), (gst_queue_is_filled),
8883         (gst_queue_change_state), (gst_queue_set_temp_location),
8884         (gst_queue_set_property):
8885         Add support for filebased buffering. Fixes #441264.
8886
8887 2007-06-05  Wim Taymans  <wim@fluendo.com>
8888
8889         * gst/playback/gstdecodebin2.c: (gst_decode_bin_factory_filter),
8890         (analyze_new_pad), (connect_pad), (expose_pad), (caps_notify_cb),
8891         (caps_notify_group_cb), (gst_decode_group_new),
8892         (gst_decode_group_free):
8893         Add support for delayed caps fixation when autoplugging.
8894         Optimize cases where a multiqueue is not needed/wanted, like right after
8895         anything that is not a demuxer.
8896
8897 2007-06-05  Wim Taymans  <wim@fluendo.com>
8898
8899         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_parse_skeleton_fisbone),
8900         (gst_ogg_pad_submit_packet), (gst_ogg_demux_perform_seek),
8901         (gst_ogg_demux_read_chain), (gst_ogg_demux_collect_chain_info):
8902         consideratly speedup ogg chain detection by not trying to find a base
8903         timestamp for skeleton streams. 
8904
8905 2007-06-05  Wim Taymans  <wim@fluendo.com>
8906
8907         * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type),
8908         (gst_multi_fd_sink_class_init), (gst_multi_fd_sink_add_full),
8909         (gst_multi_fd_sink_remove_flush),
8910         (gst_multi_fd_sink_remove_client_link),
8911         (gst_multi_fd_sink_handle_client_write),
8912         (gst_multi_fd_sink_handle_clients):
8913         * gst/tcp/gstmultifdsink.h:
8914         Add support for remove_flush.
8915
8916 2007-06-05  Wim Taymans  <wim@fluendo.com>
8917
8918         * docs/design/draft-keyframe-force.txt:
8919         * ext/theora/theoraenc.c: (theora_enc_sink_event),
8920         (theora_enc_chain):
8921         Add draft design for forcing keyframes in encoders and implement in
8922         theoraenc.
8923
8924 2007-06-05  Jan Schmidt  <thaytan@mad.scientist.com>
8925
8926         * configure.ac:
8927           Back to CVS
8928
8929 === release 0.10.13 ===
8930
8931 2007-06-05  Jan Schmidt <thaytan@mad.scientist.com>
8932
8933         * configure.ac:
8934           releasing 0.10.13, "What's Going on?"
8935
8936 2007-05-31  Jan Schmidt  <thaytan@mad.scientist.com>
8937
8938         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
8939         In riff, the depth is stored in the size field but it just means that
8940         the least significant bits are cleared. We can therefore just play
8941         the sample as if it had a depth == width. Fixes: #440997
8942
8943         Patch by: Wim Taymans <wim@fluendo.com> 
8944         Patch by: Sebastian Dröge  <slomo@circular-chaos.org>
8945
8946 2007-05-31  Jan Schmidt  <thaytan@mad.scientist.com>
8947
8948         * gst-libs/gst/floatcast/floatcast.h:
8949         Define inline when needed on win32 builds. Fixes: #441295
8950         Patch by: Sebastien Moutte  <sebastien@moutte.net>
8951
8952 2007-05-29  Wim Taymans  <wim@fluendo.com>
8953
8954         * gst/playback/gstplaybasebin.c: (queue_overrun),
8955         (no_more_pads_full):
8956         Stop buffering when the group is commited because the queues filled up.
8957         Fixes #442024.
8958
8959 2007-05-25  Jan Schmidt  <thaytan@mad.scientist.com>
8960
8961         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_ensure_track_list),
8962         (gst_alsa_mixer_free), (gst_alsa_mixer_update),
8963         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
8964         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
8965         (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
8966         * ext/alsa/gstalsamixer.h:
8967         * ext/alsa/gstalsamixerelement.c:
8968         (gst_alsa_mixer_element_interface_supported),
8969         (gst_alsa_mixer_element_finalize), (gst_alsa_mixer_element_init),
8970         (gst_alsa_mixer_element_set_property),
8971         (gst_alsa_mixer_element_get_property),
8972         (gst_alsa_mixer_element_change_state):
8973         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_update):
8974         * gst-libs/gst/interfaces/mixer.c: (gst_mixer_volume_changed),
8975         (gst_mixer_option_changed):
8976         * gst-libs/gst/interfaces/mixer.h:
8977         Revert commits towards #152864 made so far. We'll pick it up again
8978         after the 0.10.13 release.
8979
8980 2007-05-24  Wim Taymans  <wim@fluendo.com>
8981
8982         * gst-libs/gst/audio/gstbaseaudiosink.c:
8983         (gst_base_audio_sink_render):
8984         After an interrupt (PAUSED/flush) assume that the next sample should not
8985         be aligned to the previous sample. Fixes #417992.
8986
8987 2007-05-24  Tim-Philipp Müller  <tim at centricular dot net>
8988
8989         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
8990           Don't add channels and rate fields to the template caps for
8991           audio/x-dts, as wavparse might not always be able to set them,
8992           which would then lead to 'caps are not a real subset of the
8993           template caps' warnings.
8994
8995 2007-05-24  Jan Schmidt  <thaytan@mad.scientist.com>
8996
8997         * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
8998         Handle unknown or invalid pads without crashing, as might occur if
8999         a media file like an mp3 is specified as a subtitle file.
9000         Fixes: #410039
9001
9002 2007-05-24  Jan Schmidt  <thaytan@mad.scientist.com>
9003
9004         * gst/playback/gstplaybin.c: (add_sink), (dummy_blocked_cb),
9005         (setup_sinks):
9006         Block the subtitle bin output queue before ghosting it and linking,
9007         then unblock after. This avoids spurious not-linked errors caused 
9008         by the queue starting up (because it gets linked when it is ghosted). 
9009         Fixes: #350299
9010
9011 2007-05-23  Jan Schmidt  <thaytan@mad.scientist.com>
9012
9013         * tests/check/elements/playbin.c: (test_suburi_error_unknowntype):
9014         Use /dev/zero instead of /dev/urandom to produce an invalid subtitle
9015         file. Avoids flukes where the input gets typefound to some valid but
9016         useless type.
9017
9018 2007-05-22  Tim-Philipp Müller  <tim at centricular dot net>
9019
9020         * tests/check/Makefile.am:
9021         * tests/check/elements/.cvsignore:
9022         * tests/check/elements/gnomevfssink.c: (setup_gnomevfssink),
9023         (cleanup_gnomevfssink), (GST_START_TEST), (gnomevfssink_suite):
9024           Add unit test for gnomevfssink seeking and position reporting for
9025           file:// URIs.
9026
9027 2007-05-22  Tim-Philipp Müller  <tim at centricular dot net>
9028
9029         Patch by: Mark Nauwelaerts <manauw at skynet be>
9030
9031         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_init),
9032         (gst_gnome_vfs_sink_open_file), (gst_gnome_vfs_sink_handle_event),
9033         (gst_gnome_vfs_sink_query), (gst_gnome_vfs_sink_render):
9034         * ext/gnomevfs/gstgnomevfssink.h:
9035           Fix position reporting, especially after a seek (from upstream),
9036           see #412648.
9037
9038 2007-05-22  Tim-Philipp Müller  <tim at centricular dot net>
9039
9040         * ext/cdparanoia/gstcdparanoiasrc.c:
9041           Repair umlaut.
9042
9043 2007-05-22  Jan Schmidt  <thaytan@mad.scientist.com>
9044
9045         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
9046         Specify the full valid range for MP3 samplerates. Fixes a regression
9047         caused by extra header checks since the last release.
9048
9049 2007-05-21  Jan Schmidt  <thaytan@mad.scientist.com>
9050
9051         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
9052         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
9053         Fix a locking-order bug I introduced with my changes the other day.
9054         Patch by Mike Smith.
9055
9056 2007-05-21  Michael Smith <msmith@fluendo.com>
9057
9058         * ext/theora/theoradec.c: (theora_handle_data_packet):
9059           Don't look inside 0-length packets (which indicate duplicated
9060           frames)
9061
9062 2007-05-21  Wim Taymans  <wim@fluendo.com>
9063
9064         * ext/cdparanoia/gstcdparanoiasrc.c:
9065         (gst_cd_paranoia_src_read_sector):
9066         * gst-libs/gst/audio/gstbaseaudiosrc.c:
9067         (gst_base_audio_src_create):
9068         Small cleanups.
9069
9070         * ext/theora/theoradec.c: (theora_dec_sink_event):
9071         Fix typo.
9072
9073         * gst-libs/gst/rtp/gstbasertpdepayload.c:
9074         (gst_base_rtp_depayload_set_gst_timestamp):
9075         Add some FIXME
9076
9077         * gst/playback/gstdecodebin.c: (queue_underrun_cb):
9078         And some debug info when a FIXME path is hit.
9079
9080 2007-05-21  Wim Taymans  <wim@fluendo.com>
9081
9082         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
9083         (gst_base_rtp_audio_payload_class_init),
9084         (gst_base_rtp_audio_payload_init),
9085         (gst_base_rtp_audio_payload_finalize),
9086         (gst_base_rtp_audio_payload_handle_frame_based_buffer),
9087         (gst_base_rtp_audio_payload_handle_sample_based_buffer),
9088         (gst_base_rtp_payload_audio_handle_event):
9089         Some cleanups, remove minptime property as it is now in the parent
9090         class.
9091         Override parent class event function.
9092
9093         * gst-libs/gst/rtp/gstbasertppayload.c:
9094         (gst_basertppayload_class_init), (gst_basertppayload_init),
9095         (gst_basertppayload_event), (gst_basertppayload_set_property),
9096         (gst_basertppayload_get_property):
9097         * gst-libs/gst/rtp/gstbasertppayload.h:
9098         Add min-ptime property.
9099         Add handle-event vmethod. Fixes #415001.
9100
9101 2007-05-18  Stefan Kost  <ensonic@users.sf.net>
9102
9103         * gst-libs/gst/audio/gstbaseaudiosink.c
9104           (gst_base_audio_sink_change_state):
9105           Fix typo in comment.
9106
9107         * gst/playback/gstdecodebin.c (gst_decode_bin_class_init,
9108           free_dynamics, pad_probe, close_pad_link, try_to_link_1,
9109           get_our_ghost_pad, remove_element_chain, queue_underrun_cb,
9110           close_link):
9111         * gst/playback/gstplaybin.c (gst_play_bin_set_property,
9112           gen_audio_element, remove_sinks, gst_play_bin_send_event_to_sink):
9113           Remove trailing whitespaces in comments.
9114
9115         * gst/volume/Makefile.am:
9116           Fix tabs.
9117
9118 2007-05-18  Stefan Kost  <ensonic@users.sf.net>
9119
9120         patch by: Marc-Andre Lureau <marcandre.lureau@gmail.com>
9121
9122         * gst-libs/gst/interfaces/mixer.h (mixer_type, option_changed,
9123           set_option, get_option, _gst_reserved):
9124           Revert reordering functions (keep ABI).
9125
9126 2007-05-17  Jan Schmidt  <thaytan@mad.scientist.com>
9127
9128         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
9129         (gst_ximagesink_xwindow_new), (gst_ximagesink_handle_xevents),
9130         (gst_ximagesink_show_frame):
9131         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
9132         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_handle_xevents),
9133         (gst_xvimagesink_show_frame):
9134         When we create our own window, indicate that we handle the 
9135         WM_DELETE client message from the window manager, so that it won't 
9136         kill our window (and our app) along with it. Handle ClientMessage,
9137         post an error on the bus, and close the window. Further buffers
9138         arriving will result in a FlowError because the window has been
9139         destroyed.
9140
9141         Fixes: #393975
9142
9143         Clean up the X event handling loop and make them the same for
9144         both xvimagesink and ximagesink while I'm at it.
9145
9146 2007-05-17  Wim Taymans  <wim@fluendo.com>
9147
9148         * gst/playback/gstdecodebin2.c: (gst_decode_bin_factory_filter):
9149         Make decodebin2 autoplug depayloaders too.
9150
9151         * gst/playback/gsturidecodebin.c: (source_new_pad):
9152         Set the newly created decoder in a usable state when autoplugging a
9153         dynamic source such as RTSP.
9154
9155 2007-05-17  Tim-Philipp Müller  <tim at centricular dot net>
9156
9157         * gst/playback/gststreaminfo.c: (cb_probe):
9158           Ignore video-codec tag for audio streams and ignore audio-codec tags
9159           for video streams. Should make codec name collection a bit more
9160           robust against sloppy demuxers that send tag events containing both
9161           tags down each pad.
9162
9163 2007-05-17  Wim Taymans  <wim@fluendo.com>
9164
9165         * gst/playback/gstqueue2.c: (update_rates):
9166         Tweak the buffering thresholds a little.
9167         Update the buffer size with the previously calculate rate instead of
9168         only when we calculate a new rate so that we get smoother buffering
9169         updates.
9170
9171         * gst/playback/Makefile.am:
9172         * gst/playback/gsturidecodebin.c: (gst_uri_decode_bin_base_init),
9173         (gst_uri_decode_bin_class_init), (gst_uri_decode_bin_init),
9174         (gst_uri_decode_bin_finalize), (gst_uri_decode_bin_set_property),
9175         (gst_uri_decode_bin_get_property), (unknown_type),
9176         (add_element_stream), (no_more_pads_full), (no_more_pads),
9177         (source_no_more_pads), (new_decoded_pad), (array_has_value),
9178         (gen_source_element), (has_all_raw_caps), (analyse_source),
9179         (remove_decoders), (make_decoder), (remove_source),
9180         (source_new_pad), (setup_source), (decoder_query_init),
9181         (decoder_query_duration_fold), (decoder_query_duration_done),
9182         (decoder_query_position_fold), (decoder_query_position_done),
9183         (decoder_query_latency_fold), (decoder_query_latency_done),
9184         (decoder_query_seeking_fold), (decoder_query_seeking_done),
9185         (decoder_query_generic_fold), (gst_uri_decode_bin_query),
9186         (gst_uri_decode_bin_change_state), (plugin_init):
9187         New element that intergrates a source, optional buffering element and
9188         decodebin.
9189
9190 2007-05-17  Tim-Philipp Müller  <tim at centricular dot net>
9191
9192         * configure.ac:
9193           Bump libtheora requirement to 1.0alpha5 for the pixformat check
9194           (also has a .pc file, so we don't need the fallback check any
9195           longer). Fixes #438840.
9196
9197 2007-05-17  Wim Taymans  <wim@fluendo.com>
9198
9199         * gst/playback/gstqueue2.c: (gst_queue_get_type),
9200         (gst_queue_class_init), (gst_queue_finalize), (update_time_level),
9201         (apply_segment), (apply_buffer), (update_buffering),
9202         (reset_rate_timer), (update_rates), (gst_queue_locked_flush),
9203         (gst_queue_locked_enqueue), (gst_queue_locked_dequeue),
9204         (gst_queue_handle_sink_event), (gst_queue_is_filled),
9205         (gst_queue_chain), (gst_queue_push_one), (gst_queue_loop),
9206         (plugin_init):
9207         fix build.
9208
9209 2007-05-17  Wim Taymans  <wim@fluendo.com>
9210
9211         * gst/playback/Makefile.am:
9212         * gst/playback/gstqueue2.c: (gst_queue_get_type),
9213         (gst_queue_class_init), (gst_queue_init), (gst_queue_finalize),
9214         (gst_queue_getcaps), (gst_queue_bufferalloc),
9215         (gst_queue_acceptcaps), (update_time_level), (apply_segment),
9216         (apply_buffer), (update_buffering), (reset_rate_timer),
9217         (update_rates), (gst_queue_locked_flush),
9218         (gst_queue_locked_enqueue), (gst_queue_locked_dequeue),
9219         (gst_queue_handle_sink_event), (gst_queue_is_empty),
9220         (gst_queue_is_filled), (gst_queue_chain), (gst_queue_push_one),
9221         (gst_queue_loop), (gst_queue_handle_src_event),
9222         (gst_queue_handle_src_query), (gst_queue_sink_activate_push),
9223         (gst_queue_src_activate_push), (gst_queue_change_state),
9224         (gst_queue_set_property), (gst_queue_get_property), (plugin_init):
9225         On our way to playbin2 this is the new network queue that does buffering
9226         all by itself using high and low watermarks. It can also measure up and
9227         downstream bandwidth to optimally size the queue.
9228
9229 2007-05-17  Michael Smith <msmith@fluendo.com>
9230
9231         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_do_seek):
9232         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_do_seek):
9233           Use the segment->last_stop value to calculate the next timestamp to
9234           generate after a seek; not the segment->start value.
9235
9236 2007-05-15  David Schleef  <ds@schleef.org>
9237
9238         * docs/Makefile.am: Install docs even when --disable-gtk-doc
9239           is disabled.  This matches the behavior of gtk+.  Fixes #349099.
9240
9241 2007-05-15  Wim Taymans  <wim@fluendo.com>
9242
9243         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
9244         (gst_ogg_demux_perform_seek), (gst_ogg_demux_handle_page):
9245         Some more chained streaming ogg timestamp fixes.
9246
9247 2007-05-15  Wim Taymans  <wim@fluendo.com>
9248
9249         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
9250         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
9251         (gst_ogg_demux_handle_page):
9252         Add some FIXMEs.
9253         Fix chain start/stop segment handling based on patch by
9254         <ahalda at cs dot mcgill dot ca> see #320984.
9255
9256 2007-05-15  Michael Smith <msmith@fluendo.com>
9257
9258         * configure.ac:
9259           We don't require a C++ compiler. So don't require one.
9260
9261 2007-05-15  Stefan Kost  <ensonic@users.sf.net>
9262
9263         * ext/alsa/gstalsamixer.c (source, n_poll_fds, poll_fds,
9264           gst_alsa_mixer_check, gst_alsa_mixer_dispatch,
9265           gst_alsa_mixer_finalize, gst_alsa_mixer_handle_source_callback,
9266           gst_alsa_mixer_handle_callback, gst_alsa_mixer_elem_handle_callback,
9267           gst_alsa_mixer_ensure_track_list, gst_alsa_mixer_update_option,
9268           gst_alsa_mixer_update_track):
9269           Apply some of the cleanup Tim suggested in #152864 afterwards.
9270
9271 2007-05-15  Stefan Kost  <ensonic@users.sf.net>
9272
9273         patch by: Marc-Andre Lureau <marcandre.lureau@gmail.com>
9274
9275         * ext/alsa/gstalsamixer.c (main_context, GstAlsaMixerWatch,
9276           _GstAlsaMixerWatch, source, n_poll_fds, poll_fds,
9277           gst_alsa_mixer_watch_funcs, gst_alsa_mixer_prepare,
9278           gst_alsa_mixer_check, gst_alsa_mixer_dispatch,
9279           gst_alsa_mixer_finalize, gst_alsa_mixer_find_master_mixer,
9280           gst_alsa_mixer_handle_source_callback,
9281           gst_alsa_mixer_handle_callback, gst_alsa_mixer_elem_handle_callback,
9282           gst_alsa_mixer_ensure_track_list, gst_alsa_mixer_free,
9283           gst_alsa_mixer_get_volume, gst_alsa_mixer_set_volume,
9284           gst_alsa_mixer_set_mute, gst_alsa_mixer_set_record,
9285           gst_alsa_mixer_get_option, gst_alsa_mixer_update_option,
9286           gst_alsa_mixer_update_track, _gst_alsa_mixer_set_interface):
9287         * ext/alsa/gstalsamixer.h (handle_source, interface, dir):
9288         * ext/alsa/gstalsamixerelement.c (gst_alsa_mixer_element_details,
9289           gst_alsa_mixer_element_interface_supported,
9290           gst_alsa_mixer_element_finalize, gst_alsa_mixer_element_init,
9291           gst_alsa_mixer_element_set_property,
9292           gst_alsa_mixer_element_get_property,
9293           gst_alsa_mixer_element_change_state):
9294         * ext/alsa/gstalsamixertrack.c (gst_alsa_mixer_track_update):
9295         * gst-libs/gst/interfaces/mixer.c (gst_mixer_volume_changed,
9296           gst_mixer_option_changed):
9297         * gst-libs/gst/interfaces/mixer.h (set_option, get_option,
9298           volume_changed, option_changed, _gst_reserved):
9299           Implement notification for alsamixer. Fixes #152864
9300
9301 2007-05-14  David Schleef  <ds@schleef.org>
9302
9303         * gst/videotestsrc/videotestsrc.c:
9304         * gst/videotestsrc/videotestsrc.h:
9305           Add support for video/x-raw-bayer.
9306
9307 2007-05-12  David Schleef  <ds@schleef.org>
9308
9309         * sys/xvimage/xvimagesink.c:
9310           Add some sanity checking for the XVImage size returned by X.
9311           Related to #377400.
9312
9313 2007-05-12  Wim Taymans  <wim@fluendo.com>
9314
9315         * gst-libs/gst/rtp/gstbasertpdepayload.c:
9316         (gst_base_rtp_depayload_setcaps),
9317         (gst_base_rtp_depayload_set_gst_timestamp):
9318         Parse and use additional caps fields as described in updated
9319         application/x-rtp caps spec.
9320
9321 2007-05-12  Wim Taymans  <wim@fluendo.com>
9322
9323         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
9324         (gst_ogg_demux_collect_chain_info):
9325         If there is a stream in a chain without any data packets, ignore the
9326         stream in the total length calculations. Might be related to #436820.
9327
9328 2007-05-11  Jan Schmidt  <thaytan@mad.scientist.com>
9329
9330         * gst/typefind/gsttypefindfunctions.c: (mpeg_sys_is_valid_pack),
9331         (mpeg_sys_is_valid_pes), (mpeg_sys_is_valid_sys),
9332         (mpeg_sys_type_find), (mpeg_ts_type_find), (mpeg4_video_type_find),
9333         (mpeg_video_type_find), (mpeg_video_stream_type_find),
9334         (plugin_init):
9335
9336         Consolidate and re-work our mpeg system stream detection to probe
9337         more packets and produce a higher confidence result. Fixes a
9338         regression caused by lowering the typefind probability last year
9339         - related to bug #397810. Remove the redundant MPEG-1 specific 
9340         typefind function, as the new one detects both MPEG-1 & MPEG-2
9341         happily.
9342
9343         Also cleanup the MPEG elementary and MPEG-TS detection functions a
9344         little. 
9345
9346         Tested against my media test directory, with some improvements and
9347         no regressions.
9348
9349 2007-05-10  Wim Taymans  <wim@fluendo.com>
9350
9351         * gst/playback/gstplaybasebin.c: (fill_buffer), (check_queue),
9352         (queue_out_of_data):
9353         Connect to the new queue "pushing" signal instead of the broken
9354         "running" one.
9355
9356 2007-05-09  Sebastien Moutte  <sebastien@moutte.net>
9357
9358         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
9359         (gst_base_rtp_audio_payload_handle_frame_based_buffer):
9360         Move variable declaration before the first instruction.
9361         * gst/videotestsrc/videotestsrc.c:
9362         Define M_PI if it's not defined yet.
9363         * win32/common/libgstrtp.def:
9364         Add new exported functions.
9365
9366 2007-05-09  Michael Smith <msmith@fluendo.com>
9367
9368         * ext/theora/theoradec.c: (theora_handle_type_packet):
9369           gst_pad_push_event() does not return a GstFlowReturn!
9370
9371 2007-05-09  Wim Taymans  <wim@fluendo.com>
9372
9373         * tests/examples/seek/scrubby.c: (stop_cb), (main):
9374         * tests/examples/seek/seek.c: (do_seek):
9375         Some small cosmetic changes.
9376
9377 2007-05-08  Stefan Kost  <ensonic@users.sf.net>
9378
9379         * gst/adder/gstadder.c (gst_adder_src_event, gst_adder_collected,
9380           gst_adder_change_state):
9381         * gst/adder/gstadder.h (bps, offset, collect_event, segment,
9382           segment_pending, segment_position, segment_rate):
9383           Handle playback-rate on adder.
9384
9385 2007-05-07  Michael Smith <msmith@fluendo.com>
9386
9387         * ext/theora/gsttheoradec.h:
9388         * ext/theora/theoradec.c: (gst_theora_dec_reset),
9389         (theora_dec_sink_event), (theora_handle_comment_packet),
9390         (theora_handle_type_packet), (theora_dec_change_state):
9391           Don't push events (newsegment, tags) before initialising the
9392           decoder.
9393           This is neccesary for seeking to work correctly in gnonlin.
9394
9395 2007-05-04  Stefan Kost  <ensonic@users.sf.net>
9396
9397         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
9398         * gst/adder/gstadder.c:
9399         * gst/audiotestsrc/gstaudiotestsrc.c
9400           (gst_audio_test_src_create_white_noise):
9401         * gst/videotestsrc/gstvideotestsrc.c:
9402         * gst/volume/gstvolume.c (VOLUME_UNITY_INT16,
9403           VOLUME_UNITY_INT16_BIT_SHIFT, VOLUME_MAX_DOUBLE,
9404           volume_sink_template, volume_src_template, gst_volume_init,
9405           volume_process_double, volume_process_int16,
9406           volume_process_int16_clamp):
9407           Doc fixes and formatting.
9408
9409 2007-05-04  Tim-Philipp Müller  <tim at centricular dot net>
9410
9411         * tests/check/Makefile.am:
9412         * tests/check/elements/volume.c: (GST_START_TEST), (volume_suite):
9413           Minimal check for volume's GstController usability; also another
9414           test for #422295.
9415
9416 2007-05-04  Tim-Philipp Müller  <tim at centricular dot net>
9417
9418         * gst-libs/gst/cdda/gstcddabasesrc.c:
9419         (gst_cdda_base_src_add_track):
9420           Fix it so that it (a) makes sense and (b) doesn't break
9421           everything cdda-related including the unit test.
9422
9423 2007-05-04  Stefan Kost  <ensonic@users.sf.net>
9424
9425         * gst-libs/gst/cdda/gstcddabasesrc.c:
9426         (gst_cdda_base_src_add_track):
9427           Fix build when disabling asserts.
9428
9429 2007-05-03  Tim-Philipp Müller  <tim at centricular dot net>
9430
9431         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
9432           When XShm is not available, we might get row strides that are not
9433           rounded up to multiples of four; this is bad, because virtually
9434           every RGB-processing element in GStreamer assumes rowstrides are
9435           rounded up to multiples of four, so let's allocate at least enough
9436           memory to avoid crashes in this case. The image will still be
9437           displayed distorted though if this happens, so that still needs
9438           fixing (maybe by allocating a bigger image with an 'even' width
9439           and then clipping it appropriately when rendering - something for
9440           Xlib aficionados in any case).
9441
9442 2007-05-03  Michael Smith <msmith@fluendo.com>
9443
9444         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
9445           If a buffer doesn't have a timestamp, assume it's contiguous with
9446           the previous buffer, and synthesise timestamps appropriately.
9447
9448 2007-05-03  Edward Hervey  <edward@fluendo.com>
9449
9450         * tests/check/elements/videorate.c: (GST_START_TEST):
9451         Set buffer timestamp to a valid value in order to test the buffer
9452         really does stay in videorate.
9453
9454 2007-05-03  Edward Hervey  <edward@fluendo.com>
9455
9456         * gst/videorate/gstvideorate.c: (gst_video_rate_chain):
9457         There is no sensible way to handle incoming buffers which don't have a
9458         valid timestamp. We therefore discard them and wait for the next one.
9459
9460 2007-05-01  Tim-Philipp Müller  <tim at centricular dot net>
9461
9462         * gst/playback/gstdecodebin.c: (type_found), (plugin_init):
9463         * gst/playback/gstdecodebin2.c: (plugin_init):
9464           Better error message for text files.
9465
9466 2007-04-29  Wim Taymans  <wim@fluendo.com>
9467
9468         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_packet_add_rb):
9469         Fix offset bug in generation RR packets.
9470
9471 2007-04-27  Julien MOUTTE  <julien@moutte.net>
9472
9473         * ext/theora/theoradec.c: (_theora_granule_time),
9474         (theora_dec_push_forward), (theora_handle_data_packet),
9475         (theora_dec_decode_buffer): Calculate buffer duration correctly
9476         to generate a perfect stream (#433888).
9477         * gst/audioresample/gstaudioresample.c:
9478         (audioresample_check_discont): Glib provides ABS.
9479
9480 2007-04-27  Wim Taymans  <wim@fluendo.com>
9481
9482         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_packet_get_rb),
9483         (gst_rtcp_packet_add_rb), (gst_rtcp_packet_sdes_add_item),
9484         (gst_rtcp_packet_sdes_add_entry), (gst_rtcp_packet_bye_add_ssrc),
9485         (gst_rtcp_packet_bye_add_ssrcs), (get_reason_offset),
9486         (gst_rtcp_packet_bye_set_reason):
9487         * gst-libs/gst/rtp/gstrtcpbuffer.h:
9488         Fix RB block parsing and writing.
9489         Add support for constructing BYE packets.
9490
9491 2007-04-25  Tim-Philipp Müller  <tim at centricular dot net>
9492
9493         * gst-libs/gst/audio/gstbaseaudiosrc.c: (_do_init),
9494         (gst_base_audio_src_create):
9495         * po/POTFILES.in:
9496           When posting a warning message because samples were dropped, post
9497           something more intelligible than he default error message for clock
9498           errors which is just confusing in this context (#432984).
9499
9500 2007-04-25  Wim Taymans  <wim@fluendo.com>
9501
9502         * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_buffer_new),
9503         (gst_rtcp_buffer_end), (gst_rtcp_buffer_get_packet_count),
9504         (read_packet_header), (gst_rtcp_packet_move_to_next),
9505         (gst_rtcp_buffer_add_packet), (gst_rtcp_packet_sr_set_sender_info),
9506         (gst_rtcp_packet_rr_set_ssrc), (gst_rtcp_packet_add_rb),
9507         (gst_rtcp_packet_sdes_get_item_count),
9508         (gst_rtcp_packet_sdes_first_item),
9509         (gst_rtcp_packet_sdes_next_item), (gst_rtcp_packet_sdes_get_ssrc),
9510         (gst_rtcp_packet_sdes_first_entry),
9511         (gst_rtcp_packet_sdes_next_entry),
9512         (gst_rtcp_packet_sdes_get_entry), (gst_rtcp_packet_sdes_add_item),
9513         (gst_rtcp_packet_sdes_add_entry):
9514         * gst-libs/gst/rtp/gstrtcpbuffer.h:
9515         Implement code to write SR, RR and SDES packets.
9516
9517 2007-04-24  Tim-Philipp Müller  <tim at centricular dot net>
9518
9519         Patch by: Christian Kirbach <Christian dot Kirbach at googlemail com>
9520
9521         * sys/ximage/ximagesink.c:
9522           Fix build if XShm is not available (#432362).
9523
9524 2007-04-24  Sebastian Dröge  <slomo@circular-chaos.org>
9525
9526         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init):
9527         Initalize the AudioConvertCtx with zeroes, otherwise it will contain
9528         pointers to random memory which are passed to g_free() when
9529         audio_convert_prepare_context() is called the first time.
9530
9531 2007-04-24  Tim-Philipp Müller  <tim at centricular dot net>
9532
9533         Patch by: Dan Williams <dcbw redhat com>
9534
9535         * gst/videorate/gstvideorate.c: (gst_video_rate_chain):
9536           Don't leak incoming buffer if gst_pad_push() returns a
9537           non-OK flow. Fixes #432755.
9538          
9539         * tests/check/elements/videorate.c: (GST_START_TEST),
9540         (videorate_suite):
9541           Unit test for the above by Yours Truly.
9542
9543 2007-04-23  Stefan Kost  <ensonic@users.sf.net>
9544
9545         * gst/adder/gstadder.c: (gst_adder_setcaps), (gst_adder_src_event),
9546         (gst_adder_sink_event), (gst_adder_collected):
9547           Fix non-flushing segmented seeks, Fixes #340060 for me
9548
9549 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
9550
9551         Patch by: Olivier Crete  <tester at tester ca>
9552
9553         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
9554         (gst_base_rtp_audio_payload_class_init),
9555         (gst_base_rtp_audio_payload_init),
9556         (gst_base_rtp_audio_payload_dispose):
9557           Chain up to parent class in dispose function; get rid of
9558           unnecessary 'diposed' flag in private structure (#415001).
9559
9560 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
9561
9562         * docs/libs/gst-plugins-base-libs.types:
9563         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
9564         (gst_base_rtp_audio_payload_class_init):
9565         * gst-libs/gst/rtp/gstbasertpdepayload.c:
9566         * gst-libs/gst/rtp/gstbasertppayload.c:
9567           Some minor docs fixes and additions; also add missing 'Since' bits.
9568
9569 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
9570
9571         Patch by: Zeeshan Ali  <zeenix gmail com>
9572
9573         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
9574         (gst_base_rtp_audio_payload_handle_frame_based_buffer),
9575         (gst_base_rtp_audio_payload_handle_sample_based_buffer),
9576         (gst_base_rtp_audio_payload_push):
9577         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
9578           The recently-added gst_base_rtp_audio_payload_push() should take an
9579           object of type GstBaseRTPAudioPayload as first argument (#431672).
9580
9581 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
9582
9583         * gst/audioresample/gstaudioresample.c:
9584           Make more functions static, just because we can.
9585
9586 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
9587
9588         * tests/check/elements/audioresample.c:
9589           Add unit test for audioresample shutdown crasher (#420106).
9590
9591 2007-04-20  Stefan Kost  <ensonic@users.sf.net>
9592
9593         * gst/subparse/gstsubparse.c:
9594         * gst/subparse/samiparse.c:
9595           Use GST_DISABLE_XML here
9596
9597         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
9598         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_get_xv_support),
9599         (gst_xvimagesink_buffer_alloc),
9600         (gst_xvimagesink_navigation_send_event):
9601         * sys/xvimage/xvimagesink.h:
9602           Include stdlib.h when using atoi.
9603           
9604         * tests/check/elements/playbin.c: (playbin_suite):
9605           Use GST_DISABLE_REGISTRY here
9606
9607 2007-04-19  Michael Smith  <msmith@fluendo.com>
9608
9609         * ext/theora/gsttheoraenc.h:
9610         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
9611         (theora_enc_sink_event), (theora_enc_change_state):
9612           Track initialisation state; don't try to use encoder state if we're
9613           not initialised (it'll segfault).
9614
9615 2007-04-18  Stefan Kost  <ensonic@users.sf.net>
9616
9617         * tests/check/pipelines/.cvsignore:
9618         Fix build.
9619
9620 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
9621
9622         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
9623         Allow random depths between 1 and 32 instead of only multiplies of 8.
9624
9625 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
9626
9627         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
9628         Set the maximum number of channels for PCM and float in the correct
9629         place to have it also used when creating the template caps.
9630
9631 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
9632
9633         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
9634         Correctly support 4, 6 and 8 channels with normal PCM and float
9635         wav files.
9636
9637         Fix the depth and signedness calculation in extensible wav files and
9638         also handle 1, 2, 4, 6, 8 channels here when a file without channel
9639         mask is found.
9640
9641         Add support for float, alaw and mulaw in extensible wav files.
9642
9643         This allows correct playback of all but 5 files from
9644         http://www-mmsp.ece.mcgill.ca/Documents/AudioFormats/WAVE/Samples.html
9645         
9646         (gst_riff_create_audio_template_caps):
9647         Add voxware and float formats to the template caps.     
9648
9649 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
9650
9651         Patch by: Vincent Torri <vtorri at univ-evry dot fr>
9652
9653         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_render_time):
9654         Fix unused variable warning if HAVE_LOCALTIME_R is undefinied
9655
9656         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
9657         * gst/audioresample/gstaudioresample.c: (audioresample_do_output):
9658         Use the correct format strings for integer formats.
9659
9660 2007-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
9661
9662         * ext/theora/theoraenc.c (theora_buffer_from_packet, theora_enc_chain):
9663           Don't use pad_alloc_buffer_and_set_caps to create a small header
9664           packet, or, worse, to create a big temporary video buffer using the
9665           src pad.
9666
9667 2007-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
9668
9669         * gst/gdp/gstgdppay.c (gst_gdp_pay_chain):
9670         * tests/check/pipelines/streamheader.c (tag_event_probe_cb,
9671           GST_START_TEST, buffer_probe_cb, GST_START_TEST):
9672           Fix a bug where serialized IN_CAPS buffers needed to be set IN_CAPS.
9673
9674 2007-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
9675
9676         * tests/check/pipelines/streamheader.c (tag_event_probe_cb,
9677           GST_START_TEST, n_in_caps, buffer_probe_cb, GST_START_TEST,
9678           streamheader_suite):
9679           Add another test set up for failure
9680
9681 2007-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
9682
9683         * tests/check/Makefile.am:
9684         * tests/check/pipelines/streamheader.c (n_tags, tag_event_probe_cb,
9685           GST_START_TEST, streamheader_suite, main):
9686           Add a test for the streamheader bug Wim fixed.
9687
9688 2007-04-13  Jan Schmidt  <thaytan@mad.scientist.com>
9689
9690         * ext/theora/theoradec.c: (theora_dec_sink_event):
9691         Fix misleading comment.
9692
9693 2007-04-13  Stefan Kost  <ensonic@users.sf.net>
9694
9695         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
9696           More sanity checks for the header fields.
9697
9698 2007-04-12  Tim-Philipp Müller  <tim at centricular dot net>
9699
9700         * gst-libs/gst/tag/tags.c: (gst_tag_freeform_string_to_utf8):
9701           Try encodings from all environment variables, not just those in the
9702           first environment variable that is set.
9703
9704 2007-04-12  Wim Taymans  <wim@fluendo.com>
9705
9706         * gst/videorate/gstvideorate.c: (gst_video_rate_setcaps),
9707         (gst_video_rate_chain):
9708         Add some debug.
9709
9710         * tests/check/elements/videorate.c: (GST_START_TEST),
9711         (videorate_suite):
9712         Added check for videorate changing caps handling. Closes #421834.
9713
9714 2007-04-12  Michael Smith  <msmith@fluendo.com>
9715
9716         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
9717           Use scale functions to avoid overflow when calculating duration of 
9718           vorbis buffers.
9719
9720 2007-04-12  Tim-Philipp Müller  <tim at centricular dot net>
9721
9722         * docs/libs/gst-plugins-base-libs-sections.txt:
9723         * gst-libs/gst/tag/tag.h:
9724         * gst-libs/gst/tag/tags.c: (gst_tag_freeform_string_to_utf8):
9725           API: add gst_tag_freeform_string_to_utf8() (#405072).
9726
9727         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_extract_id3v1_string):
9728           Use gst_tag_freeform_string_to_utf8() here.
9729
9730 2007-04-12  Wim Taymans  <wim@fluendo.com>
9731
9732         * gst/gdp/gstgdppay.c: (gst_gdp_pay_chain),
9733         (gst_gdp_pay_sink_event):
9734         Make sure we set the IN_CAPS flag correctly.
9735
9736         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
9737         Get the IN_CAPS flag before we call functions that mess with the flags.
9738
9739 2007-04-10  Thomas Vander Stichele  <thomas at apestaart dot org>
9740
9741         * gst/gdp/gstgdppay.c (gst_gdp_pay_reset_streamheader,
9742           gst_gdp_pay_chain, gst_gdp_pay_sink_event):
9743           Only stamp buffers with offset/offset_end right before they get
9744           pushed.  This ensures offset continuity, which was not the case
9745           before as shown by
9746           gst-launch -v -m audiotestsrc num-buffers=10 ! audioconvert ! vorbisenc ! gdppay ! identity check-imperfect-offset=TRUE ! fakesink silent=TRUE
9747
9748 2007-04-06  Wim Taymans  <wim@fluendo.com>
9749
9750         * gst/playback/gstplaybin.c: (add_sink),
9751         (gst_play_bin_change_state):
9752         Activate sync in playbin, we are ready to handle it for live streams.
9753
9754 2007-04-06  Tim-Philipp Müller  <tim at centricular dot net>
9755
9756         * tests/check/elements/playbin.c:
9757         (test_sink_usage_video_only_stream), (playbin_suite):
9758           Add small test for stream-info-value-array code paths.
9759
9760 2007-04-05  Wim Taymans  <wim@fluendo.com>
9761
9762         * gst-libs/gst/audio/gstbaseaudiosink.c:
9763         (gst_base_audio_sink_skew_slaving):
9764         Don't try to create invalid calibration parameters by making the
9765         internal time go backwards, instead make external time go forward.
9766
9767 2007-04-05  Wim Taymans  <wim@fluendo.com>
9768
9769         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
9770
9771         * gst/playback/gstplaybasebin.c: (add_stream):
9772         Fix leak in add_stream(), when g_value_set_object() increases the
9773         refcount of streaminfo object. Fixes #426250.
9774
9775 2007-04-03  David Schleef  <ds@schleef.org>
9776
9777         * gst/videotestsrc/gstvideotestsrc.c:
9778         * gst/videotestsrc/gstvideotestsrc.h:
9779         * gst/videotestsrc/videotestsrc.c:
9780         * gst/videotestsrc/videotestsrc.h:
9781           Add a test pattern called "circular", which has concentric
9782           rings with varying radial frequency.  The main purpose of this
9783           pattern is to test fidelity loss in a filter or scaler element.
9784           Notably, this pattern is scale invariant, and is optimally viewed
9785           with a width (and height) of 400.
9786
9787 2007-04-03  Wim Taymans  <wim@fluendo.com>
9788
9789         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
9790
9791         * gst/playback/gstdecodebin2.c: (connect_pad), (expose_pad),
9792         (deactivate_free_recursive):
9793         Decodebin2 doesn't unref pads it obtains in some occasions:
9794         - multiqueue src pads, when either connecting further or exposing
9795         - sink pads of new autoplugged elements
9796         - peer pads when recursively freeing elements
9797         Fixes #425455.
9798
9799 2007-03-30  Sebastian Dröge  <slomo@circular-chaos.org>
9800
9801         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
9802         Add audio/x-raw-float support, now that audioconvert support
9803         non-native endianness floats.
9804
9805 2007-03-30  Tim-Philipp Müller  <tim at centricular dot net>
9806
9807         * docs/libs/gst-plugins-base-libs-docs.sgml:
9808           gstreamer-plugins-base.pc doesn't exist, it's
9809           gstreamer-plugins-base-0.10.pc.
9810
9811 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
9812
9813         Patch by: René Stadler <mail at renestadler dot de>
9814         with some minor changes
9815
9816         * gst-libs/gst/floatcast/floatcast.h:
9817         Use more efficient float endianness conversion functions that don't
9818         involve 2 function calls per value.
9819         * gst/audioconvert/audioconvert.c: (audio_convert_get_func_index),
9820         (check_default), (audio_convert_prepare_context):
9821         * gst/audioconvert/gstaudioconvert.c:
9822         (gst_audio_convert_parse_caps), (make_lossless_changes):
9823         Support non-native endianness floats as input and output.
9824         Fixes #339838.
9825         * tests/check/elements/audioconvert.c: (verify_convert),
9826         (GST_START_TEST):
9827         Add unit tests for the non-native endianness float conversions.
9828
9829 2007-03-29  Wim Taymans  <wim@fluendo.com>
9830
9831         * gst-libs/gst/rtp/gstbasertpdepayload.c:
9832         (gst_base_rtp_depayload_base_init),
9833         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
9834         (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain),
9835         (gst_base_rtp_depayload_set_gst_timestamp),
9836         (gst_base_rtp_depayload_change_state),
9837         (gst_base_rtp_depayload_set_property),
9838         (gst_base_rtp_depayload_get_property):
9839         * gst-libs/gst/rtp/gstbasertpdepayload.h:
9840         Add Private structure.
9841         Bring element code to 2007.
9842         Parse clock-base caps param and use it when generating the
9843         newsegment.
9844         Reset variables before going to PAUSED.
9845         Fix some docs.
9846
9847 2007-03-29  Wim Taymans  <wim@fluendo.com>
9848
9849         * docs/libs/gst-plugins-base-libs-docs.sgml:
9850         * docs/libs/gst-plugins-base-libs-sections.txt:
9851         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
9852         (gst_base_rtp_audio_payload_get_adapter):
9853         Add RTCP docs.
9854         Fix some more docs.
9855
9856         * gst-libs/gst/rtp/Makefile.am:
9857         * gst-libs/gst/rtp/gstrtcpbuffer.c:
9858         (gst_rtcp_buffer_new_take_data), (gst_rtcp_buffer_new_copy_data),
9859         (gst_rtcp_buffer_validate_data), (gst_rtcp_buffer_validate),
9860         (gst_rtcp_buffer_get_packet_count), (read_packet_header),
9861         (gst_rtcp_buffer_get_first_packet), (gst_rtcp_packet_move_to_next),
9862         (gst_rtcp_buffer_add_packet), (gst_rtcp_packet_remove),
9863         (gst_rtcp_packet_get_padding), (gst_rtcp_packet_get_type),
9864         (gst_rtcp_packet_get_count), (gst_rtcp_packet_get_length),
9865         (gst_rtcp_packet_sr_get_sender_info),
9866         (gst_rtcp_packet_sr_set_sender_info),
9867         (gst_rtcp_packet_rr_get_ssrc), (gst_rtcp_packet_rr_set_ssrc),
9868         (gst_rtcp_packet_get_rb_count), (gst_rtcp_packet_get_rb),
9869         (gst_rtcp_packet_add_rb), (gst_rtcp_packet_set_rb),
9870         (gst_rtcp_packet_sdes_get_chunk_count),
9871         (gst_rtcp_packet_sdes_first_chunk),
9872         (gst_rtcp_packet_sdes_next_chunk), (gst_rtcp_packet_sdes_get_ssrc),
9873         (gst_rtcp_packet_sdes_first_item),
9874         (gst_rtcp_packet_sdes_next_item), (gst_rtcp_packet_sdes_get_item),
9875         (gst_rtcp_packet_bye_get_ssrc_count),
9876         (gst_rtcp_packet_bye_get_nth_ssrc), (gst_rtcp_packet_bye_add_ssrc),
9877         (gst_rtcp_packet_bye_add_ssrcs), (get_reason_offset),
9878         (gst_rtcp_packet_bye_get_reason_len),
9879         (gst_rtcp_packet_bye_get_reason), (gst_rtcp_packet_bye_set_reason):
9880         * gst-libs/gst/rtp/gstrtcpbuffer.h:
9881         Add new helper object for parsing and creating RTCP messages.
9882
9883 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
9884
9885         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
9886         PCM samples with width=8 must be always unsigned, no matter what
9887         depth they have.
9888
9889 2007-03-29  Andy Wingo  <wingo@pobox.com>
9890
9891         * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev): Make
9892         perfect offsets also, not just timestamps.
9893
9894         * tests/check/elements/videorate.c (test_more): Test that given
9895         any incoming offsets, that videorate produces perfect offsets.
9896
9897 2007-03-29  Wim Taymans  <wim@fluendo.com>
9898
9899         * gst-libs/gst/riff/riff-ids.h:
9900         Add some more RIFF formats.
9901
9902 2007-03-29  Wim Taymans  <wim@fluendo.com>
9903
9904         * gst-libs/gst/rtp/gstrtpbuffer.c:
9905         (gst_rtp_buffer_default_clock_rate):
9906         * gst-libs/gst/rtp/gstrtpbuffer.h:
9907         Fix fixed payload names and docs.
9908         Added method to get the default clock rates of fixed payload types.
9909         API: GstRTPBuffer::gst_rtp_buffer_default_clock_rate()
9910
9911 2007-03-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
9912
9913         * tests/check/pipelines/.cvsignore:
9914         Add new vorbisdec test to cvsignore.
9915
9916 2007-03-28  Wim Taymans  <wim@fluendo.com>
9917
9918         * gst-libs/gst/audio/gstbaseaudiosink.c: (slave_method_get_type),
9919         (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
9920         (gst_base_audio_sink_query), (gst_base_audio_sink_get_time),
9921         (gst_base_audio_sink_set_property),
9922         (gst_base_audio_sink_get_property), (gst_base_audio_sink_event),
9923         (clock_convert_external), (gst_base_audio_sink_resample_slaving),
9924         (gst_base_audio_sink_skew_slaving),
9925         (gst_base_audio_sink_handle_slaving), (gst_base_audio_sink_render),
9926         (gst_base_audio_sink_async_play):
9927         * gst-libs/gst/audio/gstbaseaudiosink.h:
9928         Store private stuff in GstBaseAudioSinkPrivate.
9929         Add configurable clock slaving modes property.
9930         API:: GstBaseAudioSink::slave-method property
9931         Some more latency reporting tweaks.
9932         Added skew based clock slaving correction and make it the default until
9933         the resampling method is more robust.
9934
9935 2007-03-27  Sebastian Dröge  <slomo@circular-chaos.org>
9936
9937         * gst/audioconvert/audioconvert.c:
9938         Add docs to the integer pack functions and implement proper
9939         rounding. Before we had rounding towards negative infinity, i.e.
9940         always the smaller number was taken. Now we use natural rounding,
9941         i.e. rounding to the nearest integer and to the one with the largest
9942         absolute value for X.5. The old rounding introduced some minor
9943         distortions. Fixes #420079
9944         * tests/check/elements/audioconvert.c: (GST_START_TEST):
9945         Fix one unit test that assumed the old rounding and added unit tests
9946         for checking signed/unsigned int16 <-> signed/unsigned int16 with
9947         depth 8, one for signed int16 <-> unsigned int16 and one for the new
9948         rounding from signed int32 to signed/unsigned int16.
9949
9950 2007-03-27  Michael Smith  <msmith@fluendo.com>
9951
9952         * gst/audioconvert/gstaudioconvert.c: (strip_width_64),
9953         (gst_audio_convert_transform_caps):
9954           Fix typo in debug line introduced recently, as pointed out on irc.
9955
9956 2007-03-27  Tim-Philipp Müller  <tim at centricular dot net>
9957
9958         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
9959         * tests/check/libs/tag.c: (GST_START_TEST):
9960           Make sure we parse floating-point numbers in vorbis comments
9961           correctly with either '.' or ',' as separator, no matter what
9962           the current locale is. Add unit test for this too.
9963
9964 2007-03-26  Tim-Philipp Müller  <tim at centricular dot net>
9965
9966         Patch by: René Stadler  <mail at renestadler de>
9967
9968         * gst-libs/gst/tag/gstvorbistag.c: (gst_tag_to_vorbis_comments):
9969           When writing out floating-point numbers to vorbis comment tags, always
9970           use the same character as separator no matter what the current locale is
9971           (fixes #423051).
9972
9973         * tests/check/libs/tag.c: (GST_START_TEST):
9974           Add unit tests for replaygain tags in vorbis comments (closes #423055).
9975
9976 2007-03-26  Thomas Vander Stichele  <thomas at apestaart dot org>
9977
9978         * ext/vorbis/vorbisdec.c (vorbis_dec_push_forward,
9979           vorbis_handle_data_packet):
9980           Correctly set DURATION to generate a timestamp-continuous stream.
9981           One bug left at the end; see
9982           ihttp://bugzilla.gnome.org/show_bug.cgi?id=423086
9983         * tests/check/Makefile.am:
9984         * tests/check/pipelines/vorbisenc.c (GST_START_TEST):
9985           Add a test to check this.  Without the above patch this test fails.
9986
9987 2007-03-26  Jan Schmidt  <thaytan@mad.scientist.com>
9988
9989         * gst-libs/gst/rtp/Makefile.am:
9990         The base audio payloader uses GstAdapter - we need GST_BASE_LIBS.
9991
9992 2007-03-23  Michael Smith  <msmith@fluendo.com>
9993
9994         * gst/videorate/gstvideorate.c: (gst_video_rate_setcaps),
9995         (gst_video_rate_reset), (gst_video_rate_chain):
9996           If videorate changes caps, we can no longer use the old buffer
9997           (which may have a different size, incompatible with our caps).
9998           So don't do that; just duplicate the new frame more times.
9999
10000 2007-03-22  Jan Schmidt  <thaytan@mad.scientist.com>
10001
10002         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
10003         Remove playbin's override of the set_clock vmethod. It's irrelevant
10004         after Wim's commit on the 19th.
10005
10006 2007-03-22  Wim Taymans  <wim@fluendo.com>
10007
10008         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_get_size),
10009         (gst_gnome_vfs_src_start), (gst_gnome_vfs_src_stop):
10010         * ext/gnomevfs/gstgnomevfssrc.h:
10011         Don't cache file sizes. Fixes #341078.
10012
10013 2007-03-21  Tim-Philipp Müller  <tim at centricular dot net>
10014
10015         * gst/playback/gstplaybin.c: (add_sink):
10016           Use GST_PTR_FORMAT to log caps. 
10017
10018 2007-03-21  Tim-Philipp Müller  <tim at centricular dot net>
10019
10020         Patch by: Young-Ho Cha <ganadist at chollian net>
10021
10022         * gst/subparse/samiparse.c: (handle_start_font):
10023           Special-case some more colour names that pango doesn't handle by
10024           default. Fixes #420578.
10025
10026 2007-03-20  Michael Smith  <msmith@fluendo.com>
10027
10028         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_chain):
10029           If we get a zero-sized input buffer, don't pass it to libvorbis, as
10030           that marks EOS internally. After that, libvorbis will buffer all
10031           input data, and encode none of it, eventually leading to memory
10032           exhaustion.
10033
10034 2007-03-19  Wim Taymans  <wim@fluendo.com>
10035
10036         * gst/playback/gstdecodebin.c: (remove_fakesink):
10037         Don't post STATE_DIRTY anymore.
10038
10039         * gst/playback/gstplaybin.c: (add_sink), (gst_play_bin_send_event),
10040         (gst_play_bin_change_state):
10041         Remove stream_time reset in seek handling, core does that now.
10042         Disable clocking for live pipelines by forcing a NULL clock to the
10043         complete pipeline, core is too smart now for our previous hack.
10044         We can always autoplug in PAUSED now.
10045
10046 2007-03-17  David Schleef  <ds@schleef.org>
10047
10048         * REQUIREMENTS:  Update this file, change the formatting to make
10049         it more consistent, plus more machine readable.
10050
10051 2007-03-16  Michael Smith  <msmith@fluendo.com>
10052
10053         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
10054         (strip_width_64), (append_with_other_format):
10055           Previous fix was too simplistic, and broke the tests. Use a better
10056           approach; only strip 64 from widths for integer audio.
10057
10058 2007-03-16  Michael Smith  <msmith@fluendo.com>
10059
10060         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
10061         (gst_audio_convert_transform_caps):
10062           We don't support 64 bit integer audio, so don't try to claim we can.
10063           Stops us producing caps don't match our template caps.
10064           Update comments.
10065
10066 2007-03-15  Michael Smith  <msmith@fluendo.com>
10067
10068         * gst/audioresample/gstaudioresample.c:
10069         (audioresample_check_discont), (audioresample_transform):
10070           Don't trigger discontinuities for very small imperfections; a filter
10071           flush will sound bad, and many plugins have rounding errors leading
10072           to these.
10073
10074 2007-03-14 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
10075
10076         Patch by: Olivier Crete <olivier.crete@collabora.co.uk>
10077
10078         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
10079         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
10080         API: add "min-ptime" property to RTP base audio payloader.
10081         API: add gst_base_rtp_audio_payload_push().
10082         API: add gst_base_rtp_audio_payload_get_adapter().
10083         Fixes #415001
10084         Indentation/whitespace/documentation fixes.
10085
10086 2007-03-14  Julien MOUTTE  <julien@moutte.net>
10087
10088         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
10089         (audioresample_transform_size), (audioresample_do_output),
10090         (audioresample_transform), (audioresample_pushthrough): Handle
10091         discontinuous streams.
10092         * gst/audioresample/gstaudioresample.h:
10093         * tests/check/elements/audioresample.c:
10094         (test_discont_stream_instance), (GST_START_TEST),
10095         (audioresample_suite): Add a test for discontinuous streams.
10096         * win32/common/config.h: Updated.
10097
10098 2007-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
10099
10100         * po/af.po:
10101         * po/az.po:
10102         * po/cs.po:
10103         * po/en_GB.po:
10104         * po/it.po:
10105         * po/nb.po:
10106         * po/nl.po:
10107         * po/or.po:
10108         * po/sq.po:
10109         * po/sr.po:
10110         * po/sv.po:
10111         * po/uk.po:
10112         * po/vi.po:
10113           Update translations from translation project.
10114
10115 2007-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
10116
10117         * gst/audioresample/debug.h:
10118         * gst/audioresample/resample.c: (resample_init):
10119           Since I really am not interested in a debug line for each sample
10120           being processed, move the library's debugging to its own category,
10121           libaudioresample
10122
10123 2007-03-13  Michael Smith  <msmith@fluendo.com>
10124
10125         * ext/theora/theoradec.c: (theora_handle_type_packet):
10126           Since the plugin doesn't support anything other than 4:2:0 right
10127           now, post an error and fail if we get something else. Won't matter
10128           until libtheora supports the other pixel formats, but hopefully
10129           that'll be soon...
10130
10131 2007-03-10  Sebastien Moutte  <sebastien@moutte.net>
10132
10133         * gst-libs/gst/audio/gstbaseaudiosink.c:(gst_base_audio_sink_render):
10134         Use gst_guint64_to_gdouble for conversion.
10135         * win32/MANIFEST:
10136         Add new files to the win32 MANIFEST.
10137         * win32/common/libgstaudio.def:
10138         * win32/common/libgstpbutils.def:
10139         Add new exported functions.
10140         * win32/vs6/gst_plugins_base.dsw:
10141         * win32/vs6/libgstdecodebin.dsp:
10142         * win32/vs6/libgstplaybin.dsp:
10143         Change the link to libgstpbutils.lib.
10144         * win32/vs6/libgstdecodebin2.dsp:
10145         Add a new project for decodebin2.
10146         * win32/vs6/libgstpbutils.dsp:
10147         Add a new project for pbutils.
10148
10149 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
10150
10151         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
10152           Also accept partial dates with only year and month,
10153           like 1999-12-00 (fixes #410396 even more).
10154
10155         * tests/check/libs/tag.c: (GST_START_TEST):
10156           Add unit test for the above.
10157
10158 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
10159
10160         * tests/check/elements/subparse.c: (GST_START_TEST),
10161         (subparse_suite):
10162           Add unit test for MPL2 subtitle format (#413799).
10163
10164 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
10165
10166         Patch by: Kamil Pawlowski  <kamilpe gmail com>
10167
10168         * gst/subparse/Makefile.am:
10169         * gst/subparse/gstsubparse.c:
10170         (gst_sub_parse_data_format_autodetect),
10171         (gst_sub_parse_format_autodetect), (gst_sub_parse_sink_event),
10172         (gst_subparse_type_find):
10173         * gst/subparse/gstsubparse.h:
10174         * gst/subparse/mpl2parse.c: (mpl2_parse_line), (parse_mpl2):
10175         * gst/subparse/mpl2parse.h:
10176           Add support for MPL2 subtitle format (#413799).
10177
10178 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
10179
10180         * configure.ac:
10181           We require core CVS for the new buffer metadata copy functions.
10182
10183 2007-03-09  Wim Taymans  <wim@fluendo.com>
10184
10185         * gst-libs/gst/tag/gstid3tag.c:
10186         Add read support for GST_TAG_MUSICBRAINZ_SORTNAME (TSOP) tag.
10187         Fixes #414496.
10188
10189         Patch by: Alex Lancaster <alexl at users sourceforge net>
10190
10191 2007-03-09  Wim Taymans  <wim@fluendo.com>
10192
10193         * ext/libvisual/visual.c: (gst_visual_sink_setcaps),
10194         (gst_vis_src_negotiate), (get_buffer), (gst_visual_chain):
10195         Improve adapter usage and comments.
10196
10197 2007-03-09  Wim Taymans  <wim@fluendo.com>
10198
10199         * ext/pango/gsttextrender.c: (gst_text_render_chain):
10200         * ext/vorbis/vorbistag.c: (gst_vorbis_tag_parse_packet):
10201         * gst-libs/gst/netbuffer/gstnetbuffer.c: (gst_netbuffer_copy):
10202         Use new metadata copy function.
10203
10204         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
10205         (gst_ffmpegcsp_transform):
10206         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform):
10207         Basetransform copied the metadata for us.
10208
10209 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
10210
10211         * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event),
10212         (gst_text_overlay_video_event):
10213           Some more logging. Only accept newsegment events in TIME format and
10214           send a WARNING message if they are not in TIME format.
10215
10216         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
10217         (gst_sub_parse_init), (gst_sub_parse_src_event), (handle_buffer),
10218         (gst_sub_parse_chain), (gst_sub_parse_sink_event):
10219         * gst/subparse/gstsubparse.h:
10220           No need to allocate GstSegment structure dynamically, just put it
10221           into the instance structure; ignore newsegment events in BYTE
10222           format and in particular don't let it overwrite our saved TIME
10223           segment from the last seek.
10224
10225 2007-03-09  Michael Smith  <msmith@fluendo.com>
10226
10227         * gst/typefind/gsttypefindfunctions.c: (ac3_type_find):
10228           Replace AC3 typefinder with one that isn't terrible, and actually
10229           works usefully.
10230
10231 2007-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
10232
10233         * gst/audioconvert/gstaudioconvert.c:
10234         (gst_audio_convert_transform):
10235           fix error category and translatable string
10236           
10237
10238 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
10239
10240         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
10241         * pkgconfig/gstreamer-plugins-base.pc.in:
10242           Fix up utils => pbutils here too.
10243
10244 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
10245
10246         * gst/subparse/gstsubparse.c: (handle_buffer):
10247           Break out of loop in chain function as soon as possible if we get
10248           a non-OK flow return.
10249
10250 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
10251
10252         * tests/check/elements/alsa.c: (GST_START_TEST):
10253         Unref the mixer if the state change fails too (if the
10254         alsa devices are inaccessible, for example)
10255
10256 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
10257
10258         * tests/check/Makefile.am:
10259         Don't test libvisual elements in the states check, because libvisual
10260         seems to leak internally.
10261
10262         Re-enable the alsa and states tests now that there's new suppressions
10263         in gst.supp.
10264
10265         * tests/check/elements/alsa.c: (GST_START_TEST):
10266         Don't leak the alsamixer we instantiated.
10267
10268 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
10269
10270         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_clear),
10271         (gst_ximagesink_change_state), (gst_ximagesink_reset),
10272         (gst_ximagesink_finalize):
10273         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state),
10274         (gst_xvimagesink_reset), (gst_xvimagesink_finalize):
10275         Move some cleanup stuff from the state change handler into a _reset()
10276         function that can be called from _finalize(). This ensures that things
10277         get freed even if (for some reason) the NULL->READY state transition
10278         fails in the parent class.
10279         Even if a parent state change fails, process our downward state change
10280         logic instead of bailing out early.
10281         Free the correct xcontext pointer in ximagesink's xcontext_clear.
10282
10283 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
10284
10285         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
10286         Extra log line.
10287
10288         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_init):
10289         * ext/pango/gsttimeoverlay.c: (gst_time_overlay_init):
10290         Use pango_font_description_set_family_static instead of 
10291         pango_font_description_set_family to save a string copy (it was
10292         leaking due to the strdup anyway)
10293
10294         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_finalize):
10295         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_finalize):
10296         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_finalize):
10297         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_finalize):
10298         Chain up in finalize.
10299
10300 2007-03-07  Tim-Philipp Müller  <tim at centricular dot net>
10301
10302         * gst-libs/gst/interfaces/mixertrack.c:
10303         (gst_mixer_track_class_init), (gst_mixer_track_get_property),
10304         (gst_mixer_track_set_property):
10305           API: add "untranslated-label" property which should be set by
10306           implementations at construct time (#414645).
10307
10308         * ext/alsa/gstalsamixeroptions.c: (gst_alsa_mixer_options_new):
10309         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
10310           Set "untranslated-label" when constructing mixer track objects.
10311
10312         * tests/check/elements/alsa.c: (GST_START_TEST), (alsa_suite):
10313           Unit test to check the above.
10314
10315 2007-03-07  Wim Taymans  <wim@fluendo.com>
10316
10317         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_read_chain):
10318         Fix confusing debug message.
10319
10320 2007-03-07  Jan Schmidt  <thaytan@mad.scientist.com>
10321
10322         * gst-plugins-base.doap:
10323         update doap file with new version
10324
10325 2007-03-07  Jan Schmidt  <thaytan@mad.scientist.com>
10326
10327         * configure.ac:
10328         Back to CVS
10329
10330 === release 0.10.12 ===
10331
10332 2007-03-07  Jan Schmidt <thaytan@mad.scientist.com>
10333
10334         * configure.ac:
10335           releasing 0.10.12, "Zombie Horde"
10336
10337 2007-03-06  Jan Schmidt  <thaytan@mad.scientist.com>
10338
10339         * configure.ac:
10340         Bump version to 0.10.11.4 pre-release
10341
10342 2007-03-06  Wim Taymans  <wim@fluendo.com>
10343
10344         * gst-libs/gst/audio/gstbaseaudiosink.c:
10345         (gst_base_audio_sink_async_play):
10346         Fix regression that made GStreamer skip the first samples of audio.
10347         Fixes #414684.
10348
10349 2007-03-05  Jan Schmidt  <thaytan@mad.scientist.com>
10350
10351         * configure.ac:
10352         Bump version to 0.10.11.3 pre-release
10353
10354 2007-03-05  Sebastian Dröge  <slomo@circular-chaos.org>
10355
10356         * po/POTFILES.in:
10357           Update paths for the rename from utils to pbutils to fix the build.
10358
10359 2007-03-05  Tim-Philipp Müller  <tim at centricular dot net>
10360
10361         * gst-libs/gst/pbutils/Makefile.am:
10362           Change directory to install headers in from gst/utils to gst/pbutils
10363           as well.
10364
10365 2007-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
10366
10367         * configure.ac:
10368         * docs/libs/gst-plugins-base-libs-docs.sgml:
10369         * docs/libs/gst-plugins-base-libs-sections.txt:
10370         * gst-libs/gst/Makefile.am:
10371         * gst-libs/gst/interfaces/mixer.c:
10372         * gst-libs/gst/pbutils/Makefile.am:
10373         * gst-libs/gst/pbutils/descriptions.c:
10374         (gst_pb_utils_get_source_description),
10375         (gst_pb_utils_get_sink_description),
10376         (gst_pb_utils_get_decoder_description),
10377         (gst_pb_utils_get_encoder_description),
10378         (gst_pb_utils_get_element_description),
10379         (gst_pb_utils_add_codec_description_to_tag_list),
10380         (gst_pb_utils_get_codec_description), (gst_pb_utils_list_all):
10381         * gst-libs/gst/pbutils/descriptions.h:
10382         * gst-libs/gst/pbutils/install-plugins.c:
10383         * gst-libs/gst/pbutils/install-plugins.h:
10384         * gst-libs/gst/pbutils/missing-plugins.c:
10385         (gst_missing_uri_source_message_new),
10386         (gst_missing_uri_sink_message_new),
10387         (gst_missing_element_message_new),
10388         (gst_missing_decoder_message_new),
10389         (gst_missing_encoder_message_new),
10390         (gst_missing_plugin_message_get_description):
10391         * gst-libs/gst/pbutils/missing-plugins.h:
10392         * gst-libs/gst/pbutils/pbutils.c: (gst_pb_utils_init):
10393         * gst-libs/gst/pbutils/pbutils.h:
10394         * gst-libs/gst/utils/Makefile.am:
10395         * gst-libs/gst/utils/base-utils.c:
10396         * gst-libs/gst/utils/base-utils.h:
10397         * gst-libs/gst/utils/descriptions.c:
10398         * gst-libs/gst/utils/descriptions.h:
10399         * gst-libs/gst/utils/install-plugins.c:
10400         * gst-libs/gst/utils/install-plugins.h:
10401         * gst-libs/gst/utils/missing-plugins.c:
10402         * gst-libs/gst/utils/missing-plugins.h:
10403         * gst-plugins-base.spec.in:
10404         * gst/playback/Makefile.am:
10405         * gst/playback/gstdecodebin.c:
10406         * gst/playback/gstdecodebin2.c:
10407         * gst/playback/gstplaybasebin.c: (setup_subtitle),
10408         (gen_source_element):
10409         * gst/playback/gstplaybin.c: (plugin_init):
10410         * tests/check/Makefile.am:
10411         * tests/check/libs/pbutils.c: (GST_START_TEST),
10412         (test_pb_utils_install_plugins_do_callout), (libgstpbutils_suite):
10413         * tests/check/libs/utils.c:
10414           rename utils to pbutils
10415
10416 2007-03-02  Jan Schmidt  <thaytan@mad.scientist.com>
10417
10418         * docs/plugins/Makefile.am:
10419         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
10420         * docs/plugins/gst-plugins-base-plugins-sections.txt:
10421         * docs/plugins/inspect/plugin-decodebin2.xml:
10422         * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init):
10423         Add documentation for decodebin2 that indicates that the API
10424         is still unstable.
10425
10426 2007-03-01  Jan Schmidt  <thaytan@mad.scientist.com>
10427
10428         * configure.ac:
10429         Update to 0.10.11.2 (0.10.12 pre-release)
10430
10431 2007-03-01  Wim Taymans  <wim@fluendo.com>
10432
10433         * gst-libs/gst/audio/gstbaseaudiosink.c:
10434         (gst_base_audio_sink_async_play):
10435         base time is irrelevant here.
10436
10437 2007-03-01  Wim Taymans  <wim@fluendo.com>
10438
10439         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func):
10440         * gst-libs/gst/audio/gstaudiosrc.c: (audioringbuffer_thread_func):
10441         Improve debugging.
10442
10443         * gst-libs/gst/audio/gstbaseaudiosink.c:
10444         (gst_base_audio_sink_query), (gst_base_audio_sink_event),
10445         (gst_base_audio_sink_render), (gst_base_audio_sink_async_play):
10446         Improve latency and clock slaving calculations.
10447         Improve slave clock calibration.
10448
10449         * gst-libs/gst/audio/gstringbuffer.c:
10450         (gst_ring_buffer_commit_full):
10451         When we are asked to render N sample to 0 bytes, return N.
10452
10453 2007-03-01  Wim Taymans  <wim@fluendo.com>
10454
10455         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
10456         (gst_alsasink_write), (gst_alsasink_reset):
10457         * ext/alsa/gstalsasink.h:
10458         Remove unused dispose function.
10459         Rename lock to not interfere with alsasrc lock.
10460
10461         * ext/alsa/gstalsasrc.c: (gst_alsasrc_finalize),
10462         (gst_alsasrc_class_init), (gst_alsasrc_init), (set_swparams),
10463         (gst_alsasrc_read), (gst_alsasrc_reset):
10464         * ext/alsa/gstalsasrc.h:
10465         Implement finalize function.
10466         Use lock to protect alsa access.
10467         Implement _reset.
10468         Fine tune sw params.
10469
10470 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
10471
10472         * configure.ac:
10473           Convert to new AG_GST style.
10474
10475 2007-02-28  Wim Taymans  <wim@fluendo.com>
10476
10477         Patch by: Ed Catmur <ed at catmur dot co dot uk>
10478
10479         * gst/playback/gstplaybin.c: (gst_play_bin_vis_unblocked),
10480         (gst_play_bin_vis_blocked), (gst_play_bin_set_property):
10481         Fix race condition when rapidly switching visualisations in playbin.
10482         Fixes #401029.
10483
10484 2007-02-28  Jan Schmidt  <thaytan@mad.scientist.com>
10485
10486         * tests/check/Makefile.am:
10487         Include local stuff before system installed things in LDFLAGS and
10488         CFLAGS.
10489
10490 2007-02-28  Wim Taymans  <wim@fluendo.com>
10491
10492         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_sink_activate):
10493         Improve debugging.
10494
10495 2007-02-28  Wim Taymans  <wim@fluendo.com>
10496
10497         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
10498         (gst_v4lsrc_fixate), (gst_v4lsrc_query):
10499         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_buffer_new):
10500         Fix duration and timestamping, taking latency into account.
10501         Implement latency query.
10502
10503 2007-02-28  Wim Taymans  <wim@fluendo.com>
10504
10505         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
10506         (gst_audio_clock_new):
10507         Fix clock name.
10508
10509         * gst-libs/gst/audio/gstbaseaudiosink.c:
10510         (gst_base_audio_sink_init), (gst_base_audio_sink_query):
10511         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
10512         (gst_base_audio_src_query), (gst_base_audio_src_get_offset),
10513         (gst_base_audio_src_create):
10514         Improve latency query code.
10515         Use proper clock names.
10516
10517 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
10518
10519         * tests/check/generic/states.c: (GST_START_TEST):
10520           Copy the states.c test from core again
10521         * tests/check/Makefile.am:
10522           ignore cdio and cdparanoiasrc
10523
10524 2007-02-28  Stefan Kost  <ensonic@users.sf.net>
10525
10526         * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
10527         (double_hq), (audio_convert_get_func_index), (check_default),
10528         (audio_convert_prepare_context), (audio_convert_convert):
10529           Also make valgrind happy and avoid copying data in some cases.
10530
10531 2007-02-28  Stefan Kost  <ensonic@users.sf.net>
10532
10533         * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
10534         (double_hq), (audio_convert_get_func_index),
10535         (audio_convert_prepare_context), (audio_convert_convert):
10536         * gst/audioconvert/gstaudioconvert.c:
10537         (gst_audio_convert_class_init), (gst_audio_convert_get_unit_size),
10538         (gst_audio_convert_transform_caps):
10539         * tests/check/elements/audioconvert.c: (GST_START_TEST),
10540         (audioconvert_suite):
10541           Don't run inplace if that overwrites source data as we go. Add more
10542           tests. Fixes #339837 even more.
10543
10544 2007-02-27  Julien MOUTTE  <julien@moutte.net>
10545
10546         * tests/examples/seek/seek.c: (do_seek), (set_update_scale),
10547         (msg_segment_done): Fix various seeking bugs (Slider was not
10548         updating when doing a non flushing seek, Reverse playback 
10549         on segment seek was wrong).
10550
10551 2007-02-26  Wim Taymans  <wim@fluendo.com>
10552
10553         * tests/examples/seek/seek.c: (stop_seek):
10554         When we stop scrubbing, don't leave the pipeline PLAYING when we
10555         requested a PAUSED state.
10556
10557 2007-02-25  Tim-Philipp Müller  <tim at centricular dot net>
10558
10559         Patch by: René Stadler <mail at renestadler de>
10560
10561         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
10562           Parse date strings in vorbis comments that have an invalid (zero)
10563           month or day (#410396).
10564
10565         * tests/check/libs/tag.c: (GST_START_TEST):
10566           Test case for the above.
10567
10568 2007-02-24  Tim-Philipp Müller  <tim at centricular dot net>
10569
10570         Patch by: Loïc Minier <lool+gnome at via ecp fr>
10571
10572         * configure.ac:
10573         * ext/alsa/Makefile.am:
10574         * gst/audiotestsrc/Makefile.am:
10575           Fix compilation with LDFLAGS='-Wl,-z,defs' (#410963).
10576
10577 2007-02-23  Tim-Philipp Müller  <tim at centricular dot net>
10578
10579         * gst/playback/gstplaybin.c:
10580           Improve docs: point out that the application needs to assist playbin
10581           with buffering.
10582
10583 2007-02-23  Tim-Philipp Müller  <tim at centricular dot net>
10584
10585         * gst-libs/gst/utils/install-plugins.c:
10586         * gst-libs/gst/utils/missing-plugins.c:
10587         * tests/check/libs/utils.c: (missing_msg_check_getters):
10588           Change GStreamer marker prefix in detail string from 'gstreamer.net'
10589           to just 'gstreamer'. Document the caps string component of the
10590           decoder/encoder detail a bit better, since not everyone will be
10591           familiar with the GStreamer media type/caps system (but they better
10592           enjoy nested itemized lists).
10593
10594 2007-02-22  Tim-Philipp Müller  <tim at centricular dot net>
10595
10596         * gst-libs/gst/netbuffer/gstnetbuffer.c:
10597         (notgst_buffer_copy_fields_in_place), (gst_netbuffer_copy):
10598           Fix copying of GstNetBuffer (would crash before, or at least lead to
10599           invalid memory access, #410772), for now by copying the GstBuffer copy
10600           code from the core over here so we can copy the GstBuffer fields on a
10601           provided buffer instance (of type GstNetBuffer in this case). Would be
10602           better to fix this with some support by the core though (and in the long
10603           run change the broken GstBuffer/GstMiniObject copy semantics, #393099).
10604
10605         * tests/check/Makefile.am:
10606           Enable unit test for GstNetBuffer.
10607
10608 2007-02-22  Andy Wingo  <wingo@pobox.com>
10609
10610         * gst-libs/gst/audio/gstbaseaudiosink.c
10611         (gst_base_audio_sink_init): Disable pull-mode activation until we
10612         figure out how to make audio sinks go to PLAYING.
10613
10614 2007-02-22  Stefan Kost  <ensonic@users.sf.net>
10615
10616         * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
10617         (double_hq), (audio_convert_get_func_index),
10618         (audio_convert_prepare_context), (audio_convert_convert):
10619         * gst/audioconvert/audioconvert.h:
10620         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_setup_matrix),
10621         (gst_channel_mix_mix_int), (gst_channel_mix_mix_float):
10622         * gst/audioconvert/gstchannelmix.h:
10623         * tests/check/elements/audioconvert.c: (GST_START_TEST):
10624           Add float as an intermediate format, as well as float mixing. Enable
10625           test that was failing before. Fixes #339837
10626
10627 2007-02-21  Jan Schmidt  <thaytan@mad.scientist.com>
10628
10629         * tests/examples/seek/seek.c: (do_seek):
10630         Undo the previous commit: -1 as a stop time implies that the stop
10631         time is the end of file, clearing any previously configured segment.
10632
10633 2007-02-21  Jan Schmidt  <thaytan@mad.scientist.com>
10634
10635         * tests/examples/seek/seek.c: (do_seek):
10636         Don't SEEK_SET with a stop time of -1, use SEEK_NONE instead.
10637
10638 2007-02-21  Stefan Kost  <ensonic@users.sf.net>
10639
10640         * gst/volume/gstvolume.c: (volume_process_int16),
10641         (volume_process_int16_clamp), (volume_set_caps):
10642           Unbreak volume, value remains gint.
10643
10644 2007-02-21  Stefan Kost  <ensonic@users.sf.net>
10645
10646         * gst/volume/gstvolume.c: (volume_choose_func),
10647         (volume_update_real_volume), (gst_volume_set_volume),
10648         (gst_volume_init), (volume_process_double), (volume_process_float),
10649         (volume_process_int16), (volume_process_int16_clamp),
10650         (volume_set_caps), (volume_transform_ip), (volume_update_volume):
10651         * gst/volume/gstvolume.h:
10652           Extend float audio support (double) and some int->uint cleanups.
10653
10654 2007-02-20  Edward Hervey  <edward@fluendo.com>
10655
10656         * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose),
10657         (multi_queue_underrun_cb), (gst_decode_group_check_if_drained),
10658         (sort_end_pads), (gst_decode_group_expose),
10659         (gst_decode_group_hide):
10660         Don't free groups from the streaming threads. Just put them aside and
10661         free them in dispose.
10662
10663 2007-02-20  Edward Hervey  <edward@fluendo.com>
10664
10665         * gst/playback/gstdecodebin2.c: (connect_element),
10666         (pad_added_group_cb), (gst_decode_group_check_if_blocked),
10667         (sort_end_pads), (gst_decode_group_expose):
10668         Handle dynamic pads within groups.
10669         Sort pads before exposing them in order to make playbin happy.
10670         There still is a race with the multiqueue filling up. This should be
10671         solved separately.
10672         Fixes #398721
10673
10674 2007-02-16  Tim-Philipp Müller  <tim at centricular dot net>
10675
10676         * gst-libs/gst/utils/base-utils.c:
10677         * gst-libs/gst/utils/descriptions.c:
10678         * gst-libs/gst/utils/install-plugins.c:
10679         * gst-libs/gst/utils/missing-plugins.c:
10680           Some more docs (and descriptions for two subtitle formats).
10681
10682 2007-02-16  Tim-Philipp Müller  <tim at centricular dot net>
10683
10684         * gst-libs/gst/audio/audio.c:
10685           Fix documentation.
10686
10687 2007-02-16  Tim-Philipp Müller  <tim at centricular dot net>
10688
10689         Patch by: Yves Lefebvre  <ivanohe abacom com>
10690
10691         * gst/videorate/gstvideorate.c: (gst_video_rate_setcaps):
10692           Don't leak caps. Fixes #408278.
10693
10694 2007-02-15  Stefan Kost  <ensonic@users.sf.net>
10695
10696         * ext/cdparanoia/gstcdparanoiasrc.h:
10697         * ext/ogg/gstoggdemux.h:
10698         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size),
10699         (gst_audio_frame_length), (gst_audio_duration_from_pad_buffer),
10700         (gst_audio_is_buffer_framed), (gst_audio_structure_set_int):
10701         * gst-libs/gst/audio/audio.h:
10702         * gst-libs/gst/audio/gstaudiofilter.h:
10703         * gst-libs/gst/interfaces/videoorientation.h:
10704         * gst/adder/gstadder.h:
10705           More docs coverage and some ChangeLog surgery (add missing names)
10706
10707 2007-02-15  Wim Taymans  <wim@fluendo.com>
10708
10709         * sys/ximage/ximagesink.c:
10710         (gst_ximagesink_calculate_pixel_aspect_ratio):
10711         * sys/xvimage/xvimagesink.c:
10712         (gst_xvimagesink_calculate_pixel_aspect_ratio):
10713         Small constifications.
10714
10715 2007-02-15  Wim Taymans  <wim@fluendo.com>
10716
10717         * gst-libs/gst/audio/gstbaseaudiosink.c:
10718         (gst_base_audio_sink_class_init), (gst_base_audio_sink_query),
10719         (gst_base_audio_sink_render), (gst_base_audio_sink_callback),
10720         (gst_base_audio_sink_async_play),
10721         (gst_base_audio_sink_change_state):
10722         Answer latency query.
10723         Use configured latency when syncing.
10724         Fix clock slaving.
10725
10726         * gst-libs/gst/audio/gstbaseaudiosrc.c:
10727         (gst_base_audio_src_class_init), (gst_base_audio_src_dispose),
10728         (gst_base_audio_src_query), (gst_base_audio_src_change_state):
10729         Fix possible memleak.
10730         Implement latency query.
10731         Small cleanups.
10732
10733 2007-02-15  Wim Taymans  <wim@fluendo.com>
10734
10735         * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
10736         Ignore errors in reset, these are not fatal. They also grab the element
10737         lock which is already taking when this function is called. Fixes
10738         #405451.
10739
10740 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
10741
10742         * configure.ac:
10743           Remove 'tests/examples/xerror/Makefile' from output files again.
10744
10745 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
10746
10747         * configure.ac:
10748         * docs/plugins/Makefile.am:
10749           Also crossref against gst-plugins-base-libs.
10750
10751 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
10752
10753         * configure.ac:
10754         * docs/libs/Makefile.am:
10755         * docs/plugins/Makefile.am:
10756           Add crossreferences to glib/gobject/gstream docs.
10757
10758         * gst-libs/gst/audio/audio.h:
10759           Source formatting.
10760
10761         * gst/audiotestsrc/gstaudiotestsrc.c: (plugin_init):
10762           Add own debug category.
10763
10764 2007-02-12  Tim-Philipp Müller  <tim at centricular dot net>
10765
10766         Patch by: René Stadler <mail at renestadler de>
10767
10768         * gst-libs/gst/tag/gstvorbistag.c:
10769           Add vorbis/FLAC-tag mapping for new GST_TAG_REFERENCE_LEVEL
10770           (#403597).
10771
10772 2007-02-10  Tim-Philipp Müller  <tim at centricular dot net>
10773
10774         * gst/playback/gstplaybasebin.c: (setup_source):
10775           When we have external subtitles and wait for the subtitle decodebin
10776           to get up and running, we set up a (sync) bus handler for the
10777           subtitle decodebin, so we can stop waiting when it posts an error
10778           message. However, we should do that before we set the subtitle
10779           decodebin's state to playing, otherwise things are racy and we might
10780           miss error messages posted before we had a chance to set up the bus.
10781           This should finally fix totem hanging on .txt pseudo-subtitle files.
10782           
10783 2007-02-10  Sébastien Moutte  <sebastien at moutte dot net>
10784
10785         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:(gst_base_rtp_audio_payload_handle_frame_based_buffer):
10786           Use gst_gdouble_to_guint64 for conversions.
10787         * win32/common/config.h.in:
10788           Add a define for GST_INSTALL_PLUGINS_HELPER
10789         * win32/common/libgstaudio.def:
10790         * win32/common/libgstcdda.def:
10791         * win32/common/libgstnetbuffer.def:
10792         * win32/common/libgstrtp.def:
10793         * win32/common/libgutils.def:
10794           Add new exported functions.
10795         * win32/vs6/gst_plugins_base.dsw:
10796         * win32/vs6/libgstdecodebin.dsp:
10797         * win32/vs6/libgstnetbuffer.dsp:
10798         * win32/vs6/libgstplaybin.dsp:
10799         * win32/vs6/libgstrtp.dsp:
10800         * win32/vs6/libgstvorbis.dsp:
10801         * win32/vs6/libgstcdda.dsp:
10802         * win32/vs6/libgstgdp.dsp:
10803         * win32/vs6/libgstutils.dsp:
10804           Update and add new project files.
10805
10806 2007-02-10  Tim-Philipp Müller  <tim at centricular dot net>
10807
10808         * gst/subparse/gstsubparse.c: (subrip_remove_unhandled_tag),
10809         (subrip_remove_unhandled_tags), (parse_subrip):
10810           For SubRip (.srt) subtitles, ignore all markup tags we don't
10811           handle (like font tags, for example).
10812
10813         * tests/check/elements/subparse.c:
10814           Add test for this.
10815
10816 2007-02-09  Tim-Philipp Müller  <tim at centricular dot net>
10817
10818         * gst/playback/gstdecodebin.c: (add_fakesink),
10819         (gst_decode_bin_change_state):
10820         * gst/playback/gstdecodebin2.c: (add_fakesink),
10821         (gst_decode_bin_change_state):
10822           Don't error out if there is no fakesink in the NULL to READY state
10823           change, since when decodebin is re-used, we're only adding the
10824           fakesink element in READY to PAUSED.
10825
10826         * tests/check/elements/decodebin.c:
10827         (new_decoded_pad_plug_fakesink_cb), (GST_START_TEST),
10828         (decodebin_suite):
10829           Minimal unit test to make sure we can use the same decodebin
10830           instance twice (at least with audiotestsrc input).
10831
10832 2007-02-09  Tim-Philipp Müller  <tim at centricular dot net>
10833
10834         * ext/alsa/gstalsa.c: (gst_alsa_find_device_name):
10835           Try to get devic-name from device string first, and from handle only
10836           as fallback (seems to yield better results and is more robust
10837           against buggy probing code on the application side).
10838
10839 2007-02-08  Tim-Philipp Müller  <tim at centricular dot net>
10840
10841         Based on patch by: Julien Puydt <julien.puydt at laposte net>
10842
10843         * ext/alsa/gstalsa.c: (gst_alsa_find_device_name_no_handle),
10844         (gst_alsa_find_device_name):
10845         * ext/alsa/gstalsa.h:
10846         * ext/alsa/gstalsasink.c: (gst_alsasink_get_property):
10847         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_property):
10848           Improve device-name detection a bit, especially in the case where
10849           the device is not actually open (#405020, #405024). Move common code
10850           into gstalsa.c instead of duplicating it.
10851
10852 2007-02-07  Tim-Philipp Müller  <tim at centricular dot net>
10853
10854         * gst/audioconvert/gstaudioconvert.c:
10855           Fix up docs chunk so that gtk-doc doesn't complain, and fix typo.
10856
10857 2007-02-06  Julien MOUTTE  <julien@moutte.net>
10858
10859         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents),
10860         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_clear),
10861         (gst_xvimagesink_interface_supported),
10862         (gst_xvimagesink_probe_get_properties),
10863         (gst_xvimagesink_probe_probe_property),
10864         (gst_xvimagesink_probe_needs_probe),
10865         (gst_xvimagesink_probe_get_values),
10866         (gst_xvimagesink_property_probe_interface_init),
10867         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
10868         (gst_xvimagesink_init), (gst_xvimagesink_class_init),
10869         (gst_xvimagesink_get_type):
10870         * sys/xvimage/xvimagesink.h: Implement PropertyProbe Interface
10871         for XVAdaptors so that one can choose the adaptor to use with 
10872         gstreamer-properties.
10873
10874 2007-02-06  Stefan Kost  <ensonic@users.sf.net>
10875
10876         * gst/audioconvert/gstaudioconvert.c:
10877           Also mention that a conversion from double to float is suboptimal still.
10878
10879 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
10880
10881         * gst-libs/gst/audio/gstaudiofilter.c:
10882         (gst_audio_filter_class_init), (gst_audio_filter_change_state):
10883           Clear our formats structure and free the caps contained in it when
10884           shutting down.
10885
10886 2007-02-05  Andy Wingo  <wingo@pobox.com>
10887
10888         * gst-libs/gst/audio/gstbaseaudiosink.c
10889         (gst_base_audio_sink_callback): Update basesink->offset so that we
10890         pull monotonically increasing offsets instead of, um, seeking back
10891         to 0 each time. Fixes alsasrc ! alsasink!
10892
10893 2007-02-05  Tim-Philipp Müller  <tim at centricular dot net>
10894
10895         * gst/videoscale/gstvideoscale.c:
10896           A width and height of 1 makes us crash, so increase minimum size to
10897           2x2 pixels until someone feels like fixing this (#404512).
10898
10899 2007-02-04  Tim-Philipp Müller  <tim at centricular dot net>
10900
10901         * tests/check/pipelines/oggmux.c: (GST_START_TEST), (oggmux_suite):
10902           Add small test to make sure request pads are cleaned up properly
10903           even if oggmux never changes state out of NULL.
10904
10905 2007-02-04  Tim-Philipp Müller  <tim at centricular dot net>
10906
10907         * tests/check/libs/utils.c: (GST_START_TEST):
10908           Fix unit test. Turns out things work much better when you
10909           NULL-terminate string arrays. Should make p5 build bot happy again.
10910
10911 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
10912
10913         * gst-libs/gst/audio/Makefile.am:
10914         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
10915         (gst_audio_filter_template_base_init),
10916         (gst_audio_filter_template_class_init),
10917         (gst_audio_filter_template_init),
10918         (gst_audio_filter_template_set_property),
10919         (gst_audio_filter_template_get_property),
10920         (gst_audio_filter_template_setup),
10921         (gst_audio_filter_template_filter),
10922         (gst_audio_filter_template_filter_inplace), (plugin_init):
10923           Oops, forgot to commit fixed-up example.
10924
10925 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
10926
10927         * docs/libs/gst-plugins-base-libs-sections.txt:
10928         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
10929         (gst_audio_filter_class_init), (gst_audio_filter_init),
10930         (gst_audio_filter_set_caps),
10931         (gst_audio_filter_class_add_pad_templates):
10932         * gst-libs/gst/audio/gstaudiofilter.h:
10933           Port GstAudioFilter to 0.10. This change technically breaks
10934           API and ABI (and thus also every library developer's heart),
10935           but seems justifiable on the grounds that the base class was
10936           completely unusable before (ie. would crash immediately when
10937           actually used). Fixes #403963 (and eventually also #403572).
10938           Also document all of this a bit.
10939
10940 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
10941
10942         * gst-libs/gst/utils/install-plugins.c:
10943         (gst_install_plugins_spawn_child):
10944         * tests/check/libs/utils.c:
10945         (test_base_utils_install_plugins_do_callout):
10946           Lowering log level to see why things fail on the p5 build bot;
10947           fix some typos in unit test messages.
10948
10949 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
10950
10951         * tests/check/libs/utils.c:
10952         (test_base_utils_install_plugins_do_callout):
10953           Don't hard-code temp directory for test helper; use GLib functions
10954           to write out file and do error checking etc.
10955
10956 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
10957
10958         * gst-libs/gst/utils/Makefile.am:
10959         * gst-libs/gst/utils/base-utils.h:
10960         * gst-libs/gst/utils/install-plugins.c:
10961         (gst_install_plugins_context_set_xid),
10962         (gst_install_plugins_context_new),
10963         (gst_install_plugins_context_free),
10964         (gst_install_plugins_get_helper),
10965         (gst_install_plugins_spawn_child),
10966         (gst_install_plugins_return_from_status),
10967         (gst_install_plugins_installer_exited),
10968         (gst_install_plugins_async), (gst_install_plugins_sync),
10969         (gst_install_plugins_return_get_name),
10970         (gst_install_plugins_installation_in_progress):
10971         * gst-libs/gst/utils/install-plugins.h:
10972           API: add API for applications to initiate installation of missing
10973           plugins, ie. gst_install_plugins_async() primarily.
10974           Based on libgimme-codec by Ryan Lortie.
10975
10976         * configure.ac:
10977           Add --with-install-plugins-helper configure option so distros can specify
10978           the path of the helper script or program to call when plugin installation
10979           is requested (distros: please do any argument munging in this helper
10980           script instead of patching GStreamer to pass arguments differently
10981           to another program directly).
10982
10983         * docs/libs/gst-plugins-base-libs-docs.sgml:
10984         * docs/libs/gst-plugins-base-libs-sections.txt:
10985           Build and document new API.
10986
10987         * tests/check/libs/utils.c: (result_cb),
10988         (test_base_utils_install_plugins_do_callout), (GST_START_TEST),
10989         (libgstbaseutils_suite):
10990           Some simple checks for the new API.
10991
10992 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
10993
10994         * tests/check/elements/audioconvert.c: (test_float_conversion):
10995           Add small test for 32bit float <=> 64bit float conversion (works
10996           only one way so far, 32=>64 produces structured noise).
10997
10998 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
10999
11000         * gst/audioconvert/gstaudioconvert.c:
11001         (set_structure_widths_32_and_64), (make_lossless_changes):
11002           We don't support floats with a width of 40, 48 or 56 bits.
11003
11004 2007-02-02  Stefan Kost  <ensonic@users.sf.net>
11005
11006         * gst/audioconvert/audioconvert.c: (float), (double),
11007         (audio_convert_get_func_index):
11008         * gst/audioconvert/gstaudioconvert.c: (set_structure_widths),
11009         (make_lossless_changes):
11010           Support for 64-bit float audio in audioconvert (#339837)
11011
11012 2007-02-01  Tim-Philipp Müller  <tim at centricular dot net>
11013
11014         Patch by: Holger Wansing  <linux wansing-online de>
11015
11016         * po/LINGUAS:
11017         * po/de.po:
11018           Add German translation (#352069).
11019
11020 2007-02-01  Sebastian Dröge  <slomo@circular-chaos.org>
11021
11022         reviewed by: Wim Taymans <wim@fluendo.com>
11023
11024         * ext/ogg/gstoggmux.c: (gst_ogg_mux_ogg_pad_destroy_notify),
11025         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad):
11026         Use newly added GstCollectPads API to free the allocated resources in
11027         the GstOggPad structures (#402393).
11028
11029 2007-01-31  Jan Schmidt  <thaytan@mad.scientist.com>
11030
11031         * gst/playback/gstplaybin.c: (gen_vis_element):
11032           Add audioresample+audioconvert in front of the visualisation
11033           element, so that elements like libvisual 0.4 that don't support all
11034           samplerates can work.
11035
11036           Fixes: #402505
11037
11038 2007-01-30  Tim-Philipp Müller  <tim at centricular dot net>
11039
11040         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property),
11041         (gst_play_base_bin_get_streaminfo_value_array):
11042           Take some locks and make a copy of the streaminfo value array we
11043           maintain while holding the lock, so that the application can
11044           retrieve the stream-info as a value array in a thread-safe way.
11045
11046 2007-01-30  Wim Taymans  <wim@fluendo.com>
11047
11048         * gst/audioconvert/gstaudioconvert.c:
11049         Don't fail on 0 sized buffers. Fixes #396835.
11050
11051 2007-01-29  David Schleef  <ds@schleef.org>
11052
11053         * gst/typefind/gsttypefindfunctions.c:
11054           Detect BBCD as video/x-dirac, so we can play raw dirac
11055           streams.
11056
11057 2007-01-29  Tim-Philipp Müller  <tim at centricular dot net>
11058
11059         * ext/theora/theoraenc.c: (theora_enc_chain):
11060           Check return value of theora_encode_header(), or we might try to
11061           allocate a random number of bytes. theora_encode_header() can fail
11062           if libtheora has been compiled with encoding support disabled.
11063           Fixes #398110.
11064
11065 2007-01-29  Wim Taymans  <wim@fluendo.com>
11066
11067         * tests/check/gst/.cvsignore:
11068         Do as buildbot says.
11069
11070 2007-01-29  Wim Taymans  <wim@fluendo.com>
11071
11072         * ext/libvisual/visual.c: (gst_visual_src_setcaps):
11073         Fix strides in libvisual. Gst uses X strides.
11074         Inspired by: <ed at catmur dot co dot uk> and 
11075         <tim at centricular dot net>
11076         Fixes #401118.
11077
11078 2007-01-27  Wim Taymans  <wim@fluendo.com>
11079
11080         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_submit_buffer),
11081         (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
11082         (gst_ogg_demux_get_prev_page), (gst_ogg_demux_do_seek),
11083         (gst_ogg_demux_perform_seek),
11084         (gst_ogg_demux_bisect_forward_serialno),
11085         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
11086         (gst_ogg_demux_find_chains), (gst_ogg_demux_handle_page),
11087         (gst_ogg_demux_chain), (gst_ogg_demux_combine_flows),
11088         (gst_ogg_demux_loop_reverse), (gst_ogg_demux_loop):
11089         * ext/ogg/gstoggdemux.h:
11090         Properly propagate streaming errors when we are scanning the file for
11091         chains so that we don't crash when shut down. Might fix some crashers
11092         when quickly switching oggs in RB such as #332503 and #378436.
11093
11094 2007-01-26  Tim-Philipp Müller  <tim at centricular dot net>
11095
11096         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
11097           Map a gnome-vfs HOST_NOT_FOUND error into a GStreamer NOT_FOUND
11098           error code as well.
11099
11100 2007-01-25  Wim Taymans  <wim@fluendo.com>
11101
11102         * gst/playback/gstplaybasebin.c: (remove_source):
11103         Don't try to disconnect a signal from a finalized object.
11104
11105 2007-01-25  Tim-Philipp Müller  <tim at centricular dot net>
11106
11107         * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose):
11108           Cast lock macro parameters to make sure we're actually accessing the
11109           lock member at the right class level. Free list itself in _dispose()
11110           as well and NULL it in case dispose gets called multiple times.
11111
11112 2007-01-25  Edward Hervey  <edward@fluendo.com>
11113
11114         * gst/playback/gstdecodebin2.c:
11115         (gst_decode_bin_dispose),(gst_decode_bin_finalize):
11116         Free GstDecodeGroups no longer used.
11117         (gst_decode_group_expose):
11118         Don't unlock too many times !
11119         (deactivate_free_recursive):
11120         Free iterator once we're done with it.
11121         Fix for recursively deactivating elements (stop at ghostpads).
11122
11123 2007-01-25  Tim-Philipp Müller  <tim at centricular dot net>
11124
11125         * gst/playback/gstplaybin.c: (handoff):
11126           Fix up caps on the frame buffer before we save it and potentially
11127           make it accessible to other threads via g_object_get; also use
11128           gst_buffer_replace() instead of gst_mini_object_replace().
11129
11130 2007-01-25  Tim-Philipp Müller  <tim at centricular dot net>
11131
11132         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
11133           Make getting the current frame thread-safe.
11134
11135 2007-01-25  Edward Hervey  <edward@fluendo.com>
11136
11137         * gst/playback/gstdecodebin2.c: (gst_decode_bin_finalize),
11138         (gst_decode_group_new), (gst_decode_group_free):
11139         Set queues to bigger sizes to cope with HD contents.
11140         Fix some mutex freeing and add comment about MT safe methods.
11141
11142 2007-01-24  Tim-Philipp Müller  <tim at centricular dot net>
11143
11144         * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event),
11145         (gst_text_overlay_text_event):
11146           Don't unnecessarily ref (and then leak) upstream events if the text
11147           pad is not linked. Fixes #399948.
11148
11149         * tests/check/gst-plugins-base.supp:
11150           Add suppression for pango on edgy/x86 for textoverlay test.
11151
11152 2007-01-24  Wim Taymans  <wim@fluendo.com>
11153
11154         * gst-libs/gst/rtp/gstrtpbuffer.h:
11155         Add some more fixed payloads.
11156
11157 2007-01-23  Tim-Philipp Müller  <tim at centricular dot net>
11158
11159         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_read_chain):
11160           Error out properly if we get an error from libogg while reading the
11161           BOS page(s). Fixes crash parsing 'fuzzed' ogg file (#399340).
11162
11163 2007-01-23  Tim-Philipp Müller  <tim at centricular dot net>
11164
11165         * gst/playback/gstdecodebin2.c: (gst_decode_bin_finalize):
11166           Don't leak mutex.
11167
11168         * tests/check/elements/playbin.c:
11169         (test_sink_usage_video_only_stream),
11170         (test_suburi_error_unknowntype), (test_suburi_error_invalidfile),
11171         (test_suburi_error_wrongproto), (test_missing_urisource_handler),
11172         (test_missing_suburisource_handler),
11173         (test_missing_primary_decoder), (playbin_suite):
11174           Run all tests once with decodebin and once with decodebin2.
11175           One test does not pass yet with decodebin2.
11176
11177 2007-01-23  Edward Hervey  <edward@fluendo.com>
11178
11179         * ext/ogg/gstoggmux.c: (all_pads_eos), (gst_ogg_mux_collected):
11180         Fix the cases where oggmux doesn't properly figure out that all
11181         sinkpads have gone EOS, and therefore doesn't push out the remaining
11182         buffers and the final EOS event.
11183         Fixes #363379
11184
11185 2007-01-23  Julien MOUTTE  <julien@moutte.net>
11186
11187         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
11188         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
11189         Don't lock on navigation event push, just on keysym to string.
11190         Fixes #397673 again.
11191
11192 2007-01-22  Edward Hervey  <edward@fluendo.com>
11193
11194         * gst/playback/gstdecodebin2.c: (gst_decode_group_new),
11195         (get_current_group), (group_demuxer_event_probe),
11196         (gst_decode_group_expose), (deactivate_free_recursive),
11197         (gst_decode_group_free):
11198         Cleanups.
11199         Don't forget to emit 'no-more-pads' once a group is exposed.
11200         Cleanup elements from a DecodeGroup once we remove it.
11201         Protect call to gst_decode_group_expose() with the decodebin lock.
11202
11203 2007-01-22  Julien MOUTTE  <julien@moutte.net>
11204
11205         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
11206         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
11207         Looking at Xorg code i can't figure out if that XKeysymToString
11208         function is thread sensible or not. Lock it just in case as
11209         recommended by Radek Doulik <rodo at ximian dot com>.
11210
11211 2007-01-22  Julien MOUTTE  <julien@moutte.net>
11212
11213         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
11214         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
11215         Lock that X Call as well. Fixes #397673.
11216
11217 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
11218
11219         * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find):
11220           Don't go into an endless loop if the file starts with 00 00 01 2X,
11221           like quicktime redirect files might. Fixes #396042.
11222
11223         * tests/check/Makefile.am:
11224         * tests/check/gst/.cvsignore:
11225         * tests/check/gst/typefindfunctions.c: (GST_START_TEST),
11226         (typefindfunctions_suite):
11227           Add unit test for the above.
11228
11229 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
11230
11231         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
11232           On second thought, use "depth" field rather than "bpp" field.
11233
11234 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
11235
11236         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
11237           Camtasia caps apparently need a bpp field (#398875).
11238
11239 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
11240
11241         * gst/playback/gstplaybasebin.c: (setup_subtitle),
11242         (gen_source_element), (gst_play_base_bin_change_state):
11243           Attempt at a better error message in case we don't have the required
11244           URI handler installed; post missing-plugin message also when we're
11245           missing an URI handler for the subtitle URI; clean up properly also
11246           when an error occurs and we never made it to PAUSED state.
11247
11248         * tests/check/elements/playbin.c: (GST_START_TEST),
11249         (playbin_suite):
11250           Check that we're also getting a missing-plugin messsage for a
11251           missing subtitle URI handler (and clean up properly).
11252
11253 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
11254
11255         * gst/playback/gstplaybasebin.c: (analyse_source), (setup_source):
11256           Plug a few reference leaks.
11257
11258 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
11259
11260         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
11261           Lower probability a bit if the marker isn't right at the start,
11262           to decrease the chance of false positives.
11263
11264 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
11265
11266         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
11267           Small mpeg2 system stream typefinding improvement: make typefinder
11268           probe a bit into the stream instead of just looking for a marker
11269           at the beginning. Fixes #397810.
11270
11271 2007-01-18  Tim-Philipp Müller  <tim at centricular dot net>
11272
11273         * gst/audioconvert/gstchannelmix.c:
11274           Remove compatibility cruft for prehistoric GLib versions.
11275
11276 2007-01-17  Tim-Philipp Müller  <tim at centricular dot net>
11277
11278         * gst/playback/Makefile.am:
11279         * gst/playback/gstdecodebin.c: (close_pad_link):
11280         * gst/playback/gstdecodebin2.c: (analyze_new_pad):
11281         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
11282         (gst_play_base_bin_handle_message_func), (unknown_type):
11283           Let decodebin be the element to post missing-plugin messages for
11284           missing decoders (rather than playbin); make playbin implement
11285           GstBin::handle_message so we can suppress missing-plugin messages
11286           for types we're not handling on purpose (don't want to bring up an
11287           installer in those cases).
11288
11289 2007-01-16  Tim-Philipp Müller  <tim at centricular dot net>
11290
11291         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
11292         * gst-libs/gst/tag/gstvorbistag.c:
11293         (gst_tag_list_to_vorbiscomment_buffer):
11294         * gst/typefind/gsttypefindfunctions.c: (vorbis_type_find):
11295           Fix potentially unaligned access (#397207).
11296
11297 2007-01-16  Stefan Kost  <ensonic@users.sf.net>
11298
11299         * tests/examples/seek/seek.c: (set_scale), (update_scale),
11300         (do_seek), (stop_seek), (pause_cb), (stop_cb), (loop_toggle_cb),
11301         (rate_spinbutton_changed_cb), (msg_eos), (msg_segment_done),
11302         (main):
11303           Allow to toggle looping while it plays. Fix callback prototype. Clean
11304           up code a bit more. Add copyright header.
11305
11306 2007-01-16  Stefan Kost  <ensonic@users.sf.net>
11307
11308         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
11309           Red and blue mask was swapped (spotted by Dan Williams).
11310
11311 2007-01-15  Stefan Kost  <ensonic@users.sf.net>
11312
11313         * gst-libs/gst/tag/gstid3tag.c:
11314         * gst-libs/gst/tag/gstvorbistag.c:
11315           Use new beats-per-minute tag from core.
11316
11317 2007-01-15  Tim-Philipp Müller  <tim at centricular dot net>
11318
11319         * po/POTFILES.in:
11320           Add new files with translatable strings, so they actually make it
11321           into the template file one day.
11322
11323 2007-01-12  Andy Wingo  <wingo@pobox.com>
11324
11325         * gst-libs/gst/audio/gstbaseaudiosink.c
11326         (gst_base_audio_sink_fixate): Implement, stolen from baseaudiosrc.
11327         (gst_base_audio_sink_activate_pull): Remove the handwavey nego
11328         stuff, as the base class handles this now. Actually tell the ring
11329         buffer to start.
11330         (gst_base_audio_sink_callback): Cast the ring buffer correctly.
11331         How did this work before? Maybe I'm not as awesome a programmer as
11332         I think.
11333
11334         * gst-libs/gst/audio/gstbaseaudiosrc.c
11335         (gst_base_audio_src_fixate): Rework as a basesrc vmethod instead
11336         of a pad function.
11337
11338 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
11339
11340         * gst-libs/gst/utils/missing-plugins.c: (copy_and_clean_caps):
11341           Remove more fields so that the application can better blacklist
11342           formats that have been tried before.
11343
11344 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
11345
11346         * gst-libs/gst/audio/mixerutils.h:
11347           Add G_BEGIN_DECLS and G_END_DECLS guards so these helpers can be
11348           used when compiling with c++ compilers as well.
11349
11350 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
11351
11352         * gst/typefind/gsttypefindfunctions.c:
11353           Fix comment.
11354
11355 2007-01-11  Tim-Philipp Müller  <tim at centricular dot net>
11356
11357         * gst/playback/gstplaybin.c: (post_missing_element_message),
11358         (gen_video_element), (gen_text_element), (gen_audio_element),
11359         (gen_vis_element):
11360           Post missing-plugin messages also when we error out because
11361           converters, textoverlay or auto*sinks are missing (#161922).
11362
11363 2007-01-10  Wim Taymans  <wim@fluendo.com>
11364
11365         * gst/playback/gstdecodebin.c: (dynamic_add), (close_pad_link),
11366         (is_demuxer_element), (new_caps):
11367         * gst/playback/gstplaybasebin.c: (source_new_pad):
11368         Fix the case where we try to ref a NULL element when we delay a link
11369         because of unfixed caps.
11370         Set the state of autoplugged decodebins to PAUSED.
11371         RTSP now works in playbin, we can remove it from the blacklist.
11372
11373 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
11374
11375         * gst/playback/Makefile.am:
11376         * gst/playback/gstplaybasebin.c: (string_arr_has_str),
11377         (unknown_type), (setup_subtitle), (gen_source_element):
11378         * gst/playback/gstplaybin.c: (plugin_init):
11379           Post missing-plugin messages on the bus for missing sources and
11380           missing decoders/demuxers/depayloaders; fix error code used when
11381           we're missing an URI handler source; for media types that we are not
11382           handling on purpose at the moment, don't print "don't know how to
11383           handle xyz" messages to the terminal or post missing-plugin
11384           messages on the bus.
11385
11386         * tests/check/elements/playbin.c: (create_playbin),
11387         (GST_START_TEST), (gst_codec_src_uri_get_type),
11388         (gst_codec_src_uri_get_protocols), (gst_codec_src_uri_get_uri),
11389         (gst_codec_src_uri_set_uri), (gst_codec_src_uri_handler_init),
11390         (gst_codec_src_init_type), (gst_codec_src_base_init),
11391         (gst_codec_src_create), (gst_codec_src_class_init),
11392         (gst_codec_src_init), (plugin_init), (playbin_suite):
11393           Add some tests for the missing-plugin stuff.
11394
11395 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
11396
11397         * configure.ac:
11398         * gst-libs/gst/Makefile.am:
11399         * gst-libs/gst/utils/Makefile.am:
11400         * gst-libs/gst/utils/base-utils.c: (gst_base_utils_init):
11401         * gst-libs/gst/utils/base-utils.h:
11402         * gst-libs/gst/utils/descriptions.c: (format_info_get_desc),
11403         (find_format_info), (caps_are_rtp_caps),
11404         (gst_base_utils_get_source_description),
11405         (gst_base_utils_get_sink_description),
11406         (gst_base_utils_get_decoder_description),
11407         (gst_base_utils_get_encoder_description),
11408         (gst_base_utils_get_element_description),
11409         (gst_base_utils_add_codec_description_to_tag_list),
11410         (gst_base_utils_get_codec_description), (gst_base_utils_list_all):
11411         * gst-libs/gst/utils/descriptions.h:
11412         * gst-libs/gst/utils/missing-plugins.c:
11413         (missing_structure_get_type), (copy_and_clean_caps),
11414         (gst_missing_uri_source_message_new),
11415         (gst_missing_uri_sink_message_new),
11416         (gst_missing_element_message_new),
11417         (gst_missing_decoder_message_new),
11418         (gst_missing_encoder_message_new),
11419         (missing_structure_get_string_detail),
11420         (missing_structure_get_caps_detail),
11421         (gst_missing_plugin_message_get_installer_detail),
11422         (gst_missing_plugin_message_get_description),
11423         (gst_is_missing_plugin_message):
11424         * gst-libs/gst/utils/missing-plugins.h:
11425           API: add new libgstbaseutils library with functions
11426           - to create and parse missing-plugins messages
11427           - that provide (translated) descriptions for caps/decoders/sources/etc.
11428           Closes #392393.
11429
11430         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
11431         * pkgconfig/gstreamer-plugins-base.pc.in:
11432           Add new lib.
11433
11434         * docs/libs/gst-plugins-base-libs-docs.sgml:
11435         * docs/libs/gst-plugins-base-libs-sections.txt:
11436           Generate docs for new lib and API.
11437
11438         * tests/check/Makefile.am:
11439         * tests/check/libs/.cvsignore:
11440         * tests/check/libs/utils.c: (missing_msg_check_getters),
11441         (GST_START_TEST), (libgstbaseutils_suite):
11442           Add some basic unit tests.
11443
11444 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
11445
11446         * ext/ogg/Makefile.am:
11447           Dist gstoggdemux.h to fix 'make distcheck'.
11448
11449         * sys/v4l/Makefile.am:
11450           Fix 'make distcheck' even more.
11451
11452 2007-01-09  Wim Taymans  <wim@fluendo.com>
11453
11454         * docs/plugins/Makefile.am:
11455         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
11456         * docs/plugins/gst-plugins-base-plugins-sections.txt:
11457         * ext/ogg/gstoggdemux.c: (gst_ogg_page_copy), (gst_ogg_page_free),
11458         (gst_ogg_pad_query_types), (gst_ogg_pad_submit_page),
11459         (gst_ogg_chain_reset), (gst_ogg_chain_new_stream),
11460         (gst_ogg_demux_perform_seek):
11461         * ext/ogg/gstoggdemux.h:
11462         Added docs.
11463         Add some more comments.
11464         Small cleanups.
11465
11466 2007-01-09  Wim Taymans  <wim@fluendo.com>
11467
11468         * ext/theora/theoradec.c:
11469         * ext/vorbis/vorbisdec.c:
11470         * gst-libs/gst/audio/gstringbuffer.c:
11471         (gst_ring_buffer_commit_full):
11472         * gst-libs/gst/audio/gstringbuffer.h:
11473         * gst-libs/gst/rtp/gstrtpbuffer.c:
11474         * gst-libs/gst/tag/gstvorbistag.c:
11475         Small documentation updates/fixes
11476
11477 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
11478
11479         * configure.ac:
11480           Require core CVS HEAD for Andy's basesrc/sink API additions.
11481
11482 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
11483
11484         Patch by: Günter Thelen  <daedalus dot inc at gmx net>
11485
11486         * gst/typefind/gsttypefindfunctions.c: (flac_type_find),
11487         (plugin_init):
11488           Add typefinder for flac-in-ogg in conformance with the ogg-mapping
11489           on flac.sf.net (there appear to be other versions of the first
11490           ogg page in the wild) (#391365).
11491
11492 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
11493
11494         * configure.ac:
11495           Check if localtime_r() is available.
11496
11497         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_render_time):
11498           If localtime_r() is not available, fall back to localtime(). Should
11499           fix build on MingW (#393310).
11500
11501 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
11502
11503         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
11504         * gst/subparse/gstsubparse.h:
11505           Remove spurious 1000 subtrahend when calculating the timestamp from
11506           the frame number and the frame rate . Also, use the frames/second
11507           value specified in the first line of the file, if one is specified
11508           there. Should fix #357503.
11509
11510         * tests/check/elements/subparse.c: (do_test),
11511         (test_tmplayer_do_test), (test_microdvd_do_test), (GST_START_TEST),
11512         (subparse_suite):
11513           Add some basic unit tests for the microdvd subtitle format.
11514
11515 2007-01-07  Julien MOUTTE  <julien@moutte.net>
11516
11517         Patch by: Young-Ho Cha <ganadist at chollian dot net>
11518
11519         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
11520         (gst_xvimage_buffer_finalize), (gst_xvimagesink_xvimage_new),
11521         (gst_xvimagesink_xvimage_put), (gst_lookup_xv_port_from_adaptor),
11522         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_setcaps),
11523         (gst_xvimagesink_set_xwindow_id),
11524         (gst_xvimagesink_set_event_handling),
11525         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
11526         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
11527         Fixes: #390076.
11528         Add an adaptor property to select a specific XV adaptor.
11529         * sys/xvimage/xvimagesink.h:
11530
11531 2007-01-07  Julien MOUTTE  <julien@moutte.net>
11532
11533         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
11534         (gst_ximagesink_handle_xerror), (gst_ximagesink_ximage_new),
11535         (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
11536         (gst_ximagesink_handle_xevents), (gst_ximagesink_setcaps),
11537         (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
11538         (gst_ximagesink_expose), (gst_ximagesink_set_event_handling):
11539         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
11540         (gst_xvimage_buffer_finalize), (gst_xvimagesink_handle_xerror),
11541         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
11542         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_setcaps),
11543         (gst_xvimagesink_change_state), (gst_xvimagesink_set_xwindow_id),
11544         (gst_xvimagesink_expose), (gst_xvimagesink_set_event_handling):
11545         Use flow_lock much more to protect every access to xwindow.
11546         Try to catch erros while creating images in case some drivers are
11547         just generating an XError when the requested image is too big.
11548         Should fix : #354698, #384008, #384060.
11549         * tests/icles/stress-xoverlay.c: (cycle_window), (create_window):
11550         Implement some stress testing of setting window xid.
11551
11552 2007-01-07  Sébastien Moutte  <sebastien@moutte.net>
11553
11554         * win32/common/libgsaudio.def:
11555           Add new exported function.
11556         * win32/common/libgstogg.dsp:
11557           Add gstoggaviparse.c to the build.
11558         * win32/common/libgstvideoscale.dsp:
11559           Add vs_4tap.c to the build.
11560         * win32/common/libgstvorbis.dsp:
11561           Add vorbistag.c to the build.
11562         
11563 2007-01-06  Andy Wingo  <wingo@pobox.com>
11564
11565         * gst-libs/gst/audio/gstbaseaudiosink.c
11566         (gst_base_audio_sink_class_init)
11567         (gst_base_audio_sink_init): 
11568         (gst_base_audio_sink_activate_pull): Add an activate_pull function
11569         to baseaudiosink, and tell basesink that we can work in pull mode.
11570         This way the ring buffer thread drives the pipeline directly, if
11571         pull mode is possible. There is some lingering nastiness regarding
11572         capsnego, however.
11573         (gst_base_audio_sink_callback): Implement the callback to pull
11574         data. This interface is a bit light, though -- it should get a
11575         GstFlowReturn return value at least.
11576
11577 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
11578
11579         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_stream_out):
11580         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
11581         * gst/playback/gstdecodebin2.c:
11582         (gst_decode_group_check_if_blocked):
11583           Printf format and missing argument fixes.
11584
11585 2007-01-05  Jan Schmidt  <thaytan@mad.scientist.com>
11586
11587         * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header),
11588         (gst_ogm_parse_change_state):
11589         Activate pads before adding them to the element.
11590
11591 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
11592
11593         * tests/examples/seek/scrubby.c: (main):
11594         * tests/examples/seek/seek.c: (main):
11595           Call g_thread_init() first thing in main() (see #391278).
11596
11597 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
11598
11599         * tests/check/Makefile.am:
11600         * tests/check/libs/.cvsignore:
11601         * tests/check/libs/netbuffer.c: (GST_START_TEST),
11602         (netbuffer_suite):
11603           Add test for GstNetBuffer + gst_buffer_copy(). Disabled
11604           for the time being, since it's broken, see #393099.
11605
11606 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
11607
11608         * tests/check/Makefile.am:
11609           Update to use GST_PLUGINS_BASE_CFLAGS as well.
11610
11611 2007-01-04  Thomas Vander Stichele  <thomas at apestaart dot org>
11612
11613         * configure.ac:
11614           split out GST_CFLAGS into GST_PLUGINS_BASE_CFLAGS and GST_CFLAGS
11615           so that GST_BASE_CFLAGS can go inbetween them, making sure
11616           we use uninstalled gst-libs headers
11617         * docs/libs/Makefile.am:
11618         * ext/alsa/Makefile.am:
11619         * ext/cdparanoia/Makefile.am:
11620         * ext/gnomevfs/Makefile.am:
11621         * ext/libvisual/Makefile.am:
11622         * ext/ogg/Makefile.am:
11623         * ext/theora/Makefile.am:
11624         * ext/vorbis/Makefile.am:
11625         * gst-libs/gst/audio/Makefile.am:
11626         * gst-libs/gst/cdda/Makefile.am:
11627         * gst-libs/gst/interfaces/Makefile.am:
11628         * gst-libs/gst/riff/Makefile.am:
11629         * gst-libs/gst/rtp/Makefile.am:
11630         * gst-libs/gst/tag/Makefile.am:
11631         * gst/adder/Makefile.am:
11632         * gst/audioconvert/Makefile.am:
11633         * gst/audiorate/Makefile.am:
11634         * gst/audioresample/Makefile.am:
11635         * gst/playback/Makefile.am:
11636         * gst/tcp/Makefile.am:
11637         * gst/videoscale/Makefile.am:
11638         * gst/volume/Makefile.am:
11639         * sys/ximage/Makefile.am:
11640         * sys/xvimage/Makefile.am:
11641         * tests/icles/Makefile.am:
11642           adapt
11643
11644 2007-01-04  Julien MOUTTE  <julien@moutte.net>
11645
11646         * gst-libs/gst/interfaces/xoverlay.c:
11647         (gst_x_overlay_handle_events):
11648         * gst-libs/gst/interfaces/xoverlay.h:
11649         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
11650         (gst_ximagesink_set_xwindow_id),
11651         (gst_ximagesink_set_event_handling),
11652         (gst_ximagesink_xoverlay_init), (gst_ximagesink_set_property),
11653         (gst_ximagesink_get_property), (gst_ximagesink_init),
11654         (gst_ximagesink_class_init):
11655         * sys/ximage/ximagesink.h:
11656         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new),
11657         (gst_xvimagesink_set_xwindow_id),
11658         (gst_xvimagesink_set_event_handling),
11659         (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_set_property),
11660         (gst_xvimagesink_get_property), (gst_xvimagesink_init),
11661         (gst_xvimagesink_class_init):
11662         * sys/xvimage/xvimagesink.h:
11663         * tests/icles/stress-xoverlay.c: (toggle_events), (create_window):
11664         Add a method to the XOverlay interface to allow disabling of 
11665         event handling in x[v]imagesink elements. This will let X events
11666         propagate to parent windows which can be usefull in some cases.
11667         Be carefull that the application is then responsible of pushing
11668         navigation events and expose events to the video sink.
11669         Fixes: #387138.
11670
11671 2007-01-03  Tim-Philipp Müller  <tim at centricular dot net>
11672
11673         * gst-libs/gst/tag/gstvorbistag.c:
11674         * tests/check/libs/tag.c: (GST_START_TEST):
11675           Add vorbistag <=> GStreamer tag mapping for GST_TAG_LOCATION
11676           (fixes #392070).
11677
11678 2007-01-01  Tim-Philipp Müller  <tim at centricular dot net>
11679
11680         * configure.ac:
11681         * docs/Makefile.am:
11682         * docs/design/Makefile.am:
11683           Dist design docs.
11684
11685 2006-12-27  Julien MOUTTE  <julien@moutte.net>
11686
11687         * docs/libs/gst-plugins-base-libs-sections.txt: Fix a documentation
11688         typo. Fixes: #390063.
11689
11690 2006-12-27  Julien MOUTTE  <julien@moutte.net>
11691
11692         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
11693         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Plug a
11694         caps leak.
11695         * win32/common/config.h: Updated.
11696
11697 2006-12-22  Stefan Kost  <ensonic@users.sf.net>
11698
11699         * tests/check/elements/gdpdepay.c: (cleanup_gdpdepay),
11700         (setup_gdpdepay_streamheader):
11701         * tests/check/elements/gdppay.c: (cleanup_gdppay),
11702         (setup_gdppay_streamheader):
11703           Fix the dp tests, but activating the pads for the streamheader tests
11704           too and cleaning up conditionaly
11705
11706 2006-12-22  Jan Schmidt  <thaytan@mad.scientist.com>
11707
11708         * gst/ffmpegcolorspace/avcodec.h:
11709         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11710         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
11711         (gst_ffmpegcsp_avpicture_fill):
11712         * gst/ffmpegcolorspace/imgconvert.c: (img_convert),
11713         (img_get_alpha_info):
11714         Add 2 new caps arrangements, for 24-bit RGB and BGR in 32-bits, but at the
11715         other end of the word. Fixes: #387073.
11716
11717         Add some inconsequential branch hints in a couple of places.
11718
11719 2006-12-21  Tim-Philipp Müller  <tim at centricular dot net>
11720
11721         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11722         (gst_ffmpeg_caps_to_smpfmt):
11723           The "signed" field in raw audio caps is of boolean type, trying to
11724           extract the value with _get_int() will fail (fix to keep in sync with
11725           the copy in gst-ffmpeg)
11726
11727 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
11728
11729         * tests/check/elements/audioresample.c: (cleanup_audioresample):
11730         * tests/check/elements/audiotestsrc.c: (cleanup_audiotestsrc):
11731         * tests/check/elements/gdpdepay.c: (setup_gdpdepay),
11732         (cleanup_gdpdepay):
11733         * tests/check/elements/gdppay.c: (setup_gdppay), (cleanup_gdppay):
11734         * tests/check/elements/subparse.c: (teardown_subparse):
11735         * tests/check/elements/textoverlay.c: (cleanup_textoverlay):
11736         * tests/check/elements/videorate.c: (cleanup_videorate):
11737         * tests/check/elements/videotestsrc.c: (cleanup_videotestsrc):
11738         * tests/check/elements/volume.c: (cleanup_volume):
11739         * tests/check/elements/vorbisdec.c: (setup_vorbisdec),
11740         (cleanup_vorbisdec):
11741         * tests/check/elements/vorbistag.c: (setup_vorbistag),
11742         (cleanup_vorbistag):
11743           consistent pad (de)activation
11744
11745 2006-12-20  Tim-Philipp Müller  <tim at centricular dot net>
11746
11747         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
11748           Forgot to register the extensions.
11749
11750 2006-12-20  Tim-Philipp Müller  <tim at centricular dot net>
11751
11752         * gst/typefind/gsttypefindfunctions.c: (vivo_type_find),
11753         (plugin_init):
11754           Add typefinder for VIVO files (my christmas present to the 90s).
11755
11756 2006-12-16  Tim-Philipp Müller  <tim at centricular dot net>
11757
11758         * gst/playback/gstdecodebin.c: (type_found):
11759           Special-case the text/plain media type: we only want to recognise it
11760           as a 'raw' decoded media type if it comes from a demuxer or subtitle
11761           parser, but not if the entire stream is of text/plain type. If the
11762           entire stream is text/plain, we should just error out.
11763
11764           This fixes playback of audio files with lyrics in totem. Totem can't
11765           distinguish between text files and subtitle files and passes any
11766           .txt file with the same basename as the main file to playbin as
11767           suburi, and playbin will then throw a 'subtitle found, but no video
11768           stream' error, which isn't entirely helpful. See #380342.
11769
11770           Also, with this change we'll show a slightly more correct error
11771           message in case totem passes a playlist file to us (although a
11772           custom error message wording instead of the default text would
11773           probably not be a bad idea either).
11774
11775           Same problem also needs to be fixed for playbin+decodebin2.
11776
11777         * tests/check/Makefile.am:
11778         * tests/check/elements/decodebin.c: (src_handoff_cb),
11779         (decodebin_new_decoded_pad_cb), (GST_START_TEST),
11780         (decodebin_suite):
11781           Add simple unit test for decodebin for the above.
11782
11783 2006-12-16  Tim-Philipp Müller  <tim at centricular dot net>
11784
11785         * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
11786         * gst/playback/gstdecodebin2.c: (gst_decode_bin_change_state):
11787           Refuse to change state to READY when we failed to create any of the
11788           required elements in our instance init function.
11789
11790 2006-12-15  Tim-Philipp Müller  <tim at centricular dot net>
11791
11792         * docs/libs/gst-plugins-base-libs-sections.txt:
11793           Small docs fixes/updates.
11794
11795         * gst-libs/gst/video/gstvideosink.h:
11796           Remove nonfunctional GST_VIDEO_SINK_CLOCK macro which is a leftover
11797           from the 0.9 days (GST_BASE_SINK_CLOCK, which it points to, was
11798           removed from the base sink API between 0.9.6 and 0.9.7).
11799           API: add GST_VIDEO_SINK_CAST and use it for the height/width
11800           accessor macros, so we don't do a runtime GObject type check every
11801           time we use them.
11802
11803 2006-12-15  Thomas Vander Stichele  <thomas at apestaart dot org>
11804
11805         * Makefile.am:
11806         * gst-plugins-base.doap:
11807         * gst-plugins-base.spec.in:
11808           add doap file
11809
11810 2006-12-09  Tim-Philipp Müller  <tim at centricular dot net>
11811
11812         Patch by: Jens Granseuer <jensgr at gmx net>
11813
11814         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
11815         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
11816         (gst_base_rtp_audio_payload_handle_frame_based_buffer),
11817         (gst_base_rtp_audio_payload_handle_sample_based_buffer):
11818         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
11819           Declare variables at the beginning of a block. Fixes #383195.
11820
11821 2006-12-07  Jan Schmidt  <thaytan@mad.scientist.com>
11822
11823         * configure.ac:
11824         Bump version nano - back to CVS.
11825
11826
11827 === release 0.10.11 ===
11828
11829 2006-12-06  Jan Schmidt <thaytan@mad.scientist.com>
11830
11831         * configure.ac:
11832           releasing 0.10.11, "Dumb things"
11833
11834 2006-12-05  Jan Schmidt  <thaytan@mad.scientist.com>
11835
11836         * gst/playback/gstdecodebin.c: (find_dynamic), (dynamic_add),
11837         (close_pad_link), (elem_is_dynamic), (unlinked), (close_link):
11838         Handle the case where an element has multiple pads with 
11839         unfixed caps as well as still possibly producing more dynamic 
11840         pads by storing each case as a distinct entry in the dynamic list.
11841         Fixes #38223 again.
11842
11843 2006-12-04  Wim Taymans  <wim@fluendo.com>
11844
11845         * gst/playback/gstdecodebin.c: (close_pad_link):
11846         Fix #382223, add more dynamic caps handling.
11847
11848 2006-12-04  Wim Taymans  <wim@fluendo.com>
11849
11850         * gst-libs/gst/audio/gstringbuffer.h:
11851         * gst-libs/gst/netbuffer/gstnetbuffer.c: (gst_netbuffer_init),
11852         (gst_netaddress_set_ip4_interface),
11853         (gst_netaddress_set_ip6_interface), (gst_netaddress_set_loopback),
11854         (gst_netaddress_set_ttl), (gst_netaddress_get_ip4_interface),
11855         (gst_netaddress_get_ip6_interface), (gst_netaddress_get_loopback),
11856         (gst_netaddress_get_ttl):
11857         * gst-libs/gst/netbuffer/gstnetbuffer.h:
11858         * gst/playback/gstdecodebin.c: (close_pad_link):
11859         * tests/examples/seek/seek.c: (end_scrub), (end_seek), (do_seek),
11860         (seek_cb), (stop_seek), (rate_spinbutton_changed_cb):
11861         * win32/common/config.h:
11862
11863 2006-12-01  Michael Smith  <msmith@fluendo.com>
11864
11865         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
11866           Delete bad debug code.
11867           Fixes #381219
11868
11869 2006-12-01  Jan Schmidt  <thaytan@mad.scientist.com>
11870
11871         * gst/videoscale/vs_4tap.c:
11872         * win32/MANIFEST:
11873         * win32/common/config.h:
11874         * win32/vs8/libgstvideoscale.vcproj:
11875         Fix compilation on win32 under VS8
11876         Patch by: Sergey Scobich <sergey dot scobich at gmail dot com>
11877         Partially fixes #381175
11878
11879 2006-11-30  Michael Smith  <msmith@fluendo.com>
11880
11881         * tests/check/pipelines/theoraenc.c: (check_buffer_granulepos),
11882         (GST_START_TEST):
11883           It would be very bad if, after a discont buffer, we thought every
11884           single following buffer was also discont. So, add to the test to
11885           ensure that this isn't the case.
11886           
11887         * ext/theora/theoraenc.c: (theora_enc_is_discontinuous):
11888           ... it was the case. So fix it.
11889
11890 2006-11-28  Wim Taymans  <wim@fluendo.com>
11891
11892         * gst/playback/gstplaybasebin.c: (check_queue_event):
11893         Improve debug.
11894
11895         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps):
11896         Fix width and height range from 16 - 4096 to 1 - MAXINT, just like the
11897         padtemplate caps. Refixes #357577.
11898
11899 2006-11-28  Wim Taymans  <wim@fluendo.com>
11900
11901         * gst/playback/gstplaybasebin.c: (check_queue_event),
11902         (queue_threshold_reached), (queue_out_of_data),
11903         (gen_preroll_element):
11904         Add event probe to see when EOS is in a queue and we can disable the
11905         underrun signals. Fixes #357577.
11906
11907 2006-11-28  Edward Hervey  <edward@fluendo.com>
11908
11909         * gst/playback/Makefile.am:
11910         * gst/playback/gstdecodebin2.c: (gst_decode_bin_get_type),
11911         (_gst_boolean_accumulator), (gst_decode_bin_class_init),
11912         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
11913         (gst_decode_bin_init), (gst_decode_bin_dispose),
11914         (gst_decode_bin_finalize), (gst_decode_bin_set_property),
11915         (gst_decode_bin_get_property), (gst_decode_bin_set_caps),
11916         (gst_decode_bin_get_caps), (gst_decode_bin_autoplug_continue),
11917         (gst_decode_bin_autoplug_sort), (analyze_new_pad), (connect_pad),
11918         (connect_element), (expose_pad), (type_found),
11919         (pad_added_group_cb), (pad_removed_group_cb),
11920         (no_more_pads_group_cb), (pad_added_cb), (pad_removed_cb),
11921         (no_more_pads_cb), (find_compatibles), (is_demuxer_element),
11922         (are_raw_caps), (multi_queue_overrun_cb),
11923         (multi_queue_underrun_cb), (gst_decode_group_new),
11924         (get_current_group), (group_demuxer_event_probe),
11925         (gst_decode_group_control_demuxer_pad),
11926         (gst_decode_group_control_source_pad),
11927         (gst_decode_group_check_if_blocked),
11928         (gst_decode_group_check_if_drained), (gst_decode_group_expose),
11929         (gst_decode_group_hide), (gst_decode_group_free),
11930         (gst_decode_group_set_complete), (source_pad_blocked_cb),
11931         (source_pad_event_probe), (gst_decode_pad_new), (add_fakesink),
11932         (remove_fakesink), (find_sink_pad), (gst_decode_bin_change_state),
11933         (plugin_init):
11934         New decodebin2 element.
11935         Closes #370092
11936         * gst/playback/gstplay-marshal.list:
11937         Added marshallers for new signals in decodebin2
11938         * gst/playback/gstplaybasebin.c: (setup_subtitle), (make_decoder):
11939         Use decodebin2 if *and only if* the USE_DECODEBIN2 environment variable
11940         is set.
11941
11942 2006-11-28  Wim Taymans  <wim@fluendo.com>
11943
11944         * gst/playback/gstplaybasebin.c: (setup_source),
11945         (gst_play_base_bin_change_state):
11946         Disable rtsp:// uris for the release, it's not good enough yet.
11947         Remove unused var.
11948
11949 2006-11-26  Wim Taymans  <wim@fluendo.com>
11950
11951         * ext/theora/theoradec.c: (gst_theora_dec_reset),
11952         (theora_dec_push_forward), (theora_dec_push_reverse),
11953         (theora_handle_data_packet), (theora_dec_decode_buffer),
11954         (theora_dec_flush_decode), (theora_dec_chain_reverse),
11955         (theora_dec_chain_forward), (theora_dec_chain):
11956         Implement reverse playback.
11957
11958         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
11959         (vorbis_dec_decode_buffer), (vorbis_dec_flush_decode),
11960         (vorbis_dec_chain_forward):
11961         Clear buffers used for reverse playback in _reset.
11962         No need to set the eos flag, we clip samples using the segment.
11963
11964 2006-11-24  Wim Taymans  <wim@fluendo.com>
11965
11966         * ext/ogg/gstoggdemux.c: (gst_ogg_page_copy), (gst_ogg_page_free),
11967         (gst_ogg_pad_init), (gst_ogg_pad_dispose), (gst_ogg_pad_reset),
11968         (gst_ogg_pad_stream_out), (gst_ogg_pad_submit_page),
11969         (gst_ogg_chain_reset), (gst_ogg_demux_perform_seek):
11970         Some cleanups.
11971         Handle continued pages in reverse mode.
11972
11973 2006-11-24  Wim Taymans  <wim@fluendo.com>
11974
11975         * ext/vorbis/vorbisdec.c: (vorbis_dec_push_forward),
11976         (vorbis_handle_data_packet), (vorbis_dec_decode_buffer),
11977         (vorbis_dec_flush_decode):
11978         Small cleanups.
11979         Don't try to add invalid timestamps.
11980         Clipping will unref the buffer.
11981
11982 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
11983
11984         * gst/adder/gstadder.h:
11985         * gst/audiotestsrc/gstaudiotestsrc.h:
11986           remove obsolete _factory_init protos
11987
11988 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
11989
11990         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
11991           Fix spacing in debug message.
11992
11993 2006-11-23  Wim Taymans  <wim@fluendo.com>
11994
11995         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page),
11996         (gst_ogg_demux_chain):
11997         Don't just ignore return values from _pad_push().
11998         Small debug improvements.
11999
12000 2006-11-23  Michael Smith  <msmith@fluendo.com>
12001
12002         * ext/ogg/gstoggmux.c: (gst_ogg_mux_process_best_pad):
12003           If our incoming buffer is marked as DISCONT, then increment the page
12004           number (so that the discontinuity is marked in the final ogg
12005           bitstream) and flush the previous page.
12006
12007 2006-11-22  Michael Smith  <msmith@fluendo.com>
12008
12009         * ext/theora/gsttheoraenc.h:
12010         * ext/theora/theoraenc.c: (gst_theora_enc_init),
12011         (theora_enc_reset), (theora_enc_clear), (theora_enc_sink_setcaps),
12012         (theora_buffer_from_packet), (theora_enc_is_discontinuous),
12013         (theora_enc_chain), (theora_enc_change_state):
12014           Mark discontinuities of > 3/4 of a frame, reinit encoder.
12015
12016         * tests/check/pipelines/theoraenc.c: (check_buffer_granulepos),
12017         (GST_START_TEST), (theoraenc_suite):
12018           Enable discontinuity test, fix it.
12019
12020 2006-11-21  Tim-Philipp Müller  <tim at centricular dot net>
12021
12022         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
12023         (gst_text_overlay_text_pad_unlink), (gst_text_overlay_text_event),
12024         (gst_text_overlay_video_event), (gst_text_overlay_pop_text),
12025         (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
12026         (gst_text_overlay_change_state):
12027         * ext/pango/gsttextoverlay.h:
12028           Some textoverlay fixes: for one, in the video chain function,
12029           actually wait for a text buffer to come in if there is none at the
12030           moment and there should be one; also, deal more gracefully with
12031           incoming buffers that do not have a timestamp or duration; discard
12032           text buffer when not needed any longer. Fixes #341681.
12033
12034         * tests/check/Makefile.am:
12035         * tests/check/elements/.cvsignore:
12036         * tests/check/elements/textoverlay.c:
12037         (notgst_check_setup_src_pad2), (notgst_check_teardown_src_pad2),
12038         (setup_textoverlay), (buffer_is_all_black), (create_black_buffer),
12039         (create_text_buffer), (cleanup_textoverlay), (GST_START_TEST),
12040         (test_video_waits_for_text_send_text_newsegment_thread),
12041         (test_video_waits_for_text_shutdown_element),
12042         (test_render_continuity_push_video_buffers_thread),
12043         (textoverlay_suite):
12044           Add some unit tests for textoverlay.
12045
12046 2006-11-21  Tim-Philipp Müller  <tim at centricular dot net>
12047
12048         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
12049           Avoid integer underflow when the found probability for mp3 is
12050           smaller than the 'penalty' we subtract if there's not a clean
12051           mp3 header sync at offset 0.
12052
12053 2006-11-21  Stefan Kost  <ensonic@users.sf.net>
12054
12055         * docs/libs/gst-plugins-base-libs-sections.txt:
12056           Add some new symbols to the docs
12057
12058 2006-11-20  Tim-Philipp Müller  <tim at centricular dot net>
12059
12060         * tests/check/Makefile.am:
12061         * tests/check/elements/ffmpegcolorspace.c:
12062         (ffmpegcolorspace_suite):
12063           Enable ffmpegcolorspace test now that the RGBA32 issue is fixed
12064           (for now not for valgrinding though, since it takes too long).
12065
12066 2006-11-20  Wim Taymans  <wim@fluendo.com>
12067
12068         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
12069         (gst_ffmpeg_pixfmt_to_caps):
12070         Fix RGBA32 caps. Fixes #357038.
12071
12072 2006-11-20  Tim-Philipp Müller  <tim at centricular dot net>
12073
12074         * gst-libs/gst/interfaces/mixertrack.h:
12075           Add FIXME so we can add some padding here in 0.11
12076
12077 2006-11-19  Tim-Philipp Müller  <tim at centricular dot net>
12078
12079         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
12080           Fix GstBaseRTPAudioPayload structure so the whole GObject
12081           inheritance business actually works (parent class instance structure
12082           must always come first in the derived class instance structure).
12083
12084 2006-11-16  Tim-Philipp Müller  <tim at centricular dot net>
12085
12086         * gst/videotestsrc/Makefile.am:
12087         * tests/check/Makefile.am:
12088           Make sure our checks and the videotestsrc plugin link against the
12089           local uninstalled gst libs and not any installed gst libs that
12090           might happen to exist as well.
12091
12092         * tests/check/elements/adder.c: (message_received),
12093         (test_event_message_received), (test_play_twice_message_received):
12094         * tests/check/elements/ffmpegcolorspace.c: (GST_START_TEST):
12095           Fix compiler warnings when compiling against core with disabled
12096           debugging system.
12097
12098 2006-11-16  Michael Smith  <msmith@fluendo.com>
12099
12100         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
12101         (gst_audio_rate_sink_event), (gst_audio_rate_chain):
12102           Fix audiorate, so that it accurately sets offsets and timestamps.
12103           Doesn't change the fundamental algorithmic decisions; so should be
12104           safe.
12105
12106         * tests/check/Makefile.am:
12107           Enable audiorate test now that it passes.
12108
12109 2006-11-09  Stefan Kost  <ensonic@users.sf.net>
12110
12111         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
12112           clear xv when going to NULL, remove // commented non-existant proto
12113
12114         * tests/examples/seek/seek.c: (main):
12115           add missing tooltip description for scrub and play_scrub
12116
12117 2006-11-14  David Schleef  <ds@schleef.org>
12118
12119         * configure.ac:
12120           Bump liboil requirement to 0.3.8.
12121         * gst-libs/gst/riff/riff-media.c:
12122           Add Dirac fourcc.
12123         * gst/videoscale/vs_image.h:
12124         * gst/videoscale/vs_scanline.h:
12125           Use liboil's stdint.h.
12126         * gst/videotestsrc/videotestsrc.c:
12127           Remove liboil related ifdef's, since they aren't needed now, and
12128           won't work with future versions.
12129
12130 2006-11-14  David Schleef  <ds@schleef.org>
12131
12132         * gst/videoscale/Makefile.am:
12133         * gst/videoscale/gstvideoscale.c:
12134         * gst/videoscale/gstvideoscale.h:
12135         * gst/videoscale/vs_4tap.c:
12136         * gst/videoscale/vs_4tap.h:
12137         * gst/videoscale/vs_image.c:
12138         * gst/videoscale/vs_image.h:
12139         * gst/videoscale/vs_scanline.c:
12140         * gst/videoscale/vs_scanline.h:
12141           Add a 4-tap image scaler.  Theoretically looks much prettier.
12142           The tap calculation could use some improvement.
12143
12144 2006-11-14  Wim Taymans  <wim@fluendo.com>
12145
12146         Patch by: Jan David Mol <j dot j dot d dot mol at tudelft dot nl>
12147
12148         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds),
12149         (gst_riff_parse_strf_iavs):
12150         * gst/subparse/gstsubparse.c: (convert_encoding):
12151         * gst/tcp/gstmultifdsink.c:
12152         (gst_multi_fd_sink_handle_client_write):
12153         * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
12154         (gst_tcp_read_buffer), (gst_tcp_gdp_read_caps),
12155         (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
12156         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_render):
12157         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
12158         (gst_ximagesink_ximage_new):
12159         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
12160         Various gsize and gssize printf fixes. Fixes #372507.
12161
12162 2006-11-13  Wim Taymans  <wim@fluendo.com>
12163
12164         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
12165         (vorbis_dec_push_forward), (vorbis_dec_push_reverse),
12166         (vorbis_handle_data_packet), (vorbis_dec_decode_buffer),
12167         (vorbis_dec_flush_decode), (vorbis_dec_chain_reverse),
12168         (vorbis_dec_chain_forward), (vorbis_dec_chain):
12169         * ext/vorbis/vorbisdec.h:
12170         First stab at vorbis reverse playback.
12171
12172 2006-11-13  Wim Taymans  <wim@fluendo.com>
12173
12174         * gst-libs/gst/audio/gstbaseaudiosink.c:
12175         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
12176         * gst-libs/gst/audio/gstbaseaudiosink.h:
12177         Make the clock sync code more accurate wrt resampling and playback
12178         at different rates.
12179         
12180         * gst-libs/gst/audio/gstringbuffer.c:
12181         (gst_ring_buffer_commit_full), (gst_ring_buffer_commit):
12182         * gst-libs/gst/audio/gstringbuffer.h:
12183         Use better algorithm to interpolate sample rates. 
12184
12185 2006-11-13  Michael Smith  <msmith@fluendo.com>
12186
12187         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page):
12188           Improve a debug line slightly.
12189
12190         * ext/ogg/gstogmparse.c: (gst_ogm_parse_plugin_init):
12191           Call gst_riff_init() in plugin_init, to avoid getting errors from
12192           the debug system (unrelated changes to another plugin made this turn
12193           up; not sure why).
12194
12195 2006-11-10  Tim-Philipp Müller  <tim at centricular dot net>
12196
12197         Patch by: Sergey Scobich  <sergery.scobich at gmail com>
12198
12199         * win32/common/libgsttag.def:
12200           Add missing symbol (#366492).
12201
12202 2006-11-09  Tim-Philipp Müller  <tim at centricular dot net>
12203
12204         * gst/playback/gststreamselector.c: (gst_stream_selector_dispose):
12205           Don't unref a NULL pad.
12206
12207 2006-11-09  Wim Taymans  <wim@fluendo.com>
12208
12209         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page),
12210         (gst_ogg_demux_get_prev_page), (gst_ogg_demux_perform_seek),
12211         (gst_ogg_demux_handle_page), (gst_ogg_demux_chain),
12212         (gst_ogg_demux_loop_forward), (gst_ogg_demux_loop_reverse),
12213         (gst_ogg_demux_loop):
12214         Implement first stab at reverse playback.
12215
12216 2006-11-07  Stefan Kost  <ensonic@users.sf.net>
12217
12218         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
12219         (gst_riff_create_video_template_caps):
12220           add h263/h264 variants to the caps, Fixes #363118
12221
12222 2006-11-06  Tim-Philipp Müller  <tim at centricular dot net>
12223
12224         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func):
12225         * gst-libs/gst/audio/gstaudiosrc.c: (audioringbuffer_thread_func):
12226           Use g_strerror instead of strerror so we get UTF-8.
12227
12228 2006-11-03  David Schleef  <ds@schleef.org>
12229
12230         * ext/ogg/gstoggdemux.c:
12231         * ext/ogg/gstoggmux.c:
12232           Add/remove KW-DIRAC header here, since it is ogg-specific.
12233
12234 2006-11-03  Michael Smith  <msmith@fluendo.com>
12235
12236         * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find):
12237           Recognise more mpeg4 elementary video streams.
12238
12239 2006-11-02  Edward Hervey  <edward@fluendo.com>
12240
12241         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
12242         Lower the probability of mp3 typefinding functions if we don't find a
12243         valid mp3 header at the start of the file.
12244         Closes #369482
12245
12246 2006-11-02  Wim Taymans  <wim@fluendo.com>
12247
12248         * ext/theora/gsttheoradec.h:
12249         * ext/theora/theoradec.c: (gst_theora_dec_init),
12250         (theora_dec_sink_event), (theora_dec_chain_forward),
12251         (theora_dec_flush_decode), (theora_dec_chain_reverse),
12252         (theora_dec_chain):
12253         Document and partially implement an algorithm for doing reverse playback
12254         of theora video.
12255
12256 2006-11-02  Tim-Philipp Müller  <tim at centricular dot net>
12257
12258         Patch by: Sergey Scobich  <sergey.scobich at gmail com>
12259
12260         * win32/common/config.h:
12261         * win32/common/interfaces-enumtypes.c:
12262         * win32/common/libgsttag.def:
12263         * win32/vs8/gst-plugins-base.sln:
12264         * win32/vs8/libgstaudioresample.vcproj:
12265         * win32/vs8/libgstinterfaces.vcproj:
12266         * win32/vs8/libgstogg.vcproj:
12267         * win32/vs8/libgstriff.vcproj:
12268         * win32/vs8/libgsttag.vcproj:
12269         * win32/vs8/libgsttheora.vcproj:
12270         * win32/vs8/libgstvideoscale.vcproj:
12271         * win32/vs8/libgstvorbis.vcproj:
12272           Misc. VS8 build fixes: fix syntax in config.h, add missing entries
12273           to libgsttag.def; add missing dependencies for some vs8 projects;
12274           re-arrange placement of .def files in vs8 projects (#366334).
12275
12276 2006-11-01  Tim-Philipp Müller  <tim at centricular dot net>
12277
12278         * ext/ogg/gstogg.c:
12279           Remove unused variable.
12280
12281         * ext/ogg/gstoggdemux.c:
12282           Fix Wim's surname in plugin description.
12283
12284 2006-10-31  Wim Taymans  <wim@fluendo.com>
12285
12286         * gst-plugins-base.spec.in:
12287         spec new .h file. Fixes #368310.
12288
12289 2006-10-31  Michael Smith  <msmith@fluendo.com>
12290
12291         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_add_full),
12292         (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
12293         (gst_multi_fd_sink_get_stats),
12294         (gst_multi_fd_sink_remove_client_link),
12295         (gst_multi_fd_sink_queue_buffer),
12296         (gst_multi_fd_sink_handle_clients):
12297         * gst/tcp/gstmultifdsink.h:
12298           Make using the remove or clear signals threadsafe.
12299           Make calling get-stats with an invalid fd not segfault.
12300           Fixes 368273.
12301
12302 2006-10-31  Wim Taymans  <wim@fluendo.com>
12303
12304         * gst-libs/gst/rtp/Makefile.am:
12305         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
12306         (gst_base_rtp_audio_payload_init):
12307         Fix and activate base audio payloader.
12308
12309 2006-10-28  Tim-Philipp Müller  <tim at centricular dot net>
12310
12311         * gst/typefind/gsttypefindfunctions.c: (qtif_type_find),
12312         (plugin_init):
12313           Add typefinder for QuickTime Image Files (see #366156).
12314
12315 2006-10-28  Tim-Philipp Müller  <tim at centricular dot net>
12316
12317         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init):
12318           Another typo fix (#366212).
12319
12320 2006-10-27  Wim Taymans  <wim@fluendo.com>
12321
12322         * gst/volume/gstvolume.c: (volume_transform_ip):
12323         Use stream time to synchronize volume property instead of rather random
12324         timestamps. This is needed when gnonlin does its time shifting.
12325
12326 2006-10-27  Wim Taymans  <wim@fluendo.com>
12327
12328         Patch by: Mark Nauwelaerts <manauw at skynet dot be>
12329
12330         * ext/ogg/gstoggmux.c: (gst_ogg_mux_release_pad):
12331         Remove the pad from the element in release_pad. Fixes #364812.
12332
12333 2006-10-27  Tim-Philipp Müller  <tim at centricular dot net>
12334
12335         * sys/ximage/ximagesink.c: (gst_ximagesink_get_type):
12336         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_type):
12337           Explicitly create our custom buffer classes at a thread-safe
12338           location as well, since g_type_class_ref() doesn't seem to be
12339           entirely thread-safe either (#365501; also see #349410).
12340
12341 2006-10-26  Tim-Philipp Müller  <tim at centricular dot net>
12342
12343         * gst-libs/gst/riff/riff-read.c: (freeform_string_to_utf8),
12344         (gst_riff_parse_info):
12345           If strings in INFO chunk are not UTF-8, do something similar to
12346           what we do for ID3v1 tags: check a number of environment variables
12347           (GST_AVI_TAG_ENCODING, GST_RIFF_TAG_ENCODING, GST_TAG_ENCODING) for
12348           character sets to try, otherwise try the current locale and/or fall
12349           back on ISO-8859-1. Fixes #360552.
12350
12351 2006-10-23  Tim-Philipp Müller  <tim at centricular dot net>
12352
12353         * gst/videotestsrc/gstvideotestsrc.c:
12354         (gst_video_test_src_pattern_get_type),
12355         (gst_video_test_src_set_pattern):
12356         * gst/videotestsrc/gstvideotestsrc.h:
12357         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_checkers1),
12358         (gst_video_test_src_checkers2), (gst_video_test_src_checkers4),
12359         (gst_video_test_src_checkers8):
12360         * gst/videotestsrc/videotestsrc.h:
12361           Add a bunch of exciting new checkers patterns.
12362
12363 2006-10-23  Tim-Philipp Müller  <tim at centricular dot net>
12364
12365         * gst/subparse/Makefile.am:
12366         * gst/subparse/gstsubparse.c:
12367         (gst_sub_parse_data_format_autodetect),
12368         (gst_sub_parse_format_autodetect), (handle_buffer),
12369         (gst_sub_parse_chain), (gst_subparse_type_find), (plugin_init):
12370         * gst/subparse/gstsubparse.h:
12371         * gst/subparse/tmplayerparse.c: (tmplayer_parse_line),
12372         (parse_tmplayer):
12373         * gst/subparse/tmplayerparse.h:
12374           Add support for TMPlayer-type subtitles (#362845).
12375
12376         * tests/check/elements/subparse.c: (test_tmplayer_do_test),
12377         (GST_START_TEST), (subparse_suite):
12378           Add some basic unit tests for the above.
12379
12380 2006-10-23  Tim-Philipp Müller  <tim at centricular dot net>
12381
12382         * tests/check/elements/audiorate.c: (test_injector_base_init),
12383         (test_injector_class_init), (test_injector_chain),
12384         (test_injector_init), (probe_cb), (do_perfect_stream_test),
12385         (GST_START_TEST), (audiorate_suite):
12386           More tests for audiorate: inject buffers to check behaviour when
12387           buffers overlap.
12388
12389 2006-10-21  Tim-Philipp Müller  <tim at centricular dot net>
12390
12391         * tests/check/Makefile.am:
12392         * tests/check/elements/.cvsignore:
12393         * tests/check/elements/audiorate.c: (probe_cb), (got_buf),
12394         (do_perfect_stream_test), (GST_START_TEST), (audiorate_suite):
12395           Add some basic unit tests for audiorate. Disabled at the moment
12396           since it doesn't pass yet (see bug #363119).
12397
12398 2006-10-20  Tim-Philipp Müller  <tim at centricular dot net>
12399
12400         * gst/subparse/gstsubparse.c: (subrip_fix_up_markup),
12401         (parse_subrip), (handle_buffer):
12402           Add missing closing tags for markup and fix broken markup,
12403           otherwise pango won't render anything (fixes #357531). Also,
12404           make sure the text we send out is always NUL-terminated
12405           (better safe than sorry etc.).
12406
12407         * tests/check/elements/subparse.c: (test_srt_do_test),
12408         (test_srt):
12409           Some more tests for .srt incl. tests for the above stuff.
12410
12411 2006-10-20  Julien MOUTTE  <julien@moutte.net>
12412
12413         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put):
12414         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
12415         Patch by: Stefan Kost  <ensonic@users.sf.net>
12416         Try to redraw borders only when needed. Apparently this consumes
12417         resources on small devices... :-O (#363607)
12418
12419 2006-10-20  Michael Smith  <msmith@fluendo.com>
12420
12421         * gst/tcp/gstmultifdsink.c:
12422         (gst_multi_fd_sink_client_queue_buffer):
12423           If caps change, then update the client's idea of the caps so that we
12424           don't end up re-sending streamheaders for every single buffer after
12425           the caps change.
12426
12427 2006-10-20  Michael Smith  <msmith@fluendo.com>
12428
12429         * ext/ogg/gstoggparse.c: (gst_ogg_parse_dispose),
12430         (gst_ogg_parse_append_header), (gst_ogg_parse_chain):
12431           Set caps on pushed buffers; fix up refcounting of caps objects.
12432
12433 2006-10-19  Tim-Philipp Müller  <tim at centricular dot net>
12434
12435         * gst/typefind/gsttypefindfunctions.c: (mmsh_type_find),
12436         (plugin_init):
12437           Typefind mmsh header data packet to application/x-mmsh (#362625).
12438
12439 2006-10-19  Tim-Philipp Müller  <tim at centricular dot net>
12440
12441         * tests/check/Makefile.am:
12442         * tests/check/elements/.cvsignore:
12443         * tests/check/elements/subparse.c: (buffer_from_static_string),
12444         (setup_subparse), (teardown_subparse), (test_srt_do_test),
12445         (GST_START_TEST), (subparse_suite):
12446           Add very simple unit test for subparse.
12447
12448 2006-10-19  Tim-Philipp Müller  <tim at centricular dot net>
12449
12450         * gst/subparse/gstsubparse.c: (strip_trailing_newlines),
12451         (parse_subrip):
12452           Strip trailing newlines from subtitle text output.
12453
12454 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
12455
12456         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
12457         (gst_sub_parse_change_state):
12458           Fix memleak; clear subparse->textbuf n state change function.
12459
12460 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
12461
12462         * gst/subparse/gstsubparse.c:
12463         (gst_sub_parse_data_format_autodetect):
12464           Don't require subrip (.srt) files to start with a chunk number of 1.
12465
12466 2006-10-18  Wim Taymans  <wim@fluendo.com>
12467
12468         * gst-libs/gst/audio/gstbaseaudiosink.c:
12469         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
12470         * gst-libs/gst/audio/gstbaseaudiosink.h:
12471         Extract rate from the NEWSEGMENT event.
12472         Use commit_full to also take rate adjustment into account when writing
12473         samples to the ringbuffer.
12474         
12475         * gst-libs/gst/audio/gstringbuffer.c:
12476         (gst_ring_buffer_commit_full), (gst_ring_buffer_commit),
12477         (gst_ring_buffer_read):
12478         * gst-libs/gst/audio/gstringbuffer.h:
12479         Added _commit_full() to also take rate into account.
12480         Use simple interpolation algorithm to resample audio.
12481         API: gst_ring_buffer_commit_full()
12482
12483         * tests/examples/seek/scrubby.c: (speed_cb), (do_seek):
12484         * tests/examples/seek/seek.c: (segment_done):
12485         Don't try to seek with 0.0 rate, just pause instead.
12486         Remove bogus debug line.
12487
12488 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
12489
12490         * gst/playback/gstplaybasebin.c: (subbin_startup_sync_msg),
12491         (setup_source):
12492           Catch async errors when starting up the subtitle bin, so we can
12493           stop waiting and continue with the main film instead of hanging
12494           forever. Fixes #339366.
12495
12496         * tests/check/elements/playbin.c: (playbin_suite):
12497           Enable unit test for the above.
12498
12499 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
12500
12501         * tests/check/Makefile.am:
12502         * tests/check/elements/.cvsignore:
12503         * tests/check/elements/playbin.c: (GST_START_TEST),
12504         (gst_red_video_src_uri_get_type),
12505         (gst_red_video_src_uri_get_protocols),
12506         (gst_red_video_src_uri_get_uri), (gst_red_video_src_uri_set_uri),
12507         (gst_red_video_src_uri_handler_init),
12508         (gst_red_video_src_init_type), (gst_red_video_src_base_init),
12509         (gst_red_video_src_create), (gst_red_video_src_class_init),
12510         (gst_red_video_src_init), (plugin_init), (playbin_suite):
12511           Some small and basic unit tests for playbin; not very useful yet,
12512           but at least a start.
12513
12514 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
12515
12516         * gst/playback/gstplaybin.c: (setup_sinks):
12517           The old pad activation spiel.
12518
12519 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
12520
12521         * gst/playback/gstplaybasebin.c: (setup_source):
12522           Don't hang forever if the subbin already fails to start up in 
12523           the state change to PAUSED (#339366).
12524
12525 2006-10-17  Tim-Philipp Müller  <tim at centricular dot net>
12526
12527         * gst-libs/gst/interfaces/tuner.c: (gst_tuner_list_channels),
12528         (gst_tuner_set_channel), (gst_tuner_get_channel),
12529         (gst_tuner_list_norms), (gst_tuner_set_norm), (gst_tuner_get_norm),
12530         (gst_tuner_set_frequency), (gst_tuner_get_frequency),
12531         (gst_tuner_signal_strength), (gst_tuner_find_norm_by_name),
12532         (gst_tuner_find_channel_by_name):
12533           Fix some function guards, add some more function guards.
12534
12535 2006-10-17  Jan Schmidt  <thaytan@mad.scientist.com>
12536
12537         * gst/playback/gstdecodebin.c: (get_our_ghost_pad),
12538         (remove_element_chain):
12539         Don't return a pad from get_our_ghost_pad unless it is actually the
12540         one we want.
12541         Change a cast in remove_element_chain slightly.
12542
12543 2006-10-13  Julien MOUTTE  <julien@moutte.net>
12544
12545         * tests/examples/seek/seek.c: (do_seek), (start_seek),
12546         (rate_spinbutton_changed_cb), (segment_done), (msg_state_changed):
12547         Segment seeking needs to use the rate and set stop to -1.
12548
12549 2006-10-13  Wim Taymans  <wim@fluendo.com>
12550
12551         * gst-libs/gst/audio/gstbaseaudiosink.c:
12552         (gst_base_audio_sink_setcaps):
12553         Don't crash when ringbuffer is not yet created.
12554         Patch by: Ville Syrjala <ville dot syrjala at movial dot fi>
12555         Fixes #361634.
12556
12557         * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
12558         * gst/playback/gststreamselector.c:
12559         (gst_stream_selector_request_new_pad):
12560         Activate pads befre adding them to running elements.
12561
12562 2006-10-13  Julien MOUTTE  <julien@moutte.net>
12563
12564         * tests/examples/seek/seek.c: (do_seek), (start_seek),
12565         (rate_spinbutton_changed_cb), (msg_state_changed): Stop the scale
12566         updater when we start grabing the slider. Don't wait for the
12567         pipeline to be PAUSED.
12568
12569 2006-10-13  Tim-Philipp Müller  <tim at centricular dot net>
12570
12571         * gst-libs/gst/interfaces/mixer.c: (gst_mixer_list_tracks),
12572         (gst_mixer_set_volume), (gst_mixer_get_volume),
12573         (gst_mixer_set_mute), (gst_mixer_set_option),
12574         (gst_mixer_get_option), (gst_mixer_mute_toggled),
12575         (gst_mixer_record_toggled), (gst_mixer_volume_changed),
12576         (gst_mixer_option_changed):
12577           Guard mixer interface functions against bogus arguments.
12578
12579 2006-10-12  Julien MOUTTE  <julien@moutte.net>
12580
12581         * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
12582         (play_cb), (pause_cb), (stop_cb), (rate_spinbutton_changed_cb),
12583         (msg_state_changed), (main): Use state-changed messages to trigger
12584         start/stop of scale update timer. Indeed the scale slider was
12585         jumping here and there because the update timer was activated 
12586         before seek completed. This fixes instant applying of rate changes
12587         by pressing the spinbutton like a crazy man !
12588
12589 2006-10-12  Tim-Philipp Müller  <tim at centricular dot net>
12590
12591         Patch by: Sebastien Cote  <sebas642 at yahoo.ca>
12592
12593         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
12594         (gst_basertppayload_finalize):
12595           Fix two small memory leaks (#361456).
12596
12597 2006-10-10  Julien MOUTTE  <julien@moutte.net>
12598
12599         * tests/examples/seek/seek.c: (do_seek),
12600         (rate_spinbutton_changed_cb): When changing spinbutton we try
12601         to change the rate on the fly.
12602
12603 2006-10-10  Wim Taymans  <wim@fluendo.com>
12604
12605         * gst-libs/gst/riff/riff-ids.h:
12606         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
12607         (gst_riff_create_audio_template_caps):
12608         Add WMS caps.
12609
12610 2006-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
12611
12612         Patch by: Josep Torra Valles <josep@fluendo.com>
12613
12614         * ext/gnomevfs/gstgnomevfssink.c:
12615         * ext/gnomevfs/gstgnomevfssrc.c:
12616         Fix URI interface implementation return type.
12617         * ext/pango/gsttextoverlay.c: (gst_text_overlay_set_property):
12618         Fix what looks like a copy/paste issue when assigning values.
12619         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
12620         (gst_audio_filter_template_get_type):
12621         Cast to prevent Forte warnings.
12622         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
12623         Fix URI interface implementation return type.
12624         gst_pad_query_position requires a signed integer pointer as
12625         3rd parameter, GstClockTime is unsigned.
12626         * gst/audioconvert/audioconvert.c:
12627         Fix integer overflow when treated as signed.
12628         * gst/audioresample/resample.c: (resample_add_input_data):
12629         Cast to prevent warnings on Forte.
12630         * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette):
12631         Fix integer overflow when treated as signed.
12632         * gst/ffmpegcolorspace/imgconvert_template.h:
12633         Fix integer overflow when treated as signed. RGBA_OUT shifts bits.
12634         * gst/playback/gstdecodebin.c: (queue_filled_cb),
12635         (cleanup_decodebin):
12636         Who initialises a guint to -1!
12637         Cast function pointers to prevent warnings on Forte.
12638         * gst/playback/gstplaybasebin.c: (queue_deadlock_check),
12639         (queue_threshold_reached):
12640         Cast function pointers correctly to prevent warnings on Forte.
12641         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
12642         Cast function pointers correctly to prevent warnings on Forte.
12643         * gst/subparse/gstssaparse.c: (gst_ssa_parse_setcaps):
12644         Obvious change to unsigned, 0xEF > max signed char.
12645         * gst/tcp/gstmultifdsink.c: (get_buffers_max), (count_burst_unit):
12646         GstClockTime is unsigned, initialise correctly.
12647         * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
12648         Cast so pointer arithemetic doesn't cause warnings on Forte.
12649         * gst/videorate/gstvideorate.c:
12650         Use correct return value.
12651         * tests/examples/seek/scrubby.c:
12652         GstClockTime is unsigned, initialise correctly.
12653
12654 2006-10-10  Tim-Philipp Müller  <tim at centricular dot net>
12655
12656         Patch by: Ferenc Gerlits  <fgerlits at gmail com>
12657
12658         * gst/typefind/gsttypefindfunctions.c:
12659           Recognise XML files and XML-like files shorter than 256 bytes as
12660           well (fixes #359237).
12661
12662 2006-10-09  Edgard Lima <edgard.lima@indt.org.br>
12663
12664         Patch by: Renato Filho <renato.filho@indt.org.br>
12665         
12666         * gst/typefind/gsttypefindfunctions.c:
12667         Added typefind functions to video/x-nuv media.
12668         
12669 2006-10-08  Tim-Philipp Müller  <tim at centricular dot net>
12670
12671         * gst-libs/gst/interfaces/xoverlay.c:
12672         (gst_x_overlay_set_xwindow_id), (gst_x_overlay_expose):
12673           Some more guards against invalid input.
12674
12675 2006-10-07  Julien MOUTTE  <julien@moutte.net>
12676
12677         * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event): 
12678         Useless goto.
12679         * tests/examples/seek/seek.c: (do_seek),
12680         (rate_spinbutton_changed_cb), (main): Add a rate spinbutton in
12681         seek example to experiment with rates != 1.0 (reverse playback !)
12682
12683 2006-10-06  Stefan Kost  <ensonic@users.sf.net>
12684
12685         * gst-libs/gst/interfaces/xoverlay.c:
12686           Unref message in doc-example (spotted by Robert McQueen)
12687
12688 2006-10-06  Wim Taymans  <wim@fluendo.com>
12689
12690         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
12691         (mpeg1_parse_header), (mpeg1_sys_type_find):
12692         printf fix.
12693
12694 2006-10-06  Wim Taymans  <wim@fluendo.com>
12695
12696         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
12697         (close_pad_link):
12698         * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
12699         Activate dynamic pads before adding them to the element.
12700
12701 2006-10-06  Michael Smith  <msmith@fluendo.com>
12702
12703         * gst-libs/gst/floatcast/floatcast.h:
12704           Fix obviously-bogus macros; use the correct types.
12705
12706 2006-10-06  Wim Taymans  <wim@fluendo.com>
12707
12708         * gst-libs/gst/rtp/gstbasertpdepayload.c:
12709         (gst_base_rtp_depayload_change_state):
12710         Also call parent state change function to activate pads.
12711
12712         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
12713         (mpeg1_parse_header), (mpeg1_sys_type_find):
12714         Add some more debug info in mpeg typefinding.
12715
12716 2006-10-06  Michael Smith  <msmith@fluendo.com>
12717
12718         * ext/theora/theoradec.c: (theora_dec_chain):
12719           Zero byte theora packets are valid and well-defined; don't warn on
12720           them.
12721
12722 2006-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
12723
12724         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
12725         (gst_multi_fd_sink_get_stats), (find_limits),
12726         (gst_multi_fd_sink_queue_buffer):
12727           API: add dropped_buffers to the get-stats GValueArray
12728
12729 2006-10-05  Tim-Philipp Müller  <tim at centricular dot net>
12730
12731         * ext/alsa/gstalsadeviceprobe.c:
12732         (gst_alsa_device_property_probe_get_values):
12733         * ext/alsa/gstalsasink.c: (set_hwparams):
12734         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_elem_pad),
12735         (gst_ogg_chain_new_stream), (gst_ogg_demux_read_chain):
12736         * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers),
12737         (gst_ogg_mux_process_best_pad):
12738         * ext/ogg/gstoggparse.c: (gst_ogg_parse_new_stream),
12739         (gst_ogg_parse_chain):
12740         * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header):
12741         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
12742         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_setup),
12743         (gst_vorbis_enc_buffer_check_discontinuous):
12744         * ext/vorbis/vorbisparse.c: (vorbis_parse_src_query):
12745         * gst-libs/gst/audio/gstbaseaudiosink.c:
12746         (gst_base_audio_sink_render):
12747         * gst-libs/gst/cdda/gstcddabasesrc.c:
12748         (gst_cdda_base_src_handle_track_seek):
12749         * gst-libs/gst/rtp/gstbasertpdepayload.c:
12750         (gst_base_rtp_depayload_push_full):
12751         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
12752         * gst/audioresample/resample.c: (resample_input_pushthrough):
12753         * gst/playback/gstplaybasebin.c: (queue_out_of_data):
12754         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_handle_clients):
12755         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
12756         (wavpack_type_find):
12757         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
12758         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
12759         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new):
12760         * tests/check/elements/volume.c: (GST_START_TEST):
12761           Printf format fixes.
12762
12763 2006-10-04  Thomas Vander Stichele  <thomas at apestaart dot org>
12764
12765         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_caps):
12766           Fix a simple mistake (see the docs)
12767           Fixes #359580
12768
12769 2006-10-03  Tim-Philipp Müller  <tim at centricular dot net>
12770
12771         * docs/plugins/Makefile.am:
12772         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12773         * docs/plugins/gst-plugins-base-plugins-sections.txt:
12774         * docs/plugins/gst-plugins-base-plugins.args:
12775         * docs/plugins/gst-plugins-base-plugins.hierarchy:
12776         * docs/plugins/inspect/plugin-adder.xml:
12777         * docs/plugins/inspect/plugin-alsa.xml:
12778         * docs/plugins/inspect/plugin-audioconvert.xml:
12779         * docs/plugins/inspect/plugin-audiorate.xml:
12780         * docs/plugins/inspect/plugin-audioresample.xml:
12781         * docs/plugins/inspect/plugin-audiotestsrc.xml:
12782         * docs/plugins/inspect/plugin-cdparanoia.xml:
12783         * docs/plugins/inspect/plugin-decodebin.xml:
12784         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
12785         * docs/plugins/inspect/plugin-gdp.xml:
12786         * docs/plugins/inspect/plugin-gnomevfs.xml:
12787         * docs/plugins/inspect/plugin-libvisual.xml:
12788         * docs/plugins/inspect/plugin-ogg.xml:
12789         * docs/plugins/inspect/plugin-pango.xml:
12790         * docs/plugins/inspect/plugin-playbin.xml:
12791         * docs/plugins/inspect/plugin-subparse.xml:
12792         * docs/plugins/inspect/plugin-tcp.xml:
12793         * docs/plugins/inspect/plugin-theora.xml:
12794         * docs/plugins/inspect/plugin-typefindfunctions.xml:
12795         * docs/plugins/inspect/plugin-video4linux.xml:
12796         * docs/plugins/inspect/plugin-videorate.xml:
12797         * docs/plugins/inspect/plugin-videoscale.xml:
12798         * docs/plugins/inspect/plugin-videotestsrc.xml:
12799         * docs/plugins/inspect/plugin-volume.xml:
12800         * docs/plugins/inspect/plugin-vorbis.xml:
12801         * docs/plugins/inspect/plugin-ximagesink.xml:
12802         * docs/plugins/inspect/plugin-xvimagesink.xml:
12803           Add vorbistag element to docs; update version numbers to 0.10.10.1.
12804
12805 2006-10-03  Tim-Philipp Müller  <tim at centricular dot net>
12806
12807         Patch by: James "Doc" Livingston <doclivingston at gmail com>
12808
12809         * ext/vorbis/Makefile.am:
12810         * ext/vorbis/vorbis.c: (plugin_init):
12811         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_class_init),
12812         (vorbis_parse_parse_packet), (vorbis_parse_chain):
12813         * ext/vorbis/vorbisparse.h:
12814         * ext/vorbis/vorbistag.c: (gst_vorbis_tag_base_init),
12815         (gst_vorbis_tag_class_init), (gst_vorbis_tag_init),
12816         (gst_vorbis_tag_parse_packet):
12817         * ext/vorbis/vorbistag.h:
12818           Add new vorbistag element which derives from vorbisparse
12819           and is essentially the same as well, only that it implements
12820           the GstTagSetter interface and can modify the stream's
12821           vorbiscomment on the fly (#335635).
12822
12823         * tests/check/Makefile.am:
12824         * tests/check/elements/.cvsignore:
12825         * tests/check/elements/vorbistag.c: (setup_vorbistag),
12826         (cleanup_vorbistag), (buffer_probe), (start_pipeline),
12827         (get_buffer), (stop_pipeline), (_create_codebook_header_buffer),
12828         (_create_audio_buffer), (GST_START_TEST), (vorbistag_suite):
12829           Add unit test for new vorbistag element.
12830
12831 2006-10-03  Tim-Philipp Müller  <tim at centricular dot net>
12832
12833         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init),
12834         (vorbis_parse_push_headers), (vorbis_parse_chain):
12835           Set BOS flag in packet structure to fix 'jump depends
12836           on unitialized value' errors in valgrind; various minor
12837           clean-ups.
12838
12839 2006-09-30  Jan Schmidt  <thaytan@mad.scientist.com>
12840
12841         * gst/playback/gstdecodebin.c: (close_pad_link):
12842         Fix typo in a debug statement.
12843
12844         * gst/playback/gstplaybasebin.c: (probe_triggered),
12845         (new_decoded_pad_full), (new_decoded_pad), (subs_new_decoded_pad),
12846         (gen_source_element), (source_new_pad), (analyse_source),
12847         (setup_source):
12848         When handling no_more_pads in new_decoded_pad, make sure to treat
12849         subtitle pads correctly. Fixes playback with subtitle files.
12850
12851         Move a recurring message to LOG level.
12852
12853         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
12854         The maximum value for the Xv colorkey on this Radeon is 0xFFFFFFFF,
12855         which ends up as -1 when cast to an int. Make the logic handle the
12856         max value as an unsigned mask and only change the colorkey when it's
12857         a value we recognise.
12858
12859 2006-09-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
12860
12861         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
12862         Removed empty * between paragraphs
12863
12864 2006-09-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
12865
12866         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
12867         * gst-libs/gst/rtp/README:
12868         Moved some documentation into .c file
12869
12870 2006-09-29  Wim Taymans  <wim@fluendo.com>
12871
12872         * gst/playback/gstdecodebin.c: (no_more_pads):
12873         Fix compilation.
12874
12875 2006-09-29  Wim Taymans  <wim@fluendo.com>
12876
12877         * gst/playback/gstdecodebin.c: (new_caps):
12878         Remove g_print
12879
12880         * gst/playback/gstplaybin.c:
12881         Add some docs.
12882
12883 2006-09-29  Tim-Philipp Müller  <tim at centricular dot net>
12884
12885         * tests/check/Makefile.am:
12886           Re-enable cddabasesrc test to see if it works again
12887           now.
12888
12889 2006-09-29  Wim Taymans  <wim@fluendo.com>
12890
12891         * gst/playback/gstplaybasebin.c: (setup_subtitle),
12892         (gen_source_element):
12893         Handle invalid URIs a bit more gracefully.
12894
12895 2006-09-29  Tim-Philipp Müller  <tim at centricular dot net>
12896
12897         * tests/check/pipelines/oggmux.c:
12898           Remove obsolete comment.
12899
12900 2006-09-29  Michael Smith  <msmith@fluendo.com>
12901
12902         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
12903         (gst_ogg_mux_release_pad), (gst_ogg_mux_push_buffer),
12904         (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
12905         (gst_ogg_mux_send_headers), (gst_ogg_mux_process_best_pad),
12906         (gst_ogg_mux_collected):
12907           Commit patch from James "Doc" Livingston, adds proper EOS handling
12908           in oggmux. GStreamer can, for the first time ever, create a valid
12909           Ogg file! Yay!
12910
12911         * tests/check/pipelines/oggmux.c: (check_chain_final_state),
12912         (oggmux_suite):
12913           Reenable tests now that they pass.
12914
12915 2006-09-29  Wim Taymans  <wim@fluendo.com>
12916
12917         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_handle_clients):
12918         Stop reading commands when EOF (we read 0) as well.
12919
12920 2006-09-28  Wim Taymans  <wim@fluendo.com>
12921
12922         * gst/playback/gstdecodebin.c: (dynamic_create), (dynamic_free),
12923         (close_pad_link), (dynamic_remove), (no_more_pads), (new_caps),
12924         (find_dynamic), (unlinked), (close_link):
12925         Implement delayed caps linking needed for element with a lot of
12926         different caps on the src pads that get fixed at runtime.
12927         Improve management of dynamic elements.
12928
12929         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
12930         (group_destroy), (group_commit), (check_queue), (queue_overrun),
12931         (gen_preroll_element), (remove_groups), (unknown_type),
12932         (add_element_stream), (no_more_pads_full), (no_more_pads),
12933         (sub_no_more_pads), (source_no_more_pads), (preroll_unlinked),
12934         (new_decoded_pad), (setup_subtitle), (array_has_value),
12935         (gen_source_element), (source_new_pad), (has_all_raw_caps),
12936         (analyse_source), (remove_decoders), (make_decoder),
12937         (remove_source), (setup_source), (finish_source), (prepare_output),
12938         (gst_play_base_bin_change_state):
12939         * gst/playback/gstplaybasebin.h:
12940         Use more _CAST instead of full type checking casts.
12941         Small cleanups, plug some leaks.
12942         Handle dynamic sources.
12943         Add some helper functions to create lists of strings used for
12944         blacklisting and other stuff.
12945         Refactor some code dealing with analysing the source.
12946         Re-enable sources without pads (like cd:// or other selfcontained
12947         elements).
12948
12949 2006-09-28  Wim Taymans  <wim@fluendo.com>
12950
12951         * gst-libs/gst/audio/gstbaseaudiosink.c:
12952         (gst_base_audio_sink_render):
12953         When we have a timestamp, we can still perform clipping.
12954         When we have no clock, we must play the sample ASAP.
12955
12956 2006-09-28  Wim Taymans  <wim@fluendo.com>
12957
12958         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
12959         Set caps on outgoing buffers.
12960
12961         * gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
12962         (gst_video_rate_event), (gst_video_rate_chain):
12963         * gst/videorate/gstvideorate.h:
12964         Fix videorate some more. Fixes #357977
12965
12966 2006-09-28  Tim-Philipp Müller  <tim at centricular dot net>
12967
12968         * tests/check/elements/adder.c: (adder_suite):
12969           Don't set timeout to 6 seconds when we're running
12970           in valgrind ... (and how is 6 seconds longer than
12971           the default anyway?)
12972
12973 2006-09-28  Wim Taymans  <wim@fluendo.com>
12974
12975         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
12976         (gst_audio_rate_sink_event), (gst_audio_rate_convert),
12977         (gst_audio_rate_convert_segments), (gst_audio_rate_chain):
12978         Keep sink and src segment to keep track of time and support more
12979         input formats.
12980         Fix bogus next_offset and run_time calculation, don't understand how
12981         this could have worked before. Fixes #357976.
12982         Remove some unneeded vars.
12983
12984 2006-09-28  Tim-Philipp Müller  <tim at centricular dot net>
12985
12986         * gst/playback/gstplaybin.c: (remove_sinks):
12987           Only remove visualisation from visbin if there is a visbin (or:
12988           don't throw warnings when closing totem without playing a file).
12989
12990 2006-09-27  Wim Taymans  <wim@fluendo.com>
12991
12992         * gst-libs/gst/audio/gstbaseaudiosink.c:
12993         (gst_base_audio_sink_render):
12994         Add some more info in a WARNING.
12995
12996         * gst-libs/gst/audio/gstbaseaudiosrc.c:
12997         (gst_base_audio_src_create):
12998         Handle PAUSE in create function, use new -core addition to
12999         wait for playing. Fixes pausing and resuming capture from an
13000         audiosrc.
13001
13002         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
13003         (gst_ring_buffer_read):
13004         Constify some more.
13005         Caller supports interrupted reads now.
13006
13007 2006-09-27  Tim-Philipp Müller  <tim at centricular dot net>
13008
13009         * tests/check/Makefile.am:
13010           Another attempt to make the gen64 buildbot happy.
13011
13012 2006-09-27  Stefan Kost  <ensonic@users.sf.net>
13013
13014         Patch by: Jonathan Matthew <jonathan@kaolin.wh9.net>
13015
13016         * ext/libvisual/visual.c: (gst_visual_clear_actors),
13017         (gst_visual_chain), (gst_visual_change_state):
13018           Libvisual plugin was not passing audio data to libvisual 0.4.0 
13019           correctly. Fixes #357800
13020
13021 2006-09-27  Tim-Philipp Müller  <tim at centricular dot net>
13022
13023         * tests/check/pipelines/simple-launch-lines.c: (run_pipeline):
13024           Add timeout to _get_state() so we see which pipeline it is
13025           that causes trouble on the gen64 build bot.
13026
13027 2006-09-27  Wim Taymans  <wim@fluendo.com>
13028
13029         * gst-libs/gst/rtp/gstbasertpdepayload.c:
13030         (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_push_full),
13031         (gst_base_rtp_depayload_push_ts), (gst_base_rtp_depayload_process),
13032         (gst_base_rtp_depayload_set_gst_timestamp):
13033         the source pad always uses fixed caps.
13034
13035 2006-09-27  Wim Taymans  <wim@fluendo.com>
13036
13037         * docs/libs/gst-plugins-base-libs-docs.sgml:
13038         * docs/libs/gst-plugins-base-libs-sections.txt:
13039         * gst-libs/gst/audio/gstaudioclock.c:
13040         * gst-libs/gst/audio/gstaudioclock.h:
13041         * gst-libs/gst/audio/gstaudiosink.c:
13042         * gst-libs/gst/audio/gstaudiosink.h:
13043         * gst-libs/gst/audio/gstaudiosrc.c:
13044         * gst-libs/gst/audio/gstbaseaudiosink.c:
13045         (gst_base_audio_sink_render):
13046         * gst-libs/gst/audio/gstbaseaudiosink.h:
13047         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init):
13048         * gst-libs/gst/audio/gstbaseaudiosrc.h:
13049         * gst-libs/gst/audio/gstringbuffer.h:
13050         Added docs for the audio libs.
13051
13052 2006-09-27  Tim-Philipp Müller  <tim at centricular dot net>
13053
13054         * tests/check/Makefile.am:
13055           Temporarily disable test that fails on the bots for unknown reasons.
13056
13057 2006-09-26 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
13058
13059         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
13060         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
13061         Moved AudioCodecType into priv
13062         Renamed all gst_basertpaudiopayload to gst_base_rtp_audio_payload prefixes
13063
13064 2006-09-25  Wim Taymans  <wim@fluendo.com>
13065
13066         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
13067         (add_fakesink), (remove_fakesink), (pad_probe), (close_pad_link),
13068         (is_demuxer_element), (try_to_link_1), (get_our_ghost_pad),
13069         (new_pad):
13070         Cleanups and small leak fixes.
13071         Added Depayloaders to valid list of autopluggable elements.
13072
13073 2006-09-25  Wim Taymans  <wim@fluendo.com>
13074
13075         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
13076         (gst_play_bin_vis_blocked), (gst_play_bin_set_property),
13077         (gen_video_element), (gen_text_element), (gen_audio_element),
13078         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
13079         (gst_play_bin_set_clock_func), (gst_play_bin_change_state):
13080         Detect NO_PREROLL state change returns and disable clock distribution to
13081         the sinks so that sync is disabled.
13082         Avoid some type checking and do simple casts instead.
13083         Small cleanups, fix some FIXMEs.
13084         Be more robust when linking user specified elements, catch an report
13085         errors. Fixes #357404.
13086         Fix some leaks in the error paths.
13087
13088 2006-09-25  Stefan Kost  <ensonic@users.sf.net>
13089
13090         * ChangeLog:
13091           ChangeLog surgery for missing bug-number
13092
13093 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
13094
13095         Patch by: Peter Kjellerstedt  <pkj at axis com>
13096
13097         * gst/playback/test.c:
13098           Fix compilation with uClibc and -Werror (#357591).
13099
13100 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
13101
13102         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
13103           Parse dates that are followed by a time as well (#357532).
13104
13105         * tests/check/libs/tag.c: (test_vorbis_tags):
13106           Add unit test for this.
13107
13108 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
13109
13110         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
13111         (gst_audio_convert_transform_caps):
13112         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_unicolor):
13113         * gst/videotestsrc/videotestsrc.h:
13114           A few array const-ifications.
13115
13116 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
13117
13118         * tests/check/Makefile.am:
13119           See if this makes the build bots happy.
13120
13121         * tests/check/libs/cddabasesrc.c:
13122           UTF8-ise my name.
13123
13124 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
13125
13126         Patch by: Young-Ho Cha <ganadist at chollian dot net>
13127
13128         * gst/subparse/samiparse.c: (handle_start_font),
13129         (fix_invalid_entities):
13130           More case-insensitivity for certain tags; recognise entities with
13131           decimal codes as special entities as well (#357330).
13132
13133 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
13134
13135         * gst-libs/gst/Makefile.am:
13136           Need to build tag directory before cdda.
13137
13138 2006-09-23  Tim-Philipp Müller  <tim at centricular dot net>
13139
13140         * docs/libs/gst-plugins-base-libs-sections.txt:
13141         * gst-libs/gst/cdda/Makefile.am:
13142         * gst-libs/gst/cdda/gstcddabasesrc.c:
13143         (gst_cdda_base_src_base_init):
13144         * gst-libs/gst/cdda/gstcddabasesrc.h:
13145         * gst-libs/gst/tag/tag.h:
13146         * gst-libs/gst/tag/tags.c: (gst_tag_register_tags_internal),
13147         (gst_tag_register_musicbrainz_tags):
13148           Move GST_TAG_CDDA_* tags into libgsttag and make libgstcddabasesrc
13149           depend on libgsttag. This is required so we can extract/read tags like
13150           DISCID without depending on libgstcddabasesrc (which used to register
13151           them).
13152
13153         * gst-libs/gst/tag/gstvorbistag.c:
13154           Add vorbiscomment mapping for CDDB_DISCID and MUSICBRAINZ_DISCID
13155           tags (also see #347848).
13156
13157         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_metadata_set1):
13158           Log vorbis comments we are actually writing. Const-ify array.
13159
13160 2006-09-23  Wim Taymans  <wim@fluendo.com>
13161
13162         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
13163         Improve buffering a bit by avoiding a deadlock because we cannot assume
13164         the underrun is always called.
13165
13166 2006-09-23  Wim Taymans  <wim@fluendo.com>
13167
13168         Patch by: Young-Ho Cha <ganadist at chollian dot net>
13169
13170         * gst-libs/gst/riff/riff-ids.h:
13171         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
13172         (gst_riff_create_audio_template_caps):
13173         Added MPEG-4 AAC and id and caps. Fixes #357289
13174         Added WMA9 Lossless id.
13175
13176 2006-09-22  Tim-Philipp Müller  <tim at centricular dot net>
13177
13178         * ext/gnomevfs/gstgnomevfssrc.c:
13179           Fix misleading docs addition.
13180
13181         * tests/check/elements/videotestsrc.c: (check_rgb_buf):
13182           Get rid of compiler warning the right way.
13183
13184 2006-09-22  Wim Taymans  <wim@fluendo.com>
13185
13186         * gst-libs/gst/rtp/gstbasertpdepayload.c:
13187         (gst_base_rtp_depayload_finalize),
13188         (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain),
13189         (gst_base_rtp_depayload_push_full),
13190         (gst_base_rtp_depayload_push_ts), (gst_base_rtp_depayload_push),
13191         (gst_base_rtp_depayload_process),
13192         (gst_base_rtp_depayload_set_gst_timestamp),
13193         (gst_base_rtp_depayload_queue_release):
13194         * gst-libs/gst/rtp/gstbasertpdepayload.h:
13195         Small cleanups.
13196         Fix some leaks.
13197         Refactored the process method and added methods to push from the process
13198         vmethod.
13199         Use _scale functions.
13200         API: gst_base_rtp_depayload_push_ts
13201         API: gst_base_rtp_depayload_push
13202
13203         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
13204         timestamps are uint.
13205
13206 2006-09-22  Stefan Kost  <ensonic@users.sf.net>
13207
13208         * gst-libs/gst/interfaces/xoverlay.c:
13209           Remove unused statement from doc example.
13210
13211 2006-09-21  Stefan Kost  <ensonic@users.sf.net>
13212
13213         * gst-libs/gst/interfaces/videoorientation.c:
13214         (gst_video_orientation_iface_init),
13215         (gst_video_orientation_get_hflip),
13216         (gst_video_orientation_get_vflip),
13217         (gst_video_orientation_get_hcenter),
13218         (gst_video_orientation_get_vcenter),
13219         (gst_video_orientation_set_hflip),
13220         (gst_video_orientation_set_vflip),
13221         (gst_video_orientation_set_hcenter),
13222         (gst_video_orientation_set_vcenter):
13223           Add since tags to new API docs, ChangeLog surgery (forgot API keyword
13224           in ChangeLog)
13225
13226 2006-09-21  Tim-Philipp Müller  <tim at centricular dot net>
13227
13228         * tests/check/Makefile.am:
13229         * tests/check/elements/.cvsignore:
13230         * tests/check/elements/ffmpegcolorspace.c: (rgb_format_to_caps),
13231         (create_rgb_conversions), (rgb_conversion_free),
13232         (right_shift_colour), (fix_expected_colour), (check_rgb_buf),
13233         (got_buf_cb), (GST_START_TEST), (ffmpegcolorspace_suite):
13234           Add unit test for ffmpegcolorspace (RGB <=> RGB only so far),
13235           but disable for now since it doesn't pass (something wrong with
13236           RGBA somewhere).
13237
13238 2006-09-21  Wim Taymans  <wim@fluendo.com>
13239
13240         * gst/playback/gstplaybasebin.c: (group_commit),
13241         (queue_deadlock_check), (queue_overrun), (queue_threshold_reached),
13242         (queue_out_of_data), (gen_preroll_element),
13243         (preroll_remove_overrun), (probe_triggered):
13244         Refactor handling of overrun detection.
13245         Separate handling of group completion and deadlock detection when doing
13246         network buffering. This should fix some deadlocks that were not detected
13247         because the group was completed.
13248         Add more comments, improve debugging.
13249
13250 2006-09-21  Wim Taymans  <wim@fluendo.com>
13251
13252         * tests/check/elements/gdpdepay.c: (GST_START_TEST):
13253         * tests/check/libs/audio.c:
13254         Some more compilation fixes.
13255
13256 2006-09-21  Wim Taymans  <wim@fluendo.com>
13257
13258         * gst-libs/gst/audio/gstringbuffer.c:
13259         (gst_ring_buffer_samples_done), (gst_ring_buffer_commit),
13260         (gst_ring_buffer_read):
13261         Early morning compilation fix.
13262
13263 2006-09-20  Wim Taymans  <wim@fluendo.com>
13264
13265         * tests/check/elements/gdpdepay.c: (GST_START_TEST):
13266         * tests/check/elements/multifdsink.c: (GST_START_TEST):
13267         * tests/check/elements/videorate.c: (GST_START_TEST):
13268         * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
13269         * tests/check/pipelines/oggmux.c: (eos_buffer_probe):
13270         Fix some warnings.
13271
13272 2006-09-20  Stefan Kost  <ensonic@users.sf.net>
13273
13274         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
13275         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
13276         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_show_frame):
13277           Handcrafted merge to help CVS understanding what I changed and what
13278           not.
13279
13280 2006-09-20  Stefan Kost  <ensonic@users.sf.net>
13281
13282         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
13283         (gst_xvimagesink_get_times):
13284           change colorkey behaviour back according to #354773 comment 6/7
13285
13286 2006-09-19  Michael Smith  <msmith@fluendo.com>
13287
13288         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
13289         (gst_multi_fd_sink_class_init), (get_buffers_max), (find_limits),
13290         (gst_multi_fd_sink_recover_client),
13291         (gst_multi_fd_sink_queue_buffer), (gst_multi_fd_sink_set_property),
13292         (gst_multi_fd_sink_get_property):
13293         * gst/tcp/gstmultifdsink.h:
13294           Implement stubbed out properties unit-type, units-soft-max,
13295           units-max, to allow specifying maximum sizes in units other than
13296           buffers.
13297           Fixes #355935
13298
13299 2006-09-19  Wim Taymans  <wim@fluendo.com>
13300
13301         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
13302         (gst_riff_create_audio_template_caps):
13303         Reorder the audio formats a bit for clarity.
13304         Detect and create caps for MSGSM and MSN (WAV49).
13305         Fixes #356596.
13306
13307         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
13308         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
13309         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_show_frame):
13310         Small cleanups, move error handling out of normal flow for clarity.
13311
13312 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
13313
13314         * docs/libs/gst-plugins-base-libs-docs.sgml:
13315         * docs/libs/gst-plugins-base-libs.types:
13316         * gst-libs/gst/interfaces/Makefile.am:
13317         * gst-libs/gst/interfaces/videoorientation.c:
13318         (gst_video_orientation_get_type),
13319         (gst_video_orientation_iface_init),
13320         (gst_video_orientation_get_hflip),
13321         (gst_video_orientation_get_vflip),
13322         (gst_video_orientation_get_hcenter),
13323         (gst_video_orientation_get_vcenter),
13324         (gst_video_orientation_set_hflip),
13325         (gst_video_orientation_set_vflip),
13326         (gst_video_orientation_set_hcenter),
13327         (gst_video_orientation_set_vcenter):
13328         * gst-libs/gst/interfaces/videoorientation.h:
13329           API: Add new interface to control video orientation (fixes #354908)
13330
13331 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
13332
13333         * gst/videotestsrc/gstvideotestsrc.c:
13334           Use G_UNLIKELY in _create and log one more detail.
13335           
13336         (gst_video_test_src_get_times), (gst_video_test_src_create):
13337         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
13338           Use gst_util_uint64_scale_int in _get_times().
13339
13340 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
13341
13342         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support)
13343           Give better warning message (add object and detail).
13344
13345 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
13346
13347         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
13348         (gst_xvimagesink_get_times):
13349           xvimage assumed that XV_COLORKEY can be set in RGB888 format (fixes
13350           #354773), use gst_util_uint64_scale_int in _get_times()
13351
13352 2006-09-18  Michael Smith  <msmith@fluendo.com>
13353
13354         * ext/ogg/gstoggmux.c: (gst_ogg_mux_push_buffer):
13355           Timestamps are unsigned; comparision against GST_CLOCK_TIME_NONE was
13356           always true, leading to dropping all timestamps.
13357
13358 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
13359
13360         * ext/libvisual/visual.c: (gst_vis_src_negotiate),
13361         (gst_visual_chain), (gst_visual_change_state):
13362           update to work also with libvisual 0.4 API, fix double unref (#355914)
13363           
13364         * tools/gst-launch-ext.1.in:
13365         * tools/gst-visualise.1.in:
13366           remove references to old man-pages
13367
13368         * tests/examples/seek/seek.c: (main):
13369           add real meadi-buttons, add tool-tips for the seek-options, arrange
13370           seek options in a table
13371
13372 2006-09-18  Michael Smith  <msmith@fluendo.com>
13373
13374         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear),
13375         (gst_ogg_mux_push_buffer):
13376           Don't generate out-of-order timestamps from oggmux, instead clamp
13377           output timestamps to be >= the previously output ts.
13378           Fixes #355595
13379
13380 2006-09-18  Michael Smith  <msmith@fluendo.com>
13381
13382         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
13383         (gst_multi_fd_sink_class_init):
13384           Updates, fixes, and typo corrections for multifdsink. No functional
13385           changes.
13386
13387 2006-09-17  Michael Smith  <msmith@fluendo.com>
13388
13389         * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find):
13390           Don't crash on truncated files - check that we got an 8 byte buffer
13391           before trying to memcmp it.
13392
13393 2006-09-17  Tim-Philipp Müller  <tim at centricular dot net>
13394
13395         * gst/playback/gstplaybasebin.c: (get_active_source):
13396           Make stream-switching appear instant to the application
13397           (ie. make sure that a g_object_get on 'current-foo' returns
13398           the stream previously set with g_object_set(). Totem needs
13399           this to update stream-related meta-info (like audio-codec)
13400           correctly when switching streams.
13401
13402 2006-09-17  Tim-Philipp Müller  <tim at centricular dot net>
13403
13404         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_find_master_mixer),
13405         (gst_alsa_mixer_ensure_track_list):
13406           Try harder to guess which mixer track is the master mixer
13407           track (instead of just taking the first one that has a pvolume).
13408           Fixes #342228.
13409
13410 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
13411
13412         reviewed by: <delete if not using a buddy>
13413
13414         * gst-libs/gst/audio/audio.h:
13415         * gst/audiotestsrc/gstaudiotestsrc.c: (plugin_init):
13416
13417 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
13418
13419         * gst/audioconvert/gstaudioconvert.c: (set_structure_widths),
13420         (gst_audio_convert_transform_caps):
13421           Get structure-name just once.
13422
13423 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
13424
13425         * tests/check/elements/audioresample.c: (GST_START_TEST):
13426         * tests/check/elements/videotestsrc.c: (check_rgb_buf):
13427         * tests/check/elements/volume.c: (GST_START_TEST):
13428         * tests/check/elements/vorbisdec.c: (GST_START_TEST):
13429         * tests/check/pipelines/oggmux.c: (validate_ogg_page), (eos_watch),
13430         (test_pipeline), (GST_START_TEST):
13431         * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
13432         * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
13433           Fix big batch of compiler warnings.
13434
13435 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
13436
13437         * ext/gnomevfs/gstgnomevfssrc.c:
13438           Add docs about icydemux usage in connection with gnomevfssrc
13439
13440         * ext/libvisual/visual.c:
13441         * ext/ogg/gstoggaviparse.c:
13442         * ext/ogg/gstoggdemux.c:
13443         * ext/ogg/gstoggmux.c:
13444         * ext/ogg/gstoggparse.c:
13445         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
13446         * gst-libs/gst/audio/gstaudiosink.c:
13447         * gst-libs/gst/audio/gstaudiosrc.c:
13448         * gst/audiorate/gstaudiorate.c:
13449           More G_OBJECT macro fixing.
13450
13451         * gst/audiotestsrc/gstaudiotestsrc.h:
13452           Fix wrong info in header due to copy & paste
13453
13454 2006-09-15  Wim Taymans  <wim@fluendo.com>
13455
13456         * gst-libs/gst/audio/gstbaseaudiosink.c:
13457         (gst_base_audio_sink_get_time), (gst_base_audio_sink_callback):
13458         * gst-libs/gst/audio/gstbaseaudiosrc.c:
13459         (gst_base_audio_src_get_time), (gst_base_audio_src_fixate),
13460         (gst_base_audio_src_get_times), (gst_base_audio_src_get_offset),
13461         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
13462         Do the delay calculation in the source/sink base classes as this is
13463         specific for the capture/playback mode.
13464         Try to fixate a bit better, like round depth up to a multiple of 8
13465         bigger than width.
13466         Handle underruns correctly by marking DISCONT on buffers and adjusting
13467         timestamps to handle the gap.
13468         Set offset/offset_end correctly on buffers.
13469
13470         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_pause),
13471         (gst_ring_buffer_samples_done), (gst_ring_buffer_commit),
13472         (gst_ring_buffer_read):
13473         Remove resync and underrun recovery from the ringbuffer.
13474         Fix ringbuffer read code on under/overrun.
13475
13476 2006-09-15  Wim Taymans  <wim@fluendo.com>
13477
13478         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
13479         (gst_play_base_bin_init), (fill_buffer), (check_queue),
13480         (queue_threshold_reached), (gst_play_base_bin_set_property),
13481         (gst_play_base_bin_get_property):
13482         * gst/playback/gstplaybasebin.h:
13483         Don't use a 0 low watermark when buffering, it is catching starvation
13484         way too late. Instead, use a 3 second queue with 30 and 95
13485         percent low/high watermarks. 
13486         Added queue-min-threshold property to configure low watermark.
13487         Use new _buffering message API.
13488         Make queue_threshold variable big enough to store a uint64 time value.
13489         API: playbin::queue-min-threshold property.
13490
13491 2006-09-15  Wim Taymans  <wim@fluendo.com>
13492
13493         * configure.ac:
13494         We require 0.10.10.1 now because of _wait_preroll().
13495
13496         * gst-libs/gst/audio/gstbaseaudiosink.c:
13497         (gst_base_audio_sink_render):
13498         Use gst_base_sink_wait_preroll().
13499
13500 2006-09-15  Wim Taymans  <wim@fluendo.com>
13501
13502         * ext/alsa/gstalsasink.c: (xrun_recovery), (gst_alsasink_write):
13503         * ext/alsa/gstalsasrc.c: (xrun_recovery), (gst_alsasrc_read):
13504         Use DEBUG_OBJECT more.
13505
13506 === release 0.10.10 ===
13507
13508 2006-09-07  Thomas Vander Stichele  <thomas at apestaart dot org>
13509
13510         patch by: Michael Smith <msmith at fluendo dot com>
13511
13512         * gst/tcp/gstmultifdsink.c: (is_sync_frame),
13513         (gst_multi_fd_sink_client_queue_buffer),
13514         (gst_multi_fd_sink_new_client):
13515         * tests/check/elements/multifdsink.c: (GST_START_TEST),
13516         (multifdsink_suite):
13517           Fix implementation of sync-method 'next-keyframe'
13518           Closes #354594
13519
13520 2006-09-07  Thomas Vander Stichele  <thomas at apestaart dot org>
13521
13522         patch by: Wim Taymans <wim at fluendo dot com>
13523
13524         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
13525         This patch removes the RANDOM flag that was incorrectly introduced with
13526         revision 1.91.  Fixes #354590
13527
13528 2006-09-05  Tim-Philipp Müller  <tim at centricular dot net>
13529
13530         * tests/check/Makefile.am:
13531           Random variation in Makefile line to see if it makes the
13532           gen64-base-full bot any happier.
13533
13534 2006-09-04  Tim-Philipp Müller  <tim at centricular dot net>
13535
13536         * tests/check/pipelines/oggmux.c: (oggmux_suite):
13537           Disable test that fails at the moment (killed after timeout).
13538
13539 2006-09-04  Tim-Philipp Müller  <tim at centricular dot net>
13540
13541         Patch by: James Livingston  <doclivingston at gmail.com>
13542
13543         * tests/check/Makefile.am:
13544         * tests/check/pipelines/.cvsignore:
13545         * tests/check/pipelines/oggmux.c: (get_page_codec),
13546         (check_chain_final_state), (fail_if_audio), (validate_ogg_page),
13547         (eos_buffer_probe), (start_pipeline), (stop_pipeline), (eos_watch),
13548         (test_pipeline), (test_vorbis), (test_theora), (test_vorbis_theora),
13549         (test_theora_vorbis), (oggmux_suite):
13550           Add simple unit test for oggmux from #337026 with checking for the
13551           EOS flags disabled for the time being.
13552
13553 2006-09-04  Wim Taymans  <wim@fluendo.com>
13554
13555         patch by: Alessandro Dessina <alessandro nnva org>
13556
13557         * ext/ogg/gstoggmux.c:
13558         Add cmml caps to oggmux. Fixes #353912
13559
13560 2006-09-02  Tim-Philipp Müller  <tim at centricular dot net>
13561
13562         * tests/check/elements/videotestsrc.c: (check_rgb_buf):
13563           Returning a return value often helps. In this case, we
13564           don't need the return value anyway, so just get rid of it.
13565           Should make build bots much happier.
13566
13567 2006-09-02  Tim-Philipp Müller  <tim at centricular dot net>
13568
13569         * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure),
13570         (paint_get_structure), (gst_video_test_src_get_size),
13571         (gst_video_test_src_smpte), (gst_video_test_src_snow),
13572         (gst_video_test_src_unicolor), (paint_setup_AYUV),
13573         (paint_hline_AYUV), (paint_setup_ARGB8888), (paint_setup_ABGR8888),
13574         (paint_setup_RGBA8888), (paint_setup_BGRA8888), (paint_hline_str4):
13575         * gst/videotestsrc/videotestsrc.h:
13576           Add support for AYUV and the various RGBA formats. Initialise
13577           fields of paintinfo structs allocated on the stack.
13578
13579         * tests/check/elements/videotestsrc.c: (right_shift_colour),
13580         (fix_expected_colour), (check_rgb_buf), (got_buf_cb),
13581         (check_rgb_buf), (videotestsrc_suite):
13582           Add unit tests for videotestsrc's RGB output.
13583
13584 2006-09-01  Tim-Philipp Müller  <tim at centricular dot net>
13585
13586         * gst/videotestsrc/gstvideotestsrc.c:
13587         (gst_video_test_src_pattern_get_type),
13588         (gst_video_test_src_set_pattern):
13589         * gst/videotestsrc/gstvideotestsrc.h:
13590         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_unicolor),
13591         (gst_video_test_src_black), (gst_video_test_src_white),
13592         (gst_video_test_src_red), (gst_video_test_src_green),
13593         (gst_video_test_src_blue):
13594         * gst/videotestsrc/videotestsrc.h:
13595           Add more uni-colour patterns ("white", "red", "green", and "blue").
13596
13597 2006-09-01  Tim-Philipp Müller  <tim at centricular dot net>
13598
13599         * gst/videotestsrc/videotestsrc.c: (paint_setup_YVYU):
13600           Fix stride for YVYU, should be word-aligned (#353658).
13601
13602 2006-08-31  Tim-Philipp Müller  <tim at centricular dot net>
13603
13604         * gst/adder/gstadder.c: (gst_adder_src_event):
13605           Fix build.
13606
13607 2006-08-31  Edward Hervey  <edward@fluendo.com>
13608
13609         * gst/adder/gstadder.c: (forward_event_func),
13610         (gst_adder_src_event), (gst_adder_collected),
13611         (gst_adder_change_state):
13612         * gst/adder/gstadder.h:
13613         Remember the start position asked in the incoming seeks, so we can
13614         output GST_EVENT_NEW_SEGMENT with a correct position value (instead
13615         of assuming it will always be 0).
13616
13617 2006-08-31  Edward Hervey  <edward@fluendo.com>
13618
13619         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
13620         (gst_ogg_demux_finalize), (gst_ogg_demux_perform_seek),
13621         (gst_ogg_demux_loop):
13622         Send the GST_EVENT_NEW_SEGMENT from the streaming thread.
13623
13624 2006-08-30  Tim-Philipp Müller  <tim at centricular dot net>
13625
13626         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
13627         (gst_ffmpegcsp_get_unit_size):
13628           Return FALSE instead of returning a random false unit
13629           size when the format isn't known/supported (even if
13630           this shouldn't happen under normal circumstances).
13631
13632 2006-08-29  Wim Taymans  <wim@fluendo.com>
13633
13634         Patch by: Tim-Philipp Müller  <tim at centricular dot net>
13635
13636         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create),
13637         (gst_gnome_vfs_src_start):
13638         Try harder to get the size from a uri by using _info_uri() when
13639         _info_from_handle() does not give us enough info. 
13640         Also follow symlinks when getting the size.
13641         Partially Fixes #332864.
13642
13643 2006-08-29  Tim-Philipp Müller  <tim at centricular dot net>
13644
13645         Patch by: Viktor Peters  <viktor dot peters at gmail dot com>
13646
13647         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_ensure_track_list),
13648         (gst_alsa_mixer_update), (gst_alsa_mixer_get_volume),
13649         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
13650         (gst_alsa_mixer_set_record):
13651         * ext/alsa/gstalsamixertrack.c:
13652         (gst_alsa_mixer_track_update_alsa_capabilities),
13653         (alsa_track_has_cap), (gst_alsa_mixer_track_new),
13654         (gst_alsa_mixer_track_update):
13655         * ext/alsa/gstalsamixertrack.h:
13656           Improve and fix mixer track handling, in particular better handling
13657           of alsa's pvolume/pswitch/cvolume/cswitch capabilities; create
13658           separate track objects for tracks that have both capture and playback
13659           volume (and label them differently as well so they're not mistakenly
13660           assumed to be duplicates); classify mixer tracks that only affect
13661           the audible volume of something (rather than the capture volume)
13662           as playback tracks. Redefine/fix meaning of RECORD and MUTE flags
13663           for capture tracks to correspond to alsa-pswitch alsa-cswitch
13664           (following the meaning documented in the mixer interface header
13665           file); add support for alsa's exclusive cswitch groups; update/sync
13666           state/flags better if mixer settings are changed by another
13667           application. Fixes #336075.
13668
13669 2006-08-29  Tim-Philipp Müller  <tim at centricular dot net>
13670
13671         * gst/playback/gstplaybin.c:
13672           Improve docs: add section about BUFFERING messages sent by playbin.
13673
13674 2006-08-29  Michael Smith  <msmith@fluendo.com>
13675
13676         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_push_buffer),
13677         (gst_vorbis_enc_buffer_check_discontinuous),
13678         (gst_vorbis_enc_chain):
13679           Ignore explicit DISCONT marked on buffers (which is often spurious,
13680           particularly when using multiple segments), in favour of solely
13681           using the timestamps/durations.
13682
13683 2006-08-29  Edward Hervey  <edward@fluendo.com>
13684
13685         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
13686         Don't rely on incoming buffers offset anymore, since it is completely
13687         broken when using multiple segments.
13688         Instead convert the incoming buffers timestamp to running time, and
13689         then convert that value to the offsets.
13690         Also inform GstSegment of the last outputted stop position, which is
13691         needed if we received several segments with an unknown stop value.
13692
13693 2006-08-29  Thomas Vander Stichele  <thomas at apestaart dot org>
13694
13695         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_chain):
13696           fix buffer unreffing on a header push failure
13697
13698 2006-08-28  Wim Taymans  <wim@fluendo.com>
13699
13700         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_sink_event),
13701         (gst_audio_rate_chain):
13702         Make the metadata of the buffer writable before changing its
13703         flags.
13704
13705 2006-08-28  Wim Taymans  <wim@fluendo.com>
13706
13707         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
13708         (gst_audio_rate_setcaps), (gst_audio_rate_init),
13709         (gst_audio_rate_sink_event), (gst_audio_rate_src_event),
13710         (gst_audio_rate_chain), (gst_audio_rate_change_state):
13711         Fix audiorate some more.
13712         Reset and resync counters on flush and READY.
13713         Handle the DISCONT flag correctly.
13714         Use GstSegment to track position.
13715         Fail when not negotiated.
13716         Fixes #353234.
13717
13718 2006-08-25  Michael Smith  <msmith@fluendo.com>
13719
13720         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
13721           Fix spelling.
13722           Remove accidently included debug line.
13723
13724 2006-08-25  Wim Taymans  <wim@fluendo.com>
13725
13726         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
13727         Small cleanups.
13728         If a buffer is received with no caps, make the buffer metadata
13729         writable and set the caps, making sure that we don't screw up the
13730         refcounts.
13731
13732 2006-08-25  Michael Smith  <msmith@fluendo.com>
13733
13734         * gst/gdp/gstgdppay.c: (gst_gdp_pay_reset),
13735         (gst_gdp_pay_reset_streamheader), (gst_gdp_pay_chain):
13736           Fix memory leaks and misleading debug messages, add a couple of
13737           comments.
13738
13739         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_get_stats),
13740         (gst_multi_fd_sink_render):
13741           Do not use gst_buffer_make_writable() in a basesink render method,
13742           as it may incorrectly unref the buffer. Instead, use convoluted
13743           dance to avoid copying the buffer except when we need to.
13744
13745 2006-08-25  Michael Smith  <msmith@fluendo.com>
13746
13747         * ext/vorbis/vorbisenc.c:
13748         (gst_vorbis_enc_buffer_check_discontinuous):
13749           Allow very small discontinuities in the timestamps. These we can't
13750           do anything useful with anyway (because vorbis's timestamps have
13751           only sample granularity), and are commonly produced by elements with
13752           minor bugs. Allow up to 1/2 a sample out.
13753           Fixes #351742.
13754
13755 2006-08-24  Wim Taymans  <wim@fluendo.com>
13756
13757         * tests/examples/seek/seek.c: (seek_cb), (start_seek), (stop_seek),
13758         (play_scrub_toggle_cb), (main):
13759         Add a checkbox to enable play scrubbing. Makes it possible to disable
13760         normal scrubbing.
13761
13762 2006-08-23  Stefan Kost  <ensonic@users.sf.net>
13763
13764         * tests/check/elements/.cvsignore:
13765           make buildbot happy
13766
13767 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
13768
13769         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_base_init),
13770         (gst_ogm_video_parse_base_init), (gst_ogm_text_parse_base_init),
13771         (gst_ogm_parse_class_init), (gst_ogm_parse_dispose),
13772         (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
13773         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
13774         (gst_ogm_parse_stream_header), (gst_ogm_parse_comment_packet),
13775         (gst_ogm_text_parse_strip_trailing_zeroes),
13776         (gst_ogm_parse_data_packet), (gst_ogm_parse_chain),
13777         (gst_ogm_parse_sink_event), (gst_ogm_parse_change_state):
13778           Refactor ogm parse, do better input checking, misc. clean-ups.
13779           Cache incoming events and push them once the source pad has
13780           been created. Don't pass unterminated strings to sscanf().
13781           Strip trailing zeroes from subtitle text output, since they
13782           are not valid UTF-8. Don't push vorbiscomment packets on
13783           the subtitle text pad. Output perfect streams if possible.
13784
13785 2006-08-23  Wim Taymans  <wim@fluendo.com>
13786
13787         * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
13788         Waits for tasks to settle down so that we clean up correctly for 
13789         valgrind.
13790
13791 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
13792
13793         * tests/check/libs/tag.c: (GST_START_TEST), (taglists_are_equal):
13794           Unit test fixes: \377 is more likely to fit into 8 bits than \777;
13795           actually return return value in taglists_are_equal.
13796
13797 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
13798
13799         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
13800           Fix crash due to broken bitstream parsing on x86-64: can't make
13801           any assumptions about sizeof(struct) due to alignment/packing
13802           differences on different architectures. Fixes #351790.
13803
13804 2006-08-22  Wim Taymans  <wim@fluendo.com>
13805
13806         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
13807         (gst_riff_parse_chunk), (gst_riff_parse_file_header),
13808         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
13809         (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
13810         (gst_riff_parse_info):
13811         Protect public functions against bad input.
13812         Do some cleanups.
13813         Fix documentation.
13814
13815 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
13816
13817         * gst-libs/gst/riff/riff-ids.h:
13818         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
13819           Add voxware audio IDs (even if we can't play it) (#351795).
13820
13821 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
13822
13823         * gst-libs/gst/riff/riff-media.c:
13824         (gst_riff_create_video_template_caps),
13825         (gst_riff_create_audio_template_caps),
13826         (gst_riff_create_iavs_template_caps):
13827           Const-ify some arrays and use G_N_ELEMENTS instead
13828           of wasting oodles of RAM on terminator bits.
13829
13830 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
13831
13832         * gst-libs/gst/tag/gstvorbistag.c:
13833         (gst_tag_list_to_vorbiscomment_buffer):
13834         * tests/check/libs/tag.c: (GST_START_TEST):
13835           And the same for _to_vorbiscomment_buffer(): allow
13836           id_data_len == 0 for speex.
13837
13838 2006-08-21  Thomas Vander Stichele  <thomas at apestaart dot org>
13839
13840         * configure.ac:
13841         * docs/plugins/Makefile.am:
13842         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
13843         * docs/plugins/gst-plugins-base-plugins-sections.txt:
13844         * docs/plugins/inspect/plugin-gdp.xml:
13845         * gst/gdp/Makefile.am:
13846         * tests/check/Makefile.am:
13847           Move GDP plugin to -base from -bad.  Closes #347783.
13848
13849 2006-08-21  Tim-Philipp Müller  <tim at centricular dot net>
13850
13851         * gst-libs/gst/tag/gstvorbistag.c:
13852         (gst_tag_list_from_vorbiscomment_buffer):
13853           Allow id_data_len == 0 (needed for vorbis comments in Speex files).
13854           Also add some checks to make sure we don't memcmp() beyond the end of
13855           vorbiscomment buffer if the ID to check for is larger than the buffer.
13856
13857         * tests/check/libs/tag.c: (GST_START_TEST):
13858           Some more tests for gst_tag_list_from_vorbiscomment_buffer().
13859
13860 2006-08-21  Tim-Philipp Müller  <tim at centricular dot net>
13861
13862         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_metadata_set1),
13863         (gst_vorbis_enc_set_metadata):
13864           Use vorbis comment utility functions from libgsttag
13865           instead of re-inventing the wheel (partially fixes #347091).
13866
13867 2006-08-21  Jan Schmidt  <thaytan@mad.scientist.com>
13868
13869         * tests/check/elements/audioconvert.c: (GST_START_TEST):
13870         Fix leaks. Wait for state transitions that might happen ASYNC, as well
13871         as some that won't.
13872
13873 2006-08-21  Wim Taymans  <wim@fluendo.com>
13874
13875         * docs/libs/Makefile.am:
13876         * docs/libs/gst-plugins-base-libs-sections.txt:
13877         * docs/libs/gst-plugins-base-libs.types:
13878         Don't try to GObject scan the netbuffer as it's not a GObject.
13879         Fixes #351308.
13880
13881         * gst-libs/gst/netbuffer/gstnetbuffer.c:
13882         * gst-libs/gst/netbuffer/gstnetbuffer.h:
13883         Document GstNetBuffer.
13884
13885 2006-08-21  Stefan Kost  <ensonic@users.sf.net>
13886
13887         * tests/check/elements/audioconvert.c: (GST_START_TEST),
13888         (audioconvert_suite):
13889           Add testcase for caps-size-explosion
13890
13891 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
13892
13893         * gst/audioconvert/gstaudioconvert.c:
13894         (gst_audio_convert_get_unit_size), (set_structure_widths):
13895           Lower debug, use g_assert in _get_unit_size
13896
13897         * gst/audioresample/gstaudioresample.c:
13898         (audioresample_get_unit_size):
13899         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
13900         (gst_ffmpegcsp_get_unit_size):
13901         * gst/videoscale/gstvideoscale.c: (gst_video_scale_get_unit_size):
13902           use g_assert in _get_unit_size
13903
13904 2006-08-18  Wim Taymans  <wim@fluendo.com>
13905
13906         * docs/libs/gst-plugins-base-libs-sections.txt:
13907         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_set_packet_len),
13908         (gst_rtp_buffer_pad_to), (gst_rtp_buffer_get_payload_subbuffer),
13909         (gst_rtp_buffer_get_payload_buffer):
13910         * gst-libs/gst/rtp/gstrtpbuffer.h:
13911         Document GstRTPBuffer.
13912         Added function to efficiently strip payload headers.
13913         API: gst_rtp_buffer_get_payload_subbuffer()
13914
13915 2006-08-17  Tim-Philipp Müller  <tim at centricular dot net>
13916
13917         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
13918         (gst_tag_to_vorbis_comments):
13919           Serialise unknown vorbis comments into GST_TAG_EXTENDED_COMMENT
13920           tags and deserialise them properly as well (#347091).
13921           Add some more gtk-doc blurbs and also some g_return_if_fail().
13922
13923         * tests/check/libs/tag.c: (GST_START_TEST),
13924         (back_to_vorbis_comments), (taglists_are_equal), (tag_suite):
13925           More tests.
13926
13927 2006-08-17  Wim Taymans  <wim@fluendo.com>
13928
13929         * ext/ogg/Makefile.am:
13930         * ext/ogg/gstogg.c: (plugin_init):
13931         * ext/ogg/gstoggaviparse.c: (gst_ogg_avi_parse_get_type),
13932         (gst_ogg_avi_parse_base_init), (gst_ogg_avi_parse_class_init),
13933         (gst_ogg_avi_parse_init), (gst_ogg_avi_parse_finalize),
13934         (gst_ogg_avi_parse_setcaps), (gst_ogg_avi_parse_event),
13935         (gst_ogg_avi_parse_push_packet), (gst_ogg_avi_parse_chain),
13936         (gst_ogg_avi_parse_change_state), (gst_ogg_avi_parse_plugin_init):
13937         Added ogg-in-avi parser element. Fixes #140139.
13938
13939         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
13940         Fixed a bug in oggdemux debug code.
13941
13942         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
13943         (gst_riff_create_audio_template_caps):
13944         Recognise Ogg in the AVI extensible wave format.
13945
13946 2006-08-17  Tim-Philipp Müller  <tim at centricular dot net>
13947
13948         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
13949           Make buffer durations add up (duration should be next_ts-ts for
13950           perfect streams). Fixes CD ripping to Ogg/Vorbis with vorbisenc
13951           from CVS.
13952
13953         * tests/check/libs/cddabasesrc.c: (gst_cd_foo_src_close),
13954         (test_buffer_timestamps), (cddabasesrc_suite):
13955           Add unit test for the above.
13956
13957         * tests/check/Makefile.am:
13958           Don't know why cddabasesrc test was in VALGRIND_TO_FIX, remove
13959           to see what happens.
13960
13961 2006-08-16  Wim Taymans  <wim@fluendo.com>
13962
13963         * ext/alsa/gstalsasink.c: (gst_alsasink_set_property),
13964         (gst_alsasink_open):
13965         * ext/alsa/gstalsasrc.c: (gst_alsasrc_set_property),
13966         (gst_alsasrc_open):
13967         Avoid setting and using a NULL device name.
13968         Print more info when we fail to open a device.
13969
13970 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
13971
13972         * docs/libs/gst-plugins-base-libs-sections.txt:
13973         * gst-libs/gst/tag/tag.h:
13974         * gst-libs/gst/tag/tags.c: (gst_tag_parse_extended_comment):
13975           API: add gst_tag_parse_extended_comment() (#351426).
13976
13977         * tests/check/Makefile.am:
13978         * tests/check/libs/.cvsignore:
13979         * tests/check/libs/tag.c: (GST_START_TEST), (tag_suite), (main):
13980           Add unit test for gst_tag_parse_extended_comment().
13981
13982 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
13983
13984         * sys/ximage/ximagesink.c: (gst_ximagesink_get_property):
13985         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_property):
13986           Fix leak (#351502).
13987
13988 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
13989
13990         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
13991         * docs/plugins/gst-plugins-base-plugins-sections.txt:
13992         * docs/plugins/gst-plugins-base-plugins.args:
13993         * gst/playback/gstplaybin.c:
13994           Document playbin.
13995           
13996         * docs/plugins/inspect/plugin-adder.xml:
13997         * docs/plugins/inspect/plugin-alsa.xml:
13998         * docs/plugins/inspect/plugin-audioconvert.xml:
13999         * docs/plugins/inspect/plugin-audiorate.xml:
14000         * docs/plugins/inspect/plugin-audioresample.xml:
14001         * docs/plugins/inspect/plugin-audiotestsrc.xml:
14002         * docs/plugins/inspect/plugin-cdparanoia.xml:
14003         * docs/plugins/inspect/plugin-decodebin.xml:
14004         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
14005         * docs/plugins/inspect/plugin-gnomevfs.xml:
14006         * docs/plugins/inspect/plugin-ogg.xml:
14007         * docs/plugins/inspect/plugin-pango.xml:
14008         * docs/plugins/inspect/plugin-playbin.xml:
14009         * docs/plugins/inspect/plugin-subparse.xml:
14010         * docs/plugins/inspect/plugin-tcp.xml:
14011         * docs/plugins/inspect/plugin-theora.xml:
14012         * docs/plugins/inspect/plugin-typefindfunctions.xml:
14013         * docs/plugins/inspect/plugin-video4linux.xml:
14014         * docs/plugins/inspect/plugin-videorate.xml:
14015         * docs/plugins/inspect/plugin-videoscale.xml:
14016         * docs/plugins/inspect/plugin-videotestsrc.xml:
14017         * docs/plugins/inspect/plugin-volume.xml:
14018         * docs/plugins/inspect/plugin-vorbis.xml:
14019         * docs/plugins/inspect/plugin-ximagesink.xml:
14020         * docs/plugins/inspect/plugin-xvimagesink.xml:
14021           Update to CVS version.
14022
14023 2006-08-14  Tim-Philipp Müller  <tim at centricular dot net>
14024
14025         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
14026         (gst_play_bin_set_property), (gst_play_bin_get_property),
14027         (value_list_append_structure_list),
14028         (gst_play_bin_handle_redirect_message),
14029         (gst_play_bin_handle_message):
14030           API: GstPlayBin::connection-speed
14031           Add "connection-speed" property; re-order redirect messages with
14032           multiple redirect locations depending on the minimum bitrate if
14033           that information is available and a connection speed is set
14034           (#350399).
14035
14036 2006-08-14  Tim-Philipp Müller  <tim at centricular dot net>
14037
14038         * gst/playback/gstplaybin.c:
14039           Update max volume to the same value that the volume element uses.
14040
14041 2006-08-14  Wim Taymans  <wim@fluendo.com>
14042
14043         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
14044         Less uglyness..
14045
14046 2006-08-14  Wim Taymans  <wim@fluendo.com>
14047
14048         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_submit_buffer),
14049         (gst_ogg_demux_get_next_page), (gst_ogg_demux_perform_seek),
14050         (gst_ogg_demux_read_chain), (gst_ogg_demux_loop):
14051         Add some more debug info.
14052         Don't crash when a seek failed.
14053         Actually return the result of the seek instead of TRUE.
14054         Ignore multiple BOS pages with the same serial so that we don't create
14055         the same stream multiple times.
14056         Post an error when we fail to do the initial seek.
14057
14058 2006-08-13  Wim Taymans  <wim@fluendo.com>
14059
14060         * ext/alsa/gstalsa.c: (gst_alsa_detect_rates),
14061         (gst_alsa_detect_channels), (gst_alsa_probe_supported_formats):
14062         Small code cleanup.
14063
14064         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
14065         (gst_alsa_mixer_new):
14066         Remove hack that always set the device to hw:0*.
14067         Properly find the card name for whatever device was configured.
14068         Do some better debugging.
14069         Fixes #350784.
14070
14071         * ext/alsa/gstalsamixerelement.c:
14072         (gst_alsa_mixer_element_set_property),
14073         (gst_alsa_mixer_element_change_state):
14074         Cleanups.
14075         Handle setting of a NULL device name better.
14076
14077 2006-08-11  Wim Taymans  <wim@fluendo.com>
14078
14079         * gst/adder/gstadder.c:
14080         Don't clip float values. Fixes #350900.
14081
14082 2006-08-11  Andy Wingo  <wingo@pobox.com>
14083
14084         * gst/tcp/gsttcp.c: Really fix the build?
14085
14086         * gst/tcp/gsttcp.h: For now, always disable deprecation here --
14087         fixes the build.
14088
14089 2006-08-10  Tim-Philipp Müller  <tim at centricular dot net>
14090
14091         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes):
14092           Float caps shouldn't have a "signed" field.
14093
14094 2006-08-10  Tim-Philipp Müller  <tim at centricular dot net>
14095
14096         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query):
14097           Implement SEEKING query in its most basic form, so that we can
14098           at least check if we're seekable or not (#350655).
14099
14100 2006-08-09  Tim-Philipp Müller  <tim at centricular dot net>
14101
14102         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
14103           The checks here are not even close to anything that would
14104           justify MAXIMUM probability, lowering to POSSIBLE until someone
14105           fixes the checks (case at hand: quicktime redirection files
14106           might start with 00 00 01 XX and pass the checks here just
14107           fine, see #350399).
14108
14109 2006-08-08  Tim-Philipp Müller  <tim at centricular dot net>
14110
14111         Patch by: Sjoerd Simons  <sjoerd at luon net>
14112
14113         * gst/typefind/gsttypefindfunctions.c: (multipart_type_find):
14114           Better detection for multipart/x-mixed-replace: accept leading
14115           whitespaces before the boundary marker as well (as our very own
14116           multipartmux used to produce) (#349068).
14117
14118 2006-08-07  Tim-Philipp Müller  <tim at centricular dot net>
14119
14120         Patch by: Young-Ho Cha  <ganadist at chollian net>
14121
14122         * gst-libs/gst/riff/riff-ids.h:
14123         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
14124         (gst_riff_create_audio_template_caps):
14125           Detect DTS audio streams (#350157).
14126
14127 2006-08-05  Andy Wingo  <wingo@pobox.com>
14128
14129         * ext/theora/gsttheoraparse.h:
14130         * ext/theora/theoraparse.c (gst_theora_parse_class_init)
14131         (theora_parse_dispose, theora_parse_set_property)
14132         (theora_parse_get_property, theora_parse_munge_granulepos)
14133         (theora_parse_push_buffer, theora_parse_change_state):
14134         API: GstTheoraParse::synchronization-points
14135         Add a property 'synchronization-points' to fix badly synchronized oggs.
14136
14137 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
14138
14139         * tests/check/Makefile.am:
14140         * tests/check/libs/.cvsignore:
14141         * tests/check/libs/audio.c: (structure_contains_channel_positions),
14142         (fixed_caps_have_channel_positions), (GST_START_TEST),
14143         (audio_suite), (main):
14144           Add a few tests for the channel position stuff in libgstaudio.
14145
14146 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
14147
14148         * ext/alsa/gstalsa.c: (caps_add_channel_configuration),
14149         (gst_alsa_detect_channels):
14150         * ext/alsa/gstalsasink.c:
14151           Add support for cards that (only) do more than 8 channels,
14152           like the Delta 44 (#345188).
14153
14154         * gst-libs/gst/audio/multichannel.c:
14155         (gst_audio_check_channel_positions):
14156         * gst-libs/gst/audio/multichannel.h:
14157           API: add GST_AUDIO_CHANNEL_POSITION_NONE, which stands for an
14158           unspecified channel position and cannot be combined with any
14159           of the other audio channel positions; adjust position layout
14160           checks accordingly (#345188).
14161
14162 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
14163
14164         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
14165           Recognise ancient RealAudio files (see #349779).
14166
14167 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
14168
14169         Patch by: Jens Granseuer  <jensgr at gmx net>
14170
14171         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
14172           Add typefinder for Interplay's MVE format (#348973).
14173
14174 2006-08-02  Wim Taymans  <wim@fluendo.com>
14175
14176         Patch by: Marcel Moreaux <marcelm at luon dot net>
14177
14178         * gst-libs/gst/rtp/gstbasertpdepayload.c:
14179         (gst_base_rtp_depayload_add_to_queue):
14180         * gst-libs/gst/rtp/gstbasertpdepayload.h:
14181         Handle RTP sequence number rollover.
14182         Disable jitterbuffer by default.
14183
14184 2006-07-28  Jan Schmidt  <thaytan@mad.scientist.com>
14185
14186         * gst/audioresample/gstaudioresample.c: (audioresample_stop),
14187         (audioresample_set_caps):
14188         Don't leak references to the incoming caps. Clean them up when
14189         stopping.
14190
14191         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
14192         (gst_video_scale_finalize):
14193         Don't leak our temporary pixel buffer.
14194
14195         * tests/check/Makefile.am:
14196         * tests/check/pipelines/simple-launch-lines.c: (run_pipeline),
14197         (GST_START_TEST), (simple_launch_lines_suite):
14198
14199         Fix leaks and re-enable the test for valgrind checking.
14200
14201 2006-07-28  Tim-Philipp Müller  <tim at centricular dot net>
14202
14203         Patch by: Sjoerd Simons  <sjoerd at luon net>
14204
14205         * gst/typefind/gsttypefindfunctions.c: (multipart_type_find),
14206         (plugin_init):
14207           Add typefind function for multipart/x-mixed-replace (#348916).
14208
14209 2006-07-28  Wim Taymans  <wim@fluendo.com>
14210
14211         * gst/adder/gstadder.c: (gst_adder_setcaps),
14212         (gst_adder_query_duration):
14213         Fix leak in duration query.
14214         Reflow some docs and notes.
14215
14216 2006-07-28  Michael Smith  <msmith@fluendo.com>
14217
14218         * tests/check/pipelines/vorbisenc.c: (GST_START_TEST),
14219         (vorbisenc_suite):
14220           Enable Andy's extra vorbisenc test, now that it passes. Also fix one
14221           aspect of it.
14222
14223 2006-07-28  Michael Smith  <msmith@fluendo.com>
14224
14225         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_generate_sink_caps),
14226         (gst_vorbis_enc_sink_getcaps), (gst_vorbis_enc_buffer_from_packet),
14227         (gst_vorbis_enc_push_buffer),
14228         (gst_vorbis_enc_buffer_check_discontinuous),
14229         (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
14230         * ext/vorbis/vorbisenc.h:
14231           Handle discontinuities in the input vorbis stream correctly,
14232           so that the output is properly timestamped (and has good granulepos
14233           values). Needs some oggmux fixes too.
14234
14235 2006-07-27  Wim Taymans  <wim@fluendo.com>
14236
14237         patch by: Kai Vehmanen <kv2004 eca cx>
14238
14239         * gst-libs/gst/rtp/gstbasertpdepayload.c:
14240         (gst_base_rtp_depayload_chain),
14241         (gst_base_rtp_depayload_handle_sink_event),
14242         (gst_base_rtp_depayload_change_state):
14243         Don't send multiple newsegments with different formats.
14244         Fixes #348677.
14245
14246 2006-07-26  Wim Taymans  <wim@fluendo.com>
14247
14248         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
14249         (gst_ogg_demux_do_seek), (gst_ogg_demux_read_chain):
14250         Make seeking in ogg more accurate again by doing the more correct
14251         granuletime to stream time conversion.
14252
14253 2006-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
14254
14255         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_add_full),
14256         (gst_multi_fd_sink_new_client):
14257           debug a little more understandably
14258           do not use goto as a substitute for break, especially if
14259           break is also being used
14260
14261 2006-07-26  Tim-Philipp Müller  <tim at centricular dot net>
14262
14263         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
14264         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
14265           Remove GLib-2.6 compatibility cruft.
14266
14267 2006-07-24  Wim Taymans  <wim@fluendo.com>
14268
14269         * gst-libs/gst/audio/gstbaseaudiosink.c:
14270         (gst_base_audio_sink_render):
14271         Don't try to align a sample to an unknown value.
14272
14273 2006-07-24  Wim Taymans  <wim@fluendo.com>
14274
14275         * gst-libs/gst/audio/gstbaseaudiosink.c:
14276         (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
14277         When the audio clock is slaved to another clock, never try to align
14278         samples but trust the rate interpolation algorithm.
14279
14280 2006-07-24  Wim Taymans  <wim@fluendo.com>
14281
14282         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
14283         Don't try to calculate silence samples, base class does this much
14284         better now.
14285
14286         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
14287         (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps),
14288         (gst_ring_buffer_acquire):
14289         Calculate silence samples correctly.
14290
14291         * gst-libs/gst/audio/gstringbuffer.h:
14292         Add _CAST macro.
14293
14294 2006-07-22  Tim-Philipp Müller  <tim at centricular dot net>
14295
14296         * gst/typefind/gsttypefindfunctions.c: (xml_check_first_element):
14297           Limit search for the first markup tag to the first few kB of
14298           the file. If we don't find one there, it's highly unlikely that
14299           this is an XML(-ish) file.
14300
14301 2006-07-21  Andy Wingo  <wingo@pobox.com>
14302
14303         * tests/check/pipelines/theoraenc.c (test_discontinuity): Similar
14304         test to the one in vorbisenc. Also commented out.
14305
14306         * tests/check/pipelines/vorbisenc.c: 
14307         (test_discontinuity): New test, commented out until Mike lands
14308         some elite vorbisenc patches.
14309
14310         * tests/check/pipelines/theoraenc.c: Port to bufferstraw.
14311         Bufferstraw was actually factored out of these tests. Now we share
14312         code yay.
14313
14314         * configure.ac (GST_MAJORMINOR): Rev core requirements to 0.10.9.1
14315         for bufferstraw addition to gstcheck.
14316
14317 2006-07-21  Wim Taymans  <wim@fluendo.com>
14318
14319         * ext/theora/theoradec.c: (clip_buffer):
14320         Better clipping.
14321
14322 2006-07-21  Wim Taymans  <wim@fluendo.com>
14323
14324         * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func),
14325         (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
14326         (gst_audioringbuffer_release), (gst_audioringbuffer_stop):
14327         Fix leak.
14328         Avoid type casting when we can.
14329
14330         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_dispose):
14331         Fix mem leak.
14332
14333 2006-07-20  Tim-Philipp Müller  <tim at centricular dot net>
14334
14335         * ext/alsa/gstalsamixerelement.c:
14336         (gst_alsa_mixer_element_change_state):
14337           Make state change fail if the specified device can't be opened
14338           for some reason.
14339
14340 2006-07-20  Wim Taymans  <wim@fluendo.com>
14341
14342         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
14343         (cb_newpad), (main):
14344         Example of a small audio/video player using decodebin.
14345
14346 2006-07-20  Stefan Kost  <ensonic@users.sf.net>
14347
14348         * gst-libs/gst/riff/riff-ids.h:
14349           Add 'fact' chunk id
14350
14351 2006-07-19  Wim Taymans  <wim@fluendo.com>
14352
14353         * gst-libs/gst/rtp/gstbasertpdepayload.c:
14354         (gst_base_rtp_depayload_chain),
14355         (gst_base_rtp_depayload_change_state):
14356         Don't assert when not negotiated but post a meaningfull 
14357         error message. Fixes #347918.
14358
14359         * gst-libs/gst/rtp/gstbasertppayload.c:
14360         Add comment about better default MTU size.
14361
14362         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data):
14363         Small cleanups, start docs.
14364
14365 2006-07-19  Tim-Philipp Müller  <tim at centricular dot net>
14366
14367         Patch by: Martin Szulecki
14368
14369         * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_property):
14370           If "device-name" is requested and the device is not
14371           open, try to temporarily open it to obtain this
14372           information (#342494).
14373
14374 2006-07-19  Tim-Philipp Müller  <tim at centricular dot net>
14375
14376         * gst-libs/gst/tag/gstid3tag.c:
14377           Add TSSE <=> GST_TAG_ENCODER mapping (see #347898).
14378
14379         * gst-libs/gst/tag/gsttageditingprivate.h:
14380         * gst-libs/gst/tag/gstvorbistag.c:
14381           Some more random const-ifications.
14382
14383 2006-07-18  Stefan Kost  <ensonic@users.sf.net>
14384
14385         * gst-libs/gst/riff/riff-ids.h:
14386         * gst-libs/gst/riff/riff-media.c:
14387         (gst_riff_create_video_template_caps):
14388           Add more FOURCCs (sort list to make stuff easier to find),
14389           add comment what those 16 bytes in struct _gst_riff_strh according to
14390           one avi-dumper are
14391
14392 2006-07-17  Tim-Philipp Müller  <tim at centricular dot net>
14393
14394         * gst-libs/gst/audio/multichannel.c:
14395         (gst_audio_check_channel_positions),
14396         (gst_audio_fixate_channel_positions):
14397           Const-ify two arrays.
14398
14399 2006-07-17  Tim-Philipp Müller  <tim at centricular dot net>
14400
14401         * ext/alsa/gstalsa.c: (caps_add_channel_configuration):
14402           Fix typo, so that alsasink also advertises 8 channels
14403           if that's supported (tags: can, worms, open, alsa, ph34r).
14404
14405 2006-07-17  Wim Taymans  <wim@fluendo.com>
14406
14407         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
14408         (gst_ogg_pad_submit_packet), (gst_ogg_demux_read_chain):
14409         *sigh*, when is the compiler going to warn when the comments
14410         are out-of-sync with the code.. Refix case of busted theora
14411         headers with 0 granule pos.
14412
14413 2006-07-14  Wim Taymans  <wim@fluendo.com>
14414
14415         * gst-libs/gst/rtp/gstbasertpdepayload.c:
14416         (gst_base_rtp_depayload_wait),
14417         (gst_base_rtp_depayload_change_state),
14418         (gst_base_rtp_depayload_set_property),
14419         (gst_base_rtp_depayload_get_property):
14420         Fix 99% cpu load by waiting for absolute times on the
14421         clock. Fixes #347300.
14422
14423 2006-07-14  Andy Wingo  <wingo@pobox.com>
14424
14425         * ext/theora/gsttheoraparse.h: 
14426         * ext/theora/theoraparse.c (theora_parse_drain_event_queue)
14427         (theora_parse_push_headers, theora_parse_clear_queue)
14428         (theora_parse_drain_queue_prematurely, )
14429         (theora_parse_sink_event, theora_parse_change_state): Queue events
14430         until we initialized our state, like in vorbisparse.
14431
14432         * ext/vorbis/vorbisparse.h: 
14433         * ext/vorbis/vorbisparse.c (vorbis_parse_drain_event_queue)
14434         (vorbis_parse_push_headers, vorbis_parse_clear_queue)
14435         (vorbis_parse_drain_queue_prematurely, )
14436         (vorbis_parse_sink_event, vorbis_parse_change_state): Queue events
14437         until we have initialized our state. Fixes seeking after an
14438         initial pad block.
14439
14440 2006-07-14  Andy Wingo  <wingo@pobox.com>
14441
14442         Patch by: Iain Holmes <iaingnome@gmail.com>
14443         
14444         * ext/ogg/gstoggdemux.c (gst_ogg_demux_finalize): Fix memleak.
14445
14446 2006-07-14  Jan Schmidt  <thaytan@mad.scientist.com>
14447
14448         * configure.ac:
14449         Bump nano back to CVS
14450
14451 === release 0.10.9 ===
14452
14453 2006-07-13  Jan Schmidt <thaytan@mad.scientist.com>
14454
14455         * configure.ac:
14456           releasing 0.10.9, "I walk the line"
14457
14458 2006-07-14  Michael Smith  <msmith@fluendo.com>
14459
14460         * tests/check/pipelines/vorbisenc.c: (stop_pipeline):
14461           Move a g_cond_signal to earlier to avoid sometimes deadlocking
14462           (commonly happens when running this test under valgrind) when trying
14463           to remove the buffer probe.
14464
14465 2006-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
14466
14467         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
14468         Fix missing g_unlock from the previous commit
14469
14470 2006-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
14471
14472         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
14473         (gst_ximagesink_change_state):
14474         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
14475         (gst_xvimagesink_change_state):
14476         Implement a locking order to ensure we always take the object lock
14477         before the x_lock and never vice-versa.
14478
14479 2006-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
14480
14481         * gst/playback/gstdecodebin.c: (find_compatibles):
14482         Fix a caps leak when linking (#347304)
14483
14484         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
14485         (gst_ximagesink_ximage_destroy), (gst_ximagesink_xcontext_clear),
14486         (gst_ximagesink_change_state):
14487         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
14488         (gst_xvimage_buffer_finalize), (gst_xvimagesink_check_xshm_calls),
14489         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
14490         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_change_state):
14491         Don't leak shared memory resources. Use the object lock to protect
14492         against the xcontext disappearing while returning a buffer from the
14493         pipeline. (#347304)
14494
14495 2006-07-12  Edward Hervey  <edward@fluendo.com>
14496
14497         * ext/vorbis/vorbisdec.c: (vorbis_dec_finalize),
14498         (vorbis_handle_comment_packet):
14499         gst_tag_list_merge() returns a new object. Take that into account when
14500         using it. This avoids memleak.
14501         Revert previous commit which is not needed.
14502
14503 2006-07-12  Edward Hervey  <edward@fluendo.com>
14504
14505         * ext/vorbis/vorbisdec.c: (vorbis_dec_finalize):
14506         Reset the decoder in finalize so that all fields get cleared.
14507
14508 2006-07-12  Wim Taymans  <wim@fluendo.com>
14509
14510         * gst-libs/gst/audio/gstbaseaudiosrc.c:
14511         (gst_base_audio_src_set_clock),
14512         (gst_base_audio_src_check_get_range), (gst_base_audio_src_create):
14513         Don't try to post an error message when setting the clock fails
14514         as this can happen when adding an element to a bin which will then
14515         deadlock. Fixes #347296.
14516
14517 2006-07-12  Edward Hervey  <edward@fluendo.com>
14518
14519         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
14520         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
14521         (vorbis_handle_type_packet):
14522         Post tag messages on the bus even if we're not initialized.
14523         If we're not initialized, we still postpone the event pushing of tags.
14524
14525 2006-07-12  Wim Taymans  <wim@fluendo.com>
14526
14527         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
14528         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
14529         (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps):
14530         Revert last two changes that broke the freeze.
14531
14532 2006-07-12  Wim Taymans  <wim@fluendo.com>
14533
14534         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
14535         basesink calculates silence sample correctly for us.
14536
14537 2006-07-12  Wim Taymans  <wim@fluendo.com>
14538
14539         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
14540         (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps):
14541         Calculate correct silence samples so we don't fill our ringbuffer
14542         with noise.
14543
14544 2006-07-12  Edward Hervey  <edward@fluendo.com>
14545
14546         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
14547         (gst_vorbis_dec_reset), (vorbis_dec_sink_event),
14548         (vorbis_handle_comment_packet), (vorbis_handle_type_packet):
14549         * ext/vorbis/vorbisdec.h:
14550         Delay sending events (newsegment, tags) until the decoder is properly
14551         initialized.
14552         Fixes #347295
14553
14554 2006-07-11  Jan Schmidt  <thaytan@mad.scientist.com>
14555
14556         * tests/check/elements/audioconvert.c: (get_float_mc_caps),
14557         (get_int_mc_caps), (GST_START_TEST), (audioconvert_suite):
14558           Patch from #347221 adding a test for audioconvert
14559           channel remappings.
14560
14561 2006-07-11  Tim-Philipp Müller  <tim at centricular dot net>
14562
14563         * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
14564         (gst_ssa_parse_parse_line):
14565           Don't include the terminating NUL in the buffer size,
14566           it's only there for extra paranoia (would add random
14567           '*' characters at the end of each subtitle since the
14568           terminator itself is not valid UTF-8 technically).
14569           Also fix indenting after boilerplate macro.
14570
14571 2006-07-10  Tim-Philipp Müller  <tim at centricular dot net>
14572
14573         * gst/playback/gstdecodebin.c: (close_pad_link):
14574           Also emit 'unknown-type' signal (which should really be
14575           called unhandled-type) if we found potential decoders/demuxers
14576           in the registry but none of them worked in the end (as in the
14577           case where the plugins don't exist any longer but are still
14578           listed in the registry). Fixes #329798.
14579
14580 2006-07-08  Andy Wingo  <wingo@pobox.com>
14581
14582         * theoraparse.c (theora_parse_push_buffer)
14583         (theora_parse_drain_queue_prematurely, theora_parse_drain_queue):
14584         Add some more debugging. Fix granulepos reconstruction in the face
14585         of discontinuities.
14586
14587 2006-07-06  Wim Taymans  <wim@fluendo.com>
14588
14589         * gst-libs/gst/audio/gstbaseaudiosink.c:
14590         (gst_base_audio_sink_class_init),
14591         (gst_base_audio_sink_provide_clock):
14592         Use gobject_class instead of G_OBJECT_CLASS (klass)
14593
14594         * gst-libs/gst/audio/gstbaseaudiosrc.c:
14595         (gst_base_audio_src_class_init), (gst_base_audio_src_init),
14596         (gst_base_audio_src_set_clock), (gst_base_audio_src_provide_clock),
14597         (gst_base_audio_src_get_time),
14598         (gst_base_audio_src_check_get_range), (gst_base_audio_src_create),
14599         (gst_base_audio_src_create_ringbuffer):
14600         Fix latency and buffer-time constants and properties ala basesink.
14601         Implement pull based scheduling. Fixes #346527.
14602         Set default blocksize in GstBaseSrc to 0, we default to pushing out
14603         one segment.
14604         Refuse slaving to another clock instead of silently not working.
14605         Only provide a clock when we are actually able to do so.
14606         Various small cleanups and compiler hints.
14607
14608 2006-07-06  Tim-Philipp Müller  <tim at centricular dot net>
14609
14610         Patch by: Lutz Mueller <lutz at topfrose de>
14611
14612         * gst/typefind/gsttypefindfunctions.c: (html_type_find),
14613         (plugin_init):
14614           Add typefinding for text/html (#346581).
14615
14616 2006-07-06  Tim-Philipp Müller  <tim at centricular dot net>
14617
14618         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
14619         (xml_check_first_element), (xml_type_find), (smil_type_find):
14620           Fix SMIL typefinding, make xml_check_first_element() more
14621           useful.
14622
14623 2006-07-06  Tim-Philipp Müller  <tim at centricular dot net>
14624
14625         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
14626         (gst_play_base_bin_finalize), (decodebin_element_added_cb),
14627         (decodebin_element_removed_cb), (gst_play_base_bin_set_property):
14628         * gst/playback/gstplaybasebin.h:
14629           Protect list of elements with a subtitle-encoding property and
14630           the subtitle encoding member itself with a lock of their own
14631           instead of using the object lock. This prevents a dead-lock in
14632           the element-remove callback in some circumstances when shutting
14633           down playbin.
14634
14635 2006-07-05  Sebastien Moutte  <sebastien@moutte.net>
14636
14637         * win32/common/libgsttag.def:
14638         Export some new functions.
14639         * win32/vs6/libgstogg.dsp:
14640         Add a link to libgsttag-0.10.lib.
14641
14642 2006-07-04  Tim-Philipp Müller  <tim at centricular dot net>
14643
14644         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
14645           Some const-ification.
14646
14647 2006-07-04  Wim Taymans  <wim@fluendo.com>
14648
14649         * gst/playback/gstplaybasebin.c: (is_stream), (gen_source_element):
14650         Improve checking if we are dealing with a stream. Added some
14651         more uris that need buffering.
14652
14653 2006-07-03  Edward Hervey  <edward@fluendo.com>
14654
14655         * ext/vorbis/vorbisdec.c: (vorbis_do_clip):
14656         Remove unused variable.
14657
14658 2006-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
14659
14660         * Makefile.am:
14661           include lcov.mak
14662         * configure.ac:
14663           add GCOV_LIBS to GST_LIBS
14664
14665 2006-07-02  Tim-Philipp Müller  <tim at centricular dot net>
14666
14667         Patch by: Michael Sheldon  <webmaster at mikeasoft com>
14668
14669         * ext/alsa/gstalsasrc.c:
14670           Add 32 bps to template caps and increase channels range
14671           from [1,2] to [1,MAX]. See #346326.
14672
14673 2006-06-30  Tim-Philipp Müller  <tim at centricular dot net>
14674
14675         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
14676           Recognise 'WMVA' video codec fourcc (#345879).
14677           
14678 2006-06-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
14679          
14680         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:     
14681           Fixed nasty memory leak
14682
14683 2006-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
14684
14685         * gst/tcp/gsttcp.c: (gst_tcp_read_buffer),
14686         (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps):
14687           fix logging
14688
14689 2006-06-23  Jan Schmidt  <thaytan@mad.scientist.com>
14690
14691         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
14692         (gst_decode_bin_init), (gst_decode_bin_finalize), (add_fakesink),
14693         (remove_fakesink), (pad_probe), (gst_decode_bin_change_state):
14694         Protect remove_fakesink using a mutex, so that we don't try and
14695         remove the fakesink simultaneously from multiple threads.
14696
14697         When going from READY to PAUSED, restore the fakesink, so that
14698         it is there when decodebin gets reused.
14699
14700 2006-06-23  Tim-Philipp Müller  <tim at centricular dot net>
14701
14702         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
14703         * gst-libs/gst/rtp/gstbasertpdepayload.c:
14704         * gst-libs/gst/rtp/gstbasertppayload.c:
14705         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14706         * gst/tcp/gstmultifdsink.c:
14707         * gst/tcp/gsttcpclientsink.c:
14708         * gst/tcp/gsttcpclientsrc.c:
14709         * gst/tcp/gsttcpserversink.c:
14710         * gst/tcp/gsttcpserversrc.c:
14711         * gst/videorate/gstvideorate.c:
14712         * gst/videotestsrc/gstvideotestsrc.c:
14713         * sys/v4l/gstv4ljpegsrc.c:
14714         * sys/v4l/gstv4lmjpegsink.c:
14715         * sys/v4l/gstv4lsrc.c:
14716         * tests/examples/seek/scrubby.c:
14717         * tests/examples/seek/seek.c:
14718           Use GST_DEBUG_CATEGORY_STATIC where possible (#342503).
14719
14720 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
14721
14722         * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum):
14723           Second field in GEnumValue shouldn't be a description,
14724           but a stringified version of the enum value.
14725
14726 2006-06-22  Wim Taymans  <wim@fluendo.com>
14727
14728         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
14729         (gst_ximage_buffer_free), (gst_ximagesink_ximage_put),
14730         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
14731         Avoid type checking in buffer casts.
14732         Avoid caps copy in buffer_alloc when we can.
14733         Use pad_peer_accept.
14734
14735 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
14736
14737         * gst-libs/gst/tag/tag.h:
14738           Oops, make that 'Since: 0.10.9'.
14739
14740 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
14741
14742         * docs/libs/gst-plugins-base-libs-sections.txt:
14743         * gst-libs/gst/tag/tag.h:
14744         * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum),
14745         (gst_tag_image_type_get_type):
14746           API: add GstTagImageType enum to describe images contained
14747           in image tags (#345641).
14748
14749 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
14750
14751         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
14752           Fix warnings with gst-inspect: "buffers-min" property
14753           should be of G_TYPE_INT and not G_TYPE_INT64. Also fix
14754           typo in property description.
14755
14756 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
14757
14758         Patch by: Cody Russell <bratsche at gnome org>
14759
14760         * gst/audioresample/gstaudioresample.c:
14761         (gst_audioresample_class_init):
14762         * gst/playback/gststreamselector.c:
14763         (gst_stream_selector_class_init):
14764         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
14765         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
14766         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
14767         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_class_init):
14768         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_class_init):
14769         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_class_init):
14770         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init):
14771         * gst/videotestsrc/gstvideotestsrc.c:
14772         (gst_video_test_src_class_init):
14773         * gst/volume/gstvolume.c: (gst_volume_class_init):
14774           Avoid unnecessary class cast check in class_init
14775           functions (#337747).
14776
14777 2006-06-21  Tim-Philipp Müller  <tim at centricular dot net>
14778
14779         * ext/pango/gsttextoverlay.c: (gst_text_overlay_make_utf8),
14780         (gst_text_overlay_video_chain):
14781           g_markup_escape_text() REALLY doesn't like non-UTF8 input
14782           and doesn't validate its input either (and neither did
14783           textoverlay it seems). Let's do that then and fix #345206.
14784
14785 2006-06-19  Wim Taymans  <wim@fluendo.com>
14786
14787         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
14788         (gst_unit_type_get_type), (gst_multi_fd_sink_class_init),
14789         (gst_multi_fd_sink_init), (gst_multi_fd_sink_add_full),
14790         (gst_multi_fd_sink_add), (gst_multi_fd_sink_handle_client_read),
14791         (find_syncframe), (find_limits), (assign_value),
14792         (count_burst_unit), (gst_multi_fd_sink_new_client),
14793         (gst_multi_fd_sink_handle_client_write),
14794         (gst_multi_fd_sink_queue_buffer), (gst_multi_fd_sink_render),
14795         (gst_multi_fd_sink_set_property), (gst_multi_fd_sink_get_property),
14796         (gst_multi_fd_sink_change_state):
14797         * gst/tcp/gstmultifdsink.h:
14798         Added shiny new burst-on-connect methods.
14799         Add properties to control the minimal amount of data queued.
14800         Small cleanups.
14801         API: bytes-min property
14802         API: time-min property
14803         API: buffers-min property
14804         API: burst-unit property
14805         API: burst-value property
14806         API: add-full signal
14807
14808         * gst/tcp/gsttcp-marshal.list:
14809         Added new marshaller code for the new signal.
14810
14811         * tests/check/elements/multifdsink.c: (GST_START_TEST),
14812         (multifdsink_suite):
14813         Added testcases for new burst methods.
14814
14815 2006-06-19  Edward Hervey  <edward@fluendo.com>
14816
14817         * ext/theora/theoradec.c: (clip_buffer), (theora_dec_push):
14818         Implement clipping for accurate seeking.
14819         Closes #345225
14820
14821 2006-06-19  Wim Taymans  <wim@fluendo.com>
14822
14823         Patch by: Philip Jaegenstedt <philip at lysator dot liu dot se>
14824
14825         * gst/videoscale/gstvideoscale.c: (gst_video_scale_prepare_size),
14826         (gst_video_scale_transform):
14827         Make videoscale support RGBA, ARGB, BGRA and ABGR. Fixes #345131
14828
14829 2006-06-17  Tim-Philipp Müller  <tim at centricular dot net>
14830
14831         * configure.ac:
14832           Fix --disable-external (can't set conditionals conditionally,
14833           #343602).
14834
14835 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
14836
14837         * tests/check/elements/audioresample.c: (test_reuse),
14838         (audioresample_suite):
14839           Add test case for bug #342789 fixed below.
14840
14841 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
14842
14843         * gst/audioresample/gstaudioresample.c:
14844         (gst_audioresample_class_init), (gst_audioresample_init),
14845         (audioresample_start), (audioresample_stop),
14846         (gst_audioresample_set_property), (gst_audioresample_get_property):
14847           Implement GstBaseTransform::start and ::stop so that audioresample
14848           can clear its internal state properly and be reused instead of
14849           causing non-negotiated errors with playbin under some circumstances
14850           (#342789).
14851
14852         * tests/check/elements/audioresample.c: (setup_audioresample),
14853         (cleanup_audioresample):
14854           Need to set element state here so that ::start and ::stop are
14855           called.
14856
14857 2006-06-16  Wim Taymans  <wim@fluendo.com>
14858
14859         Patch by: Young-Ho Cha <ganadist at chollian dot net>
14860
14861         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_vids):
14862         Parse extra data better, apparently it's right behind
14863         the normal strf header size. Fixes #343500.
14864
14865 2006-06-16  Wim Taymans  <wim@fluendo.com>
14866
14867         * ext/alsa/gstalsasink.c: (set_hwparams):
14868         If we fail to set the buffer_time and period_time alsa
14869         parameters, post a warning and leave alsa select a 
14870         default instead of failing. Fixes #342085
14871
14872 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
14873
14874         * docs/libs/gst-plugins-base-libs-sections.txt:
14875         * gst-libs/gst/cdda/gstcddabasesrc.h:
14876           Remove GST_CDDA_TAG_TRACK_TAGS again, it is #ifdef 0'ed
14877           out in the header file and shouldn't be listed in the docs.
14878
14879         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
14880           Must dereference pointer to fourcc in the debug statement.
14881
14882 2006-06-16  Stefan Kost  <ensonic@users.sf.net>
14883
14884         * docs/libs/Makefile.am:
14885         * docs/libs/gst-plugins-base-libs-docs.sgml:
14886         * docs/libs/gst-plugins-base-libs-sections.txt:
14887         * docs/libs/gst-plugins-base-libs.types:
14888         add remaining symbols into correct setions
14889         
14890         * gst-libs/gst/audio/gstringbuffer.c:
14891         fix incomplete docs
14892         
14893         * gst-libs/gst/audio/gstringbuffer.h:
14894         comment out not yet implemented function
14895         
14896         
14897         * gst-libs/gst/floatcast/floatcast.h:
14898         * gst-libs/gst/netbuffer/gstnetbuffer.c:
14899         add short descriptions
14900         
14901         
14902         * gst-libs/gst/interfaces/propertyprobe.c:
14903         fix return value docs   
14904         
14905         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
14906         simplify debug logging
14907         
14908         * gst-libs/gst/riff/riff-read.h:
14909         sync function prototype and docs
14910         
14911         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
14912         remove left over symbol
14913
14914 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
14915
14916         * autogen.sh:
14917         * configure.ac:
14918         * docs/Makefile.am:
14919           Use GST_PLUGIN_DOCS macro in configure.ac, add
14920           --enable-plugin-docs default to autogen.sh and use
14921           ENABLE_PLUGIN_DOCS conditional in Makefile.am (#344039).
14922
14923 2006-06-15  Wim Taymans  <wim@fluendo.com>
14924
14925         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
14926         (gst_ogg_demux_activate_chain), (gst_ogg_demux_combine_flows),
14927         (gst_ogg_demux_loop):
14928         Combine GstFlowReturn from the source pads to give a
14929         meaningfull result to the upstream peer or to stop the
14930         processing task in case of errors.
14931
14932 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
14933
14934         * gst/playback/gststreaminfo.c: (cb_probe):
14935           Try GST_TAG_CODEC as fallback when extracting the
14936           codec name; more debug info.
14937
14938 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
14939
14940         * ext/ogg/Makefile.am:
14941         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
14942           Extract language tags from ogm subtitle streams, so that
14943           the subtitle menu choices are labelled correctly in
14944           Totem (fixes #344708).
14945
14946 2006-06-14  Wim Taymans  <wim@fluendo.com>
14947
14948         Patch by: Alessandro Decina <alessandro at nnva dot org>
14949
14950         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_clear),
14951         (gst_ogg_mux_release_pad), (gst_ogg_mux_get_headers),
14952         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_init_collectpads),
14953         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
14954         Fix various leaks. Fixes #343699.
14955         Add x-smoke mime type.
14956
14957 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
14958
14959         * gst-libs/gst/riff/riff-ids.h:
14960           Add IDs for 'bext' chunks (see #343837).
14961
14962 2006-06-12  Tim-Philipp Müller  <tim at centricular dot net>
14963
14964         Patch by: Young-Ho Cha  <ganadist at chollian net>
14965
14966         * gst/subparse/samiparse.c: (sami_context_pop_state),
14967         (handle_start_font), (end_sami_element):
14968           Honour font face tags in SAMI subtitles (#344503).
14969
14970 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
14971
14972         * po/POTFILES.in:
14973           add missing files containing translatable strings
14974
14975 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
14976
14977         * docs/libs/tmpl/.cvsignore:
14978           we don't want those *.sgml files in CVS either
14979
14980 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
14981
14982         * docs/libs/.cvsignore:
14983         * tests/check/elements/.cvsignore:
14984         * tests/check/libs/.cvsignore:
14985           ignore more
14986
14987 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
14988
14989         * docs/libs/Makefile.am:
14990           also commiting the changed Makefile.am (added more libs to the
14991           doc-build)
14992
14993 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
14994
14995         * docs/libs/gst-plugins-base-libs-docs.sgml:
14996         * docs/libs/gst-plugins-base-libs-sections.txt:
14997         * docs/libs/gst-plugins-base-libs.types:
14998           first batch of reordering things, add index & hierarchy
14999
15000 2006-06-11  Thomas Vander Stichele  <thomas at apestaart dot org>
15001
15002         * configure.ac:
15003           use GST_PKG_CHECK_MODULES, cleans up output
15004
15005 2006-06-10  Tim-Philipp Müller  <tim at centricular dot net>
15006
15007         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
15008           Add support for burn:// URIs (#343385); const-ify things a bit,
15009           use G_N_ELEMENTS instead of hard-coded array size.
15010
15011 2006-06-10  Tim-Philipp Müller  <tim at centricular dot net>
15012
15013         Patch by: Young-Ho Cha  <ganadist at chollian net>
15014
15015         * gst/subparse/samiparse.c: (fix_invalid_entities), (parse_sami):
15016           Fix up broken entities before passing them to libxml *sigh*.
15017           (#343303).
15018           
15019 2006-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
15020
15021         * configure.ac:
15022           back to TRUNK
15023
15024 === release 0.10.8 ===
15025
15026 2006-06-09  Thomas Vander Stichele <thomas at apestaart dot org>
15027
15028         * configure.ac:
15029           releasing 0.10.8, "Moar gij ziet mij nie"
15030
15031 2006-06-07  Thomas Vander Stichele  <thomas at apestaart dot org>
15032
15033         * configure.ac:
15034         * po/af.po:
15035         * po/az.po:
15036         * po/cs.po:
15037         * po/en_GB.po:
15038         * po/hu.po:
15039         * po/it.po:
15040         * po/nb.po:
15041         * po/nl.po:
15042         * po/or.po:
15043         * po/sq.po:
15044         * po/sr.po:
15045         * po/sv.po:
15046         * po/uk.po:
15047         * po/vi.po:
15048         * win32/common/config.h:
15049           0.10.7.2 prerelease
15050
15051 2006-06-07  Thomas Vander Stichele  <thomas at apestaart dot org>
15052
15053         * docs/libs/tmpl/gstaudio.sgml:
15054         * docs/libs/tmpl/gstcolorbalance.sgml:
15055         * docs/libs/tmpl/gstmixer.sgml:
15056         * docs/libs/tmpl/gstringbuffer.sgml:
15057         * docs/libs/tmpl/gsttuner.sgml:
15058         * docs/libs/tmpl/gstxoverlay.sgml:
15059         * gst-libs/gst/audio/audio.c:
15060         * gst-libs/gst/audio/gstringbuffer.c:
15061         * gst-libs/gst/interfaces/colorbalance.c:
15062         * gst-libs/gst/interfaces/mixer.c:
15063         * gst-libs/gst/interfaces/tuner.c:
15064         * gst-libs/gst/interfaces/xoverlay.c:
15065           move last template doc snippets to source code and delete them
15066
15067 2006-06-06  Michael Smith  <msmith@fluendo.com>
15068
15069         * ext/theora/theoraparse.c: (theora_parse_drain_queue_prematurely),
15070         (theora_parse_drain_queue):
15071           Mark DELTA_UNIT on non-keyframes.
15072
15073 2006-06-03  Jan Schmidt  <thaytan@mad.scientist.com>
15074
15075         * gst-libs/gst/audio/gstbaseaudiosink.c:
15076         (gst_base_audio_sink_class_init), (gst_base_audio_sink_setcaps):
15077         * gst-libs/gst/audio/gstbaseaudiosink.h:
15078         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps),
15079         (gst_ring_buffer_samples_done):
15080         * gst-libs/gst/audio/gstringbuffer.h:
15081         Document better the fact that latency_time and buffer_time are values
15082         stored in microseconds, and not the usual GStreamer nanoseconds.
15083         Change the variables (compatibly) that store them from GstClockTime 
15084         to guint64 to make it more clear that they're not storing clock times.
15085         Also, remove the bogus property description that says the user can
15086         specify -1 to get the default value, since that's never been the case.
15087
15088         When computing the default segment size for the ring buffer, make it
15089         an integer number of samples.
15090
15091         When the sub-class indicates a delay greater than the number of
15092         samples we've written return 0 from the audio sink get_time method.
15093
15094 2006-06-02  Michael Smith  <msmith@fluendo.com>
15095
15096         * tests/check/elements/audioconvert.c: (set_channel_positions),
15097         (get_float_mc_caps), (get_int_mc_caps):
15098         * tests/check/elements/audioresample.c:
15099         * tests/check/elements/audiotestsrc.c: (GST_START_TEST):
15100         * tests/check/elements/videorate.c:
15101         * tests/check/elements/videotestsrc.c: (GST_START_TEST):
15102         * tests/check/elements/volume.c:
15103         * tests/check/elements/vorbisdec.c:
15104         * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
15105           Don't busy-wait in tests; this was causing test timeouts very
15106           frequently when running under valgrind.
15107
15108 2006-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
15109
15110         * gst/tcp/README:
15111         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_init),
15112         (gst_multi_fd_sink_remove_client_link),
15113         (gst_multi_fd_sink_client_queue_caps),
15114         (gst_multi_fd_sink_client_queue_buffer),
15115         (gst_multi_fd_sink_handle_client_write),
15116         (gst_multi_fd_sink_render):
15117         * gst/tcp/gstmultifdsink.h:
15118           make multifdsink properly deal with streamheader:
15119           - streamheader is taken from caps
15120           - buffers marked with IN_CAPS are not sent
15121           - streamheaders are sent, on connection, from the caps of the
15122             buffer where the client gets positioned to
15123           - further streamheader changes are done every time the client
15124             will receive a buffer with different caps
15125         * tests/check/elements/multifdsink.c: (GST_START_TEST),
15126         (gst_multifdsink_create_streamheader):
15127           add tests for this
15128
15129 2006-06-02  Michael Smith  <msmith@fluendo.com>
15130
15131         * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
15132           Reinstate limit on channel count. Vorbis does not define the meaning
15133           of > 6 channels, so they're just independent channels. Gstreamer
15134           currently has no mechanism to represent N independent channels.
15135
15136 2006-06-02  Michael Smith  <msmith@fluendo.com>
15137
15138         * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
15139           Don't arbitrarily restrict channel counts and rate in vorbis.
15140           In terms of effects likely on real-world files, this fixes 96kHz
15141           playback of vorbis.
15142
15143 2006-06-02  Michael Smith  <msmith@fluendo.com>
15144
15145         * gst/audioconvert/audioconvert.c: (float):
15146           More correct float->int conversion.
15147
15148 2006-06-02  Michael Smith  <msmith@fluendo.com>
15149
15150         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_perform_seek):
15151           Don't accidently send GST_CLOCK_TIME_NONE as a new segment start
15152           value. Fixes g-critical on trying to play back ogg containing
15153           unknown codec.
15154
15155 2006-06-02  Wim Taymans  <wim@fluendo.com>
15156
15157         * gst/playback/gstplaybasebin.c: (group_create), (group_commit),
15158         (setup_source):
15159         * gst/playback/gstplaybasebin.h:
15160         Make the subtitle detection work from any thread so we don't
15161         deadlock. Fixes #343397.
15162
15163 2006-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
15164
15165         * gst/volume/Makefile.am:
15166           Seriously, it's not *that* hard to get compilation right.  Even
15167           a drunk can do it ! Add LIBOIL CFLAGS and LIBS
15168
15169 2006-06-01  Stefan Kost  <ensonic@users.sf.net>
15170
15171         * gst/volume/gstvolume.c: (volume_choose_func),
15172         (volume_update_real_volume), (gst_volume_class_init),
15173         (gst_volume_init), (volume_process_float), (volume_process_int16),
15174         (volume_process_int16_clamp), (volume_set_caps),
15175         (volume_transform_ip), (plugin_init):
15176         * gst/volume/gstvolume.h:
15177         rewrite the passthrough check, split _int16 and _int16_clamp, fix
15178         another property desc., remove unused param from process function
15179         
15180         * tests/check/elements/volume.c: (volume_suite):
15181         reactivate the passthrough test
15182
15183 2006-06-01  Stefan Kost  <ensonic@users.sf.net>
15184
15185         * ext/alsa/gstalsamixerelement.h:
15186         * ext/alsa/gstalsamixeroptions.h:
15187         * ext/alsa/gstalsamixertrack.h:
15188         * ext/gnomevfs/gstgnomevfssink.h:
15189         * ext/gnomevfs/gstgnomevfssrc.h:
15190         * ext/theora/gsttheoradec.h:
15191         * ext/theora/gsttheoraenc.h:
15192         * ext/theora/gsttheoraparse.h:
15193         * ext/vorbis/vorbisparse.h:
15194         * gst-libs/gst/audio/gstaudioclock.h:
15195         * gst-libs/gst/audio/gstaudiofilter.h:
15196         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
15197         * gst/audioconvert/gstaudioconvert.h:
15198         * gst/audioresample/gstaudioresample.h:
15199         * gst/audiotestsrc/gstaudiotestsrc.h:
15200         * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
15201         * gst/playback/gststreamselector.h:
15202         * gst/tcp/gstmultifdsink.h:
15203         * gst/tcp/gsttcpclientsink.h:
15204         * gst/tcp/gsttcpclientsrc.h:
15205         * gst/tcp/gsttcpserversink.h:
15206         * gst/tcp/gsttcpserversrc.h:
15207         * gst/videorate/gstvideorate.h:
15208         * gst/videoscale/gstvideoscale.h:
15209         * gst/videotestsrc/gstvideotestsrc.h:
15210         * gst/volume/gstvolume.h:
15211         * sys/v4l/gstv4ljpegsrc.h:
15212         * sys/v4l/gstv4lmjpegsink.h:
15213         * sys/v4l/gstv4lmjpegsrc.h:
15214         * sys/v4l/gstv4lsrc.h:
15215         * sys/ximage/ximagesink.h:
15216         * sys/xvimage/xvimagesink.h:
15217         * tests/old/testsuite/alsa/sinesrc.h:
15218         Fix more gobject macros: obj<->klass, GstXXX<->GstXXXClass
15219
15220 2006-05-31  Wim Taymans  <wim@fluendo.com>
15221
15222         * ext/libvisual/visual.c: (gst_visual_reset),
15223         (gst_visual_sink_setcaps), (gst_visual_sink_event),
15224         (gst_visual_src_event), (get_buffer), (gst_visual_chain):
15225         Handle DISCONT.
15226         Use running time before doing QoS.
15227         Handle mono too.
15228
15229 2006-05-31  Thomas Vander Stichele  <thomas at apestaart dot org>
15230
15231         * docs/libs/Makefile.am:
15232           set a magic variable to indicate we know the docs are incomplete
15233
15234 2006-05-30  Sebastien Moutte  <sebastien@moutte.net>
15235
15236         * win32/common/libgstvideo.def:
15237           export gst_video_calculate_display_ratio
15238         * win32/vs6/libgstvideoscale.dsp:
15239           add link to libgstvideo-0.10.lib
15240
15241 2006-05-30  Tim-Philipp Müller  <tim at centricular dot net>
15242
15243         * gst/playback/gstplaybasebin.c: (gen_source_element):
15244           Throw a more comprehensible error for rtsp:// URIs (rather
15245           than erroring out with a negotiation error later on) until
15246           we fix playbin to handle rtspsrc etc.
15247
15248 2006-05-30  Wim Taymans  <wim@fluendo.com>
15249
15250         * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event),
15251         (gst_text_overlay_text_event):
15252         Added some FIXMEs.
15253
15254 2006-05-30  Wim Taymans  <wim@fluendo.com>
15255
15256         * gst/adder/gstadder.c: (gst_adder_class_init), (gst_adder_init),
15257         (gst_adder_request_new_pad), (gst_adder_release_pad):
15258         * gst/adder/gstadder.h:
15259         Implement release_request_pad.
15260         Make padcounter atomic.
15261
15262         * tests/check/elements/adder.c: (GST_START_TEST), (adder_suite):
15263         Added check for release_pad in adder.
15264
15265 2006-05-30  Wim Taymans  <wim@fluendo.com>
15266
15267         * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream):
15268         Fix build again.
15269
15270 2006-05-30  Thomas Vander Stichele  <thomas at apestaart dot org>
15271
15272         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
15273         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
15274         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
15275         (gst_ogg_pad_submit_page), (gst_ogg_chain_new_stream),
15276         (gst_ogg_demux_seek), (gst_ogg_demux_get_data),
15277         (gst_ogg_demux_get_next_page), (gst_ogg_demux_do_seek),
15278         (gst_ogg_demux_bisect_forward_serialno),
15279         (gst_ogg_demux_read_chain), (gst_ogg_demux_find_chains),
15280         (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
15281           add more debugging
15282           clean up printf formats for granulepos and serialno
15283
15284 2006-05-30  Michael Smith  <msmith@fluendo.com>
15285
15286         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
15287         (gst_vorbis_enc_class_init), (gst_vorbis_enc_dispose),
15288         (gst_vorbis_enc_generate_sink_caps), (gst_vorbis_enc_sink_getcaps),
15289         (gst_vorbis_enc_init), (gst_vorbis_enc_buffer_from_header_packet),
15290         (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
15291         * ext/vorbis/vorbisenc.h:
15292           Multi-channel caps negotiation, so we can do proper multichannel
15293           vorbis encoding, negotiated through audioconvert.
15294
15295 2006-05-30  Wim Taymans  <wim@fluendo.com>
15296
15297         * tests/check/elements/adder.c: (test_event_message_received),
15298         (test_play_twice_message_received), (GST_START_TEST),
15299         (adder_suite):
15300         Added check to show that #339935 is fixed with ongoing
15301         adder and collectpads fixes.
15302
15303 2006-05-29  Wim Taymans  <wim@fluendo.com>
15304
15305         * gst/adder/gstadder.c: (gst_adder_request_new_pad):
15306         Don't leak pad name.
15307
15308 2006-05-29  Wim Taymans  <wim@fluendo.com>
15309
15310         * gst/adder/gstadder.c: (gst_adder_query_duration),
15311         (forward_event_func), (forward_event), (gst_adder_src_event):
15312         Fix adder seeking.
15313         Make query/seeking code threadsafe.
15314
15315         * tests/check/Makefile.am:
15316         * tests/check/elements/adder.c: (test_event_message_received),
15317         (GST_START_TEST), (test_play_twice_message_received):
15318         Fix adder test case.
15319
15320 2006-05-29  Tim-Philipp Müller  <tim at centricular dot net>
15321
15322         Patch by: Young-Ho Cha  <ganadist at chollian net>
15323
15324         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
15325         (gst_play_base_bin_init), (gst_play_base_bin_dispose),
15326         (set_encoding_element), (decodebin_element_added_cb),
15327         (decodebin_element_removed_cb), (setup_subtitle), (setup_source),
15328         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
15329         * gst/playback/gstplaybasebin.h:
15330           Add 'subtitle-encoding' property to playbin, so applications can
15331           force a subtitle encoding for non-UTF8 subtitles (#342268).
15332
15333         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init),
15334         (gst_sub_parse_set_property):
15335           Rename recently-added 'encoding' property to 'subtitle-encoding'
15336           (so it can be proxied by playbin/decodebin in a generic way
15337           with less danger of false positives).
15338
15339 2006-05-29  Michael Smith  <msmith@fluendo.com>
15340
15341         * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
15342         (append_with_other_format), (set_structure_widths),
15343         (gst_audio_convert_transform_caps):
15344           Patch from #341562: give more specific audio caps in get_caps, so
15345           that basetransform  can make better decisions on what caps to
15346           negotiate.
15347
15348 2006-05-28  Stefan Kost  <ensonic@users.sf.net>
15349
15350         * tests/check/elements/volume.c:
15351         make it compile again
15352
15353 2006-05-28  Stefan Kost  <ensonic@users.sf.net>
15354
15355         * tests/check/elements/volume.c: (volume_suite):
15356         disable test until #343196 gets resolved
15357
15358 2006-05-28  Stefan Kost  <ensonic@users.sf.net>
15359
15360         * gst/adder/gstadder.c: (gst_adder_get_type):
15361         Make it easier to copy&paste
15362         
15363         * gst/volume/Makefile.am:
15364         * gst/volume/gstvolume.c: (volume_update_real_volume),
15365         (gst_volume_set_volume), (gst_volume_set_mute),
15366         (gst_volume_class_init), (volume_process_int16), (volume_set_caps),
15367         (volume_transform_ip), (volume_update_mute),
15368         (volume_update_volume):
15369         * gst/volume/gstvolume.h:
15370         Add own debug category, move duplicate code to helper function, fix
15371         property texts, add more comments and prepare ffor liboil-goodness
15372         
15373         * tests/check/Makefile.am:
15374         * tests/check/elements/volume.c: (GST_START_TEST), (volume_suite):
15375         add test for mute and passtrough case, be a bit more verbose to track
15376         failure
15377         
15378         * tests/check/generic/states.c: (GST_START_TEST):
15379         catch elements that fail to instantiate
15380
15381 2006-05-28  Edward Hervey  <edward@fluendo.com>
15382
15383         * tests/check/pipelines/simple-launch-lines.c:
15384         * tests/check/pipelines/theoraenc.c:
15385         * tests/check/pipelines/vorbisenc.c:
15386         Comment out tests using parse_launch() if core was built without
15387         parsing capabilities.
15388
15389 2006-05-27  Edward Hervey  <edward@fluendo.com>
15390
15391         * tests/check/Makefile.am:
15392         Extra bonus points for whoever explains to ensonic that you are meant
15393         to test unit tests thoroughly before commiting them, especially if
15394         you know it's going to break.
15395         De-activated element/adder tests.
15396
15397 2006-05-27  Edward Hervey  <edward@fluendo.com>
15398
15399         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
15400         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps):
15401         Marking caps conversion issues as GST_WARNING is way too verbose,
15402         Moving them to GST_LOG.
15403
15404 2006-05-27  Tim-Philipp Müller  <tim at centricular dot net>
15405
15406         * README:
15407           Replace current README (containing the release notes from
15408           some 0.9.x version) with a proper README taken from the core.
15409
15410 2006-05-26  Wim Taymans  <wim@fluendo.com>
15411
15412         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
15413         (vorbis_dec_src_event), (vorbis_dec_sink_event), (vorbis_do_clip),
15414         (vorbis_dec_push), (vorbis_handle_data_packet), (vorbis_dec_chain),
15415         (vorbis_dec_change_state):
15416         Small cleanups.
15417         Add some FIXMEs
15418         Clip output samples to segment boundaries.
15419
15420 2006-05-26  Jan Schmidt  <thaytan@mad.scientist.com>
15421
15422         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
15423         (gst_ximagesink_xcontext_get), (gst_ximagesink_show_frame):
15424         Improve the errors produced on bad output, including some human
15425         readable description strings.
15426         Handle the (theoretical for ximagesink) case where the XServer 
15427         has a different idea about the size required for a particular 
15428         frame and gives us too small a memory allocation.
15429
15430 2006-05-26  Jan Schmidt  <thaytan@mad.scientist.com>
15431
15432         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
15433         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
15434         (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
15435         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
15436         Improve the errors produced on bad output, including some human 
15437         readable description strings.
15438         Handle RGB Xv formats properly by transforming them into our 
15439         big-endian caps description.
15440         Use gst_caps_truncate to ensure that we never try and choose a
15441         non-fixed caps in buffer_alloc.
15442         Handle the case where the XServer has a different idea about the size
15443         required for a particular frame and gives us too small a memory
15444         allocation.
15445         Use -1 to indicate 'no image format', because 0 is a valid XServer
15446         image format number.
15447         Put RGB Xv formats at the end of the caps, so that we always prefer
15448         YUV format frames.
15449         Iterate the available Xv Encodings to determine the maximum width and
15450         height, and then return that in our caps.
15451         (Closes #315312, #337544)
15452
15453 2006-05-25  Jan Schmidt  <thaytan@mad.scientist.com>
15454
15455         * gst/playback/gstdecodebin.c: (remove_fakesink), (pad_probe):
15456         When there is only one unfinished pad and it receives an event that
15457         doesn't match our requirements, we need to set alldone=FALSE so that
15458         the fakesink is not removed yet.
15459
15460 2006-05-25  Tim-Philipp Müller  <tim at centricular dot net>
15461
15462         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
15463           Use gst_type_find_helper_for_buffer() to find the type
15464           of stream from the first packet.
15465
15466         * configure.ac:
15467           Bump requirements to core CVS (needed for vorbis
15468           typefinding to work).
15469
15470 2006-05-24  Edward Hervey  <edward@fluendo.com>
15471
15472         * gst/typefind/gsttypefindfunctions.c: (qt_type_find): 
15473         Added the 'prfl' atom type which MQV (no, it's not a typo) files
15474         contain.  Else they play perfectly fine with qtdemux.
15475
15476 2006-05-23  Stefan Kost  <ensonic@users.sf.net>
15477
15478         * ext/theora/theoradec.c:
15479         * ext/theora/theoraenc.c:
15480         * ext/theora/theoraparse.c: (gst_theora_parse_class_init):
15481         * gst/audiorate/gstaudiorate.c:
15482           make more debug catagories static
15483         
15484         * tests/check/Makefile.am:
15485         * tests/check/elements/adder.c: (message_received),
15486         (test_event_message_received), (GST_START_TEST),
15487         (test_play_twice_message_received), (adder_suite):
15488           added test case for using element twice, extra bonus points for anyone
15489           who can make these test run reliably
15490
15491 2006-05-23  Tim-Philipp Müller  <tim at centricular dot net>
15492
15493         * ext/theora/theoradec.c: (theora_dec_chain):
15494           Make work with time-stamped input buffers that do not
15495           have a granulepos in BUFFER_OFFSET_END (like theora
15496           buffers coming from matroskademux). Fixes #342448.
15497
15498 2006-05-22  Tim-Philipp Müller  <tim at centricular dot net>
15499
15500         Patch by: Peter Kjellerstedt  <pkj at axis com>
15501
15502         * gst/tcp/Makefile.am:
15503           fdstresstest doesn't need Gtk+, fix compilation if 
15504           gtk is not available (#342566).
15505
15506 2006-05-19 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
15507          
15508         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:     
15509           80 line columns
15510           Removed redundant floor()
15511
15512 2006-05-19  Tim-Philipp Müller  <tim at centricular dot net>
15513
15514         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
15515           On second thought, just skip JUNK chunks automatically, so
15516           the caller doesn't have to handle this. Fixes #342345.
15517           Also, return GST_FLOW_UNEXPECTED if we get a short read,
15518           not GST_FLOW_ERROR.
15519
15520 2006-05-19  Tim-Philipp Müller  <tim at centricular dot net>
15521
15522         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
15523           Don't bail out on JUNK chunks with a size of 0 (would try to
15524           pull_range 0 bytes before, which sources don't like too much).
15525           See #342345.
15526
15527 2006-05-19  Jan Schmidt  <thaytan@mad.scientist.com>
15528
15529         * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
15530         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
15531         Use the gstutil scaling function to preserve 64 bits while calculating
15532         output width and height from the display-aspect-ratio. (A continuation
15533         of #341542)
15534
15535 2006-05-19  Jan Schmidt  <thaytan@mad.scientist.com>
15536
15537         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
15538         (gst_xvimagesink_buffer_alloc):
15539         * sys/xvimage/xvimagesink.h:
15540         When performing buffer allocations, remember the caps and image format
15541         we return so that if the same caps are asked for next time we can
15542         return them immediately without doing any caps intersections.
15543
15544 2006-05-18 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
15545          
15546         * gst-libs/gst/rtp/README:
15547           Some new documentation
15548         * gst-libs/gst/rtp/gstrtpbuffer.h:       
15549           Added GST_RTP_PAYLOAD_DYNAMIC_STRING for use by children       
15550         * gst-libs/gst/rtp/gstbasertpaudiopayload.c:     
15551         * gst-libs/gst/rtp/gstbasertpaudiopayload.h:     
15552           New RTP audio base payloader class. Supports frame or sample based
15553           codecs.  Not enabled in Makefile.am until approved.
15554
15555 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
15556
15557         * tests/check/elements/alsa.c: (test_device_property_probe):
15558           Fix test case: don't try to free NULL GValueArray when there
15559           are no devices.
15560
15561 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
15562
15563         * tests/check/Makefile.am:
15564         * tests/check/elements/alsa.c: (test_device_property_probe),
15565         (alsa_suite), (main):
15566           Add simple test that runs a device property probe on alsasrc,
15567           alsasink and alsamixer. Disable valgrind check for now (too
15568           many leaks in libasound, and valgrind ignored my suppressions
15569           additions).
15570
15571 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
15572
15573         * ext/alsa/gstalsadeviceprobe.c: (gst_alsa_get_device_list),
15574         (gst_alsa_device_property_probe_probe_property),
15575         (gst_alsa_device_property_probe_needs_probe),
15576         (gst_alsa_device_property_probe_get_values),
15577         (gst_alsa_type_add_device_property_probe_interface):
15578         * ext/alsa/gstalsadeviceprobe.h:
15579         * ext/alsa/gstalsamixerelement.c:
15580         (gst_alsa_mixer_element_init_interfaces):
15581         * ext/alsa/gstalsamixerelement.h:
15582           Clean up and simplify alsa device probing. Make it actually work
15583           for multiple classes. Don't cache results any longer.
15584
15585         * ext/alsa/gstalsasink.c: (gst_alsasink_init_interfaces),
15586         (gst_alsasink_init):
15587         * ext/alsa/gstalsasrc.c: (gst_alsasrc_dispose),
15588         (gst_alsasrc_interface_supported), (gst_implements_interface_init),
15589         (gst_alsasrc_init_interfaces), (gst_alsasrc_set_property):
15590           Make alsasink and alsasrc implement the GstPropertyProbe interface
15591           for device probing (#342181).
15592           Patch by: Martin Szulecki  <gnomebugzilla at sukimashita com>
15593
15594 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
15595
15596         * gst/subparse/samiparse.c: (handle_start_font):
15597           Don't ignore return value of strtol (++compiler_happiness).
15598
15599 2006-05-17  Tim-Philipp Müller  <tim at centricular dot net>
15600
15601         Patch by: Young-Ho Cha  <ganadist chollian net>
15602
15603         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
15604         (gst_sub_parse_class_init), (gst_sub_parse_init),
15605         (gst_sub_parse_set_property), (gst_sub_parse_get_property),
15606         (convert_encoding):
15607         * gst/subparse/gstsubparse.h:
15608           Add 'encoding' property (#341681).
15609
15610         * gst/subparse/samiparse.c: (characters_sami):
15611           Output is pango markup, so we need to escape text
15612           between tags (#342143).
15613
15614 2006-05-16  Tim-Philipp Müller  <tim at centricular dot net>
15615
15616         * gst-libs/gst/audio/multichannel.c:
15617         (gst_audio_check_channel_positions):
15618           It's okay to have caps with channels=1 and a channel position
15619           different from GST_AUDIO_CHANNEL_POSITION_FRONT_MONO
15620           (deinterleavers might want to keep the position in the caps,
15621           so that they can be re-interleaved again properly later).
15622           Leave check for unexpected 2-channel layouts intact for now.
15623
15624 2006-05-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15625
15626         * gst/tcp/gsttcp.c: (gst_tcp_socket_read):
15627         Return GST_FLOW_UNEXPECTED when we have an eos on the socket so
15628         basesrc can do its job correctly.
15629
15630 2006-05-16  Tim-Philipp Müller  <tim at centricular dot net>
15631
15632         * ext/alsa/Makefile.am:
15633         * ext/alsa/gstalsa.c: (gst_alsa_detect_rates),
15634         (gst_alsa_detect_formats), (get_channel_free_structure),
15635         (caps_add_channel_configuration), (gst_alsa_detect_channels),
15636         (gst_alsa_probe_supported_formats):
15637         * ext/alsa/gstalsa.h:
15638         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
15639           Refactor and improve caps probing code: probe signedness
15640           when we probe the supported formats/widths; set endianness
15641           to the one we actually probed for (ie. cpu endianness).
15642           
15643         * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (gst_alsasrc_getcaps),
15644         (gst_alsasrc_close):
15645         * ext/alsa/gstalsasrc.h:
15646           Implement caps probing for alsasrc.
15647
15648 2006-05-15  Wim Taymans  <wim@fluendo.com>
15649
15650         * ext/theora/theoradec.c: (gst_theora_dec_reset),
15651         (theora_dec_src_query), (theora_dec_src_event),
15652         (theora_dec_sink_event), (theora_handle_comment_packet),
15653         (theora_handle_data_packet), (theora_dec_change_state):
15654         Cleanups, add some G_LIKELY.
15655         Use segment helpers instead of our own wrong code.
15656         Clear queued buffers on seek and READY.
15657
15658         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
15659         (vorbis_dec_convert), (vorbis_dec_src_query),
15660         (vorbis_dec_src_event), (vorbis_dec_sink_event),
15661         (vorbis_handle_comment_packet), (vorbis_dec_push),
15662         (vorbis_handle_data_packet), (vorbis_dec_chain),
15663         (vorbis_dec_change_state):
15664         * ext/vorbis/vorbisdec.h:
15665         Remove old useless packetno variable.
15666         Do position query properly.
15667         Add some G_LIKELY.
15668         Do cleanup of queued buffers in new helper function
15669         and use it.
15670
15671 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
15672
15673         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
15674           Query supported sample rates. Fixes #341732.
15675
15676 2006-05-15  Julien MOUTTE  <julien@moutte.net>
15677
15678         * gst/playback/gstdecodebin.c: (cleanup_decodebin),
15679         (gst_decode_bin_change_state): Make decodebin reusable
15680         when going from PAUSE_TO_READY and then back to PAUSED.
15681         Fixes #331678.
15682
15683 2006-05-15  Wim Taymans  <wim@fluendo.com>
15684
15685         * ext/vorbis/vorbisdec.c: (vorbis_get_query_types),
15686         (vorbis_dec_convert), (vorbis_dec_src_query),
15687         (vorbis_dec_sink_query), (vorbis_dec_src_event),
15688         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
15689         (vorbis_dec_clean_queued), (vorbis_dec_push),
15690         (vorbis_handle_data_packet), (vorbis_dec_change_state):
15691         Cleanups. Use refcounting and DEBUG_OBJECT.
15692         Reset segment on flush, use code methods instead of our
15693         own wrong version.
15694         Fix potential memleak.
15695
15696 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
15697
15698         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
15699         (gst_alsasink_init):
15700         * ext/alsa/gstalsasink.h:
15701           Don't leak allocated snd_output_t structure if there's
15702           more than one alsasink instance at a time (#341873).
15703           Also fix GObject macros in header file.
15704           
15705 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
15706
15707         * gst/subparse/gstsubparse.c:
15708         (gst_sub_parse_data_format_autodetect):
15709           Don't use libxml functions in the typefinding code.
15710
15711 2006-05-15  Wim Taymans  <wim@fluendo.com>
15712
15713         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
15714         Fix seeking performance in the case where a non-header 
15715         packet has a 0 granulepos (busted theora case). 
15716         Fixes #341719
15717         (nvdr: thanks Wim for not mentioning who spotted and fixed it in
15718          the first place, you limelight stealer you)
15719
15720 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
15721
15722         * gst/subparse/gstsubparse.c:
15723         (gst_sub_parse_data_format_autodetect):
15724           Improve SAMI typefinding: handle case where there are
15725           whitespaces or newlines in front of the first <SAMI>
15726           tag (#169936).
15727
15728 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
15729
15730         * configure.ac:
15731           Build video4linux plugin even if there's no XVIDEO, just
15732           without implementing the GstXOverlay interface (#334002).
15733          
15734 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
15735
15736         * configure.ac:
15737         * ext/libvisual/visual.c: (gst_visual_actor_plugin_is_gl),
15738         (plugin_init):
15739           Add tentative support for libvisual-0.4 (#336881).
15740
15741 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
15742
15743         Patch by: Young-Ho Cha <ganadist at chollian net>
15744
15745         * gst/subparse/samiparse.c: (handle_start_font):
15746           Need to map "silver" colour explicitly (#169936).
15747
15748 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
15749
15750         Patch by: Young-Ho Cha  <ganadist at chollian net>
15751
15752         * gst/subparse/Makefile.am:
15753         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
15754         (parser_state_dispose), (gst_sub_parse_data_format_autodetect),
15755         (gst_sub_parse_format_autodetect), (feed_textbuf),
15756         (gst_subparse_type_find), (plugin_init):
15757         * gst/subparse/gstsubparse.h:
15758         * gst/subparse/samiparse.c:
15759         * gst/subparse/samiparse.h:
15760           Add support for SAMI subtitles (#169936).
15761
15762 2006-05-14  Michael Smith  <msmith@fluendo.com>
15763
15764         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_fill_others):
15765           Fix #341696: crash when mixing L+R+C to mono or stereo.
15766         * tests/check/Makefile.am:
15767         * tests/check/elements/audioconvert.c: (set_channel_positions),
15768         (get_float_mc_caps), (get_int_mc_caps), (GST_START_TEST),
15769         (audioconvert_suite):
15770           Add test for the above, including some generic framework bits for
15771           testing multichannel things.
15772
15773 === release 0.10.7 ===
15774
15775 2006-05-14  Jan Schmidt <thaytan@mad.scientist.com>
15776
15777         * configure.ac:
15778           releasing 0.10.7, "Leave the gun"
15779
15780 2006-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
15781
15782         * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
15783         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
15784         Fix the build.
15785
15786 2006-05-12  Jan Schmidt  <thaytan@mad.scientist.com>
15787
15788         * docs/libs/gst-plugins-base-libs-docs.sgml:
15789         * docs/libs/gst-plugins-base-libs-sections.txt:
15790         * gst-libs/gst/video/video.c: (gst_video_calculate_display_ratio):
15791         * gst-libs/gst/video/video.h:
15792         * gst/videoscale/Makefile.am:
15793         * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
15794         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
15795         * tests/check/Makefile.am:
15796         * tests/check/libs/video.c: (GST_START_TEST), (video_suite),
15797         (main):
15798           Fix integer overflow problem with pixel-aspect-ratio calculations
15799           in videoscale and xvimagesink (#341542)
15800
15801 2006-05-12  Tim-Philipp Müller  <tim at centricular dot net>
15802
15803         * gst-libs/gst/tag/gstid3tag.c:
15804           Map GST_IMAGE_TAG to and from ID2v2 APIC frames (#341557).
15805
15806 2006-05-12  Sebastien Moutte  <sebastien@moutte.net>
15807
15808         * win32/MANIFEST:
15809           update win32 files listing
15810
15811 2006-05-11  Thomas Vander Stichele  <thomas at apestaart dot org>
15812
15813         patch by: Sjoerd Simons (sjoerd@luon.net)
15814
15815         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
15816         (group_create), (group_destroy), (add_stream),
15817         (gst_play_base_bin_get_property),
15818         (gst_play_base_bin_get_streaminfo_value_array):
15819         * gst/playback/gstplaybasebin.h:
15820           API: GstPlayBaseBin::stream-info-value-array property
15821           use a more bindings-friendly way of exposing streaminfo
15822           using a GValueArray.  Tested in ipython.
15823           Closes #341114
15824
15825 2006-05-11  Wim Taymans  <wim@fluendo.com>
15826
15827         * gst/playback/gstdecodebin.c: (try_to_link_1), (queue_enlarge),
15828         (queue_underrun_cb), (queue_filled_cb):
15829         Also catch queue underruns but don't do anything yet.
15830         Refactor and comment queue enlarging code a bit.
15831
15832         * gst/playback/gstplaybasebin.c: (queue_overrun),
15833         (queue_threshold_reached), (queue_out_of_data),
15834         (gen_preroll_element):
15835         If a queue over/underruns check that we don't create nasty
15836         deadlocks when the min-threshold is not reached but the
15837         max-bytes is. In those cases disable max-bytes when we
15838         know that the queue is fed timed data.
15839         Add more comments.
15840
15841 2006-05-11  Tim-Philipp Müller  <tim at centricular dot net>
15842
15843         * gst/playback/gstplaybin.c: (gen_audio_element):
15844           Make playbin automatically plug an 'audioresample'
15845           element before the audio sink as well. This solves
15846           problems with sinks that only accept a very specific
15847           sample rate, like esdsink (e.g. #340379).
15848
15849 2006-05-11  Tim-Philipp Müller  <tim at centricular dot net>
15850
15851         * gst/playback/gstplaybasebin.c: (gen_source_element):
15852           Make http sources send special headers so that we receive
15853           icecast metadata if the http stream is an icecast stream
15854           (otherwise the server will just ignore them). This also
15855           means that from now on users will need the 'icydemux'
15856           element from gst-plugins-good installed if they want to
15857           listen to icecast radio streams. (#341432, #333657).
15858
15859 2006-05-11  Thomas Vander Stichele  <thomas at apestaart dot org>
15860
15861         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_remove_client_link),
15862         (gst_multi_fd_sink_new_client), (gst_multi_fd_sink_stop):
15863           remove stupid example from docs - it should come with a simple
15864           C program instead.
15865           Clean up/fix docs
15866         * tests/check/elements/multifdsink.c: (wait_bytes_served),
15867         (fail_if_can_read), (GST_START_TEST),
15868         (gst_multifdsink_create_streamheader), (multifdsink_suite):
15869           add a test for changing streamheader which exposes a bug in
15870           multifdsink
15871
15872 2006-05-11  Michael Smith  <msmith@fluendo.com>
15873
15874         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_init),
15875         (gst_gnome_vfs_src_received_headers_callback):
15876         * ext/gnomevfs/gstgnomevfssrc.h:
15877           Don't set icy-caps unless we have a sane interval value. Move
15878           interval to a local variable; we never use it outside this function.
15879
15880 2006-05-11  Wim Taymans  <wim@fluendo.com>
15881
15882         * sys/ximage/ximagesink.c: (gst_ximagesink_get_type):
15883         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_type):
15884         Register special buffer types along with the objects so
15885         that they are not registered at runtime from N different
15886         streaming threads since they are not threadsafe.
15887
15888 2006-05-10  Thomas Vander Stichele  <thomas at apestaart dot org>
15889
15890         * tests/check/elements/multifdsink.c: (wait_bytes_served),
15891         (GST_START_TEST), (fail_unless_read), (multifdsink_suite):
15892           add two more tests, one doing streamheader
15893
15894 2006-05-10  Thomas Vander Stichele  <thomas at apestaart dot org>
15895
15896         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_stop):
15897           clean up the bufqueue when shutting down
15898         * tests/check/Makefile.am:
15899         * tests/check/elements/multifdsink.c: (setup_multifdsink),
15900         (cleanup_multifdsink), (GST_START_TEST), (multifdsink_suite),
15901         (main):
15902           add a test for the leak that was just fixed
15903
15904 2006-05-10  Wim Taymans  <wim@fluendo.com>
15905
15906         * gst/adder/gstadder.c: (gst_adder_setcaps),
15907         (gst_adder_query_duration), (gst_adder_query), (forward_event),
15908         (gst_adder_src_event), (gst_adder_sink_event),
15909         (gst_adder_class_init), (gst_adder_finalize),
15910         (gst_adder_request_new_pad), (gst_adder_collected):
15911         * gst/adder/gstadder.h:
15912         Updated some docs. Added comments and FIXMEs all over the place.
15913         Improve debugging info.
15914         Fix leak on finalize by not calling the parent.
15915         Implement duration query.
15916         Make event forwarding threadsafe.
15917         Correctly send NEWSEGMENT at start and after flush.
15918         Handle EOS correctly.
15919         Post error when not negotiated.
15920
15921         * tests/check/elements/adder.c: (GST_START_TEST):
15922         Added FIXME in the test.
15923
15924 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
15925
15926         * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
15927         (gst_text_overlay_halign_get_type),
15928         (gst_text_overlay_wrap_mode_get_type):
15929         * ext/theora/theoradec.c: (theora_handle_type_packet),
15930         (theora_handle_data_packet):
15931         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
15932         (theora_enc_sink_setcaps), (theora_enc_chain):
15933         * gst-libs/gst/cdda/gstcddabasesrc.c:
15934         (gst_cdda_base_src_mode_get_type):
15935         * gst/audiotestsrc/gstaudiotestsrc.c:
15936         (gst_audiostestsrc_wave_get_type):
15937         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
15938         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
15939         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
15940         (gst_sync_method_get_type), (gst_unit_type_get_type),
15941         (gst_client_status_get_type):
15942         * gst/videoscale/gstvideoscale.c:
15943         (gst_video_scale_method_get_type):
15944         * gst/videotestsrc/gstvideotestsrc.c:
15945         (gst_video_test_src_pattern_get_type):
15946         * gst/videotestsrc/videotestsrc.c: (paint_setup_I420),
15947         (paint_setup_YV12), (paint_setup_YUY2), (paint_setup_UYVY),
15948         (paint_setup_YVYU), (paint_setup_IYU2), (paint_setup_Y41B),
15949         (paint_setup_Y42B), (paint_setup_Y800), (paint_setup_YVU9),
15950         (paint_setup_YUV9), (paint_setup_RGB888), (paint_setup_BGR888),
15951         (paint_setup_RGB565), (paint_setup_xRGB1555):
15952           Const-ify GEnumValue and GFlagsValue arrays. Use
15953           GST_ROUND_UP_* macros instead of home-made ones.
15954
15955 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
15956
15957         * configure.ac:
15958           Require core CVS for the new newsegment stuff.
15959
15960 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
15961
15962         Patch by: Sjoerd Simons  <sjoerd at luon net>
15963
15964         * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type):
15965           Register nick for enum value (#341160).
15966
15967 2006-05-09  Stefan Kost  <ensonic@users.sf.net>
15968
15969         * gst/typefind/gsttypefindfunctions.c: (m4a_type_find),
15970         (plugin_init):
15971          backout typefind patch #340375
15972          
15973         * tests/check/elements/adder.c: (message_received),
15974         (GST_START_TEST), (adder_suite):
15975           redo, signal-handling of test
15976
15977 2006-05-09  Wim Taymans  <wim@fluendo.com>
15978
15979         * gst/adder/gstadder.c: (gst_adder_request_new_pad),
15980         (gst_adder_collected):
15981         * gst/adder/gstadder.h:
15982         Remove bogus segment merging and forwarding, we don't
15983         care about timestamps anyway and we just produce a
15984         continuous stream. 
15985         Also create a nice NEWSEGMENT event when we start.
15986         Use _scale_int some more.
15987
15988 2006-05-09  Edward Hervey  <edward@fluendo.com>
15989
15990         * tests/icles/stress-xoverlay.c:
15991         Fix if core was built without parsing support.
15992
15993 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
15994
15995         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
15996           Add SEDG (Samsung MPEG-4) fourcc.
15997
15998 2006-05-09  Edward Hervey  <edward@fluendo.com>
15999
16000         * tests/icles/stress-xoverlay.c:
16001         * tests/examples/volume/volume.c:
16002         Fix if core was built without parsing support.
16003
16004         * tests/examples/seek/seek.c:
16005         Disable the parse_launch example if core was built without parsing
16006         support.
16007
16008 2006-05-08  Edward Hervey  <edward@fluendo.com>
16009
16010         * autogen.sh: (CONFIGURE_DEF_OPT): 
16011         libtoolize on Darwin/MacOSX is called glibtoolize
16012
16013 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
16014
16015         * tests/check/Makefile.am:
16016         * tests/check/elements/adder.c: (event_loop), (GST_START_TEST):
16017           Disable the adder test, until the build-slaves posses the kindness to 
16018           either like it or to give valid reason for not doing so 
16019
16020 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
16021
16022         * tests/check/elements/adder.c: (event_loop), (GST_START_TEST),
16023         (adder_suite):
16024           Shuffle NULL state change around and raise timeout more
16025
16026 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
16027
16028         * gst/typefind/gsttypefindfunctions.c: (mp4_find_box),
16029         (mp4_type_find), (plugin_init):
16030           Add typefind to distinguish between "audio/x-m4a" and new type
16031           "video/mp4". Fixes #340375
16032
16033         * tests/check/elements/adder.c: (adder_suite):
16034           Raise timeout to make buildbot happy
16035
16036 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
16037
16038         * gst/adder/gstadder.c: (gst_adder_sink_event),
16039         (gst_adder_request_new_pad), (gst_adder_change_state):
16040         * gst/adder/gstadder.h:
16041         * tests/check/Makefile.am:
16042         * tests/check/elements/adder.c: (event_loop), (GST_START_TEST),
16043         (adder_suite), (main):
16044           Add sink-event handling to adder. It tries to merge incomming
16045           newsegment-events. Added test to check if segment_done is comming
16046           through. Fixes #340060
16047
16048 2006-05-05  Andy Wingo  <wingo@pobox.com>
16049
16050         * ext/theora/theoraparse.c (gst_theora_parse_init)
16051         (theora_parse_src_convert, theora_parse_src_query):
16052         * ext/vorbis/vorbisparse.c (gst_vorbis_parse_init)
16053         (vorbis_parse_convert, vorbis_parse_src_query): Add convert and
16054         query functions on the source pads of the theora and vorbis parse
16055         elements. Fixes position querying when doing a remux.
16056
16057 2006-05-05  Michael Smith  <msmith@fluendo.com>
16058
16059         * ext/theora/theoraparse.c: (parse_granulepos),
16060         (theora_parse_drain_queue_prematurely),
16061         (theora_parse_queue_buffer), (theora_parse_sink_event):
16062           Fix flushing.
16063           Fix invalid granulepos outputs when starting with a non-keyframe.
16064
16065 2006-05-05  Jan Schmidt  <thaytan@mad.scientist.com>
16066
16067         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find),
16068         (mpeg1_sys_type_find), (ogganx_type_find), (sw_data_destroy):
16069         Rearrange MPEG system stream detection, fixing some memleaks in the
16070         process.
16071         Constify the data for STARTS_WITH and RIFF helper handlers. Make sure
16072         they clean up their data correctly.
16073         Remove unused ogganx caps and move the 'is_annodex' check to inside
16074         the 'is_ogg' if statement.
16075
16076 2006-05-05  Wim Taymans  <wim@fluendo.com>
16077
16078         * gst/playback/gstdecodebin.c: (cleanup_decodebin):
16079         Properly remove ghostpads. Fixes #340392
16080
16081 2006-05-04  David Schleef  <ds@schleef.org>
16082
16083         * gst/typefind/gsttypefindfunctions.c:
16084
16085 2006-05-03  Jan Schmidt  <thaytan@mad.scientist.com>
16086
16087         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
16088         (mpeg_ts_probe_headers), (mpeg_ts_type_find):
16089
16090         When typefinding an MP3 in push-based mode, don't penalise the
16091         probability down to 74% when we found 5 valid frames just because we
16092         can't peek the end of the file.
16093
16094         Make the probability for detecting MPEG Transport Streams based on the
16095         number of sequential headers we successfully detected.
16096
16097 2006-05-03  Wim Taymans  <wim@fluendo.com>
16098
16099         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
16100         (vorbis_dec_push), (vorbis_dec_chain):
16101         Still produce an error when we receive an empty packet.
16102
16103 2006-05-03  Wim Taymans  <wim@fluendo.com>
16104
16105         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
16106         (gst_ogg_chain_mark_discont), (gst_ogg_chain_new_stream),
16107         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek):
16108         Mark buffers with DISCONT after seek and after activating new
16109         chains.
16110
16111         * ext/theora/gsttheoradec.h:
16112         * ext/theora/theoradec.c: (gst_theora_dec_reset),
16113         (theora_get_query_types), (theora_dec_sink_event),
16114         (theora_dec_push), (theora_handle_data_packet), (theora_dec_chain),
16115         (theora_dec_change_state):
16116         Fix frame counter.
16117         Detect and mark DISCONT buffers.
16118
16119         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
16120         (vorbis_dec_sink_event), (vorbis_dec_push), (vorbis_dec_chain),
16121         (vorbis_dec_change_state):
16122         * ext/vorbis/vorbisdec.h:
16123         Use GstSegment.
16124         Detect and mark DISCONT buffers.
16125         Don't crash on 0 sized buffers.
16126
16127 2006-05-03  Wim Taymans  <wim@fluendo.com>
16128
16129         * gst/volume/gstvolume.c: (volume_funcfind), (volume_set_caps),
16130         (volume_transform_ip):
16131         Increase "volume" property to 10.0. Fixes #340369.
16132         Set the process function to NULL when capsnego fails so that
16133         we properly error out.
16134
16135 2006-05-02  Stefan Kost  <ensonic@users.sf.net>
16136
16137         * gst/playback/gstplaybin.c: (add_sink):
16138         * gst/playback/test.c: (main):
16139         * gst/playback/test5.c: (dump_element_stats):
16140         * gst/playback/test6.c: (main):
16141           free caps using gst_caps_unref, don't leak caps-strings
16142
16143 2006-05-01  Tim-Philipp Müller  <tim at centricular dot net>
16144
16145         * gst/typefind/gsttypefindfunctions.c: (musepack_type_find),
16146         (plugin_init):
16147           Refine musepack typefinding a bit. Return MAXIMUM
16148           probability when we detect stream version 7 to make
16149           sure the mpeg audio typefinder doesn't trump us.
16150
16151 2006-04-29  Tim-Philipp Müller  <tim at centricular dot net>
16152
16153         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
16154           Protect against unexpected NULL strf_data buffer.
16155
16156 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
16157
16158         * tests/check/elements/audioconvert.c: (verify_convert),
16159         (GST_START_TEST):
16160           interpret the out[] buffer in the order the bytes are actually
16161           put in, which is LITTLE_ENDIAN, not BYTE_ORDER.
16162           Other tests should use BYTE_ORDER since the array is filled in
16163           with actual values
16164
16165 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
16166
16167         * tests/check/elements/audioconvert.c: (verify_convert),
16168         (GST_START_TEST):
16169           when a test fails, give an indication of which it is
16170
16171 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
16172
16173         * gst-libs/gst/cdda/gstcddabasesrc.c:
16174           compile fix; strtol() needs <stdlib.h>
16175
16176 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
16177
16178         * ext/alsa/gstalsamixerelement.c:
16179         * ext/alsa/gstalsasrc.c:
16180         * ext/cdparanoia/gstcdparanoiasrc.c:
16181         * ext/gnomevfs/gstgnomevfssink.c:
16182         * ext/gnomevfs/gstgnomevfssrc.c:
16183         * ext/ogg/gstoggdemux.c:
16184         * ext/ogg/gstoggmux.c:
16185         * ext/ogg/gstoggparse.c:
16186         * ext/ogg/gstogmparse.c:
16187         * ext/pango/gstclockoverlay.c:
16188         * ext/pango/gsttextoverlay.c:
16189         * ext/pango/gsttextrender.c:
16190         * ext/pango/gsttimeoverlay.c:
16191         * ext/theora/theoradec.c:
16192         * ext/theora/theoraenc.c:
16193         * ext/vorbis/vorbisdec.c:
16194         * ext/vorbis/vorbisenc.c:
16195         * gst-libs/gst/audio/gstaudiofilter.c:
16196         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
16197         * gst/audioconvert/gstaudioconvert.c:
16198         * gst/audiorate/gstaudiorate.c:
16199         * gst/audioresample/gstaudioresample.c:
16200         * gst/audiotestsrc/gstaudiotestsrc.c:
16201         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
16202         * gst/playback/gstdecodebin.c:
16203         * gst/playback/gstplaybin.c:
16204         * gst/playback/gststreamselector.c:
16205         * gst/subparse/gstsubparse.c:
16206         * gst/tcp/gstmultifdsink.c:
16207         * gst/tcp/gsttcpclientsink.c:
16208         * gst/tcp/gsttcpclientsrc.c:
16209         * gst/tcp/gsttcpserversink.c:
16210         * gst/tcp/gsttcpserversrc.c:
16211         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
16212         * gst/videorate/gstvideorate.c:
16213         * gst/videoscale/gstvideoscale.c:
16214         * gst/videotestsrc/gstvideotestsrc.c:
16215         * gst/volume/gstvolume.c:
16216         * sys/v4l/gstv4ljpegsrc.c:
16217         * sys/v4l/gstv4lmjpegsink.c:
16218         * sys/v4l/gstv4lmjpegsrc.c:
16219         * sys/v4l/gstv4lsrc.c:
16220         * sys/ximage/ximagesink.c:
16221         * sys/xvimage/xvimagesink.c:
16222         * tests/check/libs/cddabasesrc.c:
16223           make GstElementDetails const
16224
16225 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
16226
16227         * gst/adder/gstadder.c: (gst_adder_setcaps), (gst_adder_src_event),
16228         (gst_adder_init):
16229           send events from src-pad to all sink-pads fixes #338657
16230
16231 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
16232
16233         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps),
16234         (alsasink_parse_spec):
16235           query width capabilities from alsa, fixes #338919
16236
16237 2006-04-28  Wim Taymans  <wim@fluendo.com>
16238
16239         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
16240         (gst_multi_fd_sink_remove_client_link):
16241         * gst/tcp/gstmultifdsink.h:
16242         Fix race condition in multifdsink that can lead to spurious 
16243         duplicate clients. this patch adds a new signal that is fired when
16244         multifdsink has removed all references to the fd.
16245         Fixes #339574.
16246         Updated documentation.
16247         API: client-fd-removed signal added
16248
16249 2006-04-28  Michael Smith  <msmith@fluendo.com>
16250
16251         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_get_stats):
16252           When asking g_value_array_new to prealloc elements, we may as well
16253           ask for the right number of elements.
16254
16255 2006-04-28  Wim Taymans  <wim@fluendo.com>
16256
16257         * gst-libs/gst/audio/gstbaseaudiosink.c:
16258         (gst_base_audio_sink_drain), (gst_base_audio_sink_event),
16259         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
16260         patch to make timestamp checking more tollerant to rounding 
16261         errors given that real discontinuities are to be marked on
16262         buffers. Fixes some asf files and #338778.
16263         Also avoid some crashers when we receive an event in the 
16264         NULL state.
16265
16266 2006-04-28  Michael Smith  <msmith@fluendo.com>
16267
16268         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
16269         (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
16270         (gst_gnome_vfs_src_get_property),
16271         (gst_gnome_vfs_src_send_additional_headers_callback),
16272         (gst_gnome_vfs_src_received_headers_callback),
16273         (gst_gnome_vfs_src_create), (gst_gnome_vfs_src_start),
16274         (gst_gnome_vfs_src_stop):
16275         * ext/gnomevfs/gstgnomevfssrc.h:
16276           Remove ICY handling (mostly) from gnomevfssrc, in favour of
16277           proper shared support within icydemux.
16278
16279 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
16280
16281         * gst/videorate/gstvideorate.c: (gst_video_rate_reset),
16282         (gst_video_rate_swap_prev), (gst_video_rate_chain):
16283           fix up docs
16284           fix a leak when no caps negotiated
16285           fix counting of input frames
16286         * tests/check/elements/.cvsignore:
16287         * tests/check/elements/videorate.c: (assert_videorate_stats),
16288         (GST_START_TEST), (videorate_suite):
16289           add tests for these
16290
16291 2006-04-28  Wim Taymans  <wim@fluendo.com>
16292
16293         * gst-libs/gst/audio/gstringbuffer.c:
16294         (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
16295         (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
16296         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
16297         (gst_ring_buffer_pause), (gst_ring_buffer_stop),
16298         (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
16299         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
16300         (gst_ring_buffer_commit), (gst_ring_buffer_read),
16301         (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
16302         (gst_ring_buffer_clear), (gst_ring_buffer_may_start):
16303         Check arguments passed to public functions instead of
16304         crashing.
16305
16306 2006-04-28  Wim Taymans  <wim@fluendo.com>
16307
16308         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
16309         (gst_base_audio_src_get_time), (gst_base_audio_src_create):
16310         GstBaseAudioSrc must be live or it does not work.
16311
16312         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audio_src_init):
16313         Don't set live to TRUE as this is the default in the parentclass.
16314
16315 2006-04-28  Wim Taymans  <wim@fluendo.com>
16316
16317         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps),
16318         (gst_video_scale_fixate_caps), (gst_video_scale_src_event):
16319         Videoscale doesn't pass on pixel-aspect ratio. Handle all
16320         fixation cases better. Fixes #338991
16321
16322 2006-04-28  Wim Taymans  <wim@fluendo.com>
16323
16324         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
16325         Handle 0/1 framerate correctly Fixes #331901.
16326
16327 2006-04-28  Wim Taymans  <wim@fluendo.com>
16328
16329         * tests/check/elements/audioconvert.c: (get_float_caps),
16330         (GST_START_TEST), (audioconvert_suite):
16331         Added check for correct clipping when doing float samples
16332         in audioconvert.
16333
16334 2006-04-28  Wim Taymans  <wim@fluendo.com>
16335
16336         * gst/videorate/gstvideorate.c: (gst_video_rate_event),
16337         (gst_video_rate_chain):
16338         Print more debugging info.
16339
16340 2006-04-28  Wim Taymans  <wim@fluendo.com>
16341
16342         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
16343         (resample_set_state_from_caps):
16344         Add support for other formats audioresample can handle such as
16345         32 bits in and float and 64 bits float. Fixes #301759
16346
16347 2006-04-28  Wim Taymans  <wim@fluendo.com>
16348
16349         * gst/audioconvert/audioconvert.c: (float):
16350         correctly clip float samples > 1.0. Fixes #338718
16351
16352 2006-04-28  Tim-Philipp Müller  <tim at centricular dot net>
16353
16354         Patch by: Young-Ho Cha  <ganadist at chollian net>
16355
16356         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
16357         (gst_text_overlay_render_text):
16358           Don't strip newlines from the text. Also, center lines
16359           within multi-line paragraphs (#339405).
16360
16361 2006-04-28  Tim-Philipp Müller  <tim at centricular dot net>
16362
16363         * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find):
16364           Fix wavpack typefinding to work in more cases (don't peek
16365           for chunks of multiple hundred kBs at once, but process
16366           things step-by-step in smaller units). Fixes #339786.
16367
16368 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
16369
16370         * configure.ac:
16371           back to HEAD
16372
16373 === release 0.10.6 ===
16374
16375 2006-04-28  Thomas Vander Stichele <thomas at apestaart dot org>
16376
16377         * configure.ac:
16378           releasing 0.10.6, "Chao"
16379
16380 2006-04-26  David Schleef  <ds@schleef.org>
16381
16382         * gst/videoscale/gstvideoscale.c: Add call to oil_init().
16383           Fixes #338897.
16384
16385 2006-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
16386
16387         * configure.ac:
16388         * win32/common/config.h:
16389           new prerelease
16390
16391 2006-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
16392
16393         patch by: Wim Taymans
16394
16395         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
16396         (gst_ogg_demux_perform_seek):
16397           make sure correct newsegments are sent, so that the decoder
16398           and the demuxer agree on timestamps.  Fixes playback of a lot
16399           of Ogg files that do not start from 0.  Fixes #339833.
16400
16401 2006-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
16402
16403         Patch by: Edward Hervey  <edward@fluendo.com>
16404
16405         * gst/videorate/gstvideorate.c: (gst_video_rate_chain):
16406         * tests/check/Makefile.am:
16407         * tests/check/elements/videorate.c: (assert_videorate_stats),
16408         (setup_videorate), (cleanup_videorate), (GST_START_TEST),
16409         (videorate_suite), (main):
16410           Fix an infinite loop if frames are passed in with wrongly ordered
16411           timestamps.  Fixes #339013.
16412
16413 2006-04-22  Thomas Vander Stichele  <thomas at apestaart dot org>
16414
16415         Patch by: Tim-Philipp Müller  <tim at centricular dot net>
16416
16417         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
16418           fix typefinding on some ISO files.  Fixes #339212.
16419
16420 2006-04-22  Thomas Vander Stichele  <thomas at apestaart dot org>
16421
16422         Patch by: Tim-Philipp Müller  <tim at centricular dot net>
16423
16424         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
16425           add another H264 fourcc.  Fixes #339047.
16426
16427 2006-04-22  Thomas Vander Stichele  <thomas at apestaart dot org>
16428
16429         Patch by: Jan Schmidt
16430
16431         * gst/playback/gststreamselector.c:
16432         (gst_stream_selector_bufferalloc):
16433           Restore old StreamSelector behaviour.
16434           Fixes #338419.
16435
16436 2006-04-12  Thomas Vander Stichele  <thomas at apestaart dot org>
16437
16438         * configure.ac:
16439         * win32/common/config.h:
16440           prerelease
16441
16442 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
16443
16444         Patch by: Antoine Tremblay  <hexa00 at gmail dot com>
16445
16446         * gst-libs/gst/rtp/gstbasertpdepayload.c:
16447         (gst_base_rtp_depayload_finalize), (gst_base_rtp_depayload_push):
16448           Fix some memory leaks: on finalize, free buffers left in the queue
16449           before destroying the queue; in _push(), unref rtp_buf even if
16450           the process vfunc returned a NULL buffer as output buffer (#337548);
16451           demote some recuring debug messages to LOG level.
16452
16453 2006-04-11  Wim Taymans  <wim@fluendo.com>
16454
16455         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
16456         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
16457         (gst_ogg_chain_free), (gst_ogg_demux_sink_event),
16458         (gst_ogg_demux_loop):
16459         More cleanups.
16460         Respect segment stop when emiting EOS or SEGMENT_DONE.
16461         Fixes (#337945).
16462
16463 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
16464
16465         * gst/playback/gststreamselector.c:
16466         (gst_stream_selector_get_property):
16467           Don't leak pad name.
16468
16469 2006-04-10  Michael Smith  <msmith@fluendo.com>
16470
16471         * tests/check/Makefile.am:
16472         * tests/check/gst-plugins-base.supp:
16473           Suppress an old libtheora bug (fixed in more recent versions), so 
16474           that FC4 buildslaves can pass.
16475
16476 2006-04-10  Wim Taymans  <wim@fluendo.com>
16477
16478         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
16479         (gst_ogg_demux_receive_event), (gst_ogg_pad_event),
16480         (gst_ogg_demux_init), (gst_ogg_demux_finalize),
16481         (gst_ogg_demux_sink_event), (gst_ogg_demux_get_data),
16482         (gst_ogg_demux_loop):
16483         Don't leak events.
16484         Remember what error we got when finding chains, if we
16485         were shutdown, that would not be an error.
16486
16487 2006-04-10  Wim Taymans  <wim@fluendo.com>
16488
16489         * gst-libs/gst/audio/gstbaseaudiosink.c:
16490         (gst_base_audio_sink_event):
16491         Starting the ringbuffer when we did not acquire it can cause
16492         a deadlock, is pointless and causes nasty things for
16493         subclasses. 
16494         Fixes gst-launch audiotestsrc num-buffers=0 ! alsasink.
16495
16496 2006-04-10  Wim Taymans  <wim@fluendo.com>
16497
16498         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
16499         (gst_ogg_demux_receive_event), (gst_ogg_pad_event),
16500         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
16501         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
16502         (gst_ogg_demux_deactivate_current_chain),
16503         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
16504         (gst_ogg_demux_bisect_forward_serialno),
16505         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain):
16506         Add some more debugging.
16507
16508 2006-04-10  Wim Taymans  <wim@fluendo.com>
16509
16510         * ext/theora/theoradec.c: (theora_dec_src_event),
16511         (theora_handle_data_packet):
16512         Some more debug info.
16513
16514         * tests/examples/seek/seek.c: (start_seek), (main):
16515         Print element messages too.
16516
16517 2006-04-09  Sebastien Moutte  <sebastien@moutte.net>
16518
16519         * gst/audioresample/debug.h:
16520           replace debug macros with variable number of parameters
16521           by a simple alias to gstreamer standard debug macros 
16522          (#define RESAMPLE_ERROR GST_ERROR, __VA_ARGS__ is not
16523           supported by MSVC 6.0 and 7.1)
16524         * gst/audioresample/resample.h:
16525           define M_PI and rint for WIN32
16526         * win32/common/libgstaudio.def:
16527         * win32/common/libgstriff.def:
16528         * win32/common/libgsttag.def:
16529         * win32/common/libgstvideo.def:
16530           add new exported functions
16531         * win32/vs6:
16532           update project files
16533
16534 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
16535
16536         * ext/alsa/gstalsamixeroptions.c:
16537         (gst_alsa_mixer_options_class_init):
16538         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init):
16539         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_class_init):
16540         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init):
16541         * ext/ogg/gstoggparse.c: (gst_ogg_parse_class_init):
16542         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_class_init):
16543         * gst-libs/gst/audio/gstaudiofilter.c:
16544         (gst_audio_filter_class_init):
16545         * gst-libs/gst/audio/gstaudiosink.c:
16546         (gst_audioringbuffer_class_init):
16547         * gst-libs/gst/audio/gstaudiosrc.c:
16548         (gst_audioringbuffer_class_init):
16549         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_class_init):
16550         * gst-libs/gst/interfaces/colorbalancechannel.c:
16551         (gst_color_balance_channel_class_init):
16552         * gst-libs/gst/interfaces/mixeroptions.c:
16553         (gst_mixer_options_class_init):
16554         * gst-libs/gst/interfaces/mixertrack.c:
16555         (gst_mixer_track_class_init):
16556         * gst-libs/gst/interfaces/tunerchannel.c:
16557         (gst_tuner_channel_class_init):
16558         * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_class_init):
16559         * gst-libs/gst/netbuffer/gstnetbuffer.c:
16560         (gst_netbuffer_class_init):
16561         * gst-libs/gst/rtp/gstbasertppayload.c:
16562         (gst_basertppayload_class_init):
16563         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
16564         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
16565         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
16566         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init):
16567         * gst/playback/gststreamselector.c:
16568         (gst_stream_selector_class_init):
16569         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
16570         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
16571         * sys/v4l/gstv4lcolorbalance.c:
16572         (gst_v4l_color_balance_channel_class_init):
16573         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_class_init):
16574         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
16575         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
16576         * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_channel_class_init),
16577         (gst_v4l_tuner_norm_class_init):
16578         * sys/ximage/ximagesink.c: (gst_ximagesink_class_init):
16579         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_class_init):
16580         * tests/old/testsuite/alsa/sinesrc.c: (sinesrc_class_init):
16581         Fix #337365 (g_type_class_ref <-> g_type_class_peek_parent)
16582
16583 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
16584
16585         * ext/pango/gsttextrender.h:
16586         * gst-libs/gst/audio/gstaudiosink.h:
16587         * gst-libs/gst/audio/gstaudiosrc.h:
16588         * gst-libs/gst/audio/gstbaseaudiosink.h:
16589         * gst-libs/gst/audio/gstbaseaudiosrc.h:
16590         * gst-libs/gst/audio/gstringbuffer.h:
16591         * gst-libs/gst/rtp/gstbasertpdepayload.h:
16592         * gst-libs/gst/rtp/gstbasertppayload.h:
16593         * gst-libs/gst/video/gstvideofilter.h:
16594         * gst-libs/gst/video/gstvideosink.h:
16595         * gst/playback/gstplaybasebin.h:
16596         * gst/tcp/gstmultifdsink.h:
16597         * sys/v4l/gstv4lelement.h:
16598         Fix broken GObject macros
16599
16600 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
16601
16602         * ext/alsa/gstalsasink.c: (set_hwparams), (alsasink_parse_spec):
16603         More debug to trace why my USB headset is not working with gst
16604
16605 2006-04-07  Jan Schmidt  <thaytan@mad.scientist.com>
16606
16607         * gst/playback/gstplaybasebin.c: (group_destroy):
16608         Clean up our group elements properly in the case where it never 
16609         got committed - it still got added unconditionally to the bin.
16610
16611 2006-04-07  Wim Taymans  <wim@fluendo.com>
16612
16613         * ext/theora/theoradec.c: (theora_dec_sink_event),
16614         (theora_handle_data_packet), (theora_dec_chain):
16615         Unref unhandled events.
16616         Protect against empty buffers.
16617         Perform QoS on running time.
16618
16619 2006-04-07  Michael Smith  <msmith@fluendo.com>
16620
16621         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_set_header_on_caps),
16622         (gst_vorbis_enc_chain):
16623           Remove leaks from vorbisenc.
16624           Mostly minor changes, the only significant one is that now the
16625           buffers we set as 'streamheader' on the caps are copies of the
16626           original buffers, to avoid circular refcounting problems.
16627
16628 2006-04-07  Jan Schmidt  <thaytan@mad.scientist.com>
16629
16630         * gst/playback/gstplaybasebin.c: (mute_stream), (setup_substreams):
16631           Don't remove our mute-probe if someone else already did so.
16632           Don't set a 2nd one if there is already one pending on the pad.
16633
16634         * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
16635         (do_playbin_seek):
16636           When a seek fails, ensure that playbin is still set back to playing.
16637           
16638         * gst/typefind/gsttypefindfunctions.c: (mpeg_ts_probe_headers),
16639         (mpeg_ts_type_find), (plugin_init):
16640           Add a typefind function for mpeg-ts streams. (Closes: #336617)
16641
16642 2006-04-06  Andy Wingo  <wingo@pobox.com>
16643
16644         * gst/videorate/gstvideorate.c (gst_video_rate_reset) 
16645         (gst_video_rate_init): Caps-related parameters should not be reset
16646         by a flush -- move their inits to the instance init function.
16647         (gst_video_rate_flush_prev): Don't complain if gst_pad_push
16648         is not OK, just return the result.
16649
16650         * gst/audiotestsrc/gstaudiotestsrc.c
16651         (gst_audio_test_src_class_init)
16652         (gst_audio_test_src_get_times): Re-enable is-live=true, as was
16653         broken by Stefan's commit on 24 March.
16654
16655         * ext/ogg/gstoggmux.c (gst_ogg_mux_push_buffer): Set caps on
16656         buffers being pushed out. Fixes oggmux ! multifdsink.
16657
16658 2006-04-05  Tim-Philipp Müller  <tim at centricular dot net>
16659
16660         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
16661         (gst_vorbis_dec_init), (vorbis_dec_finalize):
16662         * ext/vorbis/vorbisdec.h:
16663         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_add_interfaces),
16664         (gst_vorbis_enc_base_init), (gst_vorbis_enc_class_init),
16665         (gst_vorbis_enc_sink_setcaps), (gst_vorbis_enc_convert_src),
16666         (gst_vorbis_enc_convert_sink), (gst_vorbis_enc_get_query_types),
16667         (gst_vorbis_enc_src_query), (gst_vorbis_enc_sink_query),
16668         (gst_vorbis_enc_init), (gst_vorbis_enc_get_tag_value),
16669         (gst_vorbis_enc_metadata_set1), (gst_vorbis_enc_set_metadata),
16670         (gst_vorbis_enc_setup), (gst_vorbis_enc_clear),
16671         (gst_vorbis_enc_buffer_from_packet),
16672         (gst_vorbis_enc_buffer_from_header_packet),
16673         (gst_vorbis_enc_push_buffer), (gst_vorbis_enc_push_packet),
16674         (gst_vorbis_enc_set_header_on_caps), (gst_vorbis_enc_sink_event),
16675         (gst_vorbis_enc_chain), (gst_vorbis_enc_output_buffers),
16676         (gst_vorbis_enc_get_property), (gst_vorbis_enc_set_property),
16677         (gst_vorbis_enc_change_state):
16678         * ext/vorbis/vorbisenc.h:
16679           Remove left-over 0.8 cruft; use GST_DEBUG_FUNCPTR; make
16680           vorbisenc adhere to the official nomenclature; use boilerplate
16681           macro.
16682
16683 2006-04-04  Andy Wingo  <wingo@pobox.com>
16684
16685         * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
16686         Whoops, fix bug introduced. Bad hacker!
16687         
16688         * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
16689         Properly handle the case where you get EOS before any buffers are
16690         received. Use gst_buffer_make_metadata_writable where appropriate.
16691
16692         * ext/theora/theoradec.c (theora_handle_data_packet): This value
16693         is often negative -- make it signed so as not to wrap around.
16694         Fixes segfaults introduced on 9 March.
16695
16696 2006-04-03  Wim Taymans  <wim@fluendo.com>
16697
16698         * ext/theora/gsttheoradec.h:
16699         * ext/theora/theoradec.c: (theora_dec_src_event):
16700         Don't try to store a gdouble in a gboolean.
16701         Small cleanups.
16702
16703 2006-04-03  Michael Smith  <msmith@fluendo.com>
16704
16705         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads):
16706           Oggmux sucks.
16707           Make it suck slightly less by writing out the final page.
16708           Still can't encode a vorbis-in-ogg file correctly, though.
16709
16710 2006-04-03  Andy Wingo  <wingo@pobox.com>
16711
16712         * ext/theora/theoraparse.c (theora_parse_drain_queue): Um, remove
16713         a g_print.
16714
16715         * ext/theora/theora.c (plugin_init): Register theoraparse.
16716
16717         * ext/theora/gsttheoraparse.h: 
16718         * ext/theora/theoraparse.c: New files implementing a theora
16719         parser. Now we can properly remux ogg/theora+vorbis, yay.
16720
16721         * ext/vorbis/vorbisparse.c: Add some docs and a copyright.
16722
16723 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
16724
16725         * gst/audiotestsrc/gstaudiotestsrc.c:
16726           Fixed the sample pipeline (see #323798)
16727
16728 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
16729
16730         * configure.ac:
16731         * win32/common/config.h:
16732         * win32/common/config.h.in:
16733           use AS_VERSION and AS_NANO
16734           more cleanups
16735
16736 2006-03-31  Andy Wingo  <wingo@pobox.com>
16737
16738         * ext/vorbis/vorbisparse.c (vorbis_parse_sink_event): Fix
16739         uninitialized variable return that would happen.
16740         
16741         * ext/vorbis/vorbisparse.c (vorbis_parse_drain_queue): Fix
16742         uninitialized variable return that would never happen.
16743
16744         * ext/vorbis/vorbisparse.c (gst_vorbis_parse_init) 
16745         (vorbis_parse_sink_event): Add an event function to flush our
16746         state on a seek, and to drain buffers on a premature EOS.
16747         (vorbis_parse_push_headers, vorbis_parse_clear_queue) 
16748         (vorbis_parse_push_buffer, vorbis_parse_drain_queue_prematurely) 
16749         (vorbis_parse_chain, vorbis_parse_queue_buffer) 
16750         (vorbis_parse_drain_queue): Queue up buffers until we can set
16751         their timestamps and granulepos values.
16752
16753         * ext/vorbis/vorbisparse.h: Include the vorbis decoder headers,
16754         and keep track of data needed for deriving granulepos and
16755         timestamps for buffers.
16756
16757 2006-03-29  Wim Taymans  <wim@fluendo.com>
16758
16759         Patch by: j^ <j at bootlab dot org>
16760
16761         * ext/alsa/gstalsamixerelement.c:
16762         (gst_alsa_mixer_element_class_init):
16763         * ext/alsa/gstalsasink.c:
16764         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init):
16765         * ext/ogg/gstoggdemux.c:
16766         * ext/ogg/gstoggmux.c:
16767         * ext/ogg/gstoggparse.c:
16768         * ext/pango/gstclockoverlay.c:
16769         * ext/pango/gsttextoverlay.c:
16770         * ext/pango/gsttextrender.c:
16771         * ext/pango/gsttimeoverlay.c:
16772         * ext/theora/theoradec.c:
16773         * ext/theora/theoraenc.c:
16774         * ext/vorbis/vorbisdec.c:
16775         * ext/vorbis/vorbisenc.c:
16776         * gst/audioconvert/gstaudioconvert.c:
16777         * gst/subparse/gstsubparse.c:
16778         * gst/tcp/gstmultifdsink.c:
16779         * gst/tcp/gsttcpclientsink.c:
16780         * gst/tcp/gsttcpclientsrc.c:
16781         * gst/tcp/gsttcpserversink.c:
16782         * gst/tcp/gsttcpserversrc.c:
16783           better/unified long descriptions
16784           Fixes #336477
16785
16786 2006-03-29  Wim Taymans  <wim@fluendo.com>
16787
16788         * tests/examples/seek/seek.c: (end_scrub), (seek_cb), (start_seek),
16789         (stop_seek):
16790         Don't let double and triple clicks mess up our state.
16791
16792 2006-03-28  Tim-Philipp Müller  <tim at centricular dot net>
16793
16794         * gst/playback/gstplaybin.c: (gen_video_element),
16795         (gen_text_element), (gen_audio_element), (gen_vis_element):
16796           Error out gracefully when we can't create any of the usual
16797           conversion elements for some reason. Also, don't try to
16798           create an audioscale (sic) element that's not used anyway.
16799
16800 2006-03-28  Tim-Philipp Müller  <tim at centricular dot net>
16801
16802         * gst/playback/gstplaybasebin.c: (setup_source):
16803           Don't post RESOURCE_NOT_FOUND error when we can't find a source
16804           element for a particular protocol, that's confusing for users.
16805           Instead, post a RESOURCE_FAILED error, so that our own error
16806           message is actually shown in totem etc. (#336303).
16807
16808 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
16809
16810         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
16811
16812         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_finalize),
16813         (gst_gnome_vfs_src_get_icy_metadata):
16814           Fix some minor memory leaks (#336194).
16815
16816 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
16817
16818         * ext/gnomevfs/gstgnomevfs.c:
16819         (gst_gnome_vfs_location_to_uri_string):
16820         * ext/gnomevfs/gstgnomevfs.h:
16821         * ext/gnomevfs/gstgnomevfssink.c:
16822         (gst_gnome_vfs_sink_set_property):
16823         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_set_property):
16824           Make gnomevfssink accept filenames as well as URIs for the
16825           "location" property, just like gnomevfssrc does (and
16826           filesrc/filesink do) (#336190).
16827
16828 2006-03-24  Thomas Vander Stichele <thomas at apestaart dot org>
16829
16830         * tests/check/generic/clock-selection.c: (GST_START_TEST):
16831           set to NULL before unreffing, fixes a valgrind leak.
16832           Why was this not triggering the error that an object needs to
16833           be NULL before unreffing ?
16834         * win32/common/config.h:
16835           update
16836
16837 2006-03-24  Tim-Philipp Müller  <tim at centricular dot net>
16838
16839         * gst/subparse/gstsubparse.c: (convert_encoding),
16840         (gst_sub_parse_change_state):
16841         * gst/subparse/gstsubparse.h:
16842           Text subtitle files may or may not be UTF-8. If it's not, we
16843           don't really want to see '?' characters in place of non-ASCII
16844           characters like accented characters. So let's assume the input
16845           is UTF-8 until we come across text that is clearly not. If it's
16846           not UTF-8, we don't really know what it is, so try the following:
16847           (a) see whether the GST_SUBTITLE_ENCODING environment variable
16848           is set; if not, check (b) if the current locale encoding is
16849           non-UTF-8 and use that if it is, or (c) assume ISO-8859-15 if
16850           the current locale encoding is UTF-8 and the environment variable
16851           was not set to any particular encoding. Not perfect, but better
16852           than nothing (and better than before, I think) (fixes #172848).
16853
16854 2006-03-24  Thomas Vander Stichele <thomas at apestaart dot org>
16855
16856         * configure.ac:
16857           update core requirement to 0.10.4.1 because of async_playback
16858           vmethod on GstBaseSink
16859
16860 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
16861
16862         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
16863         * gst/adder/gstadder.c: (gst_adder_init):
16864         use DEBUG_FUNCPTR for collectpads
16865
16866 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
16867
16868         * docs/plugins/Makefile.am:
16869         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
16870         * docs/plugins/gst-plugins-base-plugins-sections.txt:
16871         * ext/cdparanoia/gstcdparanoiasrc.c:
16872         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_base_init),
16873         (gst_gnome_vfs_sink_class_init):
16874         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_base_init):
16875         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_base_init):
16876         * ext/ogg/gstoggmux.c:
16877         * ext/ogg/gstoggparse.c: (gst_ogg_parse_base_init):
16878         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_base_init),
16879         (gst_ogm_video_parse_base_init), (gst_ogm_text_parse_base_init):
16880         * ext/pango/gsttextoverlay.c:
16881         * ext/pango/gsttextrender.c:
16882         * ext/theora/theoradec.c:
16883         * ext/theora/theoraenc.c:
16884         * ext/vorbis/vorbisdec.c:
16885         * ext/vorbis/vorbisenc.c:
16886         * gst-libs/gst/audio/gstaudiofilter.c:
16887         (gst_audio_filter_base_init):
16888         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
16889         (gst_audio_filter_template_base_init):
16890         * gst/adder/gstadder.c: (gst_adder_get_type):
16891         * gst/adder/gstadder.h:
16892         * gst/audioconvert/gstaudioconvert.c:
16893         * gst/audiotestsrc/gstaudiotestsrc.c:
16894         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
16895         (gst_audio_test_src_create):
16896         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
16897         * gst/playback/gstdecodebin.c:
16898         * gst/playback/gstplaybin.c:
16899         * gst/playback/gststreamselector.c:
16900         (gst_stream_selector_base_init):
16901         * gst/subparse/gstsubparse.c: (gst_sub_parse_base_init):
16902         * gst/volume/gstvolume.c:
16903         * sys/v4l/gstv4lmjpegsink.c:
16904         * sys/v4l/gstv4lmjpegsrc.c:
16905         * tests/check/libs/cddabasesrc.c:
16906         * tests/old/examples/gob/gst-identity2.gob:
16907           Add docs for adder, use GST_ELEMENT_DETAILS macro,
16908           define GstElementDetails at the top
16909
16910 2006-03-23  Sebastien Moutte  <sebastien@moutte.net>
16911
16912         * win32/common/libgstinterfaces.def:
16913         Add a lot of export functions for gst-python
16914         * win32/vs6/libgstinterfaces.dsp:
16915         Add a missing include folder in the project configuration
16916         
16917 2006-03-23  Wim Taymans  <wim@fluendo.com>
16918
16919         * gst-libs/gst/audio/gstbaseaudiosrc.c:
16920         (gst_base_audio_src_get_time), (gst_base_audio_src_create),
16921         (gst_base_audio_src_change_state):
16922         Fix audio sources, forgot to make the ringbuffer
16923         startable...
16924
16925 2006-03-23  Wim Taymans  <wim@fluendo.com>
16926
16927         * gst-libs/gst/audio/gstbaseaudiosrc.c:
16928         (gst_base_audio_src_get_time), (gst_base_audio_src_create),
16929         (gst_base_audio_src_change_state):
16930         unparent instead of unref the ringbuffer.
16931
16932 2006-03-23  Wim Taymans  <wim@fluendo.com>
16933
16934         * gst-libs/gst/audio/gstbaseaudiosink.c:
16935         (gst_base_audio_sink_class_init), (gst_base_audio_sink_async_play),
16936         (gst_base_audio_sink_do_play), (gst_base_audio_sink_change_state):
16937         Implement new async_play vmethod to start slaving and allow
16938         playback start in case of async PLAY state changes. 
16939
16940         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
16941         Enable QoS with new method in base class.
16942
16943 2006-03-23  Wim Taymans  <wim@fluendo.com>
16944
16945         Patch by: Julien MOUTTE <julien at moutte dot net>
16946
16947         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_query),
16948         (gst_video_test_src_do_seek), (gst_video_test_src_create):
16949         Partially handle 0 framerate, only EOS after the first frame
16950         is missing.
16951
16952 2006-03-23  Wim Taymans  <wim@fluendo.com>
16953
16954         Patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
16955
16956         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
16957         (gst_riff_create_video_template_caps):
16958         * gst/ffmpegcolorspace/avcodec.h:
16959         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
16960         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
16961         (gst_ffmpegcsp_avpicture_fill):
16962         * gst/ffmpegcolorspace/imgconvert.c:
16963         Patch for support of YVU9 AVI files (#334822)
16964
16965 2006-03-22  Edward Hervey  <edward@fluendo.com>
16966
16967         * docs/design/design-decodebin.txt:
16968         Added design document for new decodebin
16969         (Target Caps): text/x-pango-markup is also a default target caps.
16970
16971 2006-03-22  Wim Taymans  <wim@fluendo.com>
16972
16973         * gst-libs/gst/audio/gstbaseaudiosink.c:
16974         (gst_base_audio_sink_dispose):
16975         Since we _parent the ringbuffer, we also need to
16976         _unparent instead of a plain _unref.
16977
16978 2006-03-22  Wim Taymans  <wim@fluendo.com>
16979
16980         * tests/examples/seek/seek.c: (end_scrub), (do_seek), (seek_cb),
16981         (stop_seek), (scrub_toggle_cb), (main):
16982         Add scrub checkbox.
16983
16984 2006-03-21  Tim-Philipp Müller  <tim at centricular dot net>
16985
16986         * ext/ogg/gstoggparse.c: (gst_ogg_parse_find_stream),
16987         (gst_ogg_parse_chain):
16988           Fix very inefficient usage of linked lists (#335365).
16989
16990 2006-03-21  Edward Hervey  <edward@fluendo.com>
16991
16992         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
16993         * gst/playback/gstplaybin.c: (handoff):
16994         * gst/playback/gststreamselector.c:
16995         (gst_stream_selector_set_property):
16996         gcc 4.1 unreferenced pointer fixes.
16997         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put):
16998         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
16999         gst_buffer_ref() now takes a GstBuffer*.
17000
17001 2006-03-20  Julien MOUTTE  <julien@moutte.net>
17002
17003         * sys/xvimage/xvimagesink.c:
17004         (gst_xvimagesink_get_format_from_caps): Fix a memleak reported
17005         by Jan Schmidt.
17006
17007 2006-03-19  Tim-Philipp Müller  <tim at centricular dot net>
17008
17009         * gst/typefind/gsttypefindfunctions.c: (id3v2_type_find),
17010         (id3v1_type_find), (apetag_type_find), (plugin_init):
17011           Can't do tag preferences via probability, as tags would then
17012           lose against types that are recognised with MAXIMUM probability
17013           (like .wav); so let all tag typefinders return MAXIMUM themselves
17014           and order them via the rank. Split ID3v1 and ID3v2 typefinders so
17015           that we can prefer APE to ID3v1 (fixes #335028).
17016           
17017 2006-03-17  Wim Taymans  <wim@fluendo.com>
17018
17019         * gst-libs/gst/audio/gstbaseaudiosink.c:
17020         (gst_base_audio_sink_change_state):
17021         * gst-libs/gst/audio/gstringbuffer.c: (wait_segment),
17022         (gst_ring_buffer_may_start):
17023         * gst-libs/gst/audio/gstringbuffer.h:
17024         Only start playback if we are playing.
17025         should fix #330748.
17026
17027 2006-03-17  Jan Schmidt  <thaytan@mad.scientist.com>
17028
17029         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
17030         * win32/common/config.h:
17031           Revert accidental commits to these files.
17032
17033 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
17034
17035         Patch by: Michal Benes  <michal dot benes at xeris dot cz>
17036
17037         * tests/Makefile.am:
17038           Don't try to build tests in tests/icles if we
17039           don't have X (#323852)
17040
17041 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
17042
17043         * gst-libs/gst/tag/gstid3tag.c:
17044           Add TXXX frame identifiers for replaygain stuff as used
17045           by some taggers (see #323721).
17046
17047 2006-03-16  Jan Schmidt  <thaytan@mad.scientist.com>
17048
17049         * gst/playback/gststreamselector.c:
17050         (gst_stream_selector_set_property),
17051         (gst_stream_selector_bufferalloc):
17052           Preserve the existing buggy streamselector behaviour by performing
17053           a fallback buffer allocation when downstream isn't linked yet.
17054           This should really be fixed in playbin by blocking pads until it's
17055           linked them.
17056           Also, use gst_pad_alloc_buffer instead of
17057           gst_pad_alloc_buffer_and_set.
17058
17059 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
17060
17061         * gst-libs/gst/tag/gstid3tag.c:
17062           Don't crash on unknown ID3v2 TXXX frames.
17063           
17064 2006-03-15  Jan Schmidt  <thaytan@mad.scientist.com>
17065
17066         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise):
17067           Chain up to the parent finalize method.
17068           Add 32-bit sample size to the template caps.
17069
17070         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
17071         (gst_riff_create_video_template_caps):
17072           Add the fourcc that the VMWare codec uses.
17073           
17074         * gst/playback/gststreamselector.c:
17075         (gst_stream_selector_set_property),
17076         (gst_stream_selector_bufferalloc),
17077         (gst_stream_selector_request_new_pad):
17078           For the active pad, forward buffer-alloc requests, otherwise
17079           return GST_FLOW_NOT_LINKED. This also prevents xvimagesink
17080           having to memcpy every frame when used by playbin.
17081
17082         * gst/tcp/gstmultifdsink.c:
17083         (gst_multi_fd_sink_handle_client_write):
17084           Get negotiated caps from the sink pad, rather than the sink
17085           pad's peer.
17086
17087 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
17088
17089         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
17090         
17091         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_pop_callbacks):
17092           Don't forget to set src->callbacks_pushed to FALSE again when
17093           popping them, otherwise re-activation in a different mode won't
17094           work (#334620).
17095
17096 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
17097
17098         Patch by: Sebastien Moutte  <sebastien moutte net>
17099
17100         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: (gst_ff_vid_caps_new),
17101         (gst_ff_aud_caps_new), (gst_ffmpeg_pixfmt_to_caps),
17102         (gst_ffmpeg_smpfmt_to_caps):
17103           Replace __VA_ARGS__ caps creation macros with varargs functions.
17104           Makes things compile on MSVC (#320765), looks nicer, and we can
17105           tell the compiler to check for the NULL terminator.
17106
17107 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
17108
17109         Patch by: Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>
17110
17111         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
17112           Make sure the buffer we copy into is really always big
17113           enough, this time for real (#333488).
17114           
17115 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
17116
17117         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
17118           Add support for 24bpp DIB (#305279).
17119
17120 2006-03-14  Wim Taymans  <wim@fluendo.com>
17121
17122         * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_init):
17123         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
17124         * gst/ffmpegcolorspace/gstffmpegcolorspace.c: (gst_ffmpegcsp_init):
17125         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
17126         (gst_video_scale_init), (gst_video_scale_src_event):
17127         Re-enable QoS after the release.
17128         Rework videoscale to use the base class src_event handler.
17129
17130 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
17131
17132         * configure.ac:
17133           back to CVS.
17134
17135 === release 0.10.5 ===
17136
17137 2006-03-13  Thomas Vander Stichele <thomas at apestaart dot org>
17138
17139         * configure.ac:
17140           releasing 0.10.5, "Net"
17141
17142 2006-03-13  Tim-Philipp Müller  <tim at centricular dot net>
17143
17144         * docs/plugins/Makefile.am:
17145           Part of previous cdparanoiasrc docs fixes, forgot to commit.
17146           
17147 2006-03-12  Tim-Philipp Müller  <tim at centricular dot net>
17148
17149         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
17150         * docs/plugins/gst-plugins-base-plugins-sections.txt:
17151         * docs/plugins/gst-plugins-base-plugins.hierarchy:
17152           Add cdparanoiasrc to docs.
17153
17154         * gst-libs/gst/cdda/gstcddabasesrc.c:
17155           More GstCddaBaseSrc docs.
17156
17157 2006-03-12  Tim-Philipp Müller  <tim at centricular dot net>
17158
17159         * docs/libs/gst-plugins-base-libs-sections.txt:
17160         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_user_tag):
17161         * gst-libs/gst/tag/tag.h:
17162           API: libgsttag: new method gst_tag_from_id3_user_tag().
17163
17164 2006-03-11  Tim-Philipp Müller  <tim at centricular dot net>
17165
17166         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
17167           NULL-terminate array of mpeg4 video file extensions.
17168           Fixes crash on PPC (#334226).
17169
17170 2006-03-11  Tim-Philipp Müller  <tim at centricular dot net>
17171
17172         * ext/gnomevfs/gstgnomevfssrc.c:
17173         (gst_gnome_vfs_src_check_get_range):
17174           gnome_vfs_uri_is_local() alone is not a good indicator
17175           whether we can operate in pull-mode with a specific URI,
17176           as it returns FALSE for file:// URIs that point to an
17177           NFS-mounted path. Be more conservative here: whitelist
17178           local files, blacklist http URIs and use the old
17179           mechanism for anything else (fixes #334216).
17180
17181 2006-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
17182
17183         * configure.ac:
17184           back to trunk
17185
17186 === release 0.10.4 ===
17187
17188 2006-03-10  Thomas Vander Stichele <thomas at apestaart dot org>
17189
17190         * configure.ac:
17191           releasing 0.10.4, "Power"
17192
17193 2006-03-10  Jan Schmidt  <thaytan@mad.scientist.com>
17194
17195         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
17196         Disable max-lateness by setting it to -1 for now, so that 
17197         we can bed QoS stuff in thoroughly between now and the next
17198         release.
17199
17200 2006-03-10  Tim-Philipp Müller  <tim at centricular dot net>
17201
17202         Patch by: Fabrizio Gennari
17203
17204         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
17205           Make sure we don't read beyond the palette buffer in case of
17206           broken or manipulated files (#333488)
17207
17208 2006-03-10  Edward Hervey  <edward@fluendo.com>
17209
17210         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
17211         Fix for variable not initialized.
17212
17213 2006-03-09  Wim Taymans  <wim@fluendo.com>
17214
17215         * ext/libvisual/visual.c: (gst_visual_get_type),
17216         (gst_visual_src_setcaps), (gst_vis_src_negotiate),
17217         (gst_visual_chain):
17218         Small cleanups.
17219
17220         * ext/theora/gsttheoradec.h:
17221         * ext/theora/theoradec.c: (gst_theora_dec_init),
17222         (gst_theora_dec_reset), (_theora_granule_time),
17223         (theora_dec_src_convert), (theora_dec_sink_convert),
17224         (theora_dec_src_query), (theora_dec_src_event),
17225         (theora_dec_sink_event), (theora_handle_comment_packet),
17226         (theora_handle_header_packet), (theora_dec_push),
17227         (theora_handle_data_packet), (theora_dec_chain),
17228         (theora_dec_change_state):
17229         Add simple QoS.
17230
17231 2006-03-09  Wim Taymans  <wim@fluendo.com>
17232
17233         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
17234         (audiocast_register_listener), (gst_gnome_vfs_src_start):
17235         Some cleanups.
17236
17237 2006-03-09  Wim Taymans  <wim@fluendo.com>
17238
17239         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
17240         Don't try to activate NULL chains.
17241
17242 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
17243
17244         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
17245           Fix invalid memory access to region before peek'd data (#332964).
17246
17247 2006-03-09  Wim Taymans  <wim@fluendo.com>
17248
17249         Patch by: Christophe Fergeau
17250
17251         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init):
17252         * ext/pango/gsttextrender.c: (gst_text_render_init):
17253         * gst/adder/gstadder.c: (gst_adder_init):
17254         Don't leak padtemplates, closes #333510.
17255
17256 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
17257
17258         * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
17259           Fix invalid memory access: make sure string passed to
17260           regexec() is NUL-termianted.
17261
17262 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
17263
17264         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
17265         (mp3_type_find):
17266           Refactor mpeg/audio typefinding to make it more maintainable
17267           and easier to fine-tune. Make probing into middle of the file
17268           work properly (fixes #333900, also see #152688).
17269
17270 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
17271
17272         * gst/typefind/gsttypefindfunctions.c:
17273         (utf8_type_find_have_valid_utf8_at_offset):
17274           Remove part from previous commit that was bogus:
17275           g_utf8_validate() does in fact not accept embedded
17276           zeroes, so we don't need to check for those (thanks
17277           to Mike for the hint).
17278
17279 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
17280
17281         * gst/typefind/gsttypefindfunctions.c:
17282         (utf8_type_find_count_embedded_zeroes),
17283         (utf8_type_find_have_valid_utf8_at_offset), (utf8_type_find):
17284           Make plain/text typefinder more conservative: firstly, check
17285           for embedded zeroes, which are perfectly valid UTF-8 characters,
17286           but also a fairly good sign that something is not a plain text
17287           file; secondly, probe into the middle of the file if possible.
17288           If we can't probe into the middle, limit the probability value
17289           to be returned to TYPE_FIND_POSSIBLE (see #333900).
17290
17291 2006-03-08  Michael Smith  <msmith@fluendo.com>
17292
17293         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
17294           Make typefind function name for mpeg4 video unique.
17295
17296 2006-03-08  Wim Taymans  <wim@fluendo.com>
17297
17298         * ext/libvisual/visual.c: (gst_visual_init),
17299         (gst_visual_clear_actors), (gst_visual_dispose),
17300         (gst_visual_reset), (gst_visual_src_setcaps),
17301         (gst_visual_sink_setcaps), (gst_vis_src_negotiate),
17302         (gst_visual_sink_event), (gst_visual_src_event), (get_buffer),
17303         (gst_visual_chain), (gst_visual_change_state):
17304         Cleanups, post nice errors.
17305         Handle sink and src events.
17306         Implement simple QoS.
17307
17308         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
17309         Use new basesink methods to configure max-lateness.
17310         Small doc update.
17311
17312         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
17313         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps):
17314         Debug statement cleanups.
17315
17316         * gst/volume/gstvolume.c: (gst_volume_class_init):
17317         Simple cleanup.
17318
17319 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
17320
17321         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init),
17322         (gst_text_overlay_init), (gst_text_overlay_set_property),
17323         (gst_text_overlay_get_property):
17324           Revert API/ABI break from March 1. Keep 'halign' and 'valign'
17325           as string type properties, but mark them deprecated. Add
17326           'halignment' and 'valignment' properties that use enums
17327           instead of strings.
17328
17329 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
17330
17331         Patch by: Fabrizio Gennari
17332
17333         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
17334           Allow palettes with less than 256 colours in AVI files
17335           (#333488)
17336
17337 2006-03-07  Julien MOUTTE  <julien@moutte.net>
17338
17339         * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event),
17340         (gst_text_overlay_video_event): Fix wrong EOS handling on text
17341         pad. We were releasing the queued text buffer when we should keep
17342         it until video pad gets EOS or discard the text buffer because it's
17343         too old. That was eating the last subtitle buffer. Add some more
17344         debug.
17345
17346 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
17347
17348         * ext/pango/gsttextoverlay.c: (gst_text_overlay_render_text),
17349         (gst_text_overlay_video_chain):
17350           Fix invalid memory access (we can't access a buffer after it's been
17351           pushed downstream without taking a reference); fix memory leak (if
17352           there's no text to render, bail out before allocating stuff).
17353
17354 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
17355
17356         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
17357         (gst_text_overlay_setcaps_txt), (gst_text_overlay_video_chain):
17358         * ext/pango/gsttextoverlay.h:
17359           If input is plain text, escape it before passing it to
17360           pango_layout_set_markup().
17361
17362 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
17363
17364         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_chain):
17365           Don't ignore flow return from gst_pad_push().
17366
17367 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
17368
17369         Patch by: Fabrizio Gennari
17370
17371         * ext/libvisual/visual.c: (gst_visual_getcaps),
17372         (gst_visual_src_setcaps), (gst_visual_sink_setcaps):
17373         * ext/ogg/gstoggmux.c: (gst_ogg_mux_sinkconnect):
17374         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
17375         (gst_vorbisenc_convert_sink):
17376         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size),
17377         (gst_audio_duration_from_pad_buffer):
17378         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_link),
17379         (gst_audio_filter_chain):
17380         * gst-libs/gst/rtp/gstbasertpdepayload.c:
17381         (gst_base_rtp_depayload_setcaps):
17382         * gst-libs/gst/video/video.c: (gst_video_frame_rate),
17383         (gst_video_get_size):
17384         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
17385           Don't leak references returned by gst_pad_get_parent()
17386           (#333663)
17387
17388 2006-03-06  Stefan Kost  <ensonic@users.sf.net>
17389
17390         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
17391           change location param details
17392         * gst/volume/gstvolume.c: (plugin_init):
17393           correct plugin description
17394
17395 2006-03-06  Tim-Philipp Müller  <tim at centricular dot net>
17396
17397         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
17398         (gst_gnome_vfs_src_check_get_range):
17399           Override GstBaseSrc::check_get_range() in order to avoid opening
17400           the resource just to check whether we can operate in pull-mode or
17401           not - we can predict that pretty well from the URI alone. Should
17402           fix problems with last.fm (#331690). (Requires latest core CVS).
17403
17404 2006-03-06  Wim Taymans  <wim@fluendo.com>
17405
17406         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
17407         (gst_video_sink_class_init):
17408         Throw away frames that are later than 20 ms.
17409
17410 2006-03-06  Tim-Philipp Müller  <tim at centricular dot net>
17411
17412         Patch by: Fabrizio Gennari
17413
17414         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
17415           Set depth on WMA caps (#333545)
17416
17417 2006-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
17418
17419         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
17420         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
17421           put Theora BOS pages before others.  This hardcodes
17422           the Ogg/Theora I profile, but hey.
17423
17424 2006-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
17425
17426         * ext/ogg/README:
17427           updated with some examples
17428         * ext/theora/theoraenc.c: (granulepos_to_timestamp),
17429         (granulepos_add), (theora_buffer_from_packet):
17430         * ext/vorbis/vorbisenc.c: (granulepos_to_timestamp_offset),
17431         (granulepos_to_timestamp), (gst_vorbisenc_buffer_from_packet),
17432         (gst_vorbisenc_chain):
17433           implement strategy from ext/ogg/README
17434         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
17435         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
17436         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_compare_pads),
17437         (gst_ogg_mux_queue_pads), (gst_ogg_mux_collected):
17438           Fix muxer so that oggz-validate is happy with all streams;
17439           except for no eos mark, and the BOS page ordering
17440         * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
17441         (check_buffer_granulepos):
17442         * tests/check/pipelines/vorbisenc.c: (check_buffer_granulepos):
17443           update tests to check for OFFSET being set as requested
17444           fixed type of granulepos, it's not a ClockTime
17445
17446 2006-03-05  Julien MOUTTE  <julien@moutte.net>
17447
17448         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
17449         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
17450         Check that the xvimage we are creating has a correct size
17451         before returning it. (#314897)
17452
17453 2006-03-05  Tim-Philipp Müller  <tim at centricular dot net>
17454
17455         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
17456           Give id3 and ape tag typefinders a rank slightly higher
17457           than PRIMARY to ensure they're always run before any of
17458           the other typefinders (in particular wav and mp3) (#324186).
17459
17460 2006-03-05  Tim-Philipp Müller  <tim at centricular dot net>
17461
17462         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
17463           Add support for '3IVD' fourcc (#333403).
17464
17465 2006-03-04  Tim-Philipp Müller  <tim at centricular dot net>
17466
17467         * configure.ac:
17468           Bump requirements to GStreamer CVS for the new error enum.
17469
17470         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_render):
17471           Emit new GST_RESOURCE_ERROR_NO_SPACE_LEFT when there's no
17472           space left on the device (fixes #333352).
17473
17474 2006-03-04  Sebastien Moutte  <sebastien@moutte.net>
17475
17476         * win32/vs6:
17477           add a project file for libgstvolume
17478           update the workspace
17479
17480 2006-03-03  Thomas Vander Stichele  <thomas at apestaart dot org>
17481
17482         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
17483         * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
17484         (GST_START_TEST):
17485           Fix for http://bugzilla.gnome.org/show_bug.cgi?id=333254
17486           Set IN_CAPS on header buffers
17487
17488 2006-03-02  Wim Taymans  <wim@fluendo.com>
17489
17490         * docs/plugins/Makefile.am:
17491         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
17492         * docs/plugins/gst-plugins-base-plugins-sections.txt:
17493         Add audioresample to docs.
17494
17495         * gst/audioconvert/gstaudioconvert.c:
17496         Add revision date.
17497
17498         * gst/audioresample/gstaudioresample.c:
17499         (gst_audioresample_base_init), (gst_audioresample_class_init),
17500         (gst_audioresample_init), (gst_audioresample_dispose),
17501         (audioresample_get_unit_size), (audioresample_transform_caps),
17502         (resample_set_state_from_caps), (audioresample_transform_size),
17503         (audioresample_set_caps), (audioresample_event),
17504         (audioresample_do_output), (audioresample_transform),
17505         (audioresample_pushthrough), (gst_audioresample_set_property),
17506         (gst_audioresample_get_property), (plugin_init):
17507         * gst/audioresample/gstaudioresample.h:
17508         Added docs.
17509         Small code cleanups.
17510
17511 2006-03-02  Wim Taymans  <wim@fluendo.com>
17512
17513         * docs/plugins/Makefile.am:
17514         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
17515         * docs/plugins/gst-plugins-base-plugins-sections.txt:
17516         Added videoscale to docs.
17517
17518         * gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
17519         (gst_video_rate_swap_prev), (gst_video_rate_event),
17520         (gst_video_rate_chain):
17521         Fix typo in docs.
17522
17523         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
17524         (gst_video_scale_init), (gst_video_scale_prepare_size),
17525         (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
17526         (gst_video_scale_fixate_caps), (gst_video_scale_transform):
17527         * gst/videoscale/gstvideoscale.h:
17528         Added docs, examples.
17529         Some code cleanups.
17530         Post errors instead of g_warning.
17531
17532 2006-03-02  Wim Taymans  <wim@fluendo.com>
17533
17534         * docs/libs/gst-plugins-base-libs-docs.sgml:
17535         * docs/libs/gst-plugins-base-libs-sections.txt:
17536         * docs/libs/gst-plugins-base-libs.types:
17537         * docs/plugins/Makefile.am:
17538         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
17539         * docs/plugins/gst-plugins-base-plugins-sections.txt:
17540         Added some more docs to libs and plugins.
17541
17542         * gst-libs/gst/audio/gstringbuffer.c:
17543         (gst_ring_buffer_prepare_read), (gst_ring_buffer_clear):
17544         * gst-libs/gst/audio/gstringbuffer.h:
17545         Document ringbuffer some more.
17546
17547         * gst/videorate/gstvideorate.c: (gst_video_rate_class_init),
17548         (gst_video_rate_setcaps), (gst_video_rate_reset),
17549         (gst_video_rate_init), (gst_video_rate_flush_prev),
17550         (gst_video_rate_swap_prev), (gst_video_rate_event),
17551         (gst_video_rate_chain), (gst_video_rate_change_state):
17552         * gst/videorate/gstvideorate.h:
17553         Fix videorate to use segments.
17554         Make it work with 0/1 framerates (closes #331903)
17555         Handle EOS correctly.
17556         Added docs.
17557
17558 2006-03-02  Tim-Philipp Müller  <tim at centricular dot net>
17559
17560         * ext/ogg/gstogmparse.c: (gst_ogm_parse_class_init),
17561         (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
17562         (gst_ogm_text_parse_init), (gst_ogm_parse_change_state):
17563           In state change function, first chain up to parent class,
17564           then handle downwards state change stuff. Remove some
17565           commented out cruft from 0.8 code.
17566
17567 2006-03-02  Tim-Philipp Müller  <tim at centricular dot net>
17568
17569         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
17570         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
17571         (gst_ogm_parse_sink_convert), (gst_ogm_parse_sink_query),
17572         (gst_ogm_parse_chain):
17573           Don't remove/re-add source pad if the new caps are the same as
17574           the old caps anyway (#333042). When removing source pad, don't
17575           unref it afterwards - we didn't ref it when adding. Sprinkle some
17576           GST_DEBUG_FUNCPTR goodness here and there. Don't leak references
17577           after using gst_pad_get_parent(). Return downstream flow return
17578           value in chain function.
17579
17580 2006-03-02  Wim Taymans  <wim@fluendo.com>
17581
17582         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
17583         * docs/plugins/gst-plugins-base-plugins.args:
17584         * docs/plugins/gst-plugins-base-plugins.hierarchy:
17585         * docs/plugins/gst-plugins-base-plugins.interfaces:
17586         * docs/plugins/gst-plugins-base-plugins.signals:
17587         Fix hierarchy, added some more elements to the docs.
17588
17589         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
17590         (gst_ffmpegcsp_get_type):
17591         * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
17592         Fix docs for ffmpegcolorspace.
17593
17594 2006-03-01  Tim-Philipp Müller  <tim at centricular dot net>
17595
17596         * gst/typefind/gsttypefindfunctions.c: (id3_type_find),
17597         (apetag_type_find), (ape_type_find), (plugin_init):
17598           Some typefinding fine-tuning:
17599           - rank ID3/APE tags in order of preference via probabilities, so that
17600             ID3v2 > APEv2 > APEv1 > ID3v1.
17601           - three or four bytes don't really justify MAXIMUM probability,
17602             change those to 'very likely' (musepack and monkeysaudio).
17603
17604 2006-03-01  Wim Taymans  <wim@fluendo.com>
17605
17606         * docs/plugins/Makefile.am:
17607         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
17608         * docs/plugins/gst-plugins-base-plugins-sections.txt:
17609         * ext/alsa/gstalsamixer.c:
17610         * ext/alsa/gstalsamixer.h:
17611         * ext/alsa/gstalsamixerelement.c:
17612         (gst_alsa_mixer_element_class_init), (gst_alsa_mixer_element_init):
17613         * ext/alsa/gstalsamixerelement.h:
17614         * ext/alsa/gstalsasink.c:
17615         * ext/alsa/gstalsasink.h:
17616         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
17617         (gst_alsasrc_init):
17618         * ext/alsa/gstalsasrc.h:
17619         Added alsa docs.
17620         Small code cleanups.
17621
17622 2006-03-01  Wim Taymans  <wim@fluendo.com>
17623
17624         * ext/theora/Makefile.am:
17625         Dist new header too,
17626
17627 2006-03-01  Wim Taymans  <wim@fluendo.com>
17628
17629         * docs/plugins/Makefile.am:
17630         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
17631         * docs/plugins/gst-plugins-base-plugins-sections.txt:
17632         * ext/gnomevfs/gstgnomevfssink.h:
17633         * ext/gnomevfs/gstgnomevfssrc.h:
17634         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
17635         * ext/vorbis/vorbisdec.h:
17636         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_sink):
17637         * ext/vorbis/vorbisenc.h:
17638         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps),
17639         (vorbis_parse_chain), (vorbis_parse_change_state):
17640         * ext/vorbis/vorbisparse.h:
17641         * gst/audioconvert/gstaudioconvert.h:
17642         * gst/tcp/gsttcpserversink.h:
17643         * gst/videotestsrc/gstvideotestsrc.c:
17644         * gst/videotestsrc/gstvideotestsrc.h:
17645         * gst/volume/gstvolume.c:
17646         * gst/volume/gstvolume.h:
17647         Fix some more docs.
17648         Added docs for vorbisdec and vorbisparse.
17649         Fix vorbisparse.
17650
17651 2006-03-01  Wim Taymans  <wim@fluendo.com>
17652
17653         * docs/plugins/Makefile.am:
17654         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
17655         * docs/plugins/gst-plugins-base-plugins-sections.txt:
17656         * ext/pango/gstclockoverlay.h:
17657         * ext/pango/gsttextoverlay.h:
17658         * ext/pango/gsttextrender.h:
17659         * ext/pango/gsttimeoverlay.h:
17660         * ext/theora/gsttheoradec.h:
17661         * ext/theora/gsttheoraenc.h:
17662         * ext/theora/theoradec.c:
17663         * ext/theora/theoraenc.c:
17664         * gst/audioconvert/gstaudioconvert.h:
17665         * gst/audiotestsrc/gstaudiotestsrc.h:
17666         * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
17667         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
17668         * gst/tcp/gstmultifdsink.h:
17669         Updated/added documentation.
17670
17671         * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
17672         (gst_text_overlay_halign_get_type),
17673         (gst_text_overlay_wrap_mode_get_type),
17674         (gst_text_overlay_base_init), (gst_text_overlay_class_init),
17675         (gst_text_overlay_init), (gst_text_overlay_set_property),
17676         (gst_text_overlay_get_property):
17677         Fix up properties to be enums instead of string to make bindings,
17678         introspection and automatic GUI creation possible.
17679         Add getters for the properties.
17680
17681 2006-02-28  Sebastien Moutte  <sebastien@moutte.net>
17682
17683         * gst/audiotestsrc/gstaudiotestsrc.c:
17684           added defines of M_PI and M_PI_2
17685         * gst/ffmpegcolorspace/avcodec.h:
17686           removed #include "stdint.h" for win32 as _stdint.h is 
17687           autogenerated to win32/common
17688         * win32/common/libgstaudio.def:
17689         * win32/common/libgsttag.def:
17690           added some exports
17691         * win32/vs6:
17692           some project files bugs corrected
17693         * win32/vs7:
17694           project files are reset to the default vs7 configuration 
17695           (they link to msvcr71.dll using default optimizations)
17696           
17697 2006-02-28  Wim Taymans  <wim@fluendo.com>
17698
17699         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
17700         Fix some docs.
17701
17702 2006-02-28  Edward Hervey  <edward@fluendo.com>
17703
17704         * ext/alsa/gstalsasrc.c:
17705         Set proper class on the ElementDetails:
17706         Source/Audio instead of Src/Audio/
17707
17708 2006-02-28  Edward Hervey  <edward@fluendo.com>
17709
17710         * gst/videoscale/vs_scanline.c:
17711         (vs_scanline_resample_nearest_RGBA):
17712         Revert optimization in videoscale. It should go in liboil and have
17713         an appropriate liboil function.
17714
17715 2006-02-28  Wim Taymans  <wim@fluendo.com>
17716
17717         * gst-libs/gst/audio/gstbaseaudiosink.c:
17718         (gst_base_audio_sink_provide_clock):
17719         Don't try to provide a clock in the NULL state.
17720
17721 2006-02-28  Wim Taymans  <wim@fluendo.com>
17722
17723         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
17724         (gst_ogg_pad_event), (gst_ogg_pad_internal_chain),
17725         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
17726         (gst_ogg_demux_deactivate_current_chain),
17727         (gst_ogg_demux_activate_chain), (gst_ogg_demux_do_seek),
17728         (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_info),
17729         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
17730         (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
17731         Use GstSegment infrastructure to remove duplicated code
17732         and handle more seek cases correctly.
17733
17734 2006-02-28  Wim Taymans  <wim@fluendo.com>
17735
17736         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
17737         (gst_ffmpegcsp_transform):
17738         Don't ignore return code from ffmpeg convert function.
17739
17740         * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
17741         Split out some long statements to ease debugging.
17742
17743 2006-02-27  Jan Schmidt  <thaytan@mad.scientist.com>
17744
17745         * ext/libvisual/visual.c: (gst_visual_init),
17746         (gst_vis_src_negotiate), (get_buffer), (plugin_init):
17747         Don't use gst_pad_use_fixed_caps, because it prevents downstream from
17748         being able to renegotiate the size. Instead, use the negotiation
17749         algorithm from the goom plugin to pick an initial output caps. 
17750
17751         Also, allow theoretical libvisual plugins that might support non-GL 
17752         output even if they also do GL.
17753
17754 2006-02-26  Julien MOUTTE  <julien@moutte.net>
17755
17756         * ext/libvisual/visual.c: (gst_visual_init),
17757         (gst_visual_src_setcaps), (get_buffer), (gst_visual_chain),
17758         (plugin_init): Load only non GL plugins. Fix some memleaks and 
17759         possible negotiation issues.
17760
17761 2006-02-25  Julien MOUTTE  <julien@moutte.net>
17762
17763         * gst-libs/gst/tag/tag.h: Adding Annodex tags here.
17764
17765 2006-02-24  Michael Smith  <msmith@fluendo.com>
17766
17767         * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find),
17768         (cmml_type_find), (plugin_init):
17769           Fix CMML type find function to not require a specific minor version
17770           of the CMML header.
17771
17772           Add an MPEG4 video elementary stream typefind function.
17773
17774 2006-02-04  Michael Smith  <msmith@fluendo.com>
17775
17776         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_parse_skeleton_fishead),
17777         (gst_ogg_pad_parse_skeleton_fisbone), (gst_ogg_pad_query_convert),
17778         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
17779         (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
17780         (gst_ogg_demux_read_end_chain), (gst_ogg_demux_collect_chain_info),
17781         (gst_ogg_demux_change_state), (gst_annodex_granule_to_time):
17782           Annodex support in ogg demuxer. Doesn't do very much without the
17783           other annodex patches (to come).
17784
17785 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
17786
17787         Patch by: Fabrizio Gennari <fabrizio dot get at tiscali dot it>
17788
17789         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
17790           Pick up palette for MS video v1 (#327028)
17791
17792 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
17793
17794         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
17795         (gst_ffmpegcsp_caps_remove_format_info),
17796         (gst_ffmpegcsp_get_unit_size):
17797           The 'palette_data' field from incoming RGB caps shouldn't be
17798           proxied on outgoing YUV caps; also, restrict unit size
17799           adjustment in case of paletted data only to the unit that
17800           actually has a palette. Fixes #330711.
17801
17802 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
17803
17804         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
17805         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
17806         (gst_ffmpegcsp_finalize), (gst_ffmpegcsp_class_init),
17807         (gst_ffmpegcsp_get_unit_size):
17808           Plug some memory leaks.
17809
17810 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
17811
17812         * sys/ximage/Makefile.am:
17813         * sys/xvimage/Makefile.am:
17814           Add some _CFLAGS and _LIBS that seem to be missing
17815           and/or required for Cygwin (see #317048).
17816
17817 2006-02-22  Wim Taymans  <wim@fluendo.com>
17818
17819         * ext/alsa/gstalsasrc.c:
17820         Fix description as pointed out by caugier.
17821
17822 2006-02-22  Tommi Myöhänen  <ext-tommi do myohanen at nokia dot com>
17823
17824         Reviewed by : Edward Hervey  <edward@fluendo.com>
17825
17826         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
17827         (qt_type_find):
17828         Better 3gp typefinding (#331526).
17829
17830 2006-02-21  Tim-Philipp Müller  <tim at centricular dot net>
17831
17832         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
17833           Don't send EOS event here, the base class will send one for us.
17834
17835         * gst/playback/gstplaybasebin.c: (prepare_output):
17836           Subpictures without video stream aren't allowed either.
17837         
17838         * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
17839           Fix debug statement copy'n'paste-o.
17840
17841 2006-02-21  Tim-Philipp Müller  <tim at centricular dot net>
17842
17843         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume):
17844           Fix issues with mixer keeping state when muting/unmuting
17845           and when changing the volume whilst muted (see #331763
17846           and #331765).
17847
17848 2006-02-20  Tim-Philipp Müller  <tim at centricular dot net>
17849
17850         * gst/subparse/gstsubparse.c: (subrip_unescape_formatting),
17851         (parse_subrip), (gst_sub_parse_format_autodetect):
17852           Set right caps given that we send escaped text. Also,
17853           honour <i></i>, <b></b> and <u></u> markers that can be found
17854           in .srt files (fixes #310202).
17855
17856 2006-02-20  Tim-Philipp Müller  <tim at centricular dot net>
17857
17858         * gst-libs/gst/audio/mixerutils.c:
17859         (element_factory_rank_compare_func):
17860           Make order in which elements are tried more determinable.
17861
17862 2006-02-20  Julien MOUTTE  <julien@moutte.net>
17863
17864         * gst/playback/gstdecodebin.c: (get_our_ghost_pad),
17865         (remove_element_chain), (cleanup_decodebin),
17866         (gst_decode_bin_change_state): Make decodebin reusable by
17867         fixing remove_element_chain first and then introduce a
17868         cleaner in state change to ->NULL. (Closes #331678)
17869
17870 2006-02-19  Wim Taymans  <wim@fluendo.com>
17871
17872         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_open_file):
17873         use 0666 mask when creating files so umask gets applied
17874         correctly. Fixes #331295.
17875
17876 2006-02-19  Tim-Philipp Müller  <tim at centricular dot net>
17877
17878         * gst/subparse/Makefile.am:
17879         * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
17880         (gst_ssa_parse_dispose), (gst_ssa_parse_init),
17881         (gst_ssa_parse_class_init), (gst_ssa_parse_src_event),
17882         (gst_ssa_parse_sink_event), (gst_ssa_parse_setcaps),
17883         (gst_ssa_parse_remove_override_codes), (gst_ssa_parse_parse_line),
17884         (gst_ssa_parse_chain), (gst_ssa_parse_change_state):
17885         * gst/subparse/gstssaparse.h:
17886         * gst/subparse/gstsubparse.c: (plugin_init):
17887           Add very basic parser for SSA subtitle streams (as often
17888           found in matroska files).
17889
17890 2006-02-19  Tim-Philipp Müller  <tim at centricular dot net>
17891
17892         * gst/playback/gstdecodebin.c: (mimetype_is_raw):
17893           That should be text/x-pango-markup, not text/x-pango-layout.
17894
17895 2006-02-19  Julien MOUTTE  <julien@moutte.net>
17896
17897         * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize):
17898         Polishing.
17899
17900 2006-02-19  Julien MOUTTE  <julien@moutte.net>
17901
17902         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
17903         (gst_text_overlay_finalize), (gst_text_overlay_init),
17904         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
17905         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
17906         (gst_text_overlay_text_event), (gst_text_overlay_video_event),
17907         (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
17908         (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
17909         Fix state change deadlock.
17910
17911 2006-02-19  Julien MOUTTE  <julien@moutte.net>
17912
17913         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
17914         (gst_text_overlay_finalize), (gst_text_overlay_init),
17915         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
17916         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
17917         (gst_text_overlay_text_event), (gst_text_overlay_video_event),
17918         (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
17919         (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
17920         * ext/pango/gsttextoverlay.h: Fix seeking both for muxed formats
17921         and subtitles files.
17922
17923 2006-02-19  Julien MOUTTE  <julien@moutte.net>
17924
17925         * gst/playback/gstdecodebin.c: (mimetype_is_raw): pango layout
17926         should be considered as raw.
17927
17928 2006-02-19  Julien MOUTTE  <julien@moutte.net>
17929
17930         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
17931         (cb_probe):
17932         * gst/playback/gststreaminfo.h: Introduce language informations.
17933
17934 2006-02-18  Jan Schmidt  <thaytan@mad.scientist.com>
17935
17936         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
17937         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
17938         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
17939         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new):
17940         Set shared memory segments to be deleted as soon as we have attached,
17941         that way they get cleaned up automatically if we crash.
17942
17943 2006-02-18  Julien MOUTTE  <julien@moutte.net>
17944
17945         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_get_text): 
17946         * ext/pango/gsttimeoverlay.c: (gst_time_overlay_get_text): Those
17947         functions are called with lock held.
17948
17949 2006-02-18  Julien MOUTTE  <julien@moutte.net>
17950
17951         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
17952         (gst_text_overlay_finalize), (gst_text_overlay_init),
17953         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
17954         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
17955         (gst_text_overlay_text_pad_unlink), (gst_text_overlay_text_event),
17956         (gst_text_overlay_video_event), (gst_text_overlay_pop_text),
17957         (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
17958         (gst_text_overlay_change_state): Refactoring of textoverlay
17959         without collectpads. This now supports sparse subtitles coming
17960         from a demuxer instead of a sub file. Seeking is still broken 
17961         though. Need to discuss with wtay some more on how to handle
17962         seeking correctly.
17963         * ext/pango/gsttextoverlay.h:
17964         * gst/playback/gstplaybin.c: (setup_sinks): Support linking with
17965         subtitles coming from the demuxer.
17966
17967 2006-02-17  Wim Taymans  <wim@fluendo.com>
17968
17969         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
17970         (gst_vorbisenc_convert_sink):
17971         Use some more scaling functions.
17972
17973 2006-02-17  Tim-Philipp Müller  <tim at centricular dot net>
17974
17975         * ext/cdparanoia/gstcdparanoiasrc.c:
17976         (gst_cd_paranoia_src_class_init), (gst_cd_paranoia_dummy_callback),
17977         (gst_cd_paranoia_paranoia_callback),
17978         (gst_cd_paranoia_src_signal_is_being_watched),
17979         (gst_cd_paranoia_src_read_sector):
17980         * ext/cdparanoia/gstcdparanoiasrc.h:
17981           Add back 'transport-error' and 'uncorrected-error' signals and
17982           make them actually be fired when bad stuff happens (#319340).
17983
17984 2006-02-17  Wim Taymans  <wim@fluendo.com>
17985
17986         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
17987         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
17988         (gst_ring_buffer_device_is_open), (gst_ring_buffer_acquire),
17989         (gst_ring_buffer_release), (gst_ring_buffer_set_flushing),
17990         (gst_ring_buffer_start), (gst_ring_buffer_pause_unlocked),
17991         (gst_ring_buffer_pause), (gst_ring_buffer_stop),
17992         (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
17993         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
17994         (gst_ring_buffer_commit), (gst_ring_buffer_prepare_read),
17995         (gst_ring_buffer_clear):
17996         Small cleanups.
17997         Added some G_LIKELY.
17998
17999 2006-02-17  Wim Taymans  <wim@fluendo.com>
18000
18001         * gst-libs/gst/audio/TODO:
18002         Update TODO
18003
18004         * gst-libs/gst/audio/gstbaseaudiosink.c:
18005         (gst_base_audio_sink_get_offset):
18006         When trying to play samples ASAP and we don't have a
18007         previous sample, try to play at position 0 instead of
18008         an invalid position.
18009
18010 2006-02-17  Wim Taymans  <wim@fluendo.com>
18011
18012         * ext/alsa/gstalsasink.c: (gst_alsasink_open),
18013         (gst_alsasink_reset):
18014         Also release lock when we get an error in _reset();
18015         fix an error message.
18016
18017 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
18018
18019         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
18020         (gst_alsasink_init), (get_channel_free_structure),
18021         (caps_add_channel_configuration), (gst_alsasink_getcaps),
18022         (gst_alsasink_close):
18023         * ext/alsa/gstalsasink.h:
18024           Add support for more than 2 channels (#326720).
18025
18026 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
18027
18028         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
18029           Set codec_name for WAVEFORMATEX as well. When we have 'normal PCM'
18030           with 4 or 6 channels, assume a default channel layout to make things
18031           work (not sure there's anything else we can do in those cases).
18032
18033 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
18034
18035         * gst-libs/gst/audio/multichannel.c:
18036           Minor docs fix.
18037
18038         * gst-libs/gst/riff/Makefile.am:
18039         * gst-libs/gst/riff/riff-ids.h:
18040         * gst-libs/gst/riff/riff-media.c:
18041         (gst_riff_wavext_add_channel_layout), (gst_riff_create_audio_caps):
18042           Add support for WAVEFORMATEX, eg. PCM audio with more than two
18043           channels and a channel layout map.
18044           
18045 2006-02-16  Mathieu Garcia <b0nk at free dot fr>
18046
18047         Reviewed by Edward Hervey  <edward@fluendo.com>
18048
18049         * gst/videoscale/vs_scanline.c: (vs_scanline_resample_nearest_RGBA): 
18050         C-level optimization of the RGBA nearest neighbour function.
18051         Eventually this might end up in liboil with vectorized versions.
18052
18053 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
18054
18055         * gst-libs/gst/audio/multichannel.c:
18056         (gst_audio_get_channel_positions):
18057           When we have more than 2 channels, but no channel layout is
18058           specified in the caps, return some default channel layout
18059           to the caller and warn about about a possibly buggy element
18060           (could be buggy filtercaps as well of course) (#317038).
18061
18062 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
18063
18064         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
18065           Add gst-libs/gst/cdda to list of lib search paths.
18066
18067 2006-02-15  Andy Wingo  <wingo@pobox.com>
18068
18069         * ext/ogg/gstoggmux.c (gst_ogg_mux_collected): When updating
18070         timestamp, update timestamp_end as well. Fixes a bugaboo. I hope
18071         to the Lord Jesus that I do not have to touch the ogg muxer ever
18072         again.
18073
18074 2006-02-15  Edward Hervey  <edward@fluendo.com>
18075
18076         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
18077         quicktime movie files can also contain 'uuid' atoms.
18078
18079 2006-02-14  Tim-Philipp Müller  <tim at centricular dot net>
18080
18081         * gst/audioconvert/plugin.c: (plugin_init):
18082           Register the GstAudioChannelPosition enum type with the type
18083           system in the plugin_init function, so that it is known before
18084           any element actually makes use of multi-channel stuff. This is
18085           required for example if one wants to be able to deserialise/use
18086           a caps string with channel positions before any pipeline has
18087           been setup and started, like with gst-launch.
18088
18089 2006-02-14  Wim Taymans  <wim@fluendo.com>
18090
18091         * gst-libs/gst/audio/gstringbuffer.c:
18092         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_delay),
18093         (gst_ring_buffer_samples_done), (wait_segment),
18094         (gst_ring_buffer_commit), (gst_ring_buffer_clear):
18095         Add some compiler G_(UN_)LIKELY help.
18096         SIGNAL the ringbuffer waiters when going to PAUSED as well to
18097         make sure they can exit their functions. Should fix #330748
18098
18099 2006-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
18100
18101         * Makefile.am:
18102         * configure.ac:
18103         * win32/MANIFEST:
18104         * win32/common/_stdint.h:
18105           Windows does not have long long; copy the generated _stdint.h
18106         * win32/common/interfaces-enumtypes.c:
18107         (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
18108         (gst_mixer_track_flags_get_type),
18109         (gst_tuner_channel_flags_get_type):
18110         * win32/common/multichannel-enumtypes.c:
18111         (gst_audio_channel_position_get_type):
18112           update
18113
18114 2006-02-13  Wim Taymans  <wim@fluendo.com>
18115
18116         * gst-libs/gst/audio/gstbaseaudiosink.c:
18117         (gst_base_audio_sink_get_time), (gst_base_audio_sink_preroll),
18118         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
18119         Always sync on first sample we receive when starting.
18120
18121 2006-02-13  Wim Taymans  <wim@fluendo.com>
18122
18123         * gst/playback/gstplaybin.c: (gen_vis_element):
18124         Update vis bin docs.
18125         Move queue after tee so we don't queue video buffers but
18126         audio samples instead. Fixes problems where the video queue
18127         is filled and the audio queue empty.
18128
18129 2006-02-13  Tim-Philipp Müller  <tim at centricular dot net>
18130
18131         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
18132           No need to push an EOS event here, GstBaseSrc will do that for us
18133           when we return FLOW_UNEXPECTED.
18134           
18135 2006-02-12  Wim Taymans  <wim@fluendo.com>
18136
18137         * gst-libs/gst/audio/gstbaseaudiosink.c:
18138         (gst_base_audio_sink_get_time), (gst_base_audio_sink_setcaps),
18139         (gst_base_audio_sink_drain), (gst_base_audio_sink_preroll),
18140         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
18141         Use scale functions when possible.
18142         Fix error messages.
18143         Free clockid when after waiting for EOS.
18144         Use G_(UN_)LIKLY when it makes sense.
18145         Fix sample clipping bug found by Arwed v. Merkatz fixes #330789.
18146
18147 2006-02-12  Edward Hervey  <edward@fluendo.com>
18148
18149         * gst/playback/gstplaybasebin.c: (prepare_output): 
18150         Remove stray semi-colon (fixes #330888).
18151
18152 2006-02-12  Jan Schmidt  <thaytan@mad.scientist.com>
18153
18154         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
18155         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls):
18156         Fix up the XShm call testing so that we catch errors, and don't
18157         cause new ones by attempting to detach from a segment we failed
18158         to attach to. Fixes #312439.
18159
18160 2006-02-10  Edward Hervey  <edward@fluendo.com>
18161
18162         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
18163         Added flv file typefind (video/x-flv).
18164
18165 2006-02-10  Edward Hervey  <edward@fluendo.com>
18166
18167         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
18168         (gst_riff_create_video_template_caps):
18169         Added FLV1 <==> 'video/x-flash-video,flvversion=1' conversion.
18170         Also added the caps to the default set of riff video caps.
18171
18172 2006-02-09  Andy Wingo  <wingo@pobox.com>
18173
18174         * ext/ogg/gstoggmux.c (GstOggPad): Keep track of both the start
18175         time and the end time of the last packet in the page.
18176         (gst_ogg_mux_pad_queue_page): In addition to setting the timestamp
18177         on the pages in our queue, set the duration as well. Reflow a
18178         debug statement.
18179         (gst_ogg_mux_collected): Keep track of GstOggPad->timestamp_end.
18180         Fixes bad muxing order.
18181
18182 2006-02-09  Thomas Vander Stichele  <thomas at apestaart dot org>
18183
18184         * gst-libs/gst/rtp/gstbasertppayload.c:
18185         (gst_basertppayload_setcaps), (gst_basertppayload_push):
18186           update seqnum before setting it on the packet; this makes sure
18187           that the timestamp and seqnum properties match after pushing
18188           a buffer
18189
18190 2006-02-09  Andy Wingo  <wingo@pobox.com>
18191
18192         * gst-libs/gst/audio/gstringbuffer.c
18193         (gst_ring_buffer_samples_done): Cast to guint64, fixes an integer
18194         overflow after 13.5 hours of recording. Kapow!
18195
18196         * ext/alsa/gstalsasrc.c (gst_alsasrc_delay): Clamp the delay to
18197         the buffer size -- we don't care about underrun/overrun reporting
18198         right now, just need to return a useful value.
18199
18200 2006-02-09  Jan Schmidt  <thaytan@mad.scientist.com>
18201
18202         * configure.ac:
18203           Back to CVS
18204
18205 === release 0.10.3 ===
18206
18207 2006-02-09  Jan Schmidt <thaytan@mad.scientist.com>
18208
18209         * configure.ac:
18210           releasing 0.10.3, "Under Pressure"
18211
18212 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
18213
18214         * configure.ac:
18215         Drat. Bump libtool version number for new API.
18216         Prelease 0.10.2.3 (of 0.10.3)
18217
18218 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
18219
18220         * configure.ac:
18221         * win32/common/config.h:
18222         0.10.2.2 prerelease (of 0.10.3).
18223
18224 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
18225
18226         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_create):
18227           Revert Andy's newsegment change pending a more correct
18228           fix.
18229
18230 2006-02-08  Thomas Vander Stichele  <thomas at apestaart dot org>
18231
18232         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
18233         (qt_type_find), (plugin_init):
18234           detect more files as 3gp
18235           group and reorder the iso file formats
18236
18237 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
18238
18239         * ext/vorbis/vorbis.c: (plugin_init):
18240           Register musicbrainz tags, so apps don't have to.
18241
18242 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
18243
18244         * gst-libs/gst/tag/gstvorbistag.c: (gst_tag_from_vorbis_tag),
18245         (gst_tag_to_vorbis_tag):
18246           Make sure we called gst_tag_register_musicbrainz_tags()
18247           before possibly mapping a vorbiscomment string from/to a
18248           musicbrainz tag.
18249
18250 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
18251
18252         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
18253           In case we can't find the required number of consecutive
18254           mpeg audio frames to positively identify an MPEG audio
18255           stream, check if there's at least a valid mpeg audio
18256           frame right at offset 0 and if so suggest mpeg/audio
18257           caps with a very low probability (#153004).
18258
18259 2006-02-07  Andy Wingo  <wingo@pobox.com>
18260
18261         * gst/tcp/gsttcpclientsrc.c (gst_tcp_client_src_create): Switch to
18262         a TIME segment if we get timestamped buffers. Requires recent
18263         fixes in core to work properly.
18264
18265 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
18266
18267         * gst/playback/gstplaybasebin.c: (prepare_output):
18268           Don't print the URI as part of the error message, it
18269           makes error dialogs look rather ugly, especially if
18270           the URI is very long or has characters in it that
18271           need escaping.
18272
18273 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
18274
18275         * gst/playback/gstplaybasebin.c: (prepare_output):
18276           Error out if we have only text or subtitles, but nothing
18277           else. Also error out if we have subtitles but no video
18278           stream.
18279
18280 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
18281
18282         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
18283           Treat GNOME_VFS_RESULT_EOF as EOS, not as error (#329194).
18284           Post an error message on the bus when we encounter an
18285           error, which will hopefully be more meaningful than the
18286           'Internal Flow Error' message users get to see if we
18287           just return GST_FLOW_ERROR.
18288
18289 2006-02-07  Andy Wingo  <wingo@pobox.com>
18290
18291         * configure.ac (GST_MAJORMINOR): Update core version req to
18292         0.10.2.2, for the collectpads API addition (#330244).
18293
18294 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
18295
18296         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
18297           Return FALSE from plugin_init() when GnomeVFS can't
18298           be initialised for some reason (#328423).
18299
18300 2006-02-06  Julien MOUTTE  <julien@moutte.net>
18301
18302         * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event): 
18303         Stick to seeking theory until i find the bug.
18304         * gst/subparse/gstsubparse.c: (parse_subrip): Fix debug.
18305
18306 2006-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
18307
18308         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
18309         (theora_enc_finalize), (theora_enc_sink_setcaps),
18310         (theora_set_header_on_caps), (theora_enc_chain),
18311         (theora_enc_change_state):
18312         * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
18313           Make theoraenc and the tests leak free. Like, really.
18314
18315 2006-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
18316
18317         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
18318         (theora_enc_finalize), (theora_enc_sink_setcaps):
18319           Add a finalize method to ensure we clean up state even if
18320           someone omitted the state change back to NULL.
18321
18322         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1),
18323         (gst_vorbisenc_chain):
18324           Free some more leaked bits.
18325
18326         * tests/check/pipelines/theoraenc.c: (start_pipeline),
18327         (stop_pipeline):
18328           Wait for state changes to happen if they're ASYNC.
18329
18330           This ought to teach those fancy pants buildbots a lesson.
18331
18332 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
18333
18334         * gst-libs/gst/tag/gstid3tag.c:
18335           Add mapping for ID3 International Standard Recording Code
18336           tag "TSRC"
18337
18338 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
18339
18340         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1):
18341           Don't leak tag names.
18342
18343 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
18344
18345         * docs/libs/gst-plugins-base-libs-docs.sgml:
18346         * docs/libs/gst-plugins-base-libs-sections.txt:
18347         * gst-libs/gst/tag/gstid3tag.c:
18348         * gst-libs/gst/tag/gstvorbistag.c:
18349         * gst-libs/gst/tag/tags.c:
18350           Split libgsttag docs into multiple sections.
18351
18352 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
18353
18354         * docs/libs/Makefile.am:
18355         * docs/libs/gst-plugins-base-libs-docs.sgml:
18356         * docs/libs/gst-plugins-base-libs-sections.txt:
18357         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_tag):
18358         * gst-libs/gst/tag/gstvorbistag.c:
18359         * gst-libs/gst/tag/tag.h:
18360         * gst-libs/gst/tag/tags.c:
18361           Add libgsttag to the docs.
18362
18363 2006-02-05  Julien MOUTTE  <julien@moutte.net>
18364
18365         * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize),
18366         (gst_text_overlay_init), (gst_text_overlay_src_event),
18367         (gst_text_overlay_collected): Fix clockoverlay.
18368
18369 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
18370
18371         * docs/libs/compiling.sgml:
18372           Fix typo: it's pkg-config, not pkg-gconfig
18373
18374         * docs/libs/gst-plugins-base-libs-docs.sgml:
18375         * docs/libs/gst-plugins-base-libs-sections.txt:
18376         * docs/libs/tmpl/gstgconf.sgml:
18377           There is no libgstgconf in 0.10, remove it
18378           from the docs.
18379
18380 2006-02-05  Julien MOUTTE  <julien@moutte.net>
18381
18382         * docs/libs/tmpl/gstcolorbalance.sgml: Updated.
18383         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
18384         (gst_text_overlay_src_event), (gst_text_overlay_collected):
18385         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
18386         (gst_sub_parse_class_init), (gst_sub_parse_init),
18387         (gst_sub_parse_src_event), (parse_mdvdsub), (parse_subrip),
18388         (parse_mpsub), (parser_state_init), (handle_buffer),
18389         (gst_sub_parse_chain), (gst_sub_parse_sink_event), (plugin_init):
18390         * gst/subparse/gstsubparse.h: Introduce seeking code.
18391
18392 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
18393
18394         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
18395           Add comment about LANGUAGE tag inconsistency (we want
18396           ISO-639-1, but extract three-letter identifiers?)
18397
18398         * po/POTFILES.in:
18399           Add two translatable files.
18400
18401 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
18402
18403         * gst-libs/gst/tag/Makefile.am:
18404         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
18405         * gst-libs/gst/tag/tag.h:
18406         * gst-libs/gst/tag/tags.c:
18407         (gst_tag_register_musicbrainz_tags_internal),
18408         (gst_tag_register_musicbrainz_tags):
18409           Forward-port some tags stuff from the 0.8 branch. This is
18410           mostly the addition of musicbrainz tags and their mapping
18411           to vorbistags, and a vorbistag mapping of the language tag.
18412
18413 2006-02-05  Julien MOUTTE  <julien@moutte.net>
18414
18415         * gst/playback/gstplaybin.c: (gen_text_element): Fix broken code
18416         refactoring.
18417
18418 2006-02-04  David Schleef  <ds@schleef.org>
18419
18420         * ext/ogg/gstoggmux.c:
18421         * gst/typefind/gsttypefindfunctions.c:
18422           Add Dirac typefinding and add dirac format to oggmux.
18423
18424 2006-02-03  Tim-Philipp Müller  <tim at centricular dot net>
18425
18426         * gst/playback/gstdecodebin.c: (try_to_link_1):
18427           Don't put essential function call into
18428           g_return_*() macro, otherwise it'll all be
18429           replaced by NOOPs when compiling with
18430           G_DISABLE_CHECKS defined.
18431
18432 2006-02-03  Edgard Lima <edgard.lima@indt.org.br>
18433
18434         * ext/ogg/gstoggdemux.c:
18435         * ext/ogg/gstoggparse.c:
18436         * gst/tcp/gsttcpserversink.c:
18437         * sys/v4l/v4lsrc_calls.c:
18438         * sys/v4l/v4lsrc_calls.h:
18439         Just make it compile with --disable-gst-debug.
18440
18441 2006-02-03  Wim Taymans  <wim@fluendo.com>
18442
18443         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
18444         (gst_alsasink_class_init), (gst_alsasink_init),
18445         (gst_alsasink_write), (gst_alsasink_reset):
18446         * ext/alsa/gstalsasink.h:
18447         Add lock to protect alsa calls.
18448         Implement reset to flush samples ASAP, does not work
18449         with dmix though.
18450
18451 2006-02-02  Wim Taymans  <wim@fluendo.com>
18452
18453         * gst-libs/gst/audio/gstbaseaudiosink.c:
18454         (gst_base_audio_sink_provide_clock):
18455         Ugh.. getting late I guess...
18456
18457 2006-02-02  Wim Taymans  <wim@fluendo.com>
18458
18459         * gst-libs/gst/audio/gstbaseaudiosink.c:
18460         (gst_base_audio_sink_provide_clock),
18461         (gst_base_audio_sink_set_property),
18462         (gst_base_audio_sink_get_property), (gst_base_audio_sink_render):
18463         Don't try to provide a clock when we are not negotiated since
18464         we might not be able to make it run.
18465
18466 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
18467
18468         * gst/playback/gstdecodebin.c: (try_to_link_1):
18469           Unlinking two source pads is ... hard.
18470
18471 2006-02-02  Wim Taymans  <wim@fluendo.com>
18472
18473         * gst-libs/gst/audio/TODO:
18474         Updated.
18475
18476         * gst-libs/gst/audio/gstbaseaudiosink.c:
18477         (gst_base_audio_sink_drain), (gst_base_audio_sink_event):
18478         On EOS, wait till the last sample is played before posting EOS.
18479
18480 2006-02-01  Philippe Kalaf <burger at speedy dot org>
18481
18482         Patch by: Kai Vehmanen
18483         * gst-libs/gst/rtp/gstbasertpdepayload.c:
18484           Adds ability to enable newsegment bypass by setting queue_delay to
18485           zero. Also avoid thread being started if queue_delay is zero.
18486
18487 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
18488
18489         * gst/playback/test6.c: (new_decoded_pad_cb), (show_error), (main):
18490           Make test work again by connecting fakesinks to each decoded pad,
18491           which makes the pipeline wait until each fakesink has a buffer
18492           queued before going to PAUSED state. At that point we know the
18493           decodebin pads are negotiated.
18494
18495 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
18496
18497         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_query),
18498         (gst_cdda_base_src_handle_event):
18499         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_query):
18500           Pass unhandled queries to the parent class's query function.
18501
18502 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
18503
18504         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_types),
18505         (gst_ogg_pad_src_query):
18506         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
18507         * ext/theora/theoradec.c: (theora_dec_src_query),
18508         (theora_dec_sink_query):
18509         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
18510         (vorbis_dec_sink_query):
18511         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
18512         (gst_vorbisenc_sink_query):
18513         * gst/adder/gstadder.c: (gst_adder_query):
18514           Pass unhandled queries upstream instead of just
18515           dropping them (#326447). Also, fix supported
18516           query types list for some elements.
18517
18518 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
18519
18520         * gst/typefind/gsttypefindfunctions.c: (au_type_find),
18521         (paris_type_find), (ilbc_type_find), (plugin_init):
18522           Fix typefinding for audio/x-au, audio/x-paris and
18523           audio/iLBC-sh. We cannot use the START_WITH macros
18524           here, because there can only be one typefind factory
18525           with the same name (caps), so the second one would
18526           replace the first one and the first one would never
18527           be called when doing typefinding (see #161712).
18528           
18529
18530 2006-01-31  Wim Taymans  <wim@fluendo.com>
18531
18532         * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
18533         (vorbis_handle_header_packet), (vorbis_dec_push),
18534         (vorbis_handle_data_packet):
18535         Use scale_int when we can, add some more scaling.
18536         Check packettype before parsing it.
18537
18538 2006-01-31  Wim Taymans  <wim@fluendo.com>
18539
18540         * ext/theora/theoradec.c: (_theora_granule_time),
18541         (theora_dec_src_convert), (theora_dec_sink_convert):
18542         Call right _scale functions.
18543         Use parameter instead of some other random value.
18544
18545 2006-01-31  Wim Taymans  <wim@fluendo.com>
18546
18547         * ext/theora/theoradec.c: (_theora_granule_frame),
18548         (_theora_granule_time), (_inc_granulepos),
18549         (theora_dec_src_convert), (theora_dec_sink_convert),
18550         (theora_handle_type_packet), (theora_handle_data_packet),
18551         (theora_dec_chain):
18552         Use higher precision timestamps calculation.
18553         Convert some other conversions to _scale.
18554
18555 2006-01-31  Stefan Kost  <ensonic@users.sf.net>
18556
18557         * gst/audiotestsrc/gstaudiotestsrc.c:
18558         (gst_audio_test_src_create_sine_table), (plugin_init):
18559         * gst/volume/gstvolume.c: (plugin_init):
18560           initialize gst_controller before using
18561
18562 2006-01-31  Jan Schmidt  <thaytan@mad.scientist.com>
18563
18564         * tests/check/pipelines/theoraenc.c:
18565         * tests/check/pipelines/vorbisenc.c:
18566         Define constant using G_GINT64_CONSTANT to avoid errors when
18567         passing it around - otherwise it gets truncated to 32 bits.
18568
18569         Fixes failing tests.
18570
18571 2006-01-31  Andy Wingo  <wingo@pobox.com>
18572
18573         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_set_caps): Don't segfault if the
18574         caps being set doesn't have a framerate value. Basically a stopgap
18575         measure.
18576
18577         * ext/ogg/gstoggmux.c (GST_BUFFER_END_TIME): New macro. Not
18578         technically correct enough to put into core though.
18579         (gst_ogg_mux_dequeue_page): Use END_TIME instead of TIMESTAMP +
18580         DURATION. Fixes theoraenc ! oggmux.
18581
18582         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Fixate to the nearest
18583         fraction, not double.
18584
18585 2006-01-31  Sebastien Moutte  <sebastien@moutte.net>
18586
18587         * win32/vs7:
18588         add vs7 project files created by Sergey Scobich
18589
18590 2006-01-30  Sebastien Moutte  <sebastien@moutte.net>
18591
18592         * win32/vs8:
18593         add vs8 project files created by Sergey Scobich
18594         
18595 2006-01-30  Andy Wingo  <wingo@pobox.com>
18596
18597         * ext/ogg/gstoggmux.c (gst_ogg_mux_dequeue_page): Compare
18598         timestamp + duration, not just timestamp -- ogg pages should be
18599         ordered by stop time. Necessary fix given the change in vorbis
18600         timestamps.
18601
18602         * ext/theora/theoraenc.c (theora_enc_sink_setcaps) 
18603         (gst_theora_enc_init): Pull the granule shift out of the encoder.
18604         (granulepos_add): New function, handles the messiness of adjusting
18605         granulepos values.
18606         (theora_buffer_from_packet):
18607         (theora_enc_chain):
18608         (theora_enc_sink_event): Use granulepos_add, not +.
18609
18610         * tests/check/pipelines/theoraenc.c
18611         (check_buffer_granulepos_from_starttime): Just check the frame
18612         count, not the actual granulepos -- we can't dictate to the
18613         encoder when it should be placing keyframes.
18614
18615 2006-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
18616
18617         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
18618           SERVICE_NOT_AVAILABLE happens for example when you're trying to
18619           play an http:// stream from a server that's not serving
18620
18621 2006-01-30  Andy Wingo  <wingo@pobox.com>
18622
18623         * tests/check/pipelines/vorbisenc.c (TIMESTAMP_OFFSET): 
18624         * tests/check/pipelines/theoraenc.c (TIMESTAMP_OFFSET): Totally
18625         remove the UINT64_CONSTANT macro, doesn't appear to be needed or
18626         available.
18627
18628         * ext/theora/gsttheoraenc.h:
18629         * ext/theora/theoraenc.c: Same changes as were done to vorbisenc,
18630         although theoraenc was timestamping correctly. Added handling of
18631         streams that start with nonzero timestamps.
18632
18633         * tests/check/Makefile.am:
18634         * tests/check/pipelines/theoraenc.c: New file, basically does same
18635         tests as vorbisenc.
18636
18637         * tests/check/pipelines/vorbisenc.c: I claim these bugs.
18638
18639 2006-01-30  Wim Taymans  <wim@fluendo.com>
18640
18641         * gst-libs/gst/audio/gstaudiosink.c:
18642         (gst_audioringbuffer_class_init), (gst_audioringbuffer_release),
18643         (gst_audioringbuffer_pause):
18644         Implement pause that does not wait for completion.
18645
18646         * gst-libs/gst/audio/gstbaseaudiosink.c:
18647         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
18648         Don't drop buffers when going to PAUSED but perform preroll on
18649         remaining samples now that core base class supports this.
18650
18651         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_release),
18652         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_stop),
18653         (gst_ring_buffer_commit):
18654         Pause should not signal waiters.
18655         Implement return value of _commit correctly.
18656
18657 2006-01-30  Andy Wingo  <wingo@pobox.com>
18658
18659         * tests/check/Makefile.am (check_vorbis): Add pipelines/vorbisenc.
18660
18661         * ext/vorbis/vorbisenc.c (gst_vorbisenc_buffer_from_packet): Logic
18662         updated to timestamp from the first sample, not the last.
18663         (gst_vorbisenc_buffer_from_header_packet): New function, takes
18664         special care of granulepos and timestamp for header packets.
18665         (gst_vorbisenc_chain): Reflow, fix some leaks, and handle the case
18666         when the first buffer has a nonzero timestamp.
18667
18668         * ext/vorbis/vorbisenc.h (GstVorbisEnc.granulepos_offset)
18669         (GstVorbisEnc.subgranule_offset): New members. Take care of the
18670         case when the first audio buffer we get has a nonzero timestamp.
18671         (GstVorbisEnc.next_ts): Renamed from prev_ts, because now we
18672         properly timestamp vorbis buffers with the time of the first
18673         sample, not the last.
18674         
18675         * ext/vorbis/vorbisenc.c (granulepos_to_clocktime): Renamed from
18676         vorbis_granule_time_copy -- now it takes the granule/subgranule
18677         offset into account.
18678
18679         * tests/check/pipelines/vorbisenc.c: New test for correctness of
18680         timestamps, durations, and granulepos on buffers produced by
18681         vorbisenc.
18682
18683 2006-01-30  Jan Schmidt  <thaytan@mad.scientist.com>
18684
18685         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
18686         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
18687           Patch from Eric Jonas to support conversions to/from UYVY 
18688           (Fixes: #324626)
18689
18690 2006-01-30  Julien MOUTTE  <julien@moutte.net>
18691
18692         * gst/playback/gstplaybasebin.c: (group_commit), (queue_overrun),
18693         (setup_subtitle), (setup_source), (set_active_source):
18694         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
18695         (gen_text_element), (gen_audio_element), (gen_vis_element),
18696         (remove_sinks), (add_sink), (setup_sinks): Implement subtitles.
18697
18698 2006-01-29  Sebastien Moutte  <sebastien@moutte.net>
18699
18700         * gst-libs/gst/audio/audio.h: (GST_CLOCK_TIME_TO_FRAMES)
18701         * gst-libs/gst/audio/gstbaseaudiosink.c: (gst_base_audio_sink_render)
18702                 use gst_guint64_to_gdouble to be compliant with vs6
18703         * gst/playback/gstdecodebin.c: (try_to_link_1)
18704         * gst/videorate/videorate.c: (gst_video_rate_blank_data)
18705                 use G_GINT64_CONSTANT for int64 constants
18706         * win32/common/libgstinterfaces.def:
18707                 export some symbols (gst_mixer_get_type,gst_mixer_track_get_type)
18708         * win32/vs6:
18709                 update and add new project files
18710                 
18711 2006-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
18712
18713         * Makefile.am:
18714         * win32/MANIFEST:
18715         * win32/common/interfaces-enumtypes.c:
18716         (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
18717         (gst_mixer_track_flags_get_type),
18718         (gst_tuner_channel_flags_get_type):
18719         * win32/common/interfaces-enumtypes.h:
18720         * win32/common/multichannel-enumtypes.c:
18721         (gst_audio_channel_position_get_type):
18722         * win32/common/multichannel-enumtypes.h:
18723           add a win32-update rule like in core, and copy over enumtypes files
18724
18725 2006-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
18726
18727         * win32/MANIFEST:
18728         * win32/common/config.h:
18729         * win32/common/config.h.in:
18730           add config files just like in core
18731
18732 2006-01-28  Tim-Philipp Müller  <tim at centricular dot net>
18733
18734         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format):
18735           Make gcc-4.1 happy (part of #327357).
18736
18737 2006-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
18738
18739         * ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
18740         (set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
18741         (gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
18742         * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
18743         (set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
18744         (gst_alsasrc_unprepare), (gst_alsasrc_read):
18745           Update all error messages.  All of them should either use
18746           the default translated message, or actually provide a
18747           translatable string.
18748           Make the string for channel count problems meaningful.
18749
18750 2006-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
18751
18752         * sys/v4l/v4l_calls.c: (gst_v4l_open):
18753           check for and throw RESOURCE_BUSY
18754
18755 2006-01-27  David Schleef  <ds@schleef.org>
18756
18757         * gst/videoscale/vs_scanline.c: Oops, *that's* why I never
18758           checked in this change -- it requires liboil features not
18759           in 0.3.6.  Revert parts.
18760
18761 2006-01-27  David Schleef  <ds@schleef.org>
18762
18763         * REQUIREMENTS:
18764         * configure.ac: update liboil requirement to 0.3.6
18765         * gst/videoscale/Makefile.am:
18766         * gst/videoscale/vs_scanline.c: liboilify
18767
18768 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
18769
18770         * ext/libvisual/visual.c: (get_buffer):
18771           When pad_alloc returns a GstFlowReturn other
18772           than GST_FLOW_OK, make sure it is passed upstream.
18773
18774 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
18775
18776         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
18777         (gst_alsasink_class_init):
18778           Free the device name string.
18779
18780         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
18781         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad),
18782         (gst_ogg_mux_handle_src_event), (gst_ogg_mux_clear_collectpads):
18783           Don't remove a pad from the collectpads structure until it
18784           is released - it's a request pad, and may receive data again
18785           if the element gets moved back to PLAYING state.
18786
18787         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
18788           Ensure we turn on double buffering on the Xv port, and
18789           set the colour key to something dark and mysterious that
18790           isn't black.
18791
18792 2006-01-27  Thomas Vander Stichele  <thomas at apestaart dot org>
18793
18794         * ext/alsa/gstalsaplugin.c: (plugin_init):
18795         * ext/cdparanoia/gstcdparanoiasrc.c:
18796         (gst_cd_paranoia_src_base_init), (plugin_init):
18797         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
18798         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init):
18799           - a library should not call setlocale. see "Libraries" node in
18800             gettext manual
18801           - make sure all plugins that use translation do bindtextdomain
18802             to point to the localedir
18803         * gst/playback/gstplaybin.c: (gen_vis_element), (add_sink),
18804         (setup_sinks), (plugin_init):
18805           all this, and check for NULL when creating sinks
18806
18807 2006-01-27  Julien MOUTTE  <julien@moutte.net>
18808
18809         * gst/subparse/gstsubparse.c: (gst_subparse_type_find),
18810         (plugin_init): Make typefinding of subtitles work again.
18811
18812 2006-01-26  Tim-Philipp Müller  <tim at centricular dot net>
18813
18814         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
18815         (mp3_type_frame_length_from_header), (mp3_type_find),
18816         (wavpack_type_find), (m4a_type_find), (ircam_type_find),
18817         (plugin_init):
18818           Backport a bunch of typefinding fixes from the 0.8 branch.
18819           Also, improve wavpack typefinding: if we can't peek the
18820           entire wavpack block, try to parse the bits we can get and
18821           see if we find what we're looking for in those.
18822
18823 2006-01-26  Julien MOUTTE  <julien@moutte.net>
18824
18825         * sys/ximage/ximagesink.c:
18826         (gst_ximagesink_calculate_pixel_aspect_ratio):
18827         * sys/xvimage/xvimagesink.c:
18828         (gst_xvimagesink_calculate_pixel_aspect_ratio): Handle some
18829         more cases of pixel aspect ratio.
18830
18831 2006-01-26  Edward Hervey  <edward@fluendo.com>
18832
18833         * gst/playback/gstdecodebin.c: (pad_probe):
18834         Also consider the flush-start and tag events as unblockers
18835         for the pad probes.
18836
18837 2006-01-26  Julien MOUTTE  <julien@moutte.net>
18838
18839         * gst/playback/gstplaybin.c: (gst_play_bin_init),
18840         (gst_play_bin_dispose), (gst_play_bin_vis_unblocked),
18841         (gst_play_bin_vis_blocked), (gst_play_bin_set_property): 
18842         On the fly visualisation switch, works disabling, enabling as
18843         well but it won't be able to enable vis in a playbin that was
18844         created with no visualisation.
18845
18846 2006-01-25  Wim Taymans  <wim@fluendo.com>
18847
18848         * gst-libs/gst/audio/gstbaseaudiosink.c:
18849         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
18850         Undo previous commit that returned WRONG_STATE sooner, it breaks 
18851         resume after pause.
18852
18853 2006-01-25  Wim Taymans  <wim@fluendo.com>
18854
18855         * gst-libs/gst/audio/gstbaseaudiosink.c:
18856         (gst_base_audio_sink_setcaps), (gst_base_audio_sink_event),
18857         (gst_base_audio_sink_preroll), (gst_base_audio_sink_render):
18858         Improve debugging.
18859         Post error when caps cannot be parsed.
18860         Resync on discontinuity in the stream.
18861         Clip samples to segment boundaries.
18862         return WRONG_STATE sooner when we are flushing.
18863
18864         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
18865         (gst_base_audio_src_get_time), (gst_base_audio_src_create):
18866         Make audiosrc operate in TIME.
18867         Set TIMESTAMP and DURATION on buffers.
18868
18869 2006-01-24  Tim-Philipp Müller  <tim at centricular dot net>
18870
18871         * tests/examples/seek/seek.c: (main):
18872           Output tag messages as well.
18873
18874 2006-01-23  Edward Hervey  <edward@fluendo.com>
18875
18876         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
18877         (free_pad_probes), (remove_fakesink), (pad_probe),
18878         (close_pad_link), (gst_decode_bin_change_state):
18879         Replace GstPadBlockCallback with pad probes that detect
18880         first buffer AND eos before removing fakesink.
18881         Fixes hang with demuxers doing EOS while pre-rolling.
18882         Solves #328279
18883
18884 2006-01-23  Andy Wingo  <wingo@pobox.com>
18885
18886         * ext/alsa/gstalsasink.c:
18887         * gst-libs/gst/rtp/gstbasertpdepayload.c:
18888         (gst_base_rtp_depayload_setcaps),
18889         (gst_base_rtp_depayload_add_to_queue),
18890         (gst_base_rtp_depayload_queue_release): GCC 2.95 fixes (#328263).
18891         
18892         Patch by: Jens Granseuer <jensgr at gmx dot net>
18893
18894 2006-01-22  Julien MOUTTE  <julien@moutte.net>
18895
18896         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
18897         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
18898         (gst_xvimagesink_buffer_alloc): Playbin keeps some ref to some 
18899         frames. We might get a frame destroyed after changing state to
18900         NULL, adding a safety check on xcontext.
18901
18902 2006-01-22  Tim-Philipp Müller  <tim at centricular dot net>
18903
18904         * gst-libs/gst/interfaces/xoverlay.c:
18905           Fix prepare-xwindow-id code example in the docs - we need to
18906           ignore all messages that aren't element messages as well.
18907           
18908 2006-01-21  Julien MOUTTE  <julien@moutte.net>
18909
18910         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
18911           I think one day i'll completely undestand how caps negotiation
18912           is supposed to work. This refactoring handles buffer_alloc
18913           called with caps we can't handle. We definitely don't want a
18914           set_caps with those caps, so we define and allocate a buffer
18915           we would like to receive.
18916
18917 2006-01-19  Tim-Philipp Müller  <tim at centricular dot net>
18918
18919         * gst/playback/gstplaybasebin.c: (setup_source):
18920           Free iterator when done.
18921
18922 2006-01-17  Jan Schmidt  <thaytan@mad.scientist.com>
18923
18924         * gst-libs/gst/audio/gstbaseaudiosink.c:
18925         (gst_base_audio_sink_render):
18926           Fix playback of non-synchronised streams by assuming a rate
18927           of 1.0 instead of a random one.
18928
18929           Makes this work again:
18930
18931           gst-launch filesrc location=raw_audio.file ! 'audio/x-raw-int,
18932           endianness=(int)4321, signed=(boolean)true, width=(int)16,
18933           depth=(int)16, rate=(int)44100, channels=(int)2' ! audioconvert !
18934           audioresample ! alsasink
18935
18936 === release 0.10.2 ===
18937
18938 2006-01-16  Thomas Vander Stichele <thomas at apestaart dot org>
18939
18940         * configure.ac:
18941           releasing 0.10.2, "Then the devil is six"
18942
18943 2006-01-16  Jan Schmidt  <thaytan@mad.scientist.com>
18944
18945         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
18946         * gst/playback/gststreamselector.c:
18947         (gst_stream_selector_set_property):
18948           Comment out broken code that connects to the state-changed signal.
18949           At this point, changing current stream selection is broken, but 
18950           stuff like gst-launch playbin current-audio=1 works and filters
18951           to the chosen stream.
18952
18953 2006-01-16  Thomas Vander Stichele  <thomas at apestaart dot org>
18954
18955         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
18956           Fix #327216 (null dereference in vorbisdec)
18957
18958 2006-01-16  Tim-Philipp Müller  <tim at centricular dot net>
18959
18960         * ext/theora/theoradec.c: (theora_handle_comment_packet):
18961           Post taglist actually on bus instead of just freeing it
18962           (fixes #327114 and totem bug #327080).
18963
18964         * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
18965           Use gst_element_found_tags_for_pad(), so that the tags
18966           are sent downstream as an event as well.
18967
18968 2006-01-15  Thomas Vander Stichele  <thomas at apestaart dot org>
18969
18970         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
18971         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
18972         (gst_ximagesink_buffer_alloc):
18973         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
18974         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_show_frame),
18975         (gst_xvimagesink_buffer_alloc):
18976           move all regularly occurring messages to GST_LOG level
18977           add some more object logs
18978
18979 2006-01-14  Thomas Vander Stichele  <thomas at apestaart dot org>
18980
18981         * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
18982           fix a silly segfault
18983
18984 2006-01-14  Tim-Philipp Müller  <tim at centricular dot net>
18985
18986         * docs/libs/gst-plugins-base-libs-docs.sgml:
18987         * docs/libs/gst-plugins-base-libs-sections.txt:
18988         * gst-libs/gst/audio/mixerutils.c:
18989         * gst-libs/gst/audio/mixerutils.h:
18990           Add docs for mixerutils stuff.
18991
18992 2006-01-13  Tim-Philipp Müller  <tim at centricular dot net>
18993
18994         * gst/playback/gstplaybasebin.c: (setup_source):
18995           Fix playback for sources that emit raw audio or
18996           raw video streams (e.g.: cd audio sources) (#325984).
18997
18998 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
18999
19000         * gst-libs/gst/audio/mixerutils.c:
19001         (gst_audio_mixer_filter_do_filter):
19002           actually save the element we create
19003
19004 2006-01-12  Tim-Philipp Müller  <tim at centricular dot net>
19005
19006         * gst-libs/gst/cdda/gstcddabasesrc.c:
19007         (gst_cdda_base_src_handle_track_seek):
19008           No need to post a tag message on the bus when seeking
19009           within the same track, only post it when the current
19010           track changes.
19011
19012 2006-01-11  Jan Schmidt  <thaytan@mad.scientist.com>
19013
19014         * gst/playback/gstplaybasebin.c: (group_destroy),
19015         (probe_triggered), (new_decoded_pad), (mute_group_type),
19016         (set_active_source):
19017         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
19018         * gst/playback/gststreamselector.c:
19019         (gst_stream_selector_base_init),
19020         (gst_stream_selector_set_property),
19021         (gst_stream_selector_request_new_pad):
19022           Reenable stream selection. These mechanisms need a complete overhaul
19023           in the face of 0.8->0.10 changes though.
19024
19025 2006-01-11  Jan Schmidt  <thaytan@mad.scientist.com>
19026
19027         * ext/ogg/gstoggdemux.c:
19028           Change the pad template to src_%d to match the pads that 
19029           are created from it. decodebin needs this information in order
19030           to decide that oggdemux is capable of producing multiple pads
19031           (and hence needs queues inserted).
19032
19033         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
19034         (gst_ogg_mux_collected):
19035           Make debug output more useful by using GST_PTR_FORMAT.
19036
19037 2006-01-11  Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
19038
19039         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
19040
19041         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps):
19042           Set depth and width for alaw/mulaw (fixes #326601).
19043
19044 2006-01-11  Thomas Vander Stichele  <thomas at apestaart dot org>
19045
19046         * tests/icles/Makefile.am:
19047           don't build the tests if we don't have the libs
19048
19049 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
19050
19051         * ext/cdparanoia/gstcdparanoiasrc.c: (gst_cd_paranoia_src_close),
19052         (gst_cd_paranoia_paranoia_callback):
19053           Don't try to free NULL pointers.
19054
19055 2006-01-10  Edward Hervey  <edward@fluendo.com>
19056
19057         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain),
19058         (gst_audio_rate_change_state), (plugin_init):
19059         Add debugging category.
19060         Fix type issues.
19061         Add case for incoming buffers without valid offset/offset_end.
19062
19063 2006-01-10  Michael Smith  <msmith@fluendo.com>
19064
19065         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_dispose):
19066           Don't leak GCond in audio sources.
19067
19068 2006-01-10  Jan Schmidt  <thaytan@mad.scientist.com>
19069
19070         * gst/playback/gstplaybin.c: (gen_audio_element):
19071           Don't leak an autoaudiosink/alsasink when we generate
19072           a new audio element. (old code, I guess)
19073
19074 2006-01-10  Michael Smith  <msmith@fluendo.com>
19075
19076         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
19077           Support float audio in audiorate.
19078           Use width rather than depth for selecting sample width.
19079
19080 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
19081
19082         * gst/videotestsrc/videotestsrc.h:
19083           Use GLib types here (that way we don't have to include the
19084           generated _stdint.h header, which makes life easier for win32
19085           folks that don't use autotools for the build) (#325990, patch
19086           by: Sergey Scobich).
19087
19088 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
19089
19090         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
19091         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
19092         (gst_ring_buffer_pause), (wait_segment):
19093         * gst-libs/gst/audio/gstringbuffer.h:
19094           Name (private) union, makes Forte compiler happy (this time
19095           for real) (#324900).
19096
19097 2006-01-09  Tim-Philipp Müller  <tim at centricular dot net>
19098
19099         * gst-libs/gst/audio/Makefile.am:
19100           Link against libgstinterfaces, needed for mixer
19101           and property probe stuff.
19102
19103 2006-01-09  Edward Hervey  <edward@fluendo.com>
19104
19105         * gst-libs/gst/Makefile.am:
19106
19107 2006-01-09  Tim-Philipp Müller  <tim at centricular dot net>
19108
19109         * gst-libs/gst/audio/Makefile.am:
19110         * gst-libs/gst/audio/mixerutils.c:
19111         (gst_audio_mixer_filter_do_filter),
19112         (gst_audio_mixer_filter_check_element),
19113         (gst_audio_mixer_filter_probe_feature),
19114         (element_factory_rank_compare_func),
19115         (gst_audio_default_registry_mixer_filter):
19116         * gst-libs/gst/audio/mixerutils.h:
19117           Add gst_audio_default_registry_mixer_filter() utility
19118           function.
19119
19120 2006-01-03  Michael Smith  <msmith@fluendo.com>
19121
19122         * gst/audioresample/resample.h:
19123           As before, but for o_buf
19124
19125 2006-01-03  Michael Smith  <msmith@fluendo.com>
19126
19127         * gst/audioresample/resample.h:
19128           Declare struct _ResampleState.buffer as unsigned char *, not void *,
19129           since we do arithmetic on it.
19130
19131 2006-01-02  Tim-Philipp Müller  <tim at centricular dot net>
19132
19133         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
19134         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
19135         (gst_ring_buffer_pause), (wait_segment):
19136         * gst-libs/gst/audio/gstringbuffer.h:
19137           Sun's Forte compiler doesn't seem to like anonymous structs,
19138           so use same setup as in GstBaseSrc (fixes #324900).
19139
19140 2005-12-30  Stefan Kost  <ensonic@users.sf.net>
19141
19142         * configure.ac:
19143         * gst/volume/Makefile.am:
19144         * gst/volume/demo.c:
19145           move old example to tests/examples/volume/volune.c
19146         * tests/examples/Makefile.am:
19147         * tests/examples/seek/seek.c: (main):
19148           change window-close event from "delete-event" to "destroy"
19149         * tests/examples/volume/Makefile.am:
19150         * tests/examples/volume/volume.c: (value_changed_callback),
19151         (setup_gui), (message_received), (eos_message_received), (main):
19152           fix event handling and bus usage
19153
19154 2005-12-29  Stefan Kost  <ensonic@users.sf.net>
19155
19156         * gst/audiotestsrc/gstaudiotestsrc.c:
19157         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
19158         (gst_audio_test_src_init), (gst_audio_test_src_src_fixate),
19159         (gst_audio_test_src_query), (gst_audio_test_src_create_sine),
19160         (gst_audio_test_src_create_square),
19161         (gst_audio_test_src_create_saw),
19162         (gst_audio_test_src_create_triangle),
19163         (gst_audio_test_src_create_silence),
19164         (gst_audio_test_src_create_white_noise),
19165         (gst_audio_test_src_create_pink_noise),
19166         (gst_audio_test_src_init_sine_table),
19167         (gst_audio_test_src_create_sine_table),
19168         (gst_audio_test_src_change_wave),
19169         (gst_audio_test_src_change_volume), (gst_audio_test_src_do_seek),
19170         (gst_audio_test_src_create), (gst_audio_test_src_set_property):
19171         * gst/audiotestsrc/gstaudiotestsrc.h:
19172           update to basesrc changes, implement segmented seeking and eos
19173           handling, add a 'sine-tab' waveform for performance critical playback
19174
19175 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
19176
19177         * po/POTFILES.in:
19178           ... and this time the other modified file that I missed last time.
19179
19180 2005-12-29  Michael Smith  <msmith@fluendo.com>
19181
19182         * gst/playback/gstdecodebin.c: (new_pad):
19183           Fix non-C89 variable declaration not at the start of a block. Should
19184           help some compilers.
19185
19186 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
19187
19188         * tests/check/Makefile.am:
19189           And now fix 'make distcheck' (builddir != srcdir)
19190
19191 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
19192
19193         * configure.ac:
19194         * ext/cdparanoia/Makefile.am:
19195         * ext/cdparanoia/gstcdparanoia.c:
19196         * ext/cdparanoia/gstcdparanoia.h:
19197         * ext/cdparanoia/gstcdparanoiasrc.c:
19198         (gst_cd_paranoia_mode_get_type), (gst_cd_paranoia_src_base_init),
19199         (gst_cd_paranoia_src_init), (gst_cd_paranoia_src_class_init),
19200         (gst_cd_paranoia_src_open), (gst_cd_paranoia_src_close),
19201         (gst_cd_paranoia_paranoia_callback),
19202         (gst_cd_paranoia_src_read_sector), (gst_cd_paranoia_src_finalize),
19203         (gst_cd_paranoia_src_set_property),
19204         (gst_cd_paranoia_src_get_property), (plugin_init):
19205         * ext/cdparanoia/gstcdparanoiasrc.h:
19206           New cdparanoiasrc element based on cddabasesrc; enable cdparanoia
19207           plugin again (there are still fixes required to playbin to make
19208           cdda:// uris work there).
19209
19210 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
19211
19212         * tests/check/Makefile.am:
19213           Fix test case compilation.
19214
19215 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
19216
19217         * gst-libs/gst/cdda/gstcddabasesrc.c:
19218         (gst_cdda_base_src_update_duration),
19219         (gst_cdda_base_src_calculate_cddb_id):
19220           An integer is not a string. Fix access to uninitialised variable.
19221
19222         * tests/check/Makefile.am:
19223           Add cddabasesrc unit test; also actually enable the vorbis test.
19224
19225         * tests/check/generic/states.c:
19226           Blacklist new cd audio elements as well.
19227
19228         * tests/check/libs/cddabasesrc.c:
19229           Unit test for GstCddaBaseSrc (discid calculation mostly).
19230
19231 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
19232
19233         * docs/libs/Makefile.am:
19234         * docs/libs/gst-plugins-base-libs-docs.sgml:
19235         * docs/libs/gst-plugins-base-libs-sections.txt:
19236         * docs/libs/gst-plugins-base-libs.types:
19237           Add docs for libgstcdda/GstCddaBaseSrc.
19238
19239         * gst-libs/gst/interfaces/mixertrack.h:
19240           Do one struct member per line with a semicolon at the end, that way
19241           even gtk-doc might parse it without complaining.
19242
19243 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
19244
19245         * configure.ac:
19246         * gst-libs/gst/Makefile.am:
19247         * gst-libs/gst/cdda/Makefile.am:
19248         * gst-libs/gst/cdda/base64.c:
19249         * gst-libs/gst/cdda/base64.h:
19250         * gst-libs/gst/cdda/gstcddabasesrc.c:
19251         (gst_cdda_base_src_mode_get_type), (gst_cdda_base_src_base_init),
19252         (gst_cdda_base_src_class_init), (gst_cdda_base_src_init),
19253         (gst_cdda_base_src_finalize), (gst_cdda_base_src_set_property),
19254         (gst_cdda_base_src_get_property),
19255         (gst_cdda_base_src_get_track_from_sector),
19256         (gst_cdda_base_src_get_query_types), (gst_cdda_base_src_convert),
19257         (gst_cdda_base_src_query), (gst_cdda_base_src_is_seekable),
19258         (gst_cdda_base_src_do_seek), (gst_cdda_base_src_handle_track_seek),
19259         (gst_cdda_base_src_handle_event), (gst_cdda_base_src_uri_get_type),
19260         (gst_cdda_base_src_uri_get_protocols),
19261         (gst_cdda_base_src_uri_get_uri), (gst_cdda_base_src_uri_set_uri),
19262         (gst_cdda_base_src_uri_handler_init),
19263         (gst_cdda_base_src_setup_interfaces),
19264         (gst_cdda_base_src_add_track), (gst_cdda_base_src_update_duration),
19265         (cddb_sum), (gst_cddabasesrc_calculate_musicbrainz_discid),
19266         (lba_to_msf), (gst_cdda_base_src_calculate_cddb_id),
19267         (gst_cdda_base_src_add_tags),
19268         (gst_cdda_base_src_add_index_associations),
19269         (gst_cdda_base_src_set_index), (gst_cdda_base_src_get_index),
19270         (gst_cdda_base_src_track_sort_func), (gst_cdda_base_src_start),
19271         (gst_cdda_base_src_clear_tracks), (gst_cdda_base_src_stop),
19272         (gst_cdda_base_src_create):
19273         * gst-libs/gst/cdda/gstcddabasesrc.h:
19274         * gst-libs/gst/cdda/sha1.c:
19275         * gst-libs/gst/cdda/sha1.h:
19276           Add new libgstcdda with GstCddaBaseSrc class.
19277
19278 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
19279
19280         * ext/gnomevfs/gstgnomevfssink.h:
19281           Use GstBaseSinkClass as parent_class member for class struct, not
19282           GstBaseSink.
19283
19284 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
19285
19286         Patch by: Michael Benes
19287
19288         * gst/videotestsrc/gstvideotestsrc.c:
19289         (gst_video_test_src_class_init), (gst_video_test_src_start):
19290           Add start method to reset running time and number of frames sent
19291           when starting up (fixes #324696)
19292
19293 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
19294
19295         * docs/plugins/Makefile.am:
19296         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
19297         * docs/plugins/gst-plugins-base-plugins-sections.txt:
19298         * docs/plugins/gst-plugins-base-plugins.args:
19299         * docs/plugins/gst-plugins-base-plugins.hierarchy:
19300         * docs/plugins/gst-plugins-base-plugins.signals:
19301           Add docs stuff for gnomevfssrc and gnomevfssink.
19302
19303         * ext/gnomevfs/gstgnomevfssrc.c:
19304           Fix example pipeline in gtk-doc blurb.
19305
19306 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
19307
19308         * ext/gnomevfs/Makefile.am:
19309         * ext/gnomevfs/gstgnomevfs.c: (gst_gnome_vfs_uri_get_type),
19310         (gst_gnome_vfs_handle_copy), (gst_gnome_vfs_handle_free),
19311         (gst_gnome_vfs_handle_get_type), (plugin_init):
19312         * ext/gnomevfs/gstgnomevfs.h:
19313         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_do_init),
19314         (gst_gnome_vfs_sink_base_init), (gst_gnome_vfs_sink_class_init),
19315         (gst_gnome_vfs_sink_finalize), (gst_gnome_vfs_sink_init),
19316         (gst_gnome_vfs_sink_set_property),
19317         (gst_gnome_vfs_sink_get_property), (gst_gnome_vfs_sink_open_file),
19318         (gst_gnome_vfs_sink_close_file), (gst_gnome_vfs_sink_start),
19319         (gst_gnome_vfs_sink_stop), (gst_gnome_vfs_sink_handle_event),
19320         (gst_gnome_vfs_sink_query), (gst_gnome_vfs_sink_render),
19321         (gst_gnome_vfs_sink_uri_get_type),
19322         (gst_gnome_vfs_sink_uri_get_protocols),
19323         (gst_gnome_vfs_sink_uri_get_uri), (gst_gnome_vfs_sink_uri_set_uri),
19324         (gst_gnome_vfs_sink_uri_handler_init):
19325         * ext/gnomevfs/gstgnomevfssink.h:
19326           Port gnomevfssink; add gtk-doc blurb.
19327
19328         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_get_type),
19329         (gst_gnome_vfs_src_base_init), (gst_gnome_vfs_src_class_init),
19330         (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
19331         (gst_gnome_vfs_src_uri_get_type),
19332         (gst_gnome_vfs_src_uri_get_protocols),
19333         (gst_gnome_vfs_src_uri_get_uri), (gst_gnome_vfs_src_uri_set_uri),
19334         (gst_gnome_vfs_src_uri_handler_init),
19335         (gst_gnome_vfs_src_set_property), (gst_gnome_vfs_src_get_property),
19336         (gst_gnome_vfs_src_unicodify), (audiocast_thread_run),
19337         (gst_gnome_vfs_src_send_additional_headers_callback),
19338         (gst_gnome_vfs_src_received_headers_callback),
19339         (gst_gnome_vfs_src_push_callbacks),
19340         (gst_gnome_vfs_src_pop_callbacks),
19341         (gst_gnome_vfs_src_get_icy_metadata), (gst_gnome_vfs_src_create),
19342         (gst_gnome_vfs_src_is_seekable), (gst_gnome_vfs_src_get_size),
19343         (gst_gnome_vfs_src_start), (gst_gnome_vfs_src_stop):
19344         * ext/gnomevfs/gstgnomevfssrc.h:
19345           s/gst_gnomevfssrc/gst_gnome_vfs_src/; move header stuff to header
19346           file; add gtk-doc blurb with example pipelines.
19347
19348 === release 0.10.1 ===
19349
19350 2005-12-23  Thomas Vander Stichele <thomas at apestaart dot org>
19351
19352         * configure.ac:
19353           releasing 0.10.1, "Dobro Dedek"
19354
19355 2005-12-21  Edgard Lima <edgard.lima@indt.org.br>
19356
19357         * gst/typefind/gsttypefindfunctions.c:
19358         iLBC30 and iLBC20 added to typefind.
19359
19360 2005-12-20  Thomas Vander Stichele  <thomas at apestaart dot org>
19361
19362         * gst-libs/gst/audio/gstbaseaudiosink.c:
19363         (gst_base_audio_sink_class_init):
19364         * gst-libs/gst/audio/gstbaseaudiosrc.c:
19365         (gst_base_audio_src_class_init):
19366           update strings, values are in microseconds
19367           change the default sink buffer time to something that is smaller
19368           (to help software volume mixing have a slightly lower delay) but
19369           still be acceptable on Wim's laptop
19370
19371 2005-12-20  Edward Hervey  <edward@fluendo.com>
19372
19373         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_template_caps):
19374         Made a quack, forgot to add DUCK to the riff video template.
19375
19376 2005-12-19  Edward Hervey  <edward@fluendo.com>
19377
19378         * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_base_init),
19379         (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
19380         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
19381         (gst_ogm_parse_chain):
19382         Make sure pads are initialized correctly.
19383         * gst-libs/gst/riff/riff-ids.h:
19384         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
19385         (gst_riff_create_video_template_caps):
19386         Add a whole bunch of FOURCC <=> MimeType.
19387         Extend the riff video pad template to support the newly added fourcc.
19388
19389 2005-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
19390
19391         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain),
19392         (gst_ogg_demux_activate_chain):
19393           Extra debug output when activating/deactivating chains.
19394
19395         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
19396         (is_demuxer_element), (try_to_link_1), (remove_element_chain),
19397         (unlinked):
19398           Remove a queue from our list when it becomes unlinked.
19399           Don't add queues to elements in class 'Demux' if they
19400           can only produce one pad 
19401
19402 2005-12-18  Julien MOUTTE  <julien@moutte.net>
19403
19404         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_base_init),
19405         (gst_video_sink_get_type): Add a debug category.
19406
19407 2005-12-17  Philippe Khalaf  <burger@speedy.org> 
19408
19409         * gst-libs/gst/rtp/gstbasertpdepayload.c:
19410         (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_handle_sink_event):
19411           Handle downstream newsegment by sending our own newsegment before the
19412           next buffer to be released. (#323900)
19413
19414 2005-12-17  Philippe Khalaf  <burger@speedy.org> 
19415
19416         * gst-libs/gst/rtp/gstbasertpdepayload.c:
19417         (gst_base_rtp_depayload_set_gst_timestamp):
19418           add queue delay to new segment as well (as opposed to just the first
19419           buffer). (bug #322347)
19420
19421 2005-12-16  Stefan Kost  <ensonic@users.sf.net>
19422
19423         * ext/libvisual/visual.c: (make_valid_name):
19424           change some char* into char[]
19425         * gst/audiotestsrc/gstaudiotestsrc.c:
19426         (gst_audio_test_src_class_init), (gst_audio_test_src_do_seek),
19427         (gst_audio_test_src_create):
19428         * gst/audiotestsrc/gstaudiotestsrc.h:
19429           prepare to handle EOS and SEGMENT_DONE
19430
19431 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
19432
19433         * tests/check/generic/states.c: (GST_START_TEST):
19434           Blacklist cdparanoia element in state test.
19435
19436 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
19437
19438           Patch by: Benjamin Pineau
19439
19440         * gst/tcp/gsttcp.c:
19441         * gst/tcp/gsttcpclientsink.c:
19442         * gst/tcp/gsttcpserversink.c:
19443         * gst/tcp/gsttcpserversrc.c:
19444           Add <string.h> includes for memset and FD_ZERO (fixes #323878)
19445
19446 2005-12-15  Michael Smith  <msmith@fluendo.com>
19447
19448         * gst/videorate/gstvideorate.c: (gst_video_rate_blank_data),
19449         (gst_video_rate_chain):
19450           Fix timestamping for videorate when the first buffer it sees has a
19451           non-zero timestamp. Fix some misleading debug output.
19452
19453 2005-12-15  Michael Smith  <msmith@fluendo.com>
19454
19455         * gst/audioresample/gstaudioresample.c:
19456           Don't leak all input buffers to audioresample.
19457
19458 2005-12-15  Tim-Philipp Müller  <tim at centricular dot net>
19459
19460         * ext/pango/gsttextoverlay.c: (gst_text_overlay_collected):
19461           Don't operate on empty text buffers. Strip newlines and
19462           tabs only from the end of the text, but leave them intact
19463           in the middle. Fix typo in gtk-doc description.
19464
19465 2005-12-15  Tim-Philipp Müller  <tim at centricular dot net>
19466
19467         * gst/playback/gstplaybasebin.c:
19468         * gst/playback/gstplaybin.c: (handoff):
19469           Make sure the video frame buffer we return to apps via the
19470           "frame" property always has caps set on it. Modify
19471           _gst_gvalue_set_object() macro to handle NULL objects
19472           gracefully too.
19473
19474 2005-12-14  Stefan Kost  <ensonic@users.sf.net>
19475
19476         * gst/audiotestsrc/gstaudiotestsrc.c:
19477         (gst_audio_test_src_class_init), (gst_audio_test_src_init),
19478         (gst_audio_test_src_setcaps), (gst_audio_test_src_src_query),
19479         (gst_audio_test_src_do_seek), (gst_audio_test_src_is_seekable),
19480         (gst_audio_test_src_create):
19481         * gst/audiotestsrc/gstaudiotestsrc.h:
19482         Adjust to some recent api changes and add wtays new cool seeking
19483         capabillities
19484
19485 2005-12-14  Tim-Philipp Müller  <tim at centricular dot net>
19486
19487         * ext/alsa/Makefile.am:
19488         * ext/alsa/gstalsadeviceprobe.c:
19489         * ext/alsa/gstalsadeviceprobe.h:
19490           Helper functions to add device probing via the GstPropertyProbe
19491           interface to a class.
19492
19493         * ext/alsa/gstalsamixer.h:
19494           Comment out GST_ALSA_MIXER, it returns a struct that's not
19495           used.
19496
19497         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
19498           Add some debug info. 
19499
19500         * ext/alsa/gstalsamixerelement.c:
19501         (gst_alsa_mixer_element_interface_supported),
19502         (gst_implements_interface_init),
19503         (gst_alsa_mixer_element_init_interfaces),
19504         (gst_alsa_mixer_element_class_init),
19505         (gst_alsa_mixer_element_finalize), (gst_alsa_mixer_element_init),
19506         (gst_alsa_mixer_element_set_property),
19507         (gst_alsa_mixer_element_get_property),
19508         (gst_alsa_mixer_element_change_state):
19509         * ext/alsa/gstalsamixerelement.h:
19510           Add 'device' and 'device-name' properties. Add GstPropertyProbe
19511           for device handling (gnome-volume-control will need that).
19512
19513 2005-12-12  Christian Schaller  <uraeus@gnome.org>
19514
19515         * ext/Makefile.am: fix cdparanoia entry
19516         * gst-plugins-base.spec.in: add cdparanoia
19517
19518 2005-12-12  Michael Smith  <msmith@fluendo.com>
19519
19520         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
19521           Use the correct function to free list of typefind factories.
19522
19523 2005-12-12  Wim Taymans  <wim@fluendo.com>
19524
19525         * gst/videotestsrc/gstvideotestsrc.c:
19526         (gst_video_test_src_class_init), (gst_video_test_src_init),
19527         (gst_video_test_src_parse_caps), (gst_video_test_src_query),
19528         (gst_video_test_src_do_seek), (gst_video_test_src_is_seekable),
19529         (gst_video_test_src_create):
19530         * gst/videotestsrc/gstvideotestsrc.h:
19531         Implement seeking in videotestsrc.
19532         Small cleanups.
19533
19534 2005-12-12  Wim Taymans  <wim@fluendo.com>
19535
19536         * ext/cdparanoia/Makefile.am:
19537         * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
19538         (gst_paranoia_endian_get_type), (_do_init),
19539         (cdparanoia_class_init), (cdparanoia_init),
19540         (cdparanoia_set_property), (cdparanoia_get_property),
19541         (cdparanoia_do_seek), (cdparanoia_is_seekable),
19542         (cdparanoia_create), (cdparanoia_start), (cdparanoia_stop),
19543         (cdparanoia_convert), (cdparanoia_get_query_types),
19544         (cdparanoia_query), (cdparanoia_set_index),
19545         (cdparanoia_uri_set_uri):
19546         * ext/cdparanoia/gstcdparanoia.h:
19547         Partially ported cdparanoia now that basesrc can support a
19548         plugin like this..
19549
19550 2005-12-12  Wim Taymans  <wim@fluendo.com>
19551
19552         * tests/examples/seek/scrubby.c: (main):
19553         Set higher priority for bus events so they don't get reordered with
19554         gtk gui events.
19555
19556         * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
19557         (flush_toggle_cb), (main):
19558         Added checkbox to disable flushing seeks. 
19559         Disable scrubbing when doing non flushing seeks.
19560
19561 2005-12-12  Tim-Philipp Müller  <tim at centricular dot net>
19562
19563         * gst/subparse/gstsubparse.c: (gst_sub_parse_init),
19564         (gst_sub_parse_do_seek), (gst_sub_parse_src_event), (parse_subrip),
19565         (parser_state_init), (handle_buffer), (gst_sub_parse_chain),
19566         (gst_sub_parse_sink_event), (gst_sub_parse_change_state):
19567           Implement some sort of event handling that doesn't rely on
19568           g_return_if_fail; make sure we always push the last chunk of an 
19569           .srt out when we receive an EOS; use gst_pad_alloc_buffer; fix
19570           state change function; remove some old cruft. Seeking is still
19571           rather unlikely to work though.
19572
19573         * tools/.cvsignore:
19574           Ignore more.
19575
19576 2005-12-11  Julien MOUTTE  <julien@moutte.net>
19577
19578         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state): 
19579         Fixed a leak of the current image reference when cleaning up.
19580         Thanks to Arwed von Merkatz (alley_cat) for pointing it out.
19581
19582 2005-12-09  Michael Smith  <msmith@fluendo.com>
19583
19584         * tools/Makefile.am:
19585         * tools/gst-launch-ext-m.m:
19586           Remove gst-launch-ext. It doesn't work, and is no longer
19587           particularly useful.
19588
19589 2005-12-08  Luca Ognibene  <luogni@tin.it>
19590
19591         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
19592           don't pass random values to ogmparse convert function.
19593           Make seeking possible in the exile1.ogm file.
19594
19595 2005-12-07  Tim-Philipp Müller  <tim at centricular dot net>
19596
19597         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
19598         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
19599           Work around refcount problem with g_value_set_object() that occur
19600           if the core has been compiled against GLib-2.6 (g_value_set_object()
19601           will only g_object_ref() the element, but the caller will
19602           gst_object_unref() it and bad things will happen due to the way
19603           GstObjects are refcounted in the GLib-2.6 case). Fixes problems with
19604           totem for people on FC4 using Thomas's 0.10 RPMs.
19605           
19606 2005-12-07  Edward Hervey  <edward@fluendo.com>
19607
19608         Time to welcome ogm to 0.10 :)
19609         
19610         * ext/ogg/gstoggdemux.c: (internal_element_pad_added_cb),
19611         (gst_ogg_pad_typefind):
19612         Oggdemux can now properly typefind elements with dynamic pads.
19613         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
19614         Properly set caps on src pad, and set caps on outgoing buffers.
19615
19616 2005-12-06  Thomas Vander Stichele  <thomas at apestaart dot org>
19617
19618         * ext/alsa/gstalsamixer.h:
19619         * ext/alsa/gstalsamixerelement.h:
19620         * ext/alsa/gstalsamixeroptions.h:
19621         * ext/alsa/gstalsamixertrack.h:
19622         * ext/alsa/gstalsasink.c:
19623         * ext/alsa/gstalsasink.h:
19624         * ext/alsa/gstalsasrc.c:
19625         * ext/alsa/gstalsasrc.h:
19626         * ext/cdparanoia/gstcdparanoia.h:
19627         * ext/gnomevfs/gstgnomevfsuri.h:
19628         * ext/ogg/gstoggdemux.c:
19629         * ext/ogg/gstoggmux.c:
19630         * ext/pango/gsttextoverlay.h:
19631         * ext/theora/theoradec.c:
19632         * ext/theora/theoraenc.c:
19633         * ext/vorbis/vorbisdec.h:
19634         * ext/vorbis/vorbisenc.c:
19635         * ext/vorbis/vorbisenc.h:
19636         * ext/vorbis/vorbisparse.h:
19637         * gst-libs/gst/audio/gstaudioclock.h:
19638         * gst-libs/gst/audio/gstaudiosink.c:
19639         * gst-libs/gst/audio/gstaudiosink.h:
19640         * gst-libs/gst/audio/gstaudiosrc.c:
19641         * gst-libs/gst/audio/gstaudiosrc.h:
19642         * gst-libs/gst/audio/gstbaseaudiosink.c:
19643         * gst-libs/gst/audio/gstbaseaudiosink.h:
19644         * gst-libs/gst/audio/gstbaseaudiosrc.c:
19645         * gst-libs/gst/audio/gstbaseaudiosrc.h:
19646         * gst-libs/gst/audio/gstringbuffer.h:
19647         * gst-libs/gst/audio/multichannel.h:
19648         * gst-libs/gst/floatcast/floatcast.h:
19649         * gst-libs/gst/interfaces/colorbalance.c:
19650         * gst-libs/gst/interfaces/colorbalance.h:
19651         * gst-libs/gst/interfaces/colorbalancechannel.h:
19652         * gst-libs/gst/interfaces/mixer.h:
19653         * gst-libs/gst/interfaces/mixeroptions.h:
19654         * gst-libs/gst/interfaces/mixertrack.h:
19655         * gst-libs/gst/interfaces/navigation.h:
19656         * gst-libs/gst/interfaces/propertyprobe.h:
19657         * gst-libs/gst/interfaces/tuner.h:
19658         * gst-libs/gst/interfaces/tunerchannel.h:
19659         * gst-libs/gst/interfaces/tunernorm.h:
19660         * gst-libs/gst/interfaces/xoverlay.h:
19661         * gst-libs/gst/netbuffer/gstnetbuffer.h:
19662         * gst-libs/gst/riff/riff-ids.h:
19663         * gst-libs/gst/riff/riff-media.h:
19664         * gst-libs/gst/riff/riff-read.h:
19665         * gst-libs/gst/rtp/gstbasertpdepayload.h:
19666         * gst-libs/gst/rtp/gstbasertppayload.c:
19667         * gst-libs/gst/rtp/gstbasertppayload.h:
19668         * gst-libs/gst/rtp/gstrtpbuffer.c:
19669         * gst-libs/gst/rtp/gstrtpbuffer.h:
19670         * gst-libs/gst/tag/gsttageditingprivate.h:
19671         * gst-libs/gst/tag/gstvorbistag.c:
19672         (gst_tag_list_from_vorbiscomment_buffer):
19673         * gst-libs/gst/tag/tag.h:
19674         * gst-libs/gst/video/video.h:
19675         * gst/adder/gstadder.c:
19676         * gst/adder/gstadder.h:
19677         * gst/audioconvert/audioconvert.c:
19678         * gst/audioconvert/audioconvert.h:
19679         * gst/audioconvert/gstaudioconvert.c:
19680         * gst/audioconvert/gstchannelmix.c:
19681         * gst/audioconvert/gstchannelmix.h:
19682         * gst/audiorate/gstaudiorate.c:
19683         * gst/audioresample/buffer.h:
19684         * gst/audioresample/functable.h:
19685         * gst/audioresample/gstaudioresample.c:
19686         * gst/audioresample/resample.h:
19687         * gst/ffmpegcolorspace/avcodec.h:
19688         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19689         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
19690         * gst/ffmpegcolorspace/imgconvert.c:
19691         * gst/ffmpegcolorspace/imgconvert_template.h:
19692         * gst/playback/gstdecodebin.c:
19693         * gst/playback/gstplaybasebin.h:
19694         * gst/playback/gstplaybin.c:
19695         * gst/playback/gststreaminfo.h:
19696         * gst/tcp/gstfdset.c:
19697         * gst/tcp/gstfdset.h:
19698         * gst/tcp/gstmultifdsink.c:
19699         * gst/tcp/gstmultifdsink.h:
19700         * gst/tcp/gsttcp.h:
19701         * gst/tcp/gsttcpclientsrc.c:
19702         * gst/tcp/gsttcpclientsrc.h:
19703         * gst/tcp/gsttcpplugin.h:
19704         * gst/tcp/gsttcpserversink.c:
19705         * gst/tcp/gsttcpserversrc.c:
19706         * gst/typefind/gsttypefindfunctions.c:
19707         * gst/videorate/gstvideorate.c:
19708         * gst/videotestsrc/gstvideotestsrc.h:
19709         * gst/videotestsrc/videotestsrc.h:
19710         * sys/v4l/gstv4lcolorbalance.h:
19711         * sys/v4l/gstv4ltuner.h:
19712         * sys/v4l/gstv4lxoverlay.h:
19713         * sys/v4l/v4l_calls.h:
19714         * sys/v4l/videodev_mjpeg.h:
19715         * tests/check/elements/audioconvert.c:
19716         * tests/check/elements/audioresample.c:
19717         * tests/check/elements/audiotestsrc.c:
19718         * tests/check/elements/videotestsrc.c:
19719         * tests/check/elements/volume.c:
19720         * tests/examples/seek/scrubby.c:
19721         * tests/examples/seek/seek.c:
19722           expand tabs
19723
19724 === release 0.10.0 ===
19725
19726 2005-12-05 Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19727
19728         * configure.ac:
19729           releasing 0.10.0, "Mont-d'or"
19730
19731 2005-12-05  Jan Schmidt  <thaytan@mad.scientist.com>
19732
19733         * tests/examples/seek/Makefile.am:
19734         Build fix for when gtk is not available.
19735
19736 2005-12-05  Andy Wingo  <wingo@pobox.com>
19737
19738         * ext/libvisual/visual.c: (get_buffer):
19739         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
19740         * ext/pango/gsttextrender.c: (gst_text_render_chain):
19741         * ext/theora/theoradec.c: (theora_handle_data_packet):
19742         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
19743         (theora_enc_chain):
19744         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
19745         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
19746         Update for alloc_buffer changes.
19747
19748 2005-12-05  Andy Wingo  <wingo@pobox.com>
19749
19750         patch by: Kai Vehmanen <kv2004 eca cx>
19751         
19752         * gst-libs/gst/rtp/gstbasertpdepayload.c
19753         (gst_base_rtp_depayload_thread): Fix busy loop (#323017).
19754
19755 2005-12-04  Andy Wingo  <wingo@pobox.com>
19756
19757         patch by: Sebastien Cote <sebas642 yahoo ca>
19758         
19759         * pkgconfig/gstreamer-plugins-base.pc.in (Libs): Add -L flag.
19760         Fixes #319172.
19761
19762 2005-12-02  Tim-Philipp Müller  <tim at centricular dot net>
19763
19764         * docs/plugins/Makefile.am:
19765         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
19766         * docs/plugins/gst-plugins-base-plugins-sections.txt:
19767         * docs/plugins/gst-plugins-base-plugins.hierarchy:
19768         * ext/pango/gstclockoverlay.c:
19769         * ext/pango/gsttextoverlay.c: 
19770         * ext/pango/gsttextrender.c:
19771         * ext/pango/gsttimeoverlay.c:
19772           Add gtk-doc blurbs to pango elements.
19773
19774 2005-12-02  Wim Taymans  <wim@fluendo.com>
19775
19776         * gst/audioresample/buffer.c: (audioresample_buffer_queue_flush):
19777         * gst/audioresample/buffer.h:
19778         * gst/audioresample/gstaudioresample.c:
19779         * gst/audioresample/gstaudioresample.h:
19780         * gst/audioresample/resample.c: (resample_input_flush),
19781         (resample_input_pushthrough), (resample_input_eos),
19782         (resample_get_output_size_for_input),
19783         (resample_get_input_size_for_output), (resample_get_output_size),
19784         (resample_get_output_data):
19785         * gst/audioresample/resample.h:
19786         * gst/audioresample/resample_ref.c: (resample_scale_ref):
19787         Fix audioresample, seek torture, new segments, reverse negotiation
19788         etc.. work fine.
19789
19790 2005-12-02  Wim Taymans  <wim@fluendo.com>
19791
19792         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
19793         Small cleanups.
19794
19795 2005-12-02  Wim Taymans  <wim@fluendo.com>
19796
19797         * gst/audioconvert/gstaudioconvert.c:
19798         (gst_audio_convert_transform):
19799         Post errors.
19800
19801 === release 0.9.7 ===
19802
19803 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19804
19805         * configure.ac:
19806           releasing 0.9.7, "Mi Perro No Tiene Ninguna Nariz"
19807
19808 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
19809
19810         * Makefile.am:
19811         * po/hu.po:
19812         * win32/MANIFEST:
19813         * win32/gst.sln:
19814           add win32 MANIFEST file
19815           do something to the hungarian translation
19816
19817 2005-12-01  Tim-Philipp Müller  <tim at centricular dot net>
19818
19819         * ext/Makefile.am:
19820           Add $(PANGO_DIR) to SUBDIRS
19821
19822         * ext/pango/gstclockoverlay.c:
19823         * ext/pango/gsttimeoverlay.c:
19824           Fix and improve element descriptions.
19825
19826 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19827
19828         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
19829         * docs/plugins/inspect/plugin-libvisual.xml:
19830         * docs/plugins/inspect/plugin-pango.xml:
19831           add pango plugin to docs
19832
19833 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19834
19835         * configure.ac:
19836         * ext/Makefile.am:
19837           moved pango to base
19838
19839 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
19840
19841         * configure.ac:
19842         * tests/Makefile.am:
19843         * tests/icles/.cvsignore:
19844         * tests/icles/Makefile.am:
19845         * tests/icles/stress-xoverlay.c: (myclock), (open_display),
19846         (close_display), (resize_window), (move_window), (create_window),
19847         (terminate_playback), (pause_playback), (start_playback), (main):
19848           add stress test for xoverlay from Julien
19849
19850 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19851
19852         * docs/libs/tmpl/gstcolorbalance.sgml:
19853         * gst-libs/gst/rtp/gstbasertpdepayload.c:
19854         * gst-libs/gst/rtp/gstbasertppayload.c:
19855         * gst-libs/gst/rtp/gstrtpbuffer.c:
19856         * gst-libs/gst/rtp/gstrtpbuffer.h:
19857           Do burger's rename for rtp payloaders and depayloaders
19858
19859 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
19860
19861         * win32/:
19862           add Visual Studio 6 build files
19863
19864 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
19865
19866         * docs/libs/gst-plugins-base-libs-docs.sgml:
19867         * docs/libs/gst-plugins-base-libs-sections.txt:
19868         * docs/libs/tmpl/gstaudio.sgml:
19869         * docs/libs/tmpl/gstringbuffer.sgml:
19870         * gst-libs/gst/interfaces/xoverlay.c:
19871         * gst-libs/gst/video/gstvideofilter.c:
19872         * gst-libs/gst/video/gstvideosink.c:
19873           update documentation
19874
19875 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
19876
19877         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_base_init),
19878         (gst_multi_fd_sink_class_init), (gst_multi_fd_sink_init),
19879         (gst_multi_fd_sink_finalize), (gst_multi_fd_sink_add),
19880         (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
19881         (gst_multi_fd_sink_get_stats),
19882         (gst_multi_fd_sink_remove_client_link),
19883         (gst_multi_fd_sink_handle_client_read),
19884         (gst_multi_fd_sink_client_queue_data),
19885         (gst_multi_fd_sink_client_queue_caps),
19886         (gst_multi_fd_sink_client_queue_buffer),
19887         (gst_multi_fd_sink_new_client),
19888         (gst_multi_fd_sink_handle_client_write),
19889         (gst_multi_fd_sink_recover_client),
19890         (gst_multi_fd_sink_queue_buffer),
19891         (gst_multi_fd_sink_handle_clients), (gst_multi_fd_sink_thread),
19892         (gst_multi_fd_sink_render), (gst_multi_fd_sink_set_property),
19893         (gst_multi_fd_sink_get_property), (gst_multi_fd_sink_start),
19894         (gst_multi_fd_sink_stop), (gst_multi_fd_sink_change_state):
19895         * gst/tcp/gstmultifdsink.h:
19896         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_get_type),
19897         (gst_tcp_client_sink_base_init), (gst_tcp_client_sink_class_init),
19898         (gst_tcp_client_sink_init), (gst_tcp_client_sink_finalize),
19899         (gst_tcp_client_sink_setcaps), (gst_tcp_client_sink_render),
19900         (gst_tcp_client_sink_set_property),
19901         (gst_tcp_client_sink_get_property), (gst_tcp_client_sink_start),
19902         (gst_tcp_client_sink_stop), (gst_tcp_client_sink_change_state):
19903         * gst/tcp/gsttcpclientsink.h:
19904         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_base_init),
19905         (gst_tcp_client_src_class_init), (gst_tcp_client_src_init),
19906         (gst_tcp_client_src_finalize), (gst_tcp_client_src_getcaps),
19907         (gst_tcp_client_src_create), (gst_tcp_client_src_set_property),
19908         (gst_tcp_client_src_get_property), (gst_tcp_client_src_start),
19909         (gst_tcp_client_src_stop), (gst_tcp_client_src_unlock):
19910         * gst/tcp/gsttcpclientsrc.h:
19911         * gst/tcp/gsttcpplugin.c: (plugin_init):
19912         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_base_init),
19913         (gst_tcp_server_sink_class_init), (gst_tcp_server_sink_init),
19914         (gst_tcp_server_sink_finalize),
19915         (gst_tcp_server_sink_handle_server_read),
19916         (gst_tcp_server_sink_removed), (gst_tcp_server_sink_handle_wait),
19917         (gst_tcp_server_sink_set_property),
19918         (gst_tcp_server_sink_get_property),
19919         (gst_tcp_server_sink_init_send), (gst_tcp_server_sink_close):
19920         * gst/tcp/gsttcpserversink.h:
19921         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_base_init),
19922         (gst_tcp_server_src_class_init), (gst_tcp_server_src_init),
19923         (gst_tcp_server_src_finalize), (gst_tcp_server_src_create),
19924         (gst_tcp_server_src_set_property),
19925         (gst_tcp_server_src_get_property), (gst_tcp_server_src_start),
19926         (gst_tcp_server_src_stop), (gst_tcp_server_src_unlock):
19927         * gst/tcp/gsttcpserversrc.h:
19928           more borgifying
19929
19930 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
19931
19932         * docs/plugins/Makefile.am:
19933         * docs/plugins/gst-plugins-base-plugins.args:
19934         * docs/plugins/inspect/plugin-libvisual.xml:
19935         * gst/audioconvert/plugin.h:
19936         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_get_type),
19937         (gst_audio_rate_base_init), (gst_audio_rate_class_init),
19938         (gst_audio_rate_setcaps), (gst_audio_rate_init),
19939         (gst_audio_rate_chain), (gst_audio_rate_set_property),
19940         (gst_audio_rate_get_property), (gst_audio_rate_change_state),
19941         (plugin_init):
19942         * gst/audiotestsrc/gstaudiotestsrc.c:
19943         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_base_init),
19944         (gst_audio_test_src_class_init), (gst_audio_test_src_init),
19945         (gst_audio_test_src_src_fixate), (gst_audio_test_src_setcaps),
19946         (gst_audio_test_src_get_query_types),
19947         (gst_audio_test_src_src_query), (gst_audio_test_src_create_sine),
19948         (gst_audio_test_src_create_square),
19949         (gst_audio_test_src_create_saw),
19950         (gst_audio_test_src_create_triangle),
19951         (gst_audio_test_src_create_silence),
19952         (gst_audio_test_src_create_white_noise),
19953         (gst_audio_test_src_init_pink_noise),
19954         (gst_audio_test_src_generate_pink_noise_value),
19955         (gst_audio_test_src_create_pink_noise),
19956         (gst_audio_test_src_change_wave), (gst_audio_test_src_get_times),
19957         (gst_audio_test_src_create), (gst_audio_test_src_set_property),
19958         (gst_audio_test_src_get_property), (gst_audio_test_src_start),
19959         (plugin_init):
19960         * gst/audiotestsrc/gstaudiotestsrc.h:
19961         * gst/subparse/gstsubparse.c: (gst_sub_parse_get_type),
19962         (gst_sub_parse_base_init), (gst_sub_parse_class_init),
19963         (gst_sub_parse_init), (gst_sub_parse_formats),
19964         (gst_sub_parse_src_eventmask), (gst_sub_parse_src_event),
19965         (convert_encoding), (get_next_line),
19966         (gst_sub_parse_data_format_autodetect),
19967         (gst_sub_parse_format_autodetect), (feed_textbuf), (handle_buffer),
19968         (gst_sub_parse_loop), (gst_sub_parse_chain),
19969         (gst_sub_parse_change_state), (gst_sub_parse_type_find),
19970         (plugin_init):
19971         * gst/subparse/gstsubparse.h:
19972         * gst/videorate/gstvideorate.c: (gst_video_rate_get_type),
19973         (gst_video_rate_base_init), (gst_video_rate_class_init),
19974         (gst_video_rate_transformcaps), (gst_video_rate_getcaps),
19975         (gst_video_rate_setcaps), (gst_video_rate_blank_data),
19976         (gst_video_rate_init), (gst_video_rate_event),
19977         (gst_video_rate_chain), (gst_video_rate_set_property),
19978         (gst_video_rate_get_property), (gst_video_rate_change_state),
19979         (plugin_init):
19980         * gst/videoscale/gstvideoscale.c:
19981         (gst_video_scale_method_get_type), (gst_video_scale_get_capslist),
19982         (gst_video_scale_src_template_factory),
19983         (gst_video_scale_sink_template_factory),
19984         (gst_video_scale_get_type), (gst_video_scale_base_init),
19985         (gst_video_scale_class_init), (gst_video_scale_init),
19986         (gst_video_scale_set_property), (gst_video_scale_get_property),
19987         (gst_video_scale_transform_caps), (gst_video_scale_get_format),
19988         (gst_video_scale_prepare_size), (parse_caps),
19989         (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
19990         (gst_video_scale_fixate_caps), (gst_video_scale_prepare_image),
19991         (gst_video_scale_transform), (gst_video_scale_handle_src_event),
19992         (plugin_init):
19993         * gst/videoscale/gstvideoscale.h:
19994         * gst/videotestsrc/gstvideotestsrc.c:
19995         (gst_video_test_src_pattern_get_type),
19996         (gst_video_test_src_base_init), (gst_video_test_src_class_init),
19997         (gst_video_test_src_init), (gst_video_test_src_src_fixate),
19998         (gst_video_test_src_set_pattern),
19999         (gst_video_test_src_set_property),
20000         (gst_video_test_src_get_property), (gst_video_test_src_getcaps),
20001         (gst_video_test_src_parse_caps), (gst_video_test_src_setcaps),
20002         (gst_video_test_src_event), (gst_video_test_src_get_times),
20003         (gst_video_test_src_create), (plugin_init):
20004         * gst/videotestsrc/gstvideotestsrc.h:
20005         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_get_size),
20006         (gst_video_test_src_smpte), (gst_video_test_src_snow),
20007         (gst_video_test_src_black):
20008         * gst/videotestsrc/videotestsrc.h:
20009           borgify further
20010           clean up docs a little
20011
20012 2005-11-30  Wim Taymans  <wim@fluendo.com>
20013
20014         * gst-libs/gst/rtp/gstbasertpdepayload.h:
20015         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
20016         (gst_basertppayload_event), (gst_basertppayload_push),
20017         (gst_basertppayload_change_state):
20018         * gst-libs/gst/rtp/gstbasertppayload.h:
20019         closed #320644.
20020
20021 2005-11-30  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         * gst-libs/gst/video/gstvideofilter.c:
20026         * gst-libs/gst/video/gstvideosink.c:
20027         * gst-libs/gst/video/gstvideosink.h: Adding docs.
20028
20029 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
20030
20031         * LICENSE:
20032           move
20033         * po/af.po:
20034         * po/az.po:
20035         * po/cs.po:
20036         * po/en_GB.po:
20037         * po/hu.po:
20038         * po/it.po:
20039         * po/nb.po:
20040         * po/nl.po:
20041         * po/or.po:
20042         * po/sq.po:
20043         * po/sr.po:
20044         * po/sv.po:
20045         * po/uk.po:
20046         * po/vi.po:
20047         * Makefile.am:
20048           update
20049         * scripts/autoplugins.sh:
20050           remove
20051
20052 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
20053
20054         * Makefile.am:
20055         * configure.ac:
20056         * examples/Makefile.am:
20057         * examples/capsfilter/Makefile.am:
20058         * examples/capsfilter/capsfilter1.c:
20059         * examples/gob/Makefile.am:
20060         * examples/gob/gst-identity2.gob:
20061         * examples/indexing/.cvsignore:
20062         * examples/indexing/Makefile.am:
20063         * examples/indexing/indexmpeg.c:
20064         * examples/seeking/.cvsignore:
20065         * examples/seeking/Makefile.am:
20066         * examples/seeking/cdparanoia.c:
20067         * examples/seeking/cdplayer.c:
20068         * examples/seeking/chained.c:
20069         * examples/seeking/scrubby.c:
20070         * examples/seeking/seek.c:
20071         * examples/stats/Makefile.am:
20072         * examples/stats/mp2ogg.c:
20073         * examples/switch/.cvsignore:
20074         * examples/switch/Makefile.am:
20075         * examples/switch/switcher.c:
20076         * tests/Makefile.am:
20077         * tests/check/generic/.cvsignore:
20078         * tests/check/pipelines/.cvsignore:
20079         * tests/examples/Makefile.am:
20080         * tests/examples/seek/Makefile.am:
20081           reorganize stuff under tests/
20082
20083 2005-11-30  Edward Hervey  <edward@fluendo.com>
20084
20085         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
20086         Go away you stupid GstStaticPadTemplate memleak.
20087
20088 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
20089
20090         * gst-libs/gst/net/Makefile.am:
20091         * gst-libs/gst/net/README:
20092         * gst-libs/gst/net/gstnetbuffer.c:
20093         * gst-libs/gst/net/gstnetbuffer.h:
20094           this was moved to "netbuffer"
20095
20096 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
20097
20098         * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_get_type),
20099         (gst_video_filter_class_init), (gst_video_filter_init):
20100         * gst-libs/gst/video/gstvideofilter.h:
20101           borgify name to bring in line with other classes
20102
20103 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
20104
20105         * gst/audioscale/.cvsignore:
20106         * gst/audioscale/Makefile.am:
20107         * gst/audioscale/README:
20108         * gst/audioscale/audioscale.vcproj:
20109         * gst/audioscale/dtof.c:
20110         * gst/audioscale/dtos.c:
20111         * gst/audioscale/functable.c:
20112         * gst/audioscale/gstaudioscale.c:
20113         * gst/audioscale/gstaudioscale.h:
20114         * gst/audioscale/private.h:
20115         * gst/audioscale/resample.c:
20116         * gst/audioscale/resample.h:
20117         * gst/audioscale/test.c:
20118           remove
20119
20120 2005-11-30  Edward Hervey  <edward@fluendo.com>
20121
20122         * gst-libs/gst/netbuffer/Makefile.am:
20123         really, really tired
20124
20125 2005-11-30  Edward Hervey  <edward@fluendo.com>
20126
20127         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
20128         Update for new GstTypeFindFactory _register()
20129
20130 2005-11-30  Edward Hervey  <edward@fluendo.com>
20131
20132         * gst-libs/gst/netbuffer/Makefile.am: (libgstnetbufferincludedir): 
20133         Let's not override libgstnet from core for no reason...
20134         (libgstnetbuffer_@GST_MAJORMINOR@_la_SOURCES):
20135         Ok, maybe not so quick next time.
20136
20137 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
20138
20139         * configure.ac:
20140         * gst-libs/gst/Makefile.am:
20141           moved gst-libs/gst/net to netbuffer through CVS surgery
20142           remove old directory
20143           updating build to accomodate
20144           (#322257)
20145
20146 2005-11-29  Andy Wingo  <wingo@pobox.com>
20147
20148         * pkgconfig/gstreamer-plugins-base.pc.in:
20149         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
20150         * gst-libs/gst/net/Makefile.am: Rename gstnet to gstnetbuffer
20151         (#322257).
20152
20153 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
20154
20155         * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
20156         3rd time's the charm. Correct ref-counting for discarded buffers.
20157
20158 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
20159
20160         * gst/playback/gststreamselector.c:
20161         (gst_stream_selector_class_init),
20162         (gst_stream_selector_set_property),
20163         (gst_stream_selector_get_property),
20164         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
20165         Fix ref-counting
20166
20167 2005-11-29  Tim-Philipp Müller  <tim at centricular dot net>
20168
20169         * gst/subparse/gstsubparse.c: (feed_textbuf):
20170           Don't access already unref'ed buffer.
20171
20172 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
20173
20174         * gst/playback/gststreamselector.c:
20175         (gst_stream_selector_class_init), (gst_stream_selector_init),
20176         (gst_stream_selector_dispose), (gst_stream_selector_set_property),
20177         (gst_stream_selector_get_property),
20178         (gst_stream_selector_get_linked_pad),
20179         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
20180         * gst/playback/gststreamselector.h:
20181         Add the active-pad property for playbin to use shortly. Ignore buffers
20182         from any other pad, returning GST_FLOW_NOT_LINKED
20183
20184 2005-11-29  Julien MOUTTE  <julien@moutte.net>
20185
20186         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find): Free the list,
20187         patch from bug #322704 (Alessandro Decina).
20188
20189 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
20190
20191         * gst-libs/gst/audio/Makefile.am:
20192           folded audiofilter into the audio library
20193
20194 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
20195
20196         * gst/videoscale/gstvideoscale.h:
20197         * gst/videoscale/gstvideoscale.c:
20198           remove unimplemented scale methods
20199
20200 2005-11-28  Tim-Philipp Müller  <tim at centricular dot net>
20201
20202         * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers):
20203           Don't leak caps.
20204
20205 2005-11-28  Julien MOUTTE  <julien@moutte.net>
20206
20207         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
20208         (gst_ximagesink_setcaps):
20209         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
20210         (gst_xvimagesink_setcaps): Fixed a tricky bug. When caps renegotiation
20211         happens (only visible on ximagesink but bug is in xv too) set_caps was
20212         destroying the internal x[v]image used to memcpy non locally alloced
20213         buffers so that it got renewed on next _chain. The issue is that 
20214         _expose will try to put that image as it reffed it in _put.
20215         Using gst_buffer_unref instead of destroy fixes it !
20216
20217 2005-11-28  Edward Hervey  <edward@fluendo.com>
20218
20219         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
20220         (try_to_link_1), (queue_filled_cb):
20221         Better use of the queues. Start with a small size queue and only increase
20222         the size of the queues when the other queues are empty.
20223
20224 2005-11-28  Thomas Vander Stichele  <thomas at apestaart dot org>
20225
20226         * gst-libs/gst/video/Makefile.am:
20227           compile in copied-over videofilter into the video library
20228         * gst-libs/gst/video/videosink.h:
20229           rename the header to gstvideosink.h since it's a base GstObject class
20230         * sys/ximage/ximagesink.h:
20231         * sys/xvimage/xvimagesink.h:
20232           use the new header
20233
20234 2005-11-28  Wim Taymans  <wim@fluendo.com>
20235
20236         * gst/playback/gstplaybasebin.c: (group_commit), (probe_triggered):
20237         * gst/playback/gstplaybasebin.h:
20238         Prepare to handle errors betters.
20239
20240         * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
20241         Set sinks to PAUSED first before adding and linking them so that
20242         we don't interrupt dataflow.
20243
20244 2005-11-28  Wim Taymans  <wim@fluendo.com>
20245
20246         * gst-libs/gst/audio/TODO:
20247         Updated TODO
20248
20249         * gst-libs/gst/audio/gstaudiosink.c:
20250         (gst_audioringbuffer_open_device),
20251         (gst_audioringbuffer_close_device), (gst_audioringbuffer_acquire),
20252         (gst_audioringbuffer_release):
20253         Small cleanups.
20254
20255         * gst-libs/gst/audio/gstbaseaudiosink.c:
20256         (gst_base_audio_sink_class_init), (gst_base_audio_sink_render),
20257         (gst_base_audio_sink_change_state):
20258         Slave to the master clock when going to PLAYING and unslave when
20259         going to PAUSED.
20260
20261         * gst-libs/gst/audio/gstringbuffer.c:
20262         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
20263         (gst_ring_buffer_acquire), (gst_ring_buffer_release),
20264         (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
20265         (gst_ring_buffer_clear_all), (wait_segment),
20266         (gst_ring_buffer_commit), (gst_ring_buffer_read),
20267         (gst_ring_buffer_advance):
20268         * gst-libs/gst/audio/gstringbuffer.h:
20269         Add some docs and cleanups.
20270
20271 2005-11-28  Julien MOUTTE  <julien@moutte.net>
20272
20273         * sys/xvimage/xvimagesink.c:
20274         (gst_xvimagesink_navigation_send_event): Fix navigation events
20275         coordinates translation with pixel aspect ratios.
20276
20277 2005-11-28  Julien MOUTTE  <julien@moutte.net>
20278
20279         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
20280         Use calculated video geometry from _setcaps instead of buffer
20281         caps to respect pixel aspect ratio. (fixes #322388)
20282
20283 2005-11-28  Julien MOUTTE  <julien@moutte.net>
20284
20285         * docs/libs/tmpl/gstcolorbalance.sgml:
20286         * docs/libs/tmpl/gstmixer.sgml:
20287         * docs/libs/tmpl/gstxoverlay.sgml:
20288         * gst-libs/gst/interfaces/xoverlay.c: Add docs for the Xoverlay
20289         interface.
20290
20291 2005-11-28  Julien MOUTTE  <julien@moutte.net>
20292
20293         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
20294         Refuse to create an XvImage if we can't find the format.
20295
20296 2005-11-28  Edward Hervey  <edward@fluendo.com>
20297
20298         * gst-libs/gst/riff/riff-media.c:
20299         (gst_riff_create_audio_template_caps):
20300         Add ATRAC3 to the list of riff-possible audio caps.
20301         I know we still don't have a plugin for atrac3, but it's saner to output
20302         that than a cryptic mimetype.
20303
20304 2005-11-27  Edward Hervey  <edward@fluendo.com>
20305
20306         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds):
20307         Don't try to create a zero-sized subbuffer.
20308
20309 2005-11-27  Julien MOUTTE  <julien@moutte.net>
20310
20311         * sys/ximage/ximagesink.c: (gst_ximage_buffer_free),
20312         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
20313         (gst_ximagesink_bufferpool_clear), (gst_ximagesink_buffer_alloc),
20314         (gst_ximagesink_expose): Fixed a tricky race.
20315         * sys/ximage/ximagesink.h:
20316         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
20317         (gst_xvimagesink_expose): Fixed a tricky race.
20318         * sys/xvimage/xvimagesink.h:
20319
20320 2005-11-27  Edward Hervey  <edward@fluendo.com>
20321
20322         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
20323         (gst_decode_bin_init), (close_pad_link), (try_to_link_1):
20324         Remove unused properties, and add queues between demuxers and decoders
20325         so that a lot more files can preroll properly.
20326
20327 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
20328
20329         * gst-libs/gst/net/Makefile.am:
20330         * gst-libs/gst/rtp/Makefile.am:
20331         * gst-libs/gst/tag/Makefile.am:
20332           remove silly include
20333         * gst/tags/Makefile.am:
20334         * gst/tags/gsttagediting.c:
20335         * gst/tags/gsttageditingprivate.h:
20336         * gst/tags/tagedit.vcproj:
20337           remove directory, is as good as empty
20338
20339 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
20340
20341         * configure.ac:
20342           added GST_LIB_LDFLAGS and GST_ALL_LDFLAGS
20343         * gst-libs/Makefile.am:
20344         * gst-libs/gst/audio/Makefile.am:
20345         * gst-libs/gst/interfaces/Makefile.am:
20346         * gst-libs/gst/net/Makefile.am:
20347         * gst-libs/gst/riff/Makefile.am:
20348         * gst-libs/gst/rtp/Makefile.am:
20349         * gst-libs/gst/tag/Makefile.am:
20350         * gst-libs/gst/video/Makefile.am:
20351           and use them
20352
20353 2005-11-27  Julien MOUTTE  <julien@moutte.net>
20354
20355         * docs/libs/tmpl/gstcolorbalance.sgml:
20356         * docs/libs/tmpl/gstmixer.sgml:
20357         * docs/libs/tmpl/gstxoverlay.sgml:
20358         * sys/ximage/ximagesink.c: (gst_ximagesink_buffer_alloc):
20359         * sys/ximage/ximagesink.h:
20360         * sys/xvimage/xvimagesink.h: More and more documentation.
20361
20362 2005-11-26  Julien MOUTTE  <julien@moutte.net>
20363
20364         * docs/libs/gst-plugins-base-libs-docs.sgml:
20365         * docs/libs/gst-plugins-base-libs-sections.txt:
20366         * docs/libs/tmpl/gstcolorbalance.sgml:
20367         * docs/libs/tmpl/gstmixer.sgml:
20368         * docs/libs/tmpl/gstxoverlay.sgml: Add the XOverlay interface
20369         to documentation.
20370
20371 2005-11-26  Julien MOUTTE  <julien@moutte.net>
20372
20373         * docs/plugins/Makefile.am:
20374         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
20375         * docs/plugins/gst-plugins-base-plugins-sections.txt:
20376         * sys/xvimage/xvimagesink.c: Added doc for xvimagesink.
20377
20378 2005-11-26  Julien MOUTTE  <julien@moutte.net>
20379
20380         * docs/plugins/Makefile.am:
20381         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
20382         * docs/plugins/gst-plugins-base-plugins-sections.txt:
20383         * docs/plugins/inspect/plugin-adder.xml:
20384         * docs/plugins/inspect/plugin-alsa.xml:
20385         * docs/plugins/inspect/plugin-audioconvert.xml:
20386         * docs/plugins/inspect/plugin-audiorate.xml:
20387         * docs/plugins/inspect/plugin-audioresample.xml:
20388         * docs/plugins/inspect/plugin-audiotestsrc.xml:
20389         * docs/plugins/inspect/plugin-decodebin.xml:
20390         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
20391         * docs/plugins/inspect/plugin-gnomevfs.xml:
20392         * docs/plugins/inspect/plugin-ogg.xml:
20393         * docs/plugins/inspect/plugin-playbin.xml:
20394         * docs/plugins/inspect/plugin-subparse.xml:
20395         * docs/plugins/inspect/plugin-tcp.xml:
20396         * docs/plugins/inspect/plugin-theora.xml:
20397         * docs/plugins/inspect/plugin-typefindfunctions.xml:
20398         * docs/plugins/inspect/plugin-video4linux.xml:
20399         * docs/plugins/inspect/plugin-videorate.xml:
20400         * docs/plugins/inspect/plugin-videoscale.xml:
20401         * docs/plugins/inspect/plugin-videotestsrc.xml:
20402         * docs/plugins/inspect/plugin-volume.xml:
20403         * docs/plugins/inspect/plugin-vorbis.xml:
20404         * docs/plugins/inspect/plugin-ximagesink.xml:
20405         * docs/plugins/inspect/plugin-xvimagesink.xml: Updated version.
20406         * sys/ximage/ximagesink.c: Adding documentation for ximagesink.
20407
20408 2005-11-26  Edward Hervey  <edward@fluendo.com>
20409
20410         * gst/audiorate/gstaudiorate.c: (gst_audiorate_chain):
20411         Properly return GstFlowReturn from gst_pad_push in chain functions.
20412
20413 2005-11-25  Michael Smith  <msmith@fluendo.com>
20414
20415         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
20416         (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
20417         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
20418         (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
20419           Handle various conditions better when we don't understand a stream.
20420           Removes a heap of CRITICALs on ogg streams containing unknown data.
20421
20422 2005-11-24  Andy Wingo  <wingo@pobox.com>
20423
20424         * gst/tcp/gstmultifdsink.c (gst_multifdsink_handle_client_write):
20425         Be threadsafe.
20426
20427 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
20428
20429         * configure.ac: back to HEAD
20430
20431 === release 0.9.6 ===
20432
20433 2005-11-23  Thomas Vander Stichele <thomas at apestaart dot org>
20434
20435         * configure.ac:
20436           releasing 0.9.6, "White Eight"
20437
20438 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
20439
20440         * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
20441         * docs/plugins/inspect/plugin-sine.xml:
20442           remove sinesrc some more
20443
20444 2005-11-23  Wim Taymans  <wim@fluendo.com>
20445
20446         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
20447         If we are reading too slowly, jump forward in the ringbuffer
20448         instead of blocking.
20449
20450 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
20451
20452         * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
20453         (gst_visual_chain):
20454         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps):
20455         * gst/videorate/gstvideorate.c: (gst_videorate_setcaps),
20456         (gst_videorate_chain):
20457         * gst/videotestsrc/gstvideotestsrc.c:
20458         (gst_videotestsrc_src_fixate), (gst_videotestsrc_create):
20459         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_fps),
20460         (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query),
20461         (gst_v4lmjpegsrc_get), (gst_v4lmjpegsrc_getcaps):
20462         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
20463         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
20464           Updates for API changes
20465
20466 2005-11-23  Wim Taymans  <wim@fluendo.com>
20467
20468         * gst-libs/gst/audio/gstbaseaudiosink.c:
20469         (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
20470         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
20471         Fix for calibration API change.
20472
20473 2005-11-23  Michael Smith <msmith@fluendo.com>
20474
20475         * gst-libs/gst/audio/multichannel.c:
20476         (gst_audio_get_channel_positions),
20477         (gst_audio_set_channel_positions),
20478         (gst_audio_set_structure_channel_positions_list),
20479         (gst_audio_fixate_channel_positions):
20480           Use gst_value_array_*() functions on value arrays, not
20481           gst_value_list_*().
20482
20483 2005-11-23  Edward Hervey  <edward@fluendo.com>
20484
20485         * autogen.sh:
20486         eheh, sinesrc is gone. Replacing sample srcfile by existing one.
20487         Fixes autogen
20488
20489 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
20490
20491         * check/Makefile.am:
20492         * check/elements/videotestsrc.c: (setup_videotestsrc),
20493         (cleanup_videotestsrc), (GST_START_TEST), (videotestsrc_suite),
20494         (main):
20495           add a test for videotestsrc
20496
20497 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
20498
20499         * gst/sine/.cvsignore:
20500         * gst/sine/Makefile.am:
20501         * gst/sine/gstsinesrc.c:
20502         * gst/sine/gstsinesrc.h:
20503         * gst/sine/sinesrc.vcproj:
20504           and remove sinesrc from the repository.  Closes #321446
20505
20506 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
20507
20508         * configure.ac:
20509         * gst-plugins-base.spec.in:
20510           remove sinesrc from the build
20511
20512 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
20513
20514         * check/Makefile.am:
20515         * check/elements/audiotestsrc.c: (setup_audiotestsrc),
20516         (cleanup_audiotestsrc), (GST_START_TEST), (audiotestsrc_suite),
20517         (main):
20518           add a test for audiotestsrc, testing all waves.  Even seems
20519           leak-free at first glance, nice job Stefan
20520
20521 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
20522
20523         * po/af.po:
20524         * po/az.po:
20525         * po/cs.po:
20526         * po/en_GB.po:
20527         * po/hu.po:
20528         * po/it.po:
20529         * po/nb.po:
20530         * po/nl.po:
20531         * po/or.po:
20532         * po/sq.po:
20533         * po/sr.po:
20534         * po/sv.po:
20535         * po/uk.po:
20536         * po/vi.po:
20537           Translation string updates
20538
20539         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
20540         (gst_v4lsrc_set_caps):
20541         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
20542         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
20543         * sys/v4l/v4lsrc_calls.h:
20544           Improve v4lsrc, by making it work again.
20545
20546 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
20547
20548         * ext/libvisual/visual.c: (gst_visual_chain):
20549           Fix the fps calculations.
20550
20551         * gst/ffmpegcolorspace/avcodec.h:
20552           Move structure element for clarity
20553
20554         * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_init):
20555         * gst-libs/gst/interfaces/tunernorm.h:
20556         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_src_link):
20557         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
20558         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
20559         (gst_v4lmjpegsrc_get_fps), (gst_v4lmjpegsrc_src_convert),
20560         (gst_v4lmjpegsrc_src_query), (gst_v4lmjpegsrc_get),
20561         (gst_v4lmjpegsrc_getcaps):
20562         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
20563         (gst_v4lsrc_set_caps):
20564         * sys/v4l/gstv4lsrc.h:
20565         * sys/v4l/v4l_calls.c: (gst_v4l_open):
20566         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
20567         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
20568         * sys/v4l/v4lsrc_calls.h:
20569           Fractional framerates...
20570
20571 2005-11-22  Wim Taymans  <wim@fluendo.com>
20572
20573         * gst-libs/gst/audio/gstbaseaudiosink.c:
20574         (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
20575         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
20576         And we provide a clock by default, of course...
20577
20578 2005-11-22  Wim Taymans  <wim@fluendo.com>
20579
20580         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init):
20581         This clock can be slaved to a master clock now.
20582
20583         * gst-libs/gst/audio/gstbaseaudiosink.c:
20584         (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
20585         (gst_base_audio_sink_dispose), (gst_base_audio_sink_provide_clock),
20586         (gst_base_audio_sink_set_clock),
20587         (gst_base_audio_sink_set_property),
20588         (gst_base_audio_sink_get_property), (gst_base_audio_sink_preroll),
20589         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
20590         * gst-libs/gst/audio/gstbaseaudiosink.h:
20591         Handle slaving the internal clock to the clock selected in the
20592         pipeline.
20593         Add property to make the basesink not provide a clock.
20594
20595         * gst-libs/gst/rtp/gstbasertpdepayload.c:
20596         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
20597         (gst_base_rtp_depayload_wait):
20598         * gst-libs/gst/rtp/gstbasertpdepayload.h:
20599         We can use the clock in GstElement, no need to store it ourselves.
20600
20601 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
20602
20603         * docs/libs/tmpl/gstaudio.sgml:
20604           update
20605         * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
20606         (gst_paranoia_endian_get_type):
20607         * ext/theora/theoraenc.c: (gst_border_mode_get_type):
20608         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
20609         * gst/audiotestsrc/gstaudiotestsrc.c:
20610         (gst_audiostestsrc_wave_get_type):
20611         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
20612         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
20613         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
20614         (gst_sync_method_get_type), (gst_unit_type_get_type),
20615         (gst_client_status_get_type), (gst_multifdsink_class_init),
20616         (gst_multifdsink_new_client), (gst_multifdsink_recover_client),
20617         (gst_multifdsink_queue_buffer), (gst_multifdsink_set_property),
20618         (gst_multifdsink_get_property):
20619         * gst/tcp/gstmultifdsink.h:
20620         * gst/videoscale/gstvideoscale.c: (gst_videoscale_method_get_type):
20621         * gst/videotestsrc/gstvideotestsrc.c:
20622         (gst_videotestsrc_pattern_get_type):
20623           remove deprecated properties
20624           fix up enums to correctly have short lowercase dashed nicks
20625
20626 2005-11-22  Michael Smith <msmith@fluendo.com>
20627
20628         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
20629         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
20630           Add underscore.
20631
20632 2005-11-22  Michael Smith <msmith@fluendo.com>
20633
20634         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
20635         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
20636           Use utility method for scaling clocktime for fractional framerates.
20637
20638 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
20639
20640         * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
20641         (gst_visual_chain):
20642         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
20643         * ext/theora/theoradec.c: (theora_handle_type_packet):
20644         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
20645         (theora_enc_chain):
20646         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
20647         * gst-libs/gst/video/video.c: (gst_video_frame_rate):
20648         * gst-libs/gst/video/video.h:
20649         * gst/ffmpegcolorspace/avcodec.h:
20650         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
20651         (gst_ffmpeg_caps_to_pixfmt):
20652         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
20653         (gst_ffmpegcsp_set_caps):
20654         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
20655         (gst_videorate_setcaps), (gst_videorate_blank_data),
20656         (gst_videorate_chain):
20657         * gst/videotestsrc/gstvideotestsrc.c:
20658         (gst_videotestsrc_src_fixate), (gst_videotestsrc_getcaps),
20659         (gst_videotestsrc_parse_caps), (gst_videotestsrc_setcaps),
20660         (gst_videotestsrc_event), (gst_videotestsrc_create):
20661         * gst/videotestsrc/gstvideotestsrc.h:
20662         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
20663         (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
20664         (gst_ximagesink_get_times), (gst_ximagesink_init):
20665         * sys/ximage/ximagesink.h:
20666         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
20667         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
20668         (gst_xvimagesink_get_times), (gst_xvimagesink_init):
20669         * sys/xvimage/xvimagesink.h:
20670           Convert elements to use fractions for their framerate.
20671           V4L elements to come later tonight.
20672
20673 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
20674
20675         * gst-libs/gst/audio/audio.c:
20676         * gst-libs/gst/audio/audio.h:
20677           remove some deprecated functions
20678
20679 2005-11-22  Andy Wingo  <wingo@pobox.com>
20680
20681         * Update for gst_tag_setter API changes.
20682
20683 2005-11-22  Andy Wingo  <wingo@pobox.com>
20684
20685         * ext/ogg/gstoggdemux.c (gst_ogg_pad_submit_packet)
20686         (gst_ogg_demux_perform_seek):
20687         * ext/theora/theoradec.c (theora_dec_sink_event):
20688         * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event): Run
20689         update-funcnames.
20690
20691 2005-11-22  Wim Taymans  <wim@fluendo.com>
20692
20693         * examples/seeking/seek.c: (main):
20694         Give higher priority to bus signals than the gtk events
20695         to fix a race condition in the segment looping.
20696
20697 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
20698
20699         * ext/theora/Makefile.am:
20700         * ext/vorbis/Makefile.am:
20701         * gst-libs/gst/tag/Makefile.am:
20702         * gst-plugins-base.spec.in:
20703           Rename libgsttagedit to libgsttag (#322117).
20704
20705 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
20706
20707         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
20708         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
20709           Call gst_x_overlay_prepare_xwindow_id() to give applications
20710           a final chance to set their own xwindow id before the video
20711           sink creates its own window.
20712
20713 2005-11-22  Julien MOUTTE  <julien@moutte.net>
20714
20715         * sys/xvimage/xvimagesink.c:
20716         (gst_xvimagesink_navigation_send_event): Handle navigation
20717         events correcly with borders if applicable.
20718
20719 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
20720
20721         Patch by: Luca Ognibene
20722
20723         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
20724         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
20725         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
20726         (gst_ffmpegcsp_caps_remove_format_info):
20727         * gst/ffmpegcolorspace/imgconvert.c:
20728         * gst/ffmpegcolorspace/imgconvert_template.h:
20729           Forward-port fixes from the 0.8 branch (patch by Luca Ognibene,
20730           #318353); use gst_structure_has_name().
20731
20732 2005-11-22  Julien MOUTTE  <julien@moutte.net>
20733
20734         * sys/ximage/ximagesink.c: (gst_ximagesink_event_thread),
20735         (gst_ximagesink_class_init): Add debug macros on functions.
20736         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
20737         (gst_xvimagesink_xwindow_draw_borders),
20738         (gst_xvimagesink_xvimage_put),
20739         (gst_xvimagesink_xwindow_update_geometry),
20740         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_get_xv_support),
20741         (gst_xvimagesink_event_thread), (gst_xvimagesink_xcontext_get),
20742         (gst_xvimagesink_xcontext_clear),
20743         (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
20744         (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
20745         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
20746         (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
20747         (gst_xvimagesink_get_property), (gst_xvimagesink_finalize),
20748         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
20749         * sys/xvimage/xvimagesink.h: Refactoring to handle aspect ratio,
20750         expose while being PAUSED, out of data flow navigation events, etc..
20751
20752 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
20753
20754         * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
20755         * gst-libs/gst/audio/audio.h:
20756           fix prototype - wondering why the test worked regardless
20757
20758 2005-11-21  Thomas Vander Stichele  <thomas at apestaart dot org>
20759
20760         * check/Makefile.am:
20761         * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
20762         * gst-libs/gst/audio/audio.h:
20763           add a method that returns a proper GstClockTime
20764
20765 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20766
20767         * gst-libs/gst/interfaces/xoverlay.c: (gst_x_overlay_base_init),
20768         (gst_x_overlay_got_xwindow_id), (gst_x_overlay_prepare_xwindow_id):
20769         * gst-libs/gst/interfaces/xoverlay.h:
20770           Remove everything having to do with the desired size; add 
20771           gst_x_overlay_prepare_xwindow_id() function; remove the
20772           'have-xwindow-id' signal and make gst_x_overlay_got_xwindow_id()
20773           post a message on the bus instead (#321816).
20774
20775         * sys/ximage/ximagesink.c: (gst_ximagesink_xoverlay_init):
20776         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps),
20777         (gst_xvimagesink_xoverlay_init):
20778           Remove desired size stuff (#321816).
20779
20780 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20781
20782         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
20783         (mpeg2_sys_type_find), (mpeg1_sys_type_find),
20784         (mpeg_video_type_find), (mpeg_video_stream_type_find):
20785           Terminate vararg functions with NULL instead of 0 to 
20786           make gcc4 happy.
20787
20788 2005-11-21  Andy Wingo  <wingo@pobox.com>
20789
20790         patch by: Sebastien Cote <sebas642@yahoo.ca>
20791         
20792         * gst-libs/gst/rtp/gstrtpbuffer.h: 
20793         * gst-libs/gst/rtp/gstrtpbuffer.c
20794         (gst_rtpbuffer_get_payload_buffer): New function. Fixes #321451.
20795
20796 2005-11-21  Andy Wingo  <wingo@pobox.com>
20797
20798         * gst/playback/gstplaybin.c (gen_audio_element) 
20799         (gen_video_element): Use the new MISSING_PLUGIN core error
20800         category. Closes #320060.
20801
20802         * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event): 
20803         * gst/videorate/gstvideorate.c (gst_videorate_event):
20804         * ext/theora/theoradec.c (theora_dec_sink_event): 
20805         * ext/theora/theoraenc.c (theora_enc_sink_event): Don't take
20806         stream lock.
20807
20808         * gst/subparse/gstsubparse.c (gst_subparse_src_event):
20809         * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek): Update for
20810         stream lock changes.
20811
20812 2005-11-21  Wim Taymans  <wim@fluendo.com>
20813
20814         * gst-libs/gst/audio/gstbaseaudiosink.c:
20815         (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
20816         (gst_base_audio_sink_provide_clock),
20817         (gst_base_audio_sink_set_clock), (gst_base_audio_sink_render),
20818         (gst_base_audio_sink_change_state):
20819         * gst/audioresample/gstaudioresample.c:
20820         Segment update fix.
20821
20822 2005-11-21  Andy Wingo  <wingo@pobox.com>
20823
20824         * *.h:
20825         * *.c: Ran scripts/update-macros. Oh yes.
20826
20827 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20828
20829         * sys/ximage/Makefile.am:
20830         * sys/ximage/ximage.c:
20831           Rename ximage plugin to ximagesink (#321426) (Don't forget to
20832           remove your old libgstximage.* manually if necessary).
20833
20834 2005-11-21  Michael Smith <msmith@fluendo.com>
20835
20836         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup):
20837           Minimal fix for bug #320200: set the min/max bitrate in the correct
20838           units. A better fix would be to upgrade to the RATEMANAGE2
20839           interface, rather than using the deprecated interface used here, but
20840           that would require an update in our libvorbis dependency (to 1.1),
20841           which is probably undesirable.
20842
20843 2005-11-21  Jan Schmidt  <thaytan@mad.scientist.com>
20844
20845         * ext/libvisual/visual.c: (get_buffer):
20846         * gst-libs/gst/audio/gstbaseaudiosrc.c:
20847         (gst_base_audio_src_fixate):
20848         * gst/audioconvert/gstaudioconvert.c:
20849         (gst_audio_convert_fixate_caps):
20850         * gst/audioscale/gstaudioscale.c: (gst_audioscale_fixate):
20851         * gst/audiotestsrc/gstaudiotestsrc.c:
20852         (gst_audiotestsrc_src_fixate):
20853         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
20854         * gst/videorate/gstvideorate.c: (gst_videorate_setcaps):
20855         * gst/videoscale/gstvideoscale.c: (gst_videoscale_fixate_caps):
20856         * gst/videotestsrc/gstvideotestsrc.c:
20857         (gst_videotestsrc_src_fixate):
20858         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
20859         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
20860           Rename gst_caps_structure_fixate_* to gst_structure_fixate_*
20861           (#322027)
20862
20863
20864 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20865
20866         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
20867         (gst_riff_create_iavs_caps):
20868         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_file_header),
20869         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
20870         (gst_riff_parse_info):
20871         * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure):
20872         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_caps):
20873         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
20874           Fixes for GST_FOURCC_FORMAT API change.
20875
20876 2005-11-21  Andy Wingo  <wingo@pobox.com>
20877
20878         patch by: Alessandro Dessina <alessandro nnva org>
20879
20880         * ext/ogg/gstoggmux.c (gst_ogg_mux_set_header_on_caps):
20881         * ext/ogg/gstoggparse.c (gst_ogg_parse_append_header)
20882         (gst_ogg_parse_chain):
20883         * ext/theora/theoraenc.c (theora_set_header_on_caps):
20884         * ext/vorbis/vorbisenc.c (gst_vorbisenc_set_header_on_caps):
20885         * ext/vorbis/vorbisparse.c (vorbis_parse_set_header_on_caps): Fix
20886         gst_value_list calls on arrays. Fixes #321962.
20887
20888 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
20889
20890         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
20891         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_queue_pads),
20892         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
20893         * gst/adder/gstadder.c: (gst_adder_init),
20894         (gst_adder_request_new_pad), (gst_adder_collected),
20895         (gst_adder_change_state):
20896           Update for gst_collectpads_foo() to gst_collect_pads_foo()
20897           API change.
20898
20899 2005-11-21  Michael Smith <msmith@fluendo.com>
20900
20901         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
20902         (gst_vorbisenc_chain), (gst_vorbisenc_output_buffers):
20903           Properly handle pad_push return values.
20904
20905 2005-11-20  Jan Schmidt  <thaytan@mad.scientist.com>
20906
20907         * gst-libs/gst/tag/Makefile.am:
20908         * gst-libs/gst/tag/gstvorbistag.c:
20909         (gst_tag_list_to_vorbiscomment_buffer):
20910           Remove obsolete vorbistag element and debug category.
20911
20912         * gst/playback/gstplaybasebin.c: (check_queue):
20913           Don't divide by 0 when queue-threshold is 0.
20914
20915         * sys/ximage/ximagesink.c: (gst_ximagesink_set_property):
20916           Don't modify an existing pixel-aspect-ratio if we fail to read
20917           a new one.
20918
20919 2005-11-20  Wim Taymans  <wim@fluendo.com>
20920
20921         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_push_buffer),
20922         (gst_vorbisenc_push_packet):
20923         GST_PAD_IS_USABLE is gone, use the return value of
20924         the push or pad_alloc_buffer instead.
20925
20926 2005-11-18  Julien MOUTTE  <julien@moutte.net>
20927
20928         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
20929         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
20930         (gst_ximagesink_ximage_destroy),
20931         (gst_ximagesink_xwindow_draw_borders), (gst_ximagesink_ximage_put),
20932         (gst_ximagesink_xwindow_new),
20933         (gst_ximagesink_xwindow_update_geometry),
20934         (gst_ximagesink_handle_xevents), (gst_ximagesink_event_thread),
20935         (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
20936         (gst_ximagesink_bufferpool_clear), (gst_ximagesink_getcaps),
20937         (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
20938         (gst_ximagesink_show_frame), (gst_ximagesink_buffer_alloc),
20939         (gst_ximagesink_navigation_send_event),
20940         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_expose),
20941         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
20942         (gst_ximagesink_finalize), (gst_ximagesink_init),
20943         (gst_ximagesink_class_init):
20944         * sys/ximage/ximagesink.h: Refactoring of ximagesink.
20945         This new version brings correct software scaling, non flickering
20946         window while resizing, pixel aspect ratio handling, usage of
20947         hardware buffer pools, out of data flow event thread for 
20948         navigation and handling of expose events even when being PAUSED,
20949         a new property to keep video aspect ratio when resizing, etc...
20950
20951 2005-11-18  Julien MOUTTE  <julien@moutte.net>
20952
20953         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
20954         (gst_videoscale_fixate_caps): Introduce back caps fixate with
20955         handling of PAR.
20956
20957 2005-11-18  Edward Hervey  <bilboed@dvdsrc.fluendo.com>
20958
20959         * gst/playback/gstdecodebin.c: (gst_decode_bin_init): 
20960         Unsetting IS_SINK flag from the fakesink, so decodebin
20961         never behaves as a sink.
20962
20963 2005-11-17  Wim Taymans  <wim@fluendo.com>
20964
20965         * gst-libs/gst/audio/gstbaseaudiosrc.c:
20966         (gst_base_audio_src_change_state):
20967         Fix the audiosrc base class again, we did not unflush.
20968
20969 2005-11-17  Julien MOUTTE  <julien@moutte.net>
20970
20971         * examples/seeking/seek.c: (make_dv_pipeline),
20972         (make_vorbis_theora_pipeline), (make_avi_pipeline),
20973         (make_mpegnt_pipeline): Use VSINK everywhere, add a scaler
20974         to ogg/vorbis/theora pipeline.
20975
20976 2005-11-17  Wim Taymans  <wim@fluendo.com>
20977
20978         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
20979         (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
20980         (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
20981         Fix EOS on multiple streams.
20982         More debugging.
20983
20984 2005-11-16  Wim Taymans  <wim@fluendo.com>
20985
20986         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_configure_segment),
20987         (gst_ogg_demux_perform_seek):
20988         Segment done must include stream time.
20989
20990         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
20991         (gst_ogg_mux_clear), (gst_ogg_mux_init), (gst_ogg_mux_finalize),
20992         (gst_ogg_mux_change_state):
20993         Fix ogg muxer again.
20994
20995 2005-11-16  Wim Taymans  <wim@fluendo.com>
20996
20997         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init):
20998         Fix compile again.
20999
21000 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
21001
21002         * ext/libvisual/visual.c: (gst_visual_init):
21003         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
21004         * ext/ogg/gstoggparse.c: (gst_ogg_parse_init),
21005         (gst_ogg_parse_chain):
21006         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
21007         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init):
21008         * ext/theora/theoradec.c: (gst_theora_dec_init):
21009         * ext/theora/theoraenc.c: (gst_theora_enc_init):
21010         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
21011         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init):
21012         * gst/adder/gstadder.c: (gst_adder_class_init),
21013         (gst_adder_dispose):
21014         * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
21015         * gst/subparse/gstsubparse.c: (gst_subparse_init):
21016         * gst/videorate/gstvideorate.c: (gst_videorate_init):
21017           Fix a whole set of pad template leaks
21018
21019 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
21020
21021         * check/generic/states.c: (GST_START_TEST):
21022           fix the test so that it only checks for elements that are part of
21023           this source module
21024
21025 2005-11-16  Michael Smith <msmith@fluendo.com>
21026
21027         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_reset),
21028         (gst_ogg_mux_init), (gst_ogg_mux_request_new_pad),
21029         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
21030         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
21031         (gst_ogg_mux_collected), (gst_ogg_mux_clear_collectpads),
21032         (gst_ogg_mux_change_state):
21033           Fix leaking collectpads.
21034
21035 2005-11-16  Edward Hervey  <edward@fluendo.com>
21036
21037         * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
21038         (gst_videorate_event), (gst_videorate_chain):
21039         Handle segment seeks
21040
21041 2005-11-16  Wim Taymans  <wim@fluendo.com>
21042
21043         * gst-libs/gst/audio/gstbaseaudiosink.c:
21044         (gst_base_audio_sink_provide_clock),
21045         (gst_base_audio_sink_change_state):
21046         Set ringbuffer to non-flushing when going to PAUSED, set to
21047         flushing again when going to READY.
21048
21049         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
21050         (gst_ring_buffer_stop):
21051         Start in flushing mode by default.
21052         Don't set flushing in the _stop method, let the app call
21053         this explicitly.
21054
21055 2005-11-16  Julien MOUTTE  <julien@moutte.net>
21056
21057         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_center_rect):
21058         * gst-libs/gst/video/videosink.h: Add helper function needed
21059         for video sinks.
21060
21061 2005-11-16  Tim-Philipp Müller  <tim at centricular dot net>
21062
21063         * gst/videoscale/gstvideoscale.c:
21064         (gst_videoscale_handle_src_event):
21065           Don't leak reference to pad parent.
21066
21067 2005-11-16  Wim Taymans  <wim@fluendo.com>
21068
21069         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop):
21070         Set ringbuffer to flushing when stopping so that we don't
21071         block on wait_segment anymore and livelock.
21072
21073 2005-11-16  Wim Taymans  <wim@fluendo.com>
21074
21075         * examples/seeking/seek.c: (send_event), (do_seek),
21076         (loop_toggle_cb), (segment_done), (main):
21077         Added looping checkbox.
21078
21079 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
21080
21081         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
21082         (gst_ogg_demux_init):
21083         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
21084         (gst_vorbis_dec_init):
21085           revert unrefs, they don't pass make check
21086
21087 2005-11-15  Johan Dahlin  <johan@gnome.org>
21088
21089         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
21090         (gst_ogg_demux_init), (gst_ogg_demux_finalize):
21091         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
21092         (gst_vorbis_dec_init):
21093         Fix pad template leaks. 
21094
21095 2005-11-15  Tim-Philipp Müller  <tim at centricular dot net>
21096
21097         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
21098           Make state change function thread safe.
21099
21100 2005-11-15  Edward Hervey  <edward@fluendo.com>
21101
21102         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
21103         (gst_ogg_demux_class_init):
21104         Implement GstElement::send_event, so we can send seek events
21105         in GST_STATE_READY
21106
21107 2005-11-14  Julien MOUTTE  <julien@moutte.net>
21108
21109         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new):
21110         Discovered how to take away flickering while resizing the
21111         window. Please don't put that in ximagesink, refactoring in
21112         progress.
21113
21114 2005-11-14  Michael Smith <msmith@fluendo.com>
21115
21116         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_client_queue_data),
21117         (gst_multifdsink_render):
21118           Don't leak GDP headers when using GDP mode (i.e. tcpserversink).
21119
21120 2005-11-14  Tim-Philipp Müller  <tim at centricular dot net>
21121
21122         * gst/playback/gstplaybin.c: (gen_audio_element):
21123           Use autoaudiosink, it tends to be more widely available than
21124           autoaudiiosink.
21125           
21126 2005-11-14  Andy Wingo  <wingo@pobox.com>
21127
21128         * gst/playback/gstplaybin.c (gen_audio_element): Use autoaudiosink
21129         as well if it is available. Fixes #316442.
21130
21131 2005-11-14  Michael Smith <msmith@fluendo.com>
21132
21133         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_init),
21134         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
21135         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
21136         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
21137         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_collected),
21138         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
21139         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_buffer_from_packet),
21140         (gst_vorbisenc_change_state):
21141           Fix a small memory leak in vorbisenc.
21142           Fix large memory leaks in oggmux, also fix lots of state change
21143           bugs in oggmux.
21144
21145 2005-11-14  Thomas Vander Stichele  <thomas at apestaart dot org>
21146
21147         * gst/videotestsrc/gstvideotestsrc.c:
21148         (gst_videotestsrc_class_init), (gst_videotestsrc_init),
21149         (gst_videotestsrc_src_fixate):
21150           move fixation to a fixate function
21151           remove negotiate function, basesrc's is good enough
21152           fixes a bug for check when using the element alone
21153
21154 2005-11-13  Edward Hervey  <edward@fluendo.com>
21155
21156         * examples/seeking/seek.c: (do_seek), (accurate_toggle_cb),
21157         (key_toggle_cb), (main):
21158         Added checkboxes for adding/removing the accurate and key_unit seek
21159         flags.
21160
21161 2005-11-11  Thomas Vander Stichele  <thomas at apestaart dot org>
21162
21163         * configure.ac: back to HEAD
21164
21165 === release 0.9.5 ===
21166
21167 2005-11-11  Thomas Vander Stichele <thomas at apestaart dot org>
21168
21169         * configure.ac:
21170           releasing 0.9.5, "No No Kia"
21171
21172 2005-11-11  Edward Hervey  <edward@fluendo.com>
21173
21174         * examples/seeking/seek.c: (make_parselaunch_pipeline):
21175         Added parse-launch syntax seeking mode for the seeking example.
21176         This should help stress-test even more cases.
21177         Ex usage : ./seek 15 "filesrc location=uranus.avi ! decodebin ! xvimagesink"
21178
21179 2005-11-11  Tim-Philipp Müller  <tim at centricular dot net>
21180
21181         * sys/xvimage/xvimagesink.c:
21182         (gst_xvimagesink_navigation_send_event):
21183           Check whether peer pad exists before sending navigation events
21184           to it.
21185
21186 2005-11-11  Michael Smith <msmith@fluendo.com>
21187
21188         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup),
21189         (gst_vorbisenc_buffer_from_packet):
21190         * ext/vorbis/vorbisenc.h:
21191           Set duration on encoded buffers. This allows oggmux's
21192           max_page_delay parameter to actually work.
21193
21194 2005-11-11  Tim-Philipp Müller  <tim at centricular dot net>
21195
21196         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
21197         (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
21198         (gst_ffmpegcsp_avpicture_fill):
21199         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
21200         (gst_ffmpegcsp_get_unit_size), (gst_ffmpegcsp_transform):
21201           Make palettes work again (see #132341). Use our own macros
21202           for rounding up.
21203
21204 2005-11-10  Andy Wingo  <wingo@pobox.com>
21205
21206         * gst/playback/gstplaybasebin.c (prepare_output): Fix format
21207         string doober.
21208
21209 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
21210
21211         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
21212         (gst_ffmpegcsp_transform_caps):
21213           Prefer passthrough in transform_caps
21214
21215 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
21216
21217         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
21218           check for ALSA errors properly, instead of relying on ALSA's
21219           error strings to serve to the user.
21220
21221 2005-11-10  Wim Taymans  <wim@fluendo.com>
21222
21223         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event), (gst_ogg_demux_init),
21224         (gst_ogg_demux_configure_segment), (gst_ogg_demux_perform_seek),
21225         (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
21226         Modernise the seek code.
21227
21228 2005-11-10  Michael Smith <msmith@fluendo.com>
21229         
21230         * gst/playback/gstplaybasebin.c: (group_commit), (new_decoded_pad),
21231         (setup_substreams), (set_active_source):
21232           Unlock GROUP_LOCK in failure cases, so that we don't deadlock when
21233           trying to go to NULL if we failed to read a file.
21234
21235 2005-11-10  Wim Taymans  <wim@fluendo.com>
21236
21237         * gst/audiotestsrc/gstaudiotestsrc.c:
21238         (gst_audiotestsrc_class_init), (gst_audiotestsrc_get_times),
21239         (gst_audiotestsrc_create):
21240         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
21241         (gst_sinesrc_get_times), (gst_sinesrc_create):
21242         * gst/videotestsrc/gstvideotestsrc.c:
21243         (gst_videotestsrc_class_init), (gst_videotestsrc_get_times),
21244         (gst_videotestsrc_create):
21245         The base class can now sync for us.
21246
21247 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
21248
21249         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate): Check if the caps have
21250           a fourcc field. Fixes crash for gst-launch-0.9 v4lsrc
21251           name=source autoprobe=false autoprobe-fps=false copy-mode=1
21252           device=/dev/video0 ! ffmpegcolorspace ! "video/x-raw-yuv,
21253           format=(fourcc)I420" ! xvimagesink
21254
21255 2005-11-10  Tim-Philipp Müller  <tim at centricular dot net>
21256
21257         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
21258         (gst_sinesrc_get_query_types), (gst_sinesrc_src_query),
21259         (gst_sinesrc_newsegment):
21260           Send newsegment event in TIME format, set duration if
21261           num-buffers is set, fix duration querying.
21262
21263 2005-11-10  Michael Smith <msmith@fluendo.com>
21264
21265         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
21266         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
21267         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
21268         (gst_ogg_mux_collected):
21269          Fix EOS handling, partially. Now forwarding an EOS event once we have
21270          EOS on all pads works correctly. However, we still don't properly set
21271          EOS on the actual ogg stream pages.
21272
21273 2005-11-09  Tim-Philipp Müller  <tim at centricular dot net>
21274
21275         * gst/playback/gstplaybin.c: (gst_play_bin_dispose):
21276           Set elements to NULL state before disposing of them.
21277
21278 2005-11-08  Sebastien Cote  <sebas642 at yahoo dot ca>
21279
21280         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
21281
21282         * gst-libs/gst/rtp/gstbasertpdepayload.c:
21283         (gst_base_rtp_depayload_init),
21284         (gst_base_rtp_depayload_set_gst_timestamp):
21285         * gst-libs/gst/rtp/gstbasertpdepayload.h:
21286           We need to send a newsegment event for each instance, not
21287           just for the first instance of this class (get rid of
21288           static variable in function). (#321011).
21289           
21290 2005-11-08  Michael Smith <msmith@fluendo.com>
21291
21292         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
21293         (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_buffer),
21294         (gst_ogg_mux_dequeue_page), (gst_ogg_mux_pad_queue_page),
21295         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
21296           Forward port rewrite of muxing strategy to 0.9 version of oggmux.
21297           This makes us mux things correctly according to the ogg muxing
21298           rules. Still not handling EOS correctly right now, though.
21299
21300 2005-11-08  Tim-Philipp Müller  <tim at centricular dot net>
21301
21302         * gst/audioconvert/gstaudioconvert.c:
21303           Fix typo in docs. 
21304
21305 2005-11-08  Tim-Philipp Müller  <tim at centricular dot net>
21306
21307         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
21308         (gst_ogg_pad_submit_packet), (gst_ogg_chain_new):
21309           Initialise segment_stop to GST_CLOCK_TIME_NONE when
21310           creating a new chain; should fix live streaming. Also
21311           add more debug output and fix a typo.
21312
21313 2005-11-08  Brian Cameron  <brian dot cameron at sun dot com>
21314
21315         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
21316
21317         * gst/volume/gstvolume.c: (volume_set_caps):
21318           Fix compilation on Solaris with Forte. (#320923)
21319
21320 2005-11-08  Wim Taymans  <wim@fluendo.com>
21321
21322         * gst-libs/gst/audio/gstbaseaudiosink.c:
21323         (gst_base_audio_sink_render):
21324         No need to do a typecheck.
21325
21326 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
21327
21328         * ext/alsa/gstalsa.h:
21329           We register a debug category, so let's use it.
21330
21331 2005-11-04  Zeeshan Ali  <zeenix@gmail.com>
21332
21333         * gst-libs/gst/rtp/gstbasertpdepayload.c:
21334         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_wait):
21335         Fixed a small problem.
21336
21337 2005-11-04  Wim Taymans  <wim@fluendo.com>
21338
21339         * examples/seeking/Makefile.am:
21340         * examples/seeking/scrubby.c: (gst_element_factory_make_or_warn),
21341         (dynamic_link), (setup_dynamic_link), (make_wav_pipeline),
21342         (make_playerbin_pipeline), (format_value), (update_scale),
21343         (speed_cb), (seek_cb), (do_seek), (start_seek), (stop_seek),
21344         (play_cb), (pause_cb), (stop_cb), (print_message), (bus_message),
21345         (print_usage), (main):
21346         Added app for playback speed testing.
21347
21348         * examples/seeking/seek.c: (dynamic_link),
21349         (make_avi_msmpeg4v3_mp3_pipeline), (make_avi_pipeline),
21350         (make_mpeg_pipeline), (do_seek), (set_update_scale),
21351         (message_received), (main):
21352         Updated seek example.
21353
21354 2005-11-04  Zeeshan Ali  <zeenix@gmail.com>
21355
21356         * gst-libs/gst/rtp/gstbasertpdepayload.c:
21357         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
21358         (gst_base_rtp_depayload_thread), (gst_base_rtp_depayload_wait),
21359         (gst_base_rtp_depayload_set_clock):
21360         * gst-libs/gst/rtp/gstbasertpdepayload.h:
21361         Don't sleep on the bench (system clock) when you have a nice 
21362         comfortable bed (Gstreamer clock) to sleep on.
21363
21364 2005-11-03  Wim Taymans  <wim@fluendo.com>
21365
21366         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
21367         (gst_decode_bin_dispose), (free_dynamics), (remove_fakesink),
21368         (pad_blocked), (close_pad_link), (new_pad), (no_more_pads):
21369         Handle the case where a pad_block failed.
21370
21371 2005-11-02  Sebastien Cote  <sebas642@yahoo.ca> 
21372
21373         reviewed by: Zeeshan Ali  <zeenix@gmail.com>
21374
21375         * gst-libs/gst/rtp/gstbasertpdepayload.c:
21376         (gst_base_rtp_depayload_add_to_queue),
21377         (gst_base_rtp_depayload_push),
21378         (gst_base_rtp_depayload_set_gst_timestamp),
21379         (gst_base_rtp_depayload_queue_release):
21380           Fixes some bugs in the depayloader's queuing/de-queueing code.
21381
21382 2005-10-31  Michael Smith <msmith@fluendo.com>
21383
21384         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
21385         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
21386         (gst_ogg_demux_collect_chain_info), (gst_ogg_print):
21387           Patch from Alessandro Decina <alessandro@nnva.org>.
21388           Make oggdemux only find the final time in a chain, not per-pad,
21389           since the per-pad information can be very expensive to locate, and
21390           it isn't used anywhere. This makes reading a file containing
21391           OggSkeleton reasonably fast.
21392           Also, make chain finding work when there are logical bitstreams that
21393           can't be decoded. Fixes #319110.
21394
21395 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
21396
21397         * gst-libs/gst/rtp/gstbasertpdepayload.c:
21398         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
21399         (gst_base_rtp_depayload_chain),
21400         (gst_base_rtp_depayload_add_to_queue),
21401         (gst_base_rtp_depayload_push),
21402         (gst_base_rtp_depayload_set_gst_timestamp),
21403         (gst_base_rtp_depayload_queue_release),
21404         (gst_base_rtp_depayload_start_thread),
21405         (gst_base_rtp_depayload_set_property),
21406         (gst_base_rtp_depayload_get_property):
21407         * gst-libs/gst/rtp/gstbasertpdepayload.h:
21408         Some random fixes, to fullfill the desires of thomas.
21409
21410 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
21411
21412         * gst-libs/gst/rtp/gstbasertpdepayload.c:
21413         (gst_base_rtp_depayload_add_to_queue),
21414         (gst_base_rtp_depayload_push):
21415         Fixed the queueing algorithm.
21416
21417 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
21418
21419         * gst-libs/gst/rtp/gstbasertpdepayload.c:
21420         (gst_base_rtp_depayload_push):
21421         A small fix
21422
21423 2005-10-31  Wim Taymans  <wim@fluendo.com>
21424
21425         * gst-libs/gst/audio/gstringbuffer.h:
21426         Don't break ABI.
21427
21428         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
21429         (gst_ffmpeg_caps_to_pixfmt):
21430         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
21431         (gst_ffmpegcsp_set_caps):
21432         Some more comments.
21433         Handle missing required caps fields better.
21434
21435 2005-10-31  Wim Taymans  <wim@fluendo.com>
21436
21437         * gst-libs/gst/audio/gstbaseaudiosink.c:
21438         (gst_base_audio_sink_event), (gst_base_audio_sink_get_offset),
21439         (gst_base_audio_sink_render):
21440         * gst-libs/gst/audio/gstringbuffer.c:
21441         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
21442         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
21443         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_pause),
21444         (gst_ring_buffer_stop), (wait_segment), (gst_ring_buffer_commit),
21445         (gst_ring_buffer_read):
21446         * gst-libs/gst/audio/gstringbuffer.h:
21447         Add flushing mode to the ringbuffer so that it in all cases does
21448         not try to handle more audio. This makes sure it does not try to
21449         block anymore when flushing and fixes a livelock.
21450
21451 2005-10-29  Tim-Philipp Müller  <tim at centricular dot net>
21452
21453         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
21454         (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
21455         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain):
21456           Explicitly check for -1 values before doing a conversion
21457           and always map them to -1. (#315545)
21458
21459 2005-10-28  Thomas Vander Stichele  <thomas at apestaart dot org>
21460
21461         * gst/playback/gstplaybin.c: (gen_video_element):
21462           first try autovideosink, then xvimagesink, then error out
21463         * po/POTFILES.in:
21464           add translatable file
21465         * po/af.po:
21466         * po/az.po:
21467         * po/cs.po:
21468         * po/en_GB.po:
21469         * po/hu.po:
21470         * po/it.po:
21471         * po/nb.po:
21472         * po/nl.po:
21473         * po/or.po:
21474         * po/sq.po:
21475         * po/sr.po:
21476         * po/sv.po:
21477         * po/uk.po:
21478         * po/vi.po:
21479           update translations
21480
21481 2005-10-27  Philippe Khalaf <burger at speedy dot org> 
21482
21483         * gst-libs/gst/rtp/gstbasedepayload.c:
21484         * gst-libs/gst/rtp/gstbasedepayload.h:
21485           Minor cleanups
21486
21487 2005-10-27  Tim-Philipp Müller  <tim at centricular dot net>
21488
21489         * gst/playback/.cvsignore:
21490         * gst/playback/decodetest.c:
21491         * gst/playback/test3.c:
21492           Port these two tests as well.
21493
21494 2005-10-27  Wim Taymans  <wim@fluendo.com>
21495
21496         * ext/theora/theoradec.c: (theora_dec_src_query),
21497         (theora_dec_sink_event):
21498         * ext/theora/theoraenc.c: (theora_enc_sink_event),
21499         (theora_enc_change_state):
21500         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
21501         (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
21502         Take proper locks when handling events.
21503
21504 2005-10-27  Wim Taymans  <wim@fluendo.com>
21505
21506         * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_collected),
21507         (gst_adder_change_state):
21508         Fix timestamps and fix deadlock when stopping the collectpads.
21509
21510 2005-10-27  Zeeshan Ali  <zeenix@gmail.com>
21511
21512         * gst-libs/gst/rtp/gstrtpbuffer.h:
21513         Declaring the payload types as strings too so that they can be used
21514         in the padtemplate inialization.
21515
21516 2005-10-26  Andre Magalhaes  <andrunko@gmail.com>
21517
21518         reviewed by: Zeeshan Ali   <zeenix@gmail.com>
21519
21520         * gst-libs/gst/rtp/gstbasertpdepayload.c:
21521         (gst_base_rtp_depayload_class_init):
21522         Fixes a small but nasty bug. The derived elements no longer segfaults
21523         on finalization.
21524
21525 2005-10-26  Michael Smith <msmith@fluendo.com>
21526
21527         * gst/audioconvert/audioconvert.c: (audio_convert_clean_context):
21528           When clearing an audioconvert context, set tmpbufsize to zero, so
21529           we'll allocate it again later if required.
21530           This fixes audioconvert re-negotiating formats, which previously
21531           segfaulted with a NULL destination buffer.
21532
21533 2005-10-26  Zeeshan Ali <zeenix@gmail.com>
21534
21535         * gst-libs/gst/rtp/gstbasertpdepayload.c:
21536         (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_push),
21537         (gst_base_rtp_depayload_set_gst_timestamp),
21538         (gst_base_rtp_depayload_queue_release):
21539         Fixed a smalll memleak.
21540
21541 2005-10-26  Zeeshan Ali  <zeenix@gmail.com>
21542         * gst-libs/gst/rtp/gstbasertpdepayload.c:
21543         (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_init),
21544         (gst_base_rtp_depayload_finalize),
21545         (gst_base_rtp_depayload_setcaps),
21546         (gst_base_rtp_depayload_add_to_queue),
21547         (gst_base_rtp_depayload_push),
21548         (gst_base_rtp_depayload_set_gst_timestamp),
21549         (gst_base_rtp_depayload_queue_release),
21550         (gst_base_rtp_depayload_thread),
21551         (gst_base_rtp_depayload_change_state):
21552         * gst-libs/gst/rtp/gstbasertpdepayload.h:
21553         Changed the C++ comments to C comments
21554
21555 2005-10-26  Tim-Philipp Müller  <tim at centricular dot net>
21556
21557         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init):
21558         * gst/tcp/gsttcpclientsrc.h:
21559         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init):
21560         * gst/tcp/gsttcpserversrc.h:
21561           Remove unused 'curoffset' structure member.
21562
21563 2005-10-25  Zeeshan Ali  <zeenix@gmail.com>
21564
21565         * gst-libs/gst/rtp/gstbasertpdepayload.c:
21566         (gst_base_rtp_depayload_base_init),
21567         (gst_base_rtp_depayload_finalize):
21568         * gst-libs/gst/rtp/gstbasertpdepayload.h:
21569         * gst-libs/gst/rtp/gstbasertppayload.h:
21570           The pad-template on the sinkpad should be set by the derived classes.
21571           Also added some useful macros.
21572
21573 2005-10-24  Wim Taymans  <wim@fluendo.com>
21574
21575         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
21576         Correctly flush decoder samples even if we could not
21577         copy them to an output buffer. Fixes #319618.
21578
21579 2005-10-24  Julien MOUTTE  <julien@moutte.net>
21580
21581         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
21582         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Check
21583         the caps against our xcontext caps.
21584
21585 2005-10-24  Wim Taymans  <wim@fluendo.com>
21586
21587         * gst-libs/gst/audio/gstbaseaudiosink.c:
21588         (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
21589         Remove g_print
21590         Use sync property from baseclass to disable sync.
21591
21592 2005-10-24  Wim Taymans  <wim@fluendo.com>
21593
21594         * gst-libs/gst/audio/gstbaseaudiosink.c:
21595         (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
21596         Buffers with no timestamps get aligned with previous buffers or
21597         on underrun, played ASAP.
21598
21599 2005-10-24  Julien MOUTTE  <julien@moutte.net>
21600
21601         * gst-libs/gst/video/video.h:
21602         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
21603         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
21604         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): And
21605         here comes my change on caps for framerate and geometry range.
21606         We are now accepting 1 to MAXINT for width and height, and from
21607         0.0 to MAXDOUBLE for framerate. That allows duration less png frames
21608         to be blended correctly in videomixer.
21609
21610 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
21611
21612         * configure.ac:
21613           back to HEAD
21614
21615 === release 0.9.4 ===
21616
21617 2005-10-23  Thomas Vander Stichele  <thomas at apestaart dot org>
21618
21619         * NEWS:
21620         * RELEASE:
21621         * configure.ac:
21622           releasing 0.9.4, "Velociraptor"
21623
21624 2005-10-23  Thomas Vander Stichele  <thomas at apestaart dot org>
21625
21626         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
21627         * po/POTFILES.in:
21628           STOPPED -> FAILED
21629
21630 2005-10-21  Wim Taymans  <wim@fluendo.com>
21631
21632         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
21633         (gst_decode_bin_dispose), (free_dynamics), (pad_unblocked),
21634         (pad_blocked), (close_pad_link), (new_pad):
21635         Don't try to remove elements twice.
21636
21637 2005-10-21  Wim Taymans  <wim@fluendo.com>
21638
21639         * ext/theora/theoradec.c: (theora_dec_src_query),
21640         (theora_dec_sink_event):
21641         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
21642         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
21643         (vorbis_handle_data_packet):
21644         * ext/vorbis/vorbisdec.h:
21645         Fix old naming.
21646
21647         * gst-libs/gst/audio/gstbaseaudiosink.c:
21648         (gst_base_audio_sink_render):
21649         Don't try to sync on buffers without a timestamp.
21650
21651 2005-10-21  Wim Taymans  <wim@fluendo.com>
21652
21653         * ext/theora/theoradec.c: (theora_dec_src_query),
21654         (theora_dec_sink_event):
21655         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
21656         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
21657         (vorbis_handle_data_packet):
21658         * ext/vorbis/vorbisdec.h:
21659         Fix old naming.
21660
21661 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
21662
21663         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types),
21664         (gst_vorbisenc_src_query):
21665           Implement position and duration queries.
21666
21667         * gst/playback/test3.c: (update_scale), (main):
21668           Fix for async state changes and print nicer output.
21669
21670 2005-10-20  Wim Taymans  <wim@fluendo.com>
21671
21672         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
21673         (dump_element_stats), (main):
21674         * gst/playback/test6.c: (main):
21675         Fix tests again
21676
21677 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
21678
21679         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
21680         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
21681           Don't use functions for position queries when handling
21682           duration queries.
21683
21684 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
21685
21686         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
21687         (vorbis_handle_data_packet), (vorbis_dec_chain),
21688         (vorbis_dec_change_state):
21689         * ext/vorbis/vorbisdec.h:
21690           Vorbis streams can be embedded in other container formats
21691           than ogg, container formats where the demuxer might set 
21692           timestamps on encoded vorbis buffers instead of those silly 
21693           granulepos thingies. In short: make vorbisdec handle 
21694           timestamps on incoming buffers as well.
21695
21696 2005-10-20  Wim Taymans  <wim@fluendo.com>
21697
21698         * gst/playback/gstplaybasebin.c: (group_destroy),
21699         (gst_play_base_bin_change_state):
21700         Fix leak.
21701         Handle case where playbasebin is now ASYNC because
21702         decodebin is.
21703
21704 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
21705
21706         * gst/audioconvert/Makefile.am:
21707         * gst/audioconvert/bufferframesconvert.c:
21708         * gst/audioconvert/plugin.c: (plugin_init):
21709         * gst/audioconvert/plugin.h:
21710           And bye bye buffer-frames-convert
21711
21712 2005-10-19  Wim Taymans  <wim@fluendo.com>
21713
21714         * check/elements/audioconvert.c:
21715         * docs/libs/tmpl/gstaudio.sgml:
21716         * docs/libs/tmpl/gstcolorbalance.sgml:
21717         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
21718         (vorbis_handle_identification_packet), (vorbis_handle_data_packet):
21719         * ext/vorbis/vorbisenc.c: (raw_caps_factory):
21720         * gst-libs/gst/audio/audio.c: (gst_audio_structure_set_int):
21721         * gst-libs/gst/audio/audio.h:
21722         * gst/audioconvert/audioconvert.h:
21723         * gst/audioconvert/gstaudioconvert.c:
21724         (gst_audio_convert_parse_caps):
21725         * gst/volume/gstvolume.c:
21726         Bye bye buffer-frames.
21727
21728 2005-10-19  Wim Taymans  <wim@fluendo.com>
21729
21730         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
21731         (query_positions_elems), (query_positions_pads), (update_scale),
21732         (do_seek), (set_update_scale), (message_received), (main):
21733         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
21734         (gst_ogg_demux_perform_seek), (gst_ogg_demux_find_chains),
21735         (gst_ogg_demux_loop):
21736         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
21737         * ext/theora/theoradec.c: (theora_dec_src_query),
21738         (theora_dec_sink_event):
21739         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
21740         (vorbis_dec_sink_event), (vorbis_handle_data_packet):
21741         * gst/adder/gstadder.c: (gst_adder_query):
21742         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
21743         * gst/playback/test3.c: (update_scale):
21744         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
21745         (dump_element_stats), (main):
21746         * gst/playback/test6.c: (main):
21747         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
21748         Query API update.
21749
21750 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
21751
21752         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
21753         (xml_check_first_element), (xml_type_find), (smil_type_find),
21754         (plugin_init):
21755           Add typefinding for SMIL and for generic XML. Based on patch by
21756           Akos Maroy (#308663).
21757
21758 2005-10-18  Wim Taymans  <wim@fluendo.com>
21759
21760         * gst/playback/Makefile.am:
21761         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
21762         (gst_decode_bin_dispose), (dynamic_create), (dynamic_free),
21763         (free_dynamics), (pad_unblocked), (pad_blocked), (close_pad_link),
21764         (try_to_link_1), (new_pad), (no_more_pads), (type_found),
21765         (gst_decode_bin_change_state):
21766         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
21767         (gst_play_bin_send_event_to_sink):
21768         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
21769         (dump_element_stats), (main):
21770         * gst/playback/test6.c: (main):
21771         Make playbin async, it'll commit state to paused when all streams
21772         are detected.
21773         Remove ugly hack.
21774         Added test6.c to show async behaviour.
21775
21776 2005-10-18  Wim Taymans  <wim@fluendo.com>
21777
21778         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
21779         (gst_ogg_demux_perform_seek), (gst_ogg_demux_loop):
21780         Fix for segment-start/stop API change.
21781
21782 2005-10-18  Wim Taymans  <wim@fluendo.com>
21783
21784         * check/Makefile.am:
21785         * check/clocks/selection.c: (GST_START_TEST), (volume_suite),
21786         (main):
21787         Add future test for clock selection.
21788
21789 2005-10-18  Wim Taymans  <wim@fluendo.com>
21790
21791         * ext/alsa/gstalsasink.c: (gst_alsasink_init),
21792         (gst_alsasink_close):
21793         Set handle to NULL.
21794
21795         * gst-libs/gst/audio/gstringbuffer.c:
21796         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
21797         (gst_ring_buffer_acquire), (gst_ring_buffer_release),
21798         (gst_ring_buffer_start), (gst_ring_buffer_pause),
21799         (gst_ring_buffer_stop), (gst_ring_buffer_commit),
21800         (gst_ring_buffer_read):
21801         More debug info.
21802
21803 2005-10-17  Stefan Kost  <ensonic@users.sf.net>
21804
21805         * gst/audiotestsrc/Makefile.am:
21806         * gst/sine/Makefile.am:
21807         * gst/volume/Makefile.am:
21808           fix broken build of controllerized plugins
21809
21810 2005-10-17  Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>
21811
21812         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
21813
21814         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
21815         (gst_riff_create_video_template_caps):
21816           Add support for Indeo-3 (IV32).
21817
21818 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
21819
21820         * configure.ac:
21821           rewrite
21822
21823 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
21824
21825         * gst-libs/gst/video/video.c: (gst_video_get_size):
21826         * gst/audiotestsrc/gstaudiotestsrc.c:
21827           doc updates
21828
21829 2005-10-17  Andy Wingo  <wingo@pobox.com>
21830
21831         * ext/ogg/gstoggmux.c (gst_ogg_mux_queue_pads): Fix bug introduced
21832         with the collectpads change.
21833         (gst_ogg_mux_send_headers): Elevate warning to a g_critical.
21834
21835         * gst/tcp/gstmultifdsink.c: Convert to use the boilerplate macro.
21836
21837         * gst/tcp/gsttcp.c (gst_tcp_socket_read): Comment update.
21838
21839         * ext/theora/theoraenc.c (theora_buffer_from_packet): Pass the
21840         alloc_buffer flow return to callers.
21841         (theora_enc_chain, theora_enc_chain): Adapt to buffer_from_packet
21842         change. Fix some memleaks in theoraenc.
21843
21844         * ext/ogg/gstoggmux.c (gst_ogg_mux_send_headers): Fix a segfault
21845         in strange circumstance.
21846
21847 2005-10-17  Julien MOUTTE  <julien@moutte.net>
21848
21849         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
21850         (gst_ffmpegcsp_get_unit_size): We are asked to compute a buffer size
21851         from caps, let's use the caps...
21852
21853 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
21854
21855         * configure.ac:
21856           put back AX_CREATE_STDINT_H, ffmpegcolorspace includes _stdint.h
21857
21858 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
21859
21860         * gst-libs/gst/interfaces/Makefile.am:
21861           fix silly typo
21862
21863 2005-10-16  Andy Wingo  <wingo@pobox.com>
21864
21865         * gst/playback/gstdecodebin.c
21866         (gst_element_set_state_like_a_crazy_man): New kraaaaaaazy
21867         function!
21868         (try_to_link_1): Increase kraziness level.
21869
21870 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
21871
21872         * configure.ac:
21873           restructure like the core one
21874         * gst-libs/gst/audio/Makefile.am:
21875         * gst-libs/gst/interfaces/Makefile.am:
21876         * gst-libs/gst/net/Makefile.am:
21877         * gst-libs/gst/riff/Makefile.am:
21878         * gst-libs/gst/rtp/Makefile.am:
21879         * gst-libs/gst/tag/Makefile.am:
21880         * gst-libs/gst/video/Makefile.am:
21881           use correct linker flags, now the libs are properly versioned
21882         * check/elements/audioconvert.c: (verify_convert):
21883         * ext/alsa/gstalsaplugin.c:
21884         * ext/cdparanoia/gstcdparanoia.c:
21885         * ext/gnomevfs/gstgnomevfs.c:
21886         * ext/libvisual/visual.c:
21887         * ext/ogg/gstogg.c:
21888         * ext/ogg/gstoggparse.c: (gst_ogg_parse_chain):
21889         * ext/theora/theora.c:
21890         * ext/vorbis/vorbis.c:
21891         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
21892         * gst-libs/gst/tag/gsttagediting.c:
21893         * gst-libs/gst/video/video.c:
21894         * gst/adder/gstadder.c:
21895         * gst/audioconvert/plugin.c:
21896         * gst/audiorate/gstaudiorate.c:
21897         * gst/audioresample/gstaudioresample.c:
21898         * gst/audioresample/resample_ref.c: (resample_scale_ref):
21899         * gst/audioscale/gstaudioscale.c:
21900         * gst/audioscale/resample.c:
21901         * gst/audiotestsrc/gstaudiotestsrc.c:
21902         * gst/ffmpegcolorspace/gstffmpeg.c:
21903         * gst/playback/gstdecodebin.c: (close_pad_link):
21904         * gst/playback/gstplaybin.c: (gen_video_element),
21905         (gen_audio_element):
21906         * gst/sine/gstsinesrc.c:
21907         * gst/subparse/gstsubparse.c:
21908         * gst/tags/gsttagediting.c:
21909         * gst/tcp/gsttcpplugin.c:
21910         * gst/typefind/gsttypefindfunctions.c:
21911         * gst/videorate/gstvideorate.c:
21912         * gst/videoscale/gstvideoscale.c:
21913         * gst/videotestsrc/gstvideotestsrc.c:
21914         * gst/volume/gstvolume.c:
21915         * sys/v4l/gstv4l.c:
21916         * sys/ximage/ximage.c:
21917         * sys/xvimage/xvimagesink.c:
21918           fix up defines
21919
21920 2005-10-13  Tim-Philipp Müller  <tim at centricular dot net>
21921
21922         * ext/vorbis/vorbisenc.c:
21923         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
21924         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
21925         (gst_tag_to_vorbis_comments):
21926           Fix handling of GST_TAG_DATE, which is now of GST_TYPE_DATE.
21927
21928 2005-10-13  Stefan Kost  <ensonic@users.sf.net>
21929
21930         * examples/stats/mp2ogg.c:
21931         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
21932           typo fixes
21933
21934 2005-10-13  Michael Smith <msmith@fluendo.com>
21935
21936         * ext/ogg/gstoggmux.c:
21937           Use magic glib macros to define constants as 64 bit, to ensure
21938           appropriate vararg passing.
21939
21940 2005-10-13  Michael Smith <msmith@fluendo.com>
21941
21942         * ext/ogg/gstoggmux.c:
21943         * gst/audioconvert/audioconvert.c: (float):
21944           Don't use LL suffix, as it's not portable, and neither of these
21945           uses required it anyway.
21946
21947 2005-10-12  Stefan Kost  <ensonic@users.sf.net>
21948
21949         * examples/indexing/indexmpeg.c: (main):
21950         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get),
21951         (cdparanoia_open), (cdparanoia_close), (cdparanoia_event),
21952         (cdparanoia_convert), (cdparanoia_query):
21953         * ext/cdparanoia/gstcdparanoia.h:
21954         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
21955         (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file),
21956         (gst_gnomevfssink_chain), (gst_gnomevfssink_change_state):
21957         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
21958         * gst/audioscale/gstaudioscale.c: (gst_audioscale_init):
21959         * gst/playback/gststreamselector.c: (gst_stream_selector_init):
21960         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
21961         (gst_multifdsink_render), (gst_multifdsink_start),
21962         (gst_multifdsink_stop):
21963         * gst/tcp/gstmultifdsink.h:
21964         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init),
21965         (gst_tcpclientsink_render), (gst_tcpclientsink_start),
21966         (gst_tcpclientsink_stop):
21967         * gst/tcp/gsttcpclientsink.h:
21968         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
21969         (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_create),
21970         (gst_tcpclientsrc_start), (gst_tcpclientsrc_stop):
21971         * gst/tcp/gsttcpclientsrc.h:
21972         * gst/tcp/gsttcpserversink.h:
21973         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init),
21974         (gst_tcpserversrc_create), (gst_tcpserversrc_start),
21975         (gst_tcpserversrc_stop):
21976         * gst/tcp/gsttcpserversrc.h:
21977         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
21978         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
21979         * sys/ximage/ximagesink.c: (gst_ximagesink_init):
21980           renamed GST_FLAGS macros to GST_OBJECT_FLAGS
21981           moved bitshift from macro to enum definition
21982
21983 2005-10-12  Wim Taymans  <wim@fluendo.com>
21984
21985         * examples/seeking/Makefile.am:
21986         Oops.
21987
21988 2005-10-12  Wim Taymans  <wim@fluendo.com>
21989
21990         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
21991         (gst_ring_buffer_read), (gst_ring_buffer_clear):
21992         Don't assert on normal stuff.
21993
21994         * gst/playback/gstplaybin.c: (do_playbin_seek):
21995         API fix.
21996
21997 2005-10-12  Wim Taymans  <wim@fluendo.com>
21998
21999         * check/pipelines/simple_launch_lines.c: (run_pipeline):
22000         * examples/seeking/Makefile.am:
22001         * examples/seeking/cdplayer.c: (play_cb), (pause_cb), (stop_cb):
22002         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
22003         (do_seek), (set_update_scale), (message_received), (main):
22004         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
22005         (gst_ring_buffer_read), (gst_ring_buffer_clear):
22006         Update for _get_state() API change.
22007
22008 2005-10-11  Wim Taymans  <wim@fluendo.com>
22009
22010         * gst-libs/gst/audio/gstbaseaudiosink.c:
22011         (gst_base_audio_sink_render):
22012         * gst-libs/gst/audio/gstbaseaudiosrc.c:
22013         (gst_base_audio_src_create):
22014         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
22015         (gst_ring_buffer_read):
22016         Cleanups.
22017         Commit and read from ringbuffer in samples rather than bytes.
22018
22019 2005-10-11  Wim Taymans  <wim@fluendo.com>
22020
22021         * gst-libs/gst/audio/gstbaseaudiosink.c:
22022         (gst_base_audio_sink_render):
22023         Respect segment rate and accum when scheduling samples.
22024
22025 2005-10-11  Julien MOUTTE  <julien@moutte.net>
22026
22027         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
22028         (gst_ogg_mux_collected): Quick hack to fix build. We need to handle
22029         EOS correctly, that needs more work.
22030
22031 2005-10-11  Wim Taymans  <wim@fluendo.com>
22032
22033         * check/generic/states.c: (GST_START_TEST):
22034         remove old property.
22035
22036         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
22037         (gst_ogg_demux_perform_seek):
22038         * ext/theora/theoradec.c: (theora_dec_sink_event):
22039         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
22040         (vorbis_handle_data_packet):
22041         * gst-libs/gst/rtp/gstbasertpdepayload.c:
22042         (gst_base_rtp_depayload_set_gst_timestamp):
22043         * gst/videorate/gstvideorate.c: (gst_videorate_event):
22044         Update for newsegment API change.
22045
22046 2005-10-11  Michael Smith <msmith@fluendo.com>
22047
22048         * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
22049         (do_playbin_seek), (gst_play_bin_send_event):
22050           Override send_event differently, so that we can takes bits of
22051           functionality from GstPipeline (special handling for seeks,
22052           including pausing/resuming, and resetting stream time) and still get
22053           the appropriate behaviour of only forwarding event to a single sink,
22054           rather than all of them.
22055           Unfortunately requires a lot of code duplication, but the
22056           alternatives are equally ugly in the end.
22057
22058 2005-10-11  Thomas Vander Stichele  <thomas at apestaart dot org>
22059
22060         * check/elements/audioconvert.c: (setup_audioconvert),
22061         (cleanup_audioconvert), (get_int_caps), (verify_convert),
22062         (GST_START_TEST), (audioconvert_suite):
22063           clean up tests a little, fix some leaks.
22064
22065 2005-10-10  Wim Taymans  <wim@fluendo.com>
22066
22067         * ext/alsa/gstalsasink.c:
22068         Also allow unsigned int.
22069
22070         * gst-libs/gst/audio/gstbaseaudiosrc.c:
22071         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
22072         Small cleanup
22073
22074 2005-10-10  Wim Taymans  <wim@fluendo.com>
22075
22076         * check/pipelines/simple_launch_lines.c: (run_pipeline):
22077         Small update, use API as stated in design docs.
22078
22079         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
22080         (update_scale), (do_seek), (seek_cb), (set_update_scale),
22081         (start_seek), (stop_seek), (play_cb), (pause_cb), (stop_cb),
22082         (message_received), (main):
22083         Updated seek example for GOption. Some usability improvements.
22084
22085 2005-10-10  Wim Taymans  <wim@fluendo.com>
22086
22087         * gst/audioconvert/audioconvert.h:
22088         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
22089         (gst_channel_mix_setup_matrix), (gst_channel_mix_mix):
22090         Alloc temp storage somewhere else where we can do it more
22091         portable.
22092
22093 2005-10-10  Wim Taymans  <wim@fluendo.com>
22094
22095         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_create),
22096         (gst_tcpserversrc_start):
22097         Don't block in accept while doing the state change, move
22098         to poll and make cancellable.
22099
22100 2005-10-09  Philippe Khalaf <burger@speedy.org>
22101
22102         * gst-libs/gst/rtp/rtpbasedepayload.c:
22103         Set timestamp and add queue delay to timestamp
22104         * gst-libs/gst/rtp/rtpbuffer.h:
22105         Set correct payload type for h263
22106
22107 2005-10-09  Stefan Kost  <ensonic@users.sf.net>
22108
22109         * gst/audiotestsrc/gstaudiotestsrc.c:
22110         (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_class_init),
22111         (gst_audiotestsrc_init), (gst_audiotestsrc_create_sine),
22112         (gst_audiotestsrc_create_square), (gst_audiotestsrc_create_saw),
22113         (gst_audiotestsrc_create_triangle),
22114         (gst_audiotestsrc_create_silence),
22115         (gst_audiotestsrc_create_white_noise),
22116         (gst_audiotestsrc_init_pink_noise),
22117         (gst_audiotestsrc_generate_pink_noise_value),
22118         (gst_audiotestsrc_create_pink_noise),
22119         (gst_audiotestsrc_change_wave):
22120         * gst/audiotestsrc/gstaudiotestsrc.h:
22121           fixed typo, added pink noise
22122
22123 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
22124
22125         * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find),
22126         (plugin_init):
22127           Add wavpack and spc typefind functions from 0.8 branch.
22128
22129 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
22130
22131         * gst/typefind/gsttypefindfunctions.c: (tar_type_find),
22132         (ar_type_find), (msdos_type_find), (plugin_init):
22133           Add typefind functions for tar archives, ar archives,
22134           RAR archives, and msdos-executables (dlls, exe, etc.).
22135           Some of those would be wrongly identified as mpeg
22136           streams of some sort before (#315550).
22137
22138 2005-10-09  Stefan Kost  <ensonic@users.sf.net>
22139
22140         * configure.ac:
22141         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
22142         * docs/plugins/gst-plugins-base-plugins-sections.txt:
22143         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
22144         * gst/audiotestsrc/Makefile.am:
22145         * gst/audiotestsrc/gstaudiotestsrc.c:
22146         (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_base_init),
22147         (gst_audiotestsrc_class_init), (gst_audiotestsrc_init),
22148         (gst_audiotestsrc_src_fixate), (gst_audiotestsrc_setcaps),
22149         (gst_audiotestsrc_get_query_types), (gst_audiotestsrc_src_query),
22150         (gst_audiotestsrc_wait), (gst_audiotestsrc_unlock),
22151         (gst_audiotestsrc_create_sine), (gst_audiotestsrc_create_square),
22152         (gst_audiotestsrc_create_saw), (gst_audiotestsrc_create_triangle),
22153         (gst_audiotestsrc_create_silence),
22154         (gst_audiotestsrc_create_white_noise),
22155         (gst_audiotestsrc_change_wave), (gst_audiotestsrc_create),
22156         (gst_audiotestsrc_set_property), (gst_audiotestsrc_get_property),
22157         (gst_audiotestsrc_start), (plugin_init):
22158         * gst/audiotestsrc/gstaudiotestsrc.h:
22159           add new plugin and element
22160         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init):
22161           use gobject_class
22162
22163 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
22164
22165         * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_class_init),
22166         (gst_adder_init), (gst_adder_request_new_pad),
22167         (gst_adder_change_state):
22168           Add query function to source pad, so adder reports the correct
22169           time/sample position when queried (#315457); fix state change
22170           function; use GST_DEBUG_FUNCPTR() for pad functions.
22171
22172 2005-10-08  Thomas Vander Stichele  <thomas at apestaart dot org>
22173
22174         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find):
22175           Fix leaks in typefind registration
22176           Clean up the gratuitous commenting and whitespacing a little
22177
22178 2005-10-08  Wim Taymans  <wim@fluendo.com>
22179
22180         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_stop):
22181         Only actually wait for the thread to be stopped if it's 
22182         running.
22183
22184 2005-10-08  Wim Taymans  <wim@fluendo.com>
22185
22186         * gst-libs/gst/audio/gstbaseaudiosink.c:
22187         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
22188         If we receive EOS we can start playback of what we had.
22189
22190 2005-10-08  Wim Taymans  <wim@fluendo.com>
22191
22192         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
22193         (gst_multifdsink_finalize), (multifdsink_hash_remove),
22194         (gst_multifdsink_stop):
22195         Fix crasher when going to NULL multiple times.
22196
22197 2005-10-06  Wim Taymans  <wim@fluendo.com>
22198
22199         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event),
22200         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
22201         * gst-libs/gst/audio/gstbaseaudiosrc.h:
22202         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
22203         patch from Edgard Lima <edgard.lima@indt.org.br>
22204         Fixed gstbaseaudiosrc adding ring buffer sync to it.
22205
22206 2005-10-06  Wim Taymans  <wim@fluendo.com>
22207
22208         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
22209         Report the FLOW_RETURN as string in the error message.
22210
22211         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_clear_all):
22212         Don't assert when clearing an unnegotiated buffer.
22213
22214 2005-10-04  Michael Smith <msmith@fluendo.com>
22215
22216         * gst/playback/gstplaybasebin.c: (group_destroy),
22217         (gen_preroll_element), (remove_groups), (setup_source):
22218         * gst/playback/gstplaybin.c: (remove_sinks), (add_sink),
22219         (setup_sinks), (gst_play_bin_send_event),
22220         (gst_play_bin_change_state):
22221           Set state to NULL before removing from bin. Fix refcounting.
22222
22223 2005-10-04  Michael Smith <msmith@fluendo.com>
22224
22225         * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
22226           Correct refcounting in send_event() function. Previously was wrong
22227           if the first sink was unable to handle the event.
22228
22229 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
22230
22231         * configure.ac:
22232           back to development
22233
22234 === release 0.9.3 ===
22235
22236 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
22237
22238         * configure.ac:
22239           Releasing 0.9.3, "De Facto"
22240
22241 2005-10-03  Andy Wingo  <wingo@pobox.com>
22242
22243         * gst/playback/gstdecodebin.c (try_to_link_1)
22244         (remove_element_chain): set element to NULL before removing it.
22245
22246 2005-10-02  Johan Dahlin  <johan@gnome.org>
22247
22248         * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_uri_get_protocols): 
22249         protect gst_gnomevfs_get_supported_uris by a mutex, to make it
22250         MT safe.
22251
22252 2005-10-02  Andy Wingo  <wingo@pobox.com>
22253
22254         * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_clear) 
22255         (gst_ring_buffer_prepare_read): 
22256         * gst-libs/gst/audio/gstaudiosink.c (audioringbuffer_thread_func):
22257         Demote to LOG.
22258
22259 2005-09-29  Wim Taymans  <wim@fluendo.com>
22260
22261         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
22262         * ext/theora/theoradec.c: (theora_handle_data_packet):
22263         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
22264         Propagate error codes from alloc_buffer too.
22265
22266 2005-09-29  Wim Taymans  <wim@fluendo.com>
22267
22268         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
22269         We use fixed caps.
22270
22271         * gst/playback/Makefile.am:
22272         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
22273         (dump_element_stats), (main):
22274         Added example stream introspection code.
22275
22276 2005-09-28  Stefan Kost  <ensonic@users.sf.net>
22277
22278         * gst/adder/gstadder.c: (gst_adder_collected):
22279           fix adder for float elements
22280
22281 2005-09-28  Wim Taymans  <wim@fluendo.com>
22282
22283         * gst-libs/gst/audio/gstbaseaudiosink.c:
22284         (gst_base_audio_sink_class_init),
22285         (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
22286         * gst-libs/gst/audio/gstbaseaudiosrc.c:
22287         (gst_base_audio_src_class_init),
22288         (gst_base_audio_src_provide_clock):
22289         get_clock -> provide_clock
22290
22291 2005-09-28  Andy Wingo  <wingo@pobox.com>
22292
22293         * gst/videotestsrc/gstvideotestsrc.c: Implement live source mode
22294         and unlocking.
22295
22296         * gst/sine/gstsinesrc.c (gst_sinesrc_unlock): Actually implement
22297         unlocking.
22298
22299         * gst/tcp/gsttcpclientsink.c (gst_tcpclientsink_base_init):
22300         Actually add the pad template.
22301         (gst_tcpclientsink_get_type): We're a base sink. Woot, works.
22302
22303         * gst/tcp/gsttcpserversrc.c: Go ahead and fix up serversrc while
22304         I'm at it...
22305
22306         * gst/tcp/gsttcpclientsrc.c: Make interruptable -- code stolen
22307         from fdsrc. Get caps in create() instead of start() so it can be
22308         interrupted. Interruption somewhat untested.
22309
22310         * gst/tcp/gsttcp.c (gst_tcp_read_buffer, gst_tcp_socket_read):
22311         Proper EOS handling.
22312
22313 2005-09-27  Andy Wingo  <wingo@pobox.com>
22314
22315         * gst/tcp/gsttcpclientsrc.c: Cleaned up.
22316
22317         * gst/tcp/gsttcpserversrc.c: Cleaned up.
22318
22319         * gst/tcp/gsttcpclientsrc.c: Updated for new gsttcp API.
22320
22321         * gst/tcp/gsttcp.h: 
22322         * gst/tcp/gsttcp.c (gst_tcp_read_buffer): New function, factored
22323         out of tcpclientsrc.c. Cancellable.
22324         (gst_tcp_socket_read): Made private, cancellable, with better
22325         diagnostics. Also the FIONREAD ioctl takes a int*, not a size_t*.
22326         (gst_tcp_gdp_read_buffer): Made cancellable, actually returns the
22327         whole buffer, and better diagnostics.
22328         (gst_tcp_gdp_read_caps): Same.
22329
22330         * gst/sine/gstsinesrc.c (gst_sinesrc_wait): Add the base time.
22331
22332 2005-09-26  Andy Wingo  <wingo@pobox.com>
22333
22334         * gst/sine/gstsinesrc.h:
22335         * gst/sine/gstsinesrc.c: Refactor, remove the table lookup code,
22336         change the 'sync' property to 'is-live' and implement it halfway,
22337         update for controller api change.
22338
22339         * gst/volume/gstvolume.c (volume_transform_ip): Update for
22340         controller api change.
22341
22342 2005-09-24  Wim Taymans  <wim@fluendo.com>
22343
22344         * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
22345         * gst-libs/gst/audio/gstaudiosink.c:
22346         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
22347         (gst_audioringbuffer_stop):
22348         * gst-libs/gst/audio/gstbaseaudiosink.c:
22349         (gst_base_audio_sink_event), (gst_base_audio_sink_render),
22350         (gst_base_audio_sink_change_state):
22351         * gst-libs/gst/audio/gstbaseaudiosink.h:
22352         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop),
22353         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
22354         (gst_ring_buffer_commit), (gst_ring_buffer_read):
22355         * gst-libs/gst/audio/gstringbuffer.h:
22356         Fix sync again. Moved sample alignment to basesink.
22357
22358 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
22359
22360         * docs/plugins/Makefile.am:
22361         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
22362         * docs/plugins/gst-plugins-base-plugins-sections.txt:
22363         * gst/volume/gstvolume.c:
22364           add/fix docs
22365         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size):
22366         * gst-libs/gst/audio/audio.h:
22367           add conversion macros for frames <-> clocktime
22368
22369 2005-09-23  David Schleef  <ds@schleef.org>
22370
22371         * gst/audioresample/Makefile.am:
22372         * gst/audioresample/debug.h:
22373         * gst/audioresample/gstaudioresample.c:
22374         * gst/audioresample/resample.c: Convert to using gst debugging
22375
22376 2005-09-22  Wim Taymans  <wim@fluendo.com>
22377
22378         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
22379         (gst_play_bin_send_event):
22380         Only seek on one sink, the first one that succeeds.
22381
22382 2005-09-22  Michael Smith <msmith@fluendo.com>
22383
22384         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
22385         (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
22386         Don't flush encoder state unless we have an initialised encoder.
22387         Clear out encoder state on PAUSED_TO_READY.
22388
22389 2005-09-22  Wim Taymans  <wim@fluendo.com>
22390
22391         * gst-libs/gst/rtp/gstbasertppayload.c:
22392         (gst_basertppayload_class_init), (gst_basertppayload_init),
22393         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
22394         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
22395         (gst_basertppayload_is_filled), (gst_basertppayload_push),
22396         (gst_basertppayload_set_property),
22397         (gst_basertppayload_get_property),
22398         (gst_basertppayload_change_state):
22399         * gst-libs/gst/rtp/gstbasertppayload.h:
22400         Added max-ptime to control amount of data in the rtp packets.
22401
22402 2005-09-21  Andy Wingo  <wingo@pobox.com>
22403
22404         * gst/playback/gstplaybasebin.c: Attempt to fix up buffer probe
22405         thingies.
22406
22407         * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Dispose
22408         can be called multiple times, dogs.
22409
22410 2005-09-21  Wim Taymans  <wim@fluendo.com>
22411
22412         * gst-libs/gst/rtp/gstbasertppayload.c:
22413         (gst_basertppayload_class_init), (gst_basertppayload_init),
22414         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
22415         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
22416         (gst_basertppayload_push), (gst_basertppayload_get_property),
22417         (gst_basertppayload_change_state):
22418         Allow 0 ssrc too.
22419
22420 2005-09-21  Stefan Kost  <ensonic@users.sf.net>
22421
22422         * docs/libs/compiling.sgml:
22423           fixing typos
22424
22425 2005-09-20  Wim Taymans  <wim@fluendo.com>
22426
22427         * gst-libs/gst/rtp/gstbasertppayload.c:
22428         (gst_basertppayload_class_init), (gst_basertppayload_init),
22429         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
22430         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
22431         (gst_basertppayload_push), (gst_basertppayload_set_property),
22432         (gst_basertppayload_get_property),
22433         (gst_basertppayload_change_state):
22434         * gst-libs/gst/rtp/gstbasertppayload.h:
22435         Added property to configure sequence number offsets.
22436
22437 2005-09-20  Wim Taymans  <wim@fluendo.com>
22438
22439         * gst-libs/gst/rtp/gstbasertppayload.c:
22440         (gst_basertppayload_class_init), (gst_basertppayload_init),
22441         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
22442         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
22443         (gst_basertppayload_push), (gst_basertppayload_set_property),
22444         (gst_basertppayload_get_property),
22445         (gst_basertppayload_change_state):
22446         * gst-libs/gst/rtp/gstbasertppayload.h:
22447         Make timestamp offset configurable.
22448
22449 2005-09-20  Thomas Vander Stichele  <thomas at apestaart dot org>
22450
22451         * check/pipelines/simple_launch_lines.c: (run_pipeline):
22452           fix wrong pop/unref
22453
22454 2005-09-19  Torsten Schoenfeld  <kaffeetisch at gmx dot net>
22455
22456         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
22457
22458         * gst-libs/gst/interfaces/propertyprobe.c:
22459         (gst_property_probe_probe_property_name),
22460         (gst_property_probe_needs_probe_name),
22461         (gst_property_probe_get_values_name),
22462         (gst_property_probe_probe_and_get_values_name):
22463           Fix wrong macro usage; it's G_OBJECT_GET_CLASS(obj) or
22464           G_OBJECT_CLASS(klass), not G_OBJECT_CLASS(obj). (#316571)
22465
22466 2005-09-19  Thomas Vander Stichele  <thomas at apestaart dot org>
22467
22468         * check/Makefile.am:
22469           have some tests be disabled for valgrinding
22470         * check/elements/vorbisdec.c: (cleanup_vorbisdec),
22471         (GST_START_TEST):
22472         * ext/vorbis/vorbisdec.c: (vorbisdec_finalize):
22473           Fix A Leak.  Chain To Parent Finalize.
22474
22475 2005-09-19  Wim Taymans  <wim@fluendo.com>
22476
22477         * examples/seeking/seek.c: (make_wav_pipeline), (main):
22478         Fixed wav pipeline.
22479
22480 2005-09-19  Wim Taymans  <wim@fluendo.com>
22481
22482         * gst-libs/gst/rtp/gstbasertppayload.c:
22483         (gst_basertppayload_class_init), (gst_basertppayload_init),
22484         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
22485         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
22486         (gst_basertppayload_push), (gst_basertppayload_get_property),
22487         (gst_basertppayload_change_state):
22488         Posting ERROR and WARNING messages is good.
22489
22490 2005-09-19  Wim Taymans  <wim@fluendo.com>
22491
22492         * gst-libs/gst/rtp/gstbasertpdepayload.c:
22493         (gst_base_rtp_depayload_add_to_queue),
22494         (gst_base_rtp_depayload_push),
22495         (gst_base_rtp_depayload_set_gst_timestamp),
22496         (gst_base_rtp_depayload_queue_release):
22497         This one was not supposed to go in.
22498
22499 2005-09-19  Wim Taymans  <wim@fluendo.com>
22500
22501         * check/pipelines/simple_launch_lines.c: (run_pipeline):
22502         Fix for bus API.
22503
22504         * gst-libs/gst/rtp/gstbasertpdepayload.c:
22505         (gst_base_rtp_depayload_chain),
22506         (gst_base_rtp_depayload_add_to_queue),
22507         (gst_base_rtp_depayload_push),
22508         (gst_base_rtp_depayload_set_gst_timestamp),
22509         (gst_base_rtp_depayload_queue_release):
22510         Some cleanups.
22511
22512         * gst-libs/gst/rtp/gstbasertppayload.c:
22513         (gst_basertppayload_class_init), (gst_basertppayload_init),
22514         (gst_basertppayload_setcaps), (gst_basertppayload_set_options),
22515         (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
22516         (gst_basertppayload_get_property),
22517         (gst_basertppayload_change_state):
22518         Added debugging category.
22519
22520 2005-09-18  David Schleef  <ds@schleef.org>
22521
22522         * gst/playback/gstdecodebin.c: free plugin list correctly
22523         * gst/playback/gstplaybin.c: emit warning if autovideosink
22524           and autoaudiosink can't be found (instead of segfaulting)
22525
22526 2005-09-17  Thomas Vander Stichele  <thomas at apestaart dot org>
22527
22528         * check/elements/audioconvert.c: (GST_START_TEST):
22529           try out 24 bit conversion
22530
22531 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
22532
22533         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
22534         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
22535         (gst_vorbisenc_output_buffers), (gst_vorbisenc_change_state):
22536         * ext/vorbis/vorbisenc.h:
22537           Fix EOS handling.  Still needs a fix in the ogg muxer to
22538           mark the last page as eos.
22539
22540 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
22541
22542         * common/gtk-doc-plugins.mak:
22543         * docs/plugins/Makefile.am:
22544         * docs/plugins/gst-plugins-base-plugins-sections.txt:
22545         * gst/ffmpegcolorspace/Makefile.am:
22546         * gst/ffmpegcolorspace/avcodec.h:
22547         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22548         * gst/tcp/gstmultifdsink.c:
22549           fix up ffmpegcolorspace docs; extract header
22550
22551 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
22552
22553         * common/gtk-doc-plugins.mak:
22554         * docs/plugins/Makefile.am:
22555         * docs/plugins/gst-plugins-base-plugins-sections.txt:
22556         * ext/theora/Makefile.am:
22557         * ext/theora/gsttheoraenc.h:
22558         * ext/theora/theoraenc.c:
22559         * ext/vorbis/vorbisenc.c:
22560           pick up signals and args for vorbis; add some docs for vorbis
22561
22562 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
22563
22564         * common/gstdoc-scangobj:
22565         * common/gtk-doc-plugins.mak:
22566         * docs/libs/Makefile.am:
22567         * docs/plugins/gst-plugins-base-plugins.args:
22568         * docs/plugins/gst-plugins-base-plugins.hierarchy:
22569         * docs/plugins/gst-plugins-base-plugins.interfaces:
22570         * docs/plugins/gst-plugins-base-plugins.prerequisites:
22571         * docs/plugins/gst-plugins-base-plugins.signals:
22572           only scanobj stuff from our source module.  Not sure yet
22573           if that's correct, given the hierarchy stuff :)
22574
22575 2005-09-15  Wim Taymans  <wim@fluendo.com>
22576
22577         * gst/audioconvert/gstaudioconvert.c:
22578         And enable 24 bits mode as well..
22579
22580 2005-09-15  Wim Taymans  <wim@fluendo.com>
22581
22582         * gst-libs/gst/rtp/Makefile.am:
22583         * gst-libs/gst/rtp/gstbasertppayload.c:
22584         (gst_basertppayload_get_type), (gst_basertppayload_base_init),
22585         (gst_basertppayload_class_init), (gst_basertppayload_init),
22586         (gst_basertppayload_finalize), (gst_basertppayload_setcaps),
22587         (gst_basertppayload_chain), (gst_basertppayload_set_options),
22588         (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
22589         (gst_basertppayload_set_property),
22590         (gst_basertppayload_get_property),
22591         (gst_basertppayload_change_state):
22592         * gst-libs/gst/rtp/gstbasertppayload.h:
22593         Added rtp payloader base class.
22594
22595 2005-09-15  Andy Wingo  <wingo@pobox.com>
22596
22597         * configure.ac (plugindir): Remove the EOL matcher from the
22598         regexp, as it causes me problems. Libtool? Make? Who knows?
22599
22600 2005-09-14  David Schleef  <ds@schleef.org>
22601
22602         * check/generic/states.c: 
22603         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
22604         * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
22605           Fixes for changes in registry API.
22606
22607         * configure.ac: Only export gst_plugins_desc.  Add -no-undefined
22608           to GST_PLUGIN_LDFLAGS.
22609         * ext/libvisual/visual.c: Make the library shut up.
22610         * gst-libs/gst/audio/audio.c: Don't define a plugin in a library.
22611         * gst-libs/gst/audio/gstaudiofilter.c: same
22612
22613 2005-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
22614
22615         * docs/plugins/Makefile.am:
22616         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
22617         * docs/plugins/inspect/plugin-libvisual.xml:
22618         * docs/plugins/tmpl/element-tcpserversink.sgml:
22619         * ext/theora/theoraenc.c:
22620           add libvisual plugin and theoraenc element to docs
22621
22622 2005-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
22623
22624         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
22625         * docs/plugins/gst-plugins-base-plugins-sections.txt:
22626         * ext/theora/theoraenc.c:
22627           add theoraenc
22628
22629 2005-09-13  Tim-Philipp Müller  <tim at centricular dot net>
22630
22631         * gst/audioconvert/Makefile.am:
22632           Audioconvert derives from GstBaseTransform and should
22633           link to the library with our base elements to avoid
22634           unresolved symbols. Makes things work with MinGW (#316160)
22635
22636         * gst/playback/test4.c: (main):
22637           Fix MinGW build problem and use g_usleep() instead of 
22638           sleep() (#316162)
22639
22640 2005-09-12  Wim Taymans  <wim@fluendo.com>
22641
22642         * gst/audioconvert/audioconvert.c: (float),
22643         (audio_convert_prepare_context), (audio_convert_convert):
22644         * gst/audioconvert/audioconvert.h:
22645         Cleanups, speedups, simplifications, added back support
22646         for 24 bits.
22647
22648 2005-09-11  Thomas Vander Stichele  <thomas at apestaart dot org>
22649
22650         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
22651         * docs/plugins/gst-plugins-base-plugins-sections.txt:
22652         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
22653         * docs/plugins/tmpl/element-tcpserversink.sgml:
22654         * gst/ffmpegcolorspace/gstffmpeg.c:
22655         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22656         * gst/videotestsrc/gstvideotestsrc.c:
22657         * gst/volume/gstvolume.c:
22658           add more elements to the docs
22659
22660 2005-09-09  Jan Schmidt  <thaytan@mad.scientist.com>
22661
22662         * check/Makefile.am:
22663         * check/pipelines/simple_launch_lines.c: (setup_pipeline),
22664         (run_pipeline), (GST_START_TEST), (simple_launch_lines_suite):
22665           Add extra tests for basetransform based components. 
22666           Comment out the test_element_negotiation test until we decide
22667           if it's testing correct behaviour.
22668         * ext/libvisual/visual.c: (gst_visual_init), (get_buffer),
22669         (gst_visual_chain), (gst_visual_change_state):
22670           Slightly more correct but still bogus timestamping.
22671           Fix state change function.
22672         * gst/audioconvert/gstaudioconvert.c:
22673         (gst_audio_convert_class_init):
22674         * gst/audioresample/gstaudioresample.c:
22675         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22676         (gst_ffmpegcsp_class_init):
22677         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
22678         (gst_videoscale_prepare_size), (gst_videoscale_set_caps),
22679         (gst_videoscale_prepare_image):
22680         * gst/volume/gstvolume.c: (gst_volume_class_init),
22681         (volume_transform_ip):
22682           Basetransform updates. Enable passthrough modes.
22683         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
22684         (gst_ximagesink_renegotiate_size), (gst_ximagesink_xcontext_get),
22685         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
22686           Negotiation fix that allows the window to return to the original
22687           size and renegotiate passthrough upstream. Extra debug output.
22688
22689 2005-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
22690
22691         * gst/sine/gstsinesrc.c:
22692         * gst/volume/gstvolume.c:
22693           fix up header include
22694
22695 2005-09-09  Stefan Kost  <ensonic@users.sf.net>
22696
22697         * gst-libs/gst/audio/gstbaseaudiosink.c:
22698         (gst_base_audio_sink_render):
22699         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit):
22700         * gst/volume/gstvolume.c: (gst_volume_class_init),
22701         (volume_transform):
22702           fixing lost sync, some more debugging
22703
22704 2005-09-08  Jan Schmidt  <thaytan@mad.scientist.com>
22705
22706         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
22707         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_xcontext_get):
22708         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
22709         (gst_xvimagesink_check_xshm_calls):
22710           Fix compilation when XShm is not available.
22711
22712 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
22713
22714         * ext/libvisual/visual.c: (gst_visual_dispose),
22715         (gst_visual_getcaps), (gst_visual_src_setcaps),
22716         (gst_visual_sink_setcaps), (get_buffer), (gst_visual_chain),
22717         (gst_visual_change_state):
22718           Finish fixing up libvisual plugin so that it runs. 
22719
22720 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
22721
22722         * ext/vorbis/vorbisenc.c:
22723         * gst-libs/gst/tag/gstvorbistag.c:
22724           gsttaginterface.h -> gsttagsetter.h
22725
22726 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
22727
22728         * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
22729           added another test that failes for me (test is not active by default)
22730
22731 2005-09-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
22732
22733         * configure.ac:
22734           v4l2 is no longer in gst-plugins-base
22735
22736 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
22737
22738         * configure.ac:
22739           In the output at the end, don't show the first plugin on the same
22740           line as "Core plug-ins, always built:".
22741           Indent the output as for other plugin categories
22742         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
22743           #define that can be used to not use peer buffer_alloc functions for
22744           test purposes.
22745         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
22746         (gst_ximage_buffer_get_type), (gst_ximagesink_ximage_new),
22747         (gst_ximagesink_show_frame):
22748         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
22749         (gst_xvimage_buffer_get_type), (gst_xvimagesink_setcaps),
22750         (gst_xvimagesink_show_frame):
22751           Error case handling fixes. gst-launch fakesrc ! x[v]imagesink now
22752           fails gracefully instead of XError aborting or deadlocking.
22753
22754 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
22755
22756         * ext/libvisual/Makefile.am:
22757           link against gst-base-libs
22758
22759 2005-09-06  David Schleef  <ds@schleef.org>
22760
22761         * configure.ac: Enable libvisual plugin.
22762         * ext/libvisual/Makefile.am:
22763         * ext/libvisual/visual.c: Fixes to make it compile.
22764
22765 === release 0.9.2 ===
22766
22767 2005-09-06  Thomas Vander Stichele  <thomas at apestaart dot org>
22768
22769         * NEWS:
22770         * RELEASE:
22771         * configure.ac:
22772         * docs/random/ChangeLog-0.8:
22773           releasing 0.9.2, "Spoon"
22774
22775 2005-09-05  Michael Smith <msmith@fluendo.com>
22776
22777         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
22778           libvorbis accepts quality as low as -0.1, not just 0.0. So accept
22779           that in the vorbisenc element.
22780
22781 2005-09-04  Thomas Vander Stichele  <thomas at apestaart dot org>
22782
22783         * common/gtk-doc-plugins.mak:
22784         * docs/plugins/Makefile.am:
22785           fix distcheck
22786         * gst/audioresample/resample.c:
22787           fix wrong docstring
22788
22789 2005-09-04  Thomas Vander Stichele  <thomas at apestaart dot org>
22790
22791         * common/gst-xmlinspect.py:
22792         * common/gtk-doc-plugins.mak:
22793           only inspect plugins for this given package
22794           require gst-python 0.9
22795
22796 2005-09-03  Thomas Vander Stichele  <thomas at apestaart dot org>
22797
22798         * Makefile.am:
22799         * autogen.sh:
22800         * common/gst-xmlinspect.py:
22801         * configure.ac:
22802         * docs/Makefile.am:
22803         * docs/plugins/inspect/plugin-alsa.xml:
22804         * docs/plugins/inspect/plugin-audioresample.xml:
22805         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
22806         * docs/plugins/inspect/plugin-ogg.xml:
22807         * docs/plugins/tmpl/element-gnomevfssink.sgml:
22808         * docs/plugins/tmpl/element-multifdsink.sgml:
22809         * docs/plugins/tmpl/element-tcpserversink.sgml:
22810         * docs/plugins/tmpl/element-vorbisenc.sgml:
22811         * gst-plugins-base.spec.in:
22812           various doc-related updates
22813
22814 2005-08-31  Wim Taymans  <wim@fluendo.com>
22815
22816         * gst-libs/gst/audio/gstbaseaudiosink.c:
22817         (gst_base_audio_sink_render):
22818         Resync if the buffer timestamps drift more than a 10th 
22819         of a second.
22820
22821 2005-08-31  Tim-Philipp Müller  <tim at centricular dot net>
22822
22823         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_property),
22824         (gst_v4lsrc_get_property):
22825           The 'timestamp-offset' property is registered as an int64, so
22826           let's use g_value_{set|get}_int64() in our setter and getter
22827           functions (makes it work and fixes warnings with gst-inspect).
22828
22829 2005-08-30  Wim Taymans  <wim@fluendo.com>
22830
22831         * check/elements/audioconvert.c: (setup_audioconvert):
22832         * check/elements/audioresample.c: (setup_audioresample):
22833         * check/elements/volume.c: (setup_volume):
22834         Fix checks.
22835
22836 2005-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
22837
22838         * common/gtk-doc-plugins.mak:
22839         * common/plugins.xsl:
22840         * docs/plugins/Makefile.am:
22841           make module a param
22842
22843 2005-08-30  Stefan Kost  <ensonic@users.sf.net>
22844
22845         * examples/seeking/seek.c: (make_mp3_pipeline),
22846         (make_mpeg_pipeline), (seek_cb), (start_seek), (stop_seek),
22847         (play_cb), (pause_cb), (stop_cb):
22848           update the example
22849
22850 2005-08-30  Stefan Kost  <ensonic@users.sf.net>
22851
22852         * gst/volume/gstvolume.c: (gst_volume_class_init),
22853         (volume_transform):
22854           do not update controlled params, if buffer has no timestamp
22855
22856 2005-08-29  Stefan Kost  <ensonic@users.sf.net>
22857
22858         * configure.ac:
22859         * gst/sine/Makefile.am:
22860         * gst/volume/Makefile.am:
22861           controllerized elements also need to link against controller-libs ;)
22862
22863 2005-08-29  Stefan Kost  <ensonic@users.sf.net>
22864
22865         * docs/libs/tmpl/gstcolorbalance.sgml:
22866         * docs/libs/tmpl/gstgconf.sgml:
22867         * docs/libs/tmpl/gstmixer.sgml:
22868         * docs/libs/tmpl/gstringbuffer.sgml:
22869         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
22870         (gst_sinesrc_create):
22871         * gst/volume/gstvolume.c: (gst_volume_class_init),
22872         (volume_transform):
22873           controllerized two audio plugins
22874
22875 2005-08-29  Andy Wingo  <wingo@pobox.com>
22876
22877         * ext/vorbis/vorbisdec.c (vorbis_dec_convert, vorbis_dec_push) 
22878         (vorbis_handle_data_packet): Fix some int overflow errors.
22879
22880         * ext/ogg/gstoggdemux.c (gst_ogg_demux_init): Init total_time to
22881         -1.
22882         (gst_ogg_demux_perform_seek): Clamp segment_stop only if it's
22883         valid.
22884         (gst_ogg_pad_submit_packet): Subtract the chain's begin_time only
22885         if it's valid. Fixed streaming-mode playback.
22886
22887         * check/elements/volume.c (cleanup_volume): Fix for running
22888         CK_FORK=no.
22889
22890         * check/elements/audioconvert.c: Convert from native endian, not
22891         little endian.
22892
22893 2005-08-29  Michael Smith <msmith@fluendo.com>
22894
22895         * ext/ogg/Makefile.am:
22896         * ext/ogg/gstogg.c: (plugin_init):
22897         * ext/ogg/gstoggparse.c: (gst_ogg_parse_get_type), (free_stream),
22898         (gst_ogg_parse_delete_all_streams), (gst_ogg_parse_new_stream),
22899         (gst_ogg_parse_find_stream), (gst_ogg_parse_base_init),
22900         (gst_ogg_parse_class_init), (gst_ogg_parse_init),
22901         (gst_ogg_parse_dispose), (gst_ogg_parse_submit_buffer),
22902         (gst_ogg_parse_append_header), (gst_ogg_parse_is_header),
22903         (gst_ogg_parse_buffer_from_page), (gst_ogg_parse_chain),
22904         (gst_ogg_parse_change_state), (gst_ogg_parse_plugin_init):
22905         Add an ogg parser element.
22906
22907 2005-08-28  Andy Wingo  <wingo@pobox.com>
22908
22909         * Updates for two-arg init from GST_BOILERPLATE_FULL.
22910
22911 2005-08-26  Wim Taymans  <wim@fluendo.com>
22912
22913         * gst/audioconvert/audioconvert.c: (if), (float),
22914         (audio_convert_get_func_index), (check_default),
22915         (audio_convert_clean_fmt), (audio_convert_prepare_context),
22916         (audio_convert_clean_context), (audio_convert_get_sizes),
22917         (audio_convert_convert):
22918         Cleanups.
22919
22920 2005-08-26  Wim Taymans  <wim@fluendo.com>
22921
22922         * gst/audioconvert/audioconvert.c: (if), (float),
22923         (audio_convert_get_func_index), (check_default),
22924         (audio_convert_clean_fmt), (audio_convert_prepare_context),
22925         (audio_convert_clean_context), (audio_convert_get_sizes),
22926         (audio_convert_convert):
22927         More elegant and working temp buffer selection algo.
22928
22929 2005-08-26  Wim Taymans  <wim@fluendo.com>
22930
22931         * gst/audioconvert/audioconvert.c: (if), (float),
22932         (audio_convert_get_func_index), (check_default),
22933         (audio_convert_clean_fmt), (audio_convert_prepare_context),
22934         (audio_convert_clean_context), (audio_convert_get_sizes),
22935         (get_temp_buffer), (audio_convert_convert):
22936         Use realloc else we lose our original data.
22937
22938 2005-08-26  Thomas Vander Stichele  <thomas at apestaart dot org>
22939
22940         * gst/audioresample/gstaudioresample.c:
22941           use base class' newsegment to properly timestamp
22942
22943 2005-08-26  Wim Taymans  <wim@fluendo.com>
22944
22945         * gst/audioconvert/audioconvert.c: (if), (float),
22946         (audio_convert_get_func_index), (check_default),
22947         (audio_convert_clean_fmt), (audio_convert_prepare_context),
22948         (audio_convert_clean_context), (audio_convert_get_sizes),
22949         (get_temp_buffer), (audio_convert_convert):
22950         * gst/audioconvert/gstaudioconvert.c:
22951         (gst_audio_convert_parse_caps), (gst_audio_convert_get_unit_size),
22952         (gst_audio_convert_transform_caps),
22953         (gst_audio_convert_fixate_caps), (gst_audio_convert_transform):
22954         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_mix):
22955         Oops, allocate enough space to perform the channel mix.
22956
22957 2005-08-26  Wim Taymans  <wim@fluendo.com>
22958
22959         * gst/audioconvert/Makefile.am:
22960         * gst/audioconvert/audioconvert.c: (if), (float),
22961         (audio_convert_get_func_index), (check_default),
22962         (audio_convert_clean_fmt), (audio_convert_prepare_context),
22963         (audio_convert_clean_context), (audio_convert_get_sizes),
22964         (get_temp_buffer), (audio_convert_convert):
22965         * gst/audioconvert/audioconvert.h:
22966         * gst/audioconvert/gstaudioconvert.c:
22967         (gst_audio_convert_class_init), (gst_audio_convert_init),
22968         (gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
22969         (gst_audio_convert_get_unit_size),
22970         (gst_audio_convert_transform_caps),
22971         (gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
22972         (gst_audio_convert_transform_ip), (gst_audio_convert_transform):
22973         * gst/audioconvert/gstaudioconvert.h:
22974         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
22975         (gst_channel_mix_fill_identical),
22976         (gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
22977         (gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
22978         (gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
22979         (gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
22980         (gst_channel_mix_mix):
22981         * gst/audioconvert/gstchannelmix.h:
22982         Cleanups, librarify a bit, optimize, better negotiation and more.
22983
22984 2005-08-26  Jan Schmidt  <thaytan@mad.scientist.com>
22985
22986         * ext/ogg/gstoggdemux.c: (ogg_find_peek):
22987         Another from MikeS:
22988         During typefinding, don't support negative offsets
22989         (offsets from the end of the stream) in our typefind->peek() function
22990         - nothing embedded in ogg ever needs them. However, we need to recognise
22991         those requests and reject them, otherwise we return invalid pointers.
22992
22993 2005-08-26  Jan Schmidt  <thaytan@mad.scientist.com>
22994
22995         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
22996         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
22997         (vorbisdec_finalize), (vorbis_handle_type_packet):
22998           Big shout-out to MikeS for fixing this giant memory leak.
22999           Huzzah!
23000
23001 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
23002
23003         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose),
23004         (audio_convert_get_unit_size):
23005           plug some leaks
23006
23007 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
23008
23009         * check/Makefile.am:
23010         * check/elements/audioconvert.c: (setup_audioconvert),
23011         (cleanup_audioconvert), (get_int_caps), (verify_convert),
23012         (GST_START_TEST), (audioconvert_suite), (main):
23013           add a test for audioconvert
23014         * gst/audioresample/gstaudioresample.c:
23015         * gst/audioresample/gstaudioresample.h:
23016           set DURATION so that TIMESTAMP(a) + DURATION(a) == TIMESTAMP(b);
23017           note that for buffers of 1/3 sec this means DURATION(c) is 
23018           one nanosecond more than for a and b
23019
23020 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
23021
23022         * check/Makefile.am:
23023         * check/elements/audioresample.c: (setup_audioresample),
23024         (cleanup_audioresample), (fail_unless_perfect_stream),
23025         (test_perfect_stream_instance), (GST_START_TEST),
23026           add a check for audioresample
23027         (audioresample_suite), (main):
23028         * check/elements/volume.c: (GST_START_TEST):
23029           remove unused method
23030         * gst/audioresample/gstaudioresample.c:
23031           set correct buffer parameters since we're changing them
23032         * gst/audioresample/resample_ref.c: (resample_scale_ref):
23033           add some debug
23034
23035 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
23036
23037         * gst/audioresample/debug.c:
23038         * gst/audioresample/gstaudioresample.c:
23039           add room for extra overlap samples when asked to transform size
23040           protect against possible mem corruption and check for discrepancies
23041           between written size and outbuffer's size so we can warn for
23042           potential problems
23043         * gst/audioresample/resample.c: (resample_init),
23044         (resample_get_output_size_for_input), (resample_get_output_size),
23045         (resample_set_n_channels), (resample_set_format):
23046           set debug level based on RESAMPLE_DEBUG env var
23047           make sure that get_output_size* returns a whole number of
23048           sample_size
23049           set sample_size each time either channel or format is set
23050         * gst/audioresample/resample_chunk.c: (resample_scale_chunk):
23051         * gst/audioresample/resample_functable.c:
23052         (resample_scale_functable):
23053         * gst/audioresample/resample_ref.c: (resample_scale_ref):
23054           remove r->sample_size, it's done in resample.c now
23055           add some debugging to the ref implementation
23056           make sure we only give back bytes that are wholes of the sample
23057           size
23058
23059 2005-08-25  Jan Schmidt  <thaytan@mad.scientist.com>
23060         * gst/playback/gstplaybasebin.c: (fill_buffer):
23061         Revert unpopular change for GST_MESSAGE_SRC to GObject.
23062
23063 2005-08-25  Stefan Kost  <ensonic@users.sf.net>
23064
23065         * gst/volume/gstvolume.c:
23066           made set_caps function static
23067
23068 2005-08-24  Wim Taymans  <wim@fluendo.com>
23069
23070         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
23071         (gst_vorbisenc_change_state):
23072         Stop leaking taglists.
23073
23074 2005-08-24  Wim Taymans  <wim@fluendo.com>
23075
23076         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
23077         (gst_ogg_pad_event), (gst_ogg_demux_factory_filter),
23078         (gst_ogg_pad_submit_packet), (gst_ogg_chain_new),
23079         (gst_ogg_demux_init), (gst_ogg_demux_perform_seek),
23080         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
23081         (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
23082         Parse seeking events better.
23083         Unref static caps.
23084         Generate correct newsegment events, fixes seeking in live oggs.
23085
23086         * ext/theora/theoradec.c: (theora_dec_src_query),
23087         (theora_dec_src_event), (theora_dec_src_getcaps),
23088         (theora_dec_sink_event), (theora_dec_push), (theora_dec_chain):
23089         Use newsegment values to report correct play time.
23090
23091         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
23092         (vorbis_dec_src_event), (vorbis_dec_sink_event):
23093         * ext/vorbis/vorbisdec.h:
23094         Parse and use newsegment values to report correct play time.
23095
23096         * gst-libs/gst/audio/gstbaseaudiosink.c:
23097         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
23098         Clear ringbuffer on flush.
23099         Use newsegment values to calculate playback time.
23100
23101         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
23102         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
23103         Basesink does newsegment calculations for us now.
23104
23105 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
23106
23107         * check/Makefile.am:
23108         * configure.ac:
23109           add core's plugins to the mix so that playbin works
23110         * check/generic/states.c: (GST_START_TEST):
23111           set a 0 timeout on pipelines, so they don't force the next
23112           state change
23113         * gst/playback/gstplaybasebin.c: (setup_source), (prepare_output),
23114         (gst_play_base_bin_change_state):
23115           remove the crappy error handling and do GST error handling
23116
23117 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
23118
23119         * check/Makefile.am:
23120         * check/generic/states.c: (GST_START_TEST), (states_suite), (main):
23121           add same test as to core, it bitches out on playbin atm.
23122
23123 2005-08-24  Wim Taymans  <wim@fluendo.com>
23124
23125         * configure.ac:
23126         Remove audioscale.
23127
23128 2005-08-24  Wim Taymans  <wim@fluendo.com>
23129
23130         * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
23131         (gst_videoscale_prepare_size), (parse_caps),
23132         (gst_videoscale_set_caps), (gst_videoscale_get_size),
23133         (gst_videoscale_prepare_image), (gst_videoscale_transform_ip),
23134         (gst_videoscale_transform):
23135         * gst/videoscale/gstvideoscale.h:
23136         Refactor, make use of BaseTranform really well.
23137
23138 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
23139
23140         * configure.ac:
23141           compile audioresample
23142         * gst/audioresample/Makefile.am:
23143         * gst/audioresample/buffer.c:
23144         * gst/audioresample/functable.c:
23145         * gst/audioresample/gstaudioresample.c:
23146         * gst/audioresample/gstaudioresample.h:
23147         * gst/audioresample/resample.c:
23148         (resample_get_output_size_for_input):
23149         * gst/audioresample/resample.h:
23150         * gst/audioresample/resample_chunk.c:
23151         * gst/audioresample/resample_functable.c:
23152         * gst/audioresample/resample_ref.c:
23153           port to use basetransform; doesn't work in all cases yet
23154
23155 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
23156
23157         * gst/audioconvert/gstaudioconvert.c:
23158         (gst_audio_convert_class_init), (gst_audio_convert_init),
23159         (audio_convert_get_unit_size), (audio_convert_transform_caps),
23160         (audio_convert_fixate_caps), (audio_convert_set_caps),
23161         (audio_convert_transform),
23162         (gst_audio_convert_buffer_to_default_format),
23163         (gst_audio_convert_buffer_from_default_format),
23164         (gst_audio_convert_channels):
23165         * gst/audioconvert/gstchannelmix.c:
23166         * gst/audioconvert/gstchannelmix.h:
23167           port to basetransform
23168         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
23169         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_class_init),
23170         (gst_ffmpegcsp_get_unit_size):
23171         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
23172         (gst_videoscale_transform_caps), (gst_videoscale_get_unit_size):
23173           fix for basetransform changes
23174
23175 2005-08-24  Jan Schmidt  <thaytan@mad.scientist.com>
23176
23177         * check/Makefile.am:
23178           Add CHECK_CFLAGS and LDFLAGS
23179
23180         * gst/playback/gstplaybasebin.c: (fill_buffer):
23181           GST_MESSAGE_SRC became a GObject
23182
23183 2005-08-24  Wim Taymans  <wim@fluendo.com>
23184
23185         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_set_sample),
23186         (gst_ring_buffer_clear_all):
23187         * gst-libs/gst/audio/gstringbuffer.h:
23188         Added function to clear the ringbuffer.
23189
23190 2005-08-24  Andy Wingo  <wingo@pobox.com>
23191
23192         * sys/v4l/gstv4lelement.c (gst_v4lelement_start) 
23193         (gst_v4lelement_stop): Call _start and _stop for xoverlay instead
23194         of _open and _close.
23195
23196         * sys/v4l/gstv4lxoverlay.h:
23197         * sys/v4l/gstv4lxoverlay.c (gst_v4l_xoverlay_set_xwindow_id): Open
23198         an Xv connection here, instead of all the time. Make Xv only be
23199         loaded if you axe for it. Kindof a workaround for buggy behaviour
23200         of Xv when using remote xservers (XvQueryExtension would block).
23201         (gst_v4l_xoverlay_stop, gst_v4l_xoverlay_start): New functions,
23202         replace the _open and _close public API. Only start the xv
23203         connection if necessary.
23204         (gst_v4l_xoverlay_open, gst_v4l_xoverlay_close): Made static.
23205
23206 2005-08-23  David Schleef  <ds@schleef.org>
23207
23208         * gst/audioresample/Makefile.am: Leet audioresampling code
23209         * gst/audioresample/buffer.c:
23210         * gst/audioresample/buffer.h:
23211         * gst/audioresample/debug.c:
23212         * gst/audioresample/debug.h:
23213         * gst/audioresample/functable.c:
23214         * gst/audioresample/functable.h:
23215         * gst/audioresample/gstaudioresample.c:
23216         * gst/audioresample/gstaudioresample.h:
23217         * gst/audioresample/resample.c:
23218         * gst/audioresample/resample.h:
23219         * gst/audioresample/resample_chunk.c:
23220         * gst/audioresample/resample_functable.c:
23221         * gst/audioresample/resample_ref.c:
23222
23223 2005-08-23  Wim Taymans  <wim@fluendo.com>
23224
23225         * examples/seeking/seek.c: (make_vorbis_pipeline),
23226         (make_theora_pipeline), (make_vorbis_theora_pipeline), (do_seek):
23227         Small seek updates.
23228
23229 2005-08-23  Andy Wingo  <wingo@pobox.com>
23230
23231         * gst-libs/gst/audio/gstbaseaudiosrc.c
23232         (gst_base_audio_src_fixate): Only fixate endianness if it is
23233         present in the caps.
23234
23235 2005-08-22  Andy Wingo  <wingo@pobox.com>
23236
23237         * ext/alsa/gstalsasink.c (gst_alsasink_get_property): 
23238         * ext/alsa/gstalsasrc.c (gst_alsasrc_get_property): Add a
23239         device-name property.
23240
23241         * gst-libs/gst/audio/gstaudiosrc.h:
23242         * gst-libs/gst/audio/gstaudiosrc.c: Implement open_device and
23243         close_device in the ring buffer, like gstaudiosink.
23244
23245         * ext/alsa/gstalsamixer.h:
23246         * ext/alsa/gstalsamixer.c: Not a GObject any more. Include a nifty
23247         macro to implement the interface without much code. Cleanups. 
23248
23249         * ext/alsa/gstalsasrc.h:
23250         * ext/alsa/gstalsasrc.c: Be a mixer. Open device and mixer in
23251         READY.
23252
23253         * ext/alsa/Makefile.am: Add new files.
23254         * ext/alsa/gstalsamixerelement.c: 
23255         * ext/alsa/gstalsamixerelement.c: Split element code out from
23256         mixer code so that alsasrc can be a mixer too.
23257
23258 2005-08-21  Thomas Vander Stichele  <thomas at apestaart dot org>
23259
23260         * check/elements/volume.c: (setup_volume), (cleanup_volume),
23261         (GST_START_TEST):
23262         * check/elements/vorbisdec.c: (setup_vorbisdec),
23263         (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite):
23264         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
23265         (vorbis_handle_identification_packet),
23266         (vorbis_handle_comment_packet), (vorbis_handle_type_packet),
23267         (vorbis_handle_header_packet), (vorbis_dec_push),
23268         (vorbis_dec_chain):
23269           use the setup/teardown methods to save code.  save code is good.
23270
23271 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
23272
23273         * check/Makefile.am:
23274           add ext dir for plugins
23275           add vorbisdec test conditionally
23276         * check/elements/volume.c: (setup_volume), (cleanup_volume),
23277         (GST_START_TEST), (volume_suite):
23278           add a test with wrong caps
23279         * check/elements/vorbisdec.c: (chain_func), (setup_vorbisdec),
23280         (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite), (main):
23281           add a vorbisdec test
23282         * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream),
23283         (gst_ogg_demux_chain), (gst_ogg_demux_loop):
23284           clean up debug output
23285         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
23286           yay, fix a segfault/security issue in vorbisdec
23287           gst-launch fakesrc ! vorbisdec wasn't happy
23288         * ext/vorbis/vorbisenc.c: (vorbisenc_get_type),
23289         (gst_vorbisenc_class_init), (gst_vorbisenc_sink_setcaps),
23290         (gst_vorbisenc_convert_src), (gst_vorbisenc_convert_sink),
23291         (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
23292         (gst_vorbisenc_init), (gst_vorbisenc_metadata_set1),
23293         (gst_vorbisenc_set_metadata), (get_constraints_string),
23294         (update_start_message), (gst_vorbisenc_setup),
23295         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
23296         (gst_vorbisenc_push_packet), (gst_vorbisenc_sink_event),
23297         (gst_vorbisenc_chain), (gst_vorbisenc_get_property),
23298         (gst_vorbisenc_set_property), (gst_vorbisenc_change_state):
23299         * ext/vorbis/vorbisenc.h:
23300           march in line
23301         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
23302         (gst_ffmpegcsp_transform):
23303           have the kow come home
23304         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
23305           debug my func ptr
23306         * gst/volume/gstvolume.c: (volume_set_caps):
23307           add a debug
23308
23309 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
23310
23311         * Makefile.am:
23312         * check/.cvsignore:
23313         * check/Makefile.am:
23314         * check/elements/.cvsignore:
23315         * check/elements/volume.c: (chain_func), (event_func),
23316         (setup_volume), (cleanup_volume), (GST_START_TEST), (volume_suite),
23317         (main):
23318         * configure.ac:
23319           add unit test structure for gst-plugins-base
23320           add a test for volume
23321         * gst/volume/gstvolume.c: (gst_volume_list_tracks),
23322         (gst_volume_set_volume), (gst_volume_get_volume),
23323         (gst_volume_set_mute), (gst_volume_class_init), (gst_volume_init),
23324         (volume_funcfind), (volume_process_float), (volume_process_int16),
23325         (volume_set_caps), (volume_transform), (volume_update_mute),
23326         (volume_update_volume), (volume_set_property),
23327         (volume_get_property):
23328           document a little; use basetransform vmethod _set_caps
23329
23330 2005-08-19  Andy Wingo  <wingo@pobox.com>
23331
23332         * ext/alsa/gstalsamixertrack.h:
23333         * ext/alsa/gstalsamixertrack.c:
23334         * ext/alsa/gstalsamixeroptions.h:
23335         * ext/alsa/gstalsamixeroptions.c:
23336         * ext/alsa/gstalsamixer.h:
23337         * ext/alsa/gstalsamixer.c: Port to 0.9.
23338
23339         * ext/alsa/Makefile.am: Build mixer, mixeroptions, mixertracks.
23340         Remove gstalsa.c and alsaclock. No more cruft here.
23341         
23342 2005-08-18  Wim Taymans  <wim@fluendo.com>
23343
23344         * gst-libs/gst/rtp/gstbasertpdepayload.c:
23345         (gst_base_rtp_depayload_chain),
23346         (gst_base_rtp_depayload_add_to_queue),
23347         (gst_base_rtp_depayload_push),
23348         (gst_base_rtp_depayload_queue_release):
23349         * gst-libs/gst/rtp/gstbasertpdepayload.h:
23350         Fix for RTPBuffer changes.
23351
23352         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtpbuffer_allocate_data),
23353         (gst_rtpbuffer_new_take_data), (gst_rtpbuffer_new_copy_data),
23354         (gst_rtpbuffer_new_allocate), (gst_rtpbuffer_new_allocate_len),
23355         (gst_rtpbuffer_calc_header_len), (gst_rtpbuffer_calc_packet_len),
23356         (gst_rtpbuffer_calc_payload_len), (gst_rtpbuffer_validate_data),
23357         (gst_rtpbuffer_validate), (gst_rtpbuffer_set_packet_len),
23358         (gst_rtpbuffer_get_packet_len), (gst_rtpbuffer_get_version),
23359         (gst_rtpbuffer_set_version), (gst_rtpbuffer_get_padding),
23360         (gst_rtpbuffer_set_padding), (gst_rtpbuffer_pad_to),
23361         (gst_rtpbuffer_get_extension), (gst_rtpbuffer_set_extension),
23362         (gst_rtpbuffer_get_ssrc), (gst_rtpbuffer_set_ssrc),
23363         (gst_rtpbuffer_get_csrc_count), (gst_rtpbuffer_get_csrc),
23364         (gst_rtpbuffer_set_csrc), (gst_rtpbuffer_get_marker),
23365         (gst_rtpbuffer_set_marker), (gst_rtpbuffer_get_payload_type),
23366         (gst_rtpbuffer_set_payload_type), (gst_rtpbuffer_get_seq),
23367         (gst_rtpbuffer_set_seq), (gst_rtpbuffer_get_timestamp),
23368         (gst_rtpbuffer_set_timestamp), (gst_rtpbuffer_get_payload_len),
23369         (gst_rtpbuffer_get_payload):
23370         * gst-libs/gst/rtp/gstrtpbuffer.h:
23371         Don't subclass GstBuffer but add methods and helper functions
23372         to construct and manipulate RTP packets in regular GstBuffers.
23373
23374 2005-08-18  Stefan Kost  <ensonic@users.sf.net>
23375
23376         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
23377           moved statement below switch
23378         * gst/volume/gstvolume.c: (gst_volume_class_init):
23379           added debug ptr
23380
23381 2005-08-16  Wim Taymans  <wim@fluendo.com>
23382
23383         * gst-libs/gst/audio/gstbaseaudiosrc.c:
23384         (gst_base_audio_src_change_state):
23385         Open and close device in READY<->NULL state change.
23386
23387 2005-08-16  Andy Wingo  <wingo@pobox.com>
23388
23389         * examples/seeking/Makefile.am: Don't compile non-compiling
23390         compiled objects with the compiler.
23391
23392         * examples/seeking/seek.c (make_dv_pipeline): Update for new DV
23393         elements.
23394
23395 2005-08-12  Philippe Khalaf <burger@speedy.org>
23396         * gst-libs/gst/rtp/gstbasertpdepayload.c:
23397         * gst-libs/gst/rtp/gstbasertpdepayload.h:
23398           Made a thread to release the queue.
23399           Removed timestamp conversion for now.
23400
23401 2005-08-10  Philippe Khalaf <burger@speedy.org>
23402         * gst-libs/gst/rtp/gstbasertpdepayload.c:
23403         * gst-libs/gst/rtp/gstbasertpdepayload.h:
23404           Added rtp timestamp -> gst timestamp conversion.
23405           Fixed several problems with queue.
23406
23407 2005-08-09  Tim-Philipp Müller  <tim at centricular dot net>
23408
23409         * gst-libs/gst/audio/gstaudioclock.h:
23410         * gst-libs/gst/audio/gstaudiofilter.h:
23411         * gst-libs/gst/audio/gstaudiosink.h:
23412         * gst-libs/gst/audio/gstaudiosrc.h:
23413         * gst-libs/gst/audio/gstbaseaudiosink.h:
23414         * gst-libs/gst/audio/gstbaseaudiosrc.h:
23415         * gst-libs/gst/audio/gstringbuffer.h:
23416         * gst-libs/gst/net/gstnetbuffer.h:
23417         * gst-libs/gst/rtp/gstbasertpdepayload.h:
23418         * gst-libs/gst/rtp/gstrtpbuffer.h:
23419           Add padding (you will need to rebuild gst-plugins-base,
23420           gst-plugins and all applications afterwards!)
23421
23422 2005-08-09  Tim-Philipp Müller  <tim at centricular dot net>
23423
23424         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
23425         (gst_riff_parse_chunk):
23426           Fix bug in debug message and add some more debug messages.
23427
23428 2005-08-08  Edward Hervey  <edward@fluendo.com>
23429
23430         * gst-libs/gst/riff/riff-media.c:
23431         backported updates since branch
23432
23433 2005-08-08  Andy Wingo  <wingo@pobox.com>
23434
23435         * gst-libs/gst/audio/gstbaseaudiosink.c
23436         (gst_base_audio_sink_change_state): Open the device in NULL->READY
23437         like good elements should. Close on READY->NULL too.
23438
23439         * gst-libs/gst/audio/gstaudiosink.c
23440         (gst_audioringbuffer_open_device,
23441         (gst_audioringbuffer_close_device, gst_audioringbuffer_acquire)
23442         (gst_audioringbuffer_release): Updates for new ring buffer API,
23443         hook into the new audio sink api.
23444
23445         * gst-libs/gst/audio/gstaudiosink.h (GstAudioSinkClass.open)
23446         (GstAudioSinkClass.close): Just open and close the device -- no
23447         resource allocation or configuration.
23448         (GstAudioSinkClass.prepare, GstAudioSinkClass.unprepare): New
23449         vmethods, handle device setup and resource allocation.
23450
23451         * ext/alsa/gstalsasink.c (gst_alsasink_open, gst_alsasink_close)
23452         (gst_alsasink_prepare, gst_alsasink_unprepare): Update for new
23453         base class API.
23454
23455         * gst-libs/gst/audio/gstringbuffer.h
23456         (GstRingBufferClass.open_device, GstRingBufferClass.close_device):
23457         New vmethods.
23458
23459         * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_open_device)
23460         (gst_ring_buffer_close_device, gst_ring_buffer_device_is_open):
23461         New API functions. The device should be opened before acquiring
23462         and closed after releasing.
23463
23464 2005-08-08  Tim-Philipp Müller  <tim at centricular dot net>
23465
23466         * gst-libs/gst/interfaces/mixer.h:
23467           Reset padding to GST_PADDING.
23468
23469 2005-08-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23470
23471         * gst/playback/gstplaybin.c: (remove_sinks):
23472           Remove visualization from parent explicitely; works around some
23473           apparent refcount issue that I haven't tracked down yet.
23474
23475 2005-08-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23476
23477         * ext/alsa/gstalsasink.c: (set_hwparams):
23478           Assign debug category, add negotiation debug msgs.
23479
23480 2005-08-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23481
23482         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_start):
23483           Fix error code for file-not-found to NOT_FOUND.
23484
23485 2005-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
23486
23487         * common/gtk-doc-plugins.mak:
23488         * docs/plugins/Makefile.am:
23489         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
23490         * docs/plugins/gst-plugins-base-plugins-sections.txt:
23491           renamed to actual element names, so much nicer to look at
23492         * docs/plugins/tmpl/gstmultifdsink.sgml:
23493           remove
23494         * docs/plugins/tmpl/multifdsink.sgml:
23495         * docs/plugins/tmpl/tcpserversink.sgml:
23496           add
23497         * ext/alsa/gstalsa.c:
23498         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get_property):
23499         * ext/ogg/gstoggmux.c:
23500         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
23501         * gst/playback/gstdecodebin.c:
23502         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
23503         * gst/tcp/gsttcpserversink.c:
23504           various fixes and documentation additions
23505
23506 2005-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
23507
23508         * common/Makefile.am:
23509         * common/gstdoc-scangobj:
23510         * common/gtk-doc-plugins.mak:
23511         * common/gtk-doc.mak:
23512           add a custom scangobj that uses the registry
23513           add a custom gtk-doc-plugins.mak that uses it
23514           some doc build fixes
23515         * configure.ac:
23516         * docs/Makefile.am:
23517         * docs/plugins/Makefile.am:
23518         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
23519         * docs/plugins/gst-plugins-base-plugins-sections.txt:
23520         * docs/plugins/gst-plugins-base-plugins.types:
23521         * docs/plugins/tmpl/gstmultifdsink.sgml:
23522           add docs for one element, multifdsink
23523         * gst/adder/gstadder.h:
23524         * gst/volume/gstvolume.h:
23525           don't privatize enum
23526         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
23527         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
23528         (gst_sync_method_get_type), (gst_client_status_get_type),
23529         (gst_multifdsink_class_init),
23530         (gst_multifdsink_client_queue_buffer),
23531         (gst_multifdsink_handle_client_write):
23532         * gst/tcp/gstmultifdsink.h:
23533         * gst/tcp/gsttcp.h:
23534         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
23535         (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
23536         (gst_tcpclientsink_render):
23537         * gst/tcp/gsttcpclientsink.h:
23538         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
23539         (gst_tcpclientsrc_init), (gst_tcpclientsrc_create),
23540         (gst_tcpclientsrc_start):
23541         * gst/tcp/gsttcpclientsrc.h:
23542         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
23543         (gst_tcpserversrc_init), (gst_tcpserversrc_create):
23544         * gst/tcp/gsttcpserversrc.h:
23545         * gst/typefind/gsttypefindfunctions.c:
23546           remove superfluous Type stuff
23547
23548 2005-08-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23549
23550         * gst/playback/gstplaybin.c: (gen_video_element):
23551           Enable videoscale.
23552
23553 2005-08-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23554
23555         * gst-libs/gst/gconf/gconf.c:
23556         * gst-libs/gst/gconf/gconf.h:
23557           Fix some Andy Problem [tm].
23558
23559 2005-08-04  Andy Wingo  <wingo@pobox.com>
23560
23561         * gst/videoscale/gstvideoscale.c (gst_videoscale_get_size):
23562         * gst/ffmpegcolorspace/gstffmpegcolorspace.c
23563         (gst_ffmpegcsp_get_size): Adapt to API changes.
23564
23565         * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_ip):
23566         Implement an in-place do-nothing transform.
23567
23568 2005-08-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23569
23570         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
23571         (gst_ximagesink_renegotiate_size):
23572           Do not set new window sizes yet if we prepare a new buffer size
23573           for upstream renegotiation (software scaling) at some point in the
23574           future, because this new size waqs not actually accepted yet. Once
23575           accepted, renegotiation later on will set the new sizes just fine.
23576           Fixes a videotestsrc ! queue ! videoscale ! ximagesink xoverlay
23577           embedding testcase.
23578
23579 2005-08-03  Andy Wingo  <wingo@pobox.com>
23580
23581         * sys/ximage/ximagesink.c (gst_ximagesink_renegotiate_size):
23582         (gst_ximagesink_buffer_alloc): 
23583         Protect the height, width, and desired_caps with the pool_lock.
23584         Fixes videotestsrc ! queue ! ximagesink.
23585
23586 2005-08-02  Edward Hervey  <edward@fluendo.com>
23587
23588         * gst/volume/gstvolume.c:
23589         include left from controller cleanup
23590
23591 2005-08-02  Jan Schmidt  <thaytan@mad.scientist.com>
23592         * ext/ogg/gstoggmux.c: (gst_ogg_mux_change_state):
23593           Stop collectpads before calling the parent state
23594           change function on PAUSED->READY.
23595
23596 2005-08-01  Jan Schmidt  <thaytan@mad.scientist.com>
23597         * configure.ac:
23598           When testing for X libs, use the X CFlags 
23599         * gst/adder/gstadder.c: (gst_adder_change_state):
23600           Stop the collectpads before calling parent state change function
23601           on PAUSED->READY, otherwise we deadlock deactivating pads.
23602
23603 2005-08-01  Stefan Kost  <ensonic@users.sf.net>
23604
23605         * configure.ac:
23606         * docs/libs/tmpl/gstcolorbalance.sgml:
23607         * docs/libs/tmpl/gstmixer.sgml:
23608         * examples/Makefile.am:
23609         * gst/sine/Makefile.am:
23610         * gst/sine/gstsinesrc.c: (gst_sinesrc_init), (gst_sinesrc_create),
23611         (gst_sinesrc_set_property), (plugin_init):
23612         * gst/sine/gstsinesrc.h:
23613         * gst/volume/Makefile.am:
23614         * gst/volume/gstvolume.c: (gst_volume_set_volume),
23615         (gst_volume_set_mute), (gst_volume_dispose), (gst_volume_init),
23616         (volume_process_float), (volume_process_int16),
23617         (volume_set_property), (plugin_init):
23618         * gst/volume/gstvolume.h:
23619           deactivate and remove dparams (libgstcontrol)
23620
23621 2005-07-29  Wim Taymans  <wim@fluendo.com>
23622
23623         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link_src):
23624         Convert me to BaseTransform!! help..
23625
23626 2005-07-29  Andy Wingo  <wingo@pobox.com>
23627
23628         * ext/alsa/gstalsaplugin.c (plugin_init): We are primary audio
23629         sinks.
23630
23631         * ext/alsa/gstalsasink.c (alsasink_sink_factory): Advertise our
23632         support of both endiannesses.
23633
23634 2005-07-28  Tim-Philipp Müller  <tim at centricular dot net>
23635
23636         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
23637           Fix confusing debug message (s/event/query/)
23638
23639 2005-07-28  Tim-Philipp Müller  <tim at centricular dot net>
23640
23641         * gst/videotestsrc/videotestsrc.h:
23642           Use "_stdint.h" instead of <stdint.h>
23643
23644 2005-07-27  Wim Taymans  <wim@fluendo.com>
23645
23646         * ext/vorbis/Makefile.am:
23647         Revert wrong commit.
23648
23649 2005-07-27  Wim Taymans  <wim@fluendo.com>
23650
23651         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event):
23652         More compilation fixen.
23653
23654 2005-07-27  Wim Taymans  <wim@fluendo.com>
23655
23656         * gst-libs/gst/audio/gstbaseaudiosink.c:
23657         (gst_base_audio_sink_event), (gst_base_audio_sink_render),
23658         (gst_base_audio_sink_create_ringbuffer),
23659         (gst_base_audio_sink_change_state):
23660         Fix compilation.
23661
23662 2005-07-27  Wim Taymans  <wim@fluendo.com>
23663
23664         * examples/seeking/seek.c: (setup_dynamic_link),
23665         (make_dv_pipeline), (make_vorbis_theora_pipeline), (query_rates),
23666         (query_positions_elems), (query_positions_pads), (do_seek):
23667         Update seek example.
23668
23669         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
23670         (gst_ogg_pad_typefind), (gst_ogg_demux_chain_elem_pad),
23671         (gst_ogg_demux_queue_data), (gst_ogg_demux_chain_peer),
23672         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
23673         (gst_ogg_demux_handle_event),
23674         (gst_ogg_demux_deactivate_current_chain),
23675         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
23676         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
23677         (gst_ogg_demux_chain), (gst_ogg_demux_send_event),
23678         (gst_ogg_demux_loop):
23679         * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
23680         * ext/theora/theoradec.c: (theora_dec_src_event),
23681         (theora_dec_src_getcaps), (theora_dec_sink_event),
23682         (theora_dec_push), (theora_dec_chain):
23683         * ext/vorbis/Makefile.am:
23684         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_event),
23685         (vorbis_dec_sink_event), (vorbis_dec_push),
23686         (vorbis_handle_data_packet):
23687         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_event),
23688         (gst_vorbisenc_chain):
23689         * gst/playback/gststreaminfo.c: (cb_probe):
23690         * gst/subparse/gstsubparse.c: (gst_subparse_src_event):
23691         * gst/videorate/gstvideorate.c: (gst_videorate_event):
23692         * gst/videoscale/gstvideoscale.c:
23693         (gst_videoscale_handle_src_event):
23694         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_event):
23695         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame),
23696         (gst_ximagesink_navigation_send_event):
23697         * sys/xvimage/xvimagesink.c:
23698         (gst_xvimagesink_navigation_send_event):
23699         Various event updates and cleanups
23700
23701 2005-07-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23702
23703         * gst/videoscale/gstvideoscale.c: (gst_videoscale_prepare_images):
23704           Fix segfault for I420/YV12.
23705
23706 2005-07-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23707
23708         * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
23709           Report bitrate.
23710
23711 2005-07-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23712
23713         * gst/playback/gstplaybin.c: (gen_video_element),
23714         (gen_audio_element):
23715           Switch to auto*sink elements as default sinks; add volume element
23716           so that volume control in totem works.
23717
23718 2005-07-21  Wim Taymans  <wim@fluendo.com>
23719
23720         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
23721         * gst/playback/gstplaybin.c: (setup_sinks),
23722         (gst_play_bin_change_state):
23723         Refcount fix and more comments.
23724
23725 2005-07-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
23726
23727         * sys/ximage/Makefile.am:
23728         * sys/ximage/ximage.c: (plugin_init):
23729         * sys/ximage/ximagesink.c:
23730         Prepare for adding ximagesrc, rename of plugin to ximage etc.
23731         
23732
23733 2005-07-21  Wim Taymans  <wim@fluendo.com>
23734
23735         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
23736         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
23737         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
23738         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
23739         (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
23740         (gst_ogg_demux_init), (gst_ogg_demux_activate_chain),
23741         (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_chain_info),
23742         (gst_ogg_demux_collect_info), (gst_ogg_demux_chain),
23743         (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
23744         Generate correct disconts for live chained oggs.
23745
23746         * gst-libs/gst/audio/gstbaseaudiosink.c:
23747         (gst_base_audio_sink_render),
23748         (gst_base_audio_sink_create_ringbuffer),
23749         (gst_base_audio_sink_change_state):
23750         Handle discont math correctly.
23751
23752         * gst/playback/gstplaybin.c: (add_sink):
23753         Some small debug cleanup.
23754
23755 2005-07-21  Wim Taymans  <wim@fluendo.com>
23756
23757         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init), (gst_ogg_pad_event),
23758         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
23759         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
23760         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
23761         (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
23762         (gst_ogg_demux_init), (gst_ogg_demux_deactivate_current_chain),
23763         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
23764         (gst_ogg_demux_read_chain), (gst_ogg_demux_find_pad),
23765         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
23766         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
23767         (gst_ogg_demux_send_event), (gst_ogg_demux_loop),
23768         (gst_ogg_demux_change_state), (gst_ogg_print):
23769         Reorganize code to send the right disconts when in streaming
23770         mode.
23771
23772 2005-07-20  Andy Wingo  <wingo@pobox.com>
23773
23774         * gst/videoscale/vs_image.c (vs_image_scale_nearest_YUYV): Typo
23775         fix (?), fixes a seggie mcfalterson (#310894).
23776
23777 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23778
23779         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_headers),
23780         (gst_ogg_mux_set_header_on_caps):
23781         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
23782         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
23783         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
23784         * gst-libs/gst/audio/multichannel.c:
23785         (gst_audio_set_channel_positions),
23786         (gst_audio_set_structure_channel_positions_list):
23787         * gst/playback/gstdecodebin.c: (dynamic_create):
23788         * gst/playback/gstplaybasebin.c: (setup_source), (mute_group_type):
23789         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
23790           Fixes for API changes in core.
23791
23792 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23793
23794         * gst/playback/gstplaybasebin.c: (fill_buffer):
23795           Use _new_custom() so we can set custom message types for buffering
23796           messages.
23797
23798 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23799
23800         * configure.ac:
23801         * gst-libs/gst/Makefile.am:
23802         * gst-libs/gst/gconf/.cvsignore:
23803         * gst-libs/gst/gconf/Makefile.am:
23804         * gst-libs/gst/gconf/test-gconf.c:
23805         * pkgconfig/Makefile.am:
23806         * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
23807         * pkgconfig/gstreamer-gconf.pc.in:
23808           Remove gconf stuff, use gconf elements instead from now on.
23809
23810 2005-07-20  Wim Taymans  <wim@fluendo.com>
23811
23812         * gst-libs/gst/audio/TODO:
23813         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
23814         (gst_audio_clock_get_internal_time):
23815         * gst-libs/gst/audio/gstaudioclock.h:
23816         * gst-libs/gst/audio/gstbaseaudiosink.c:
23817         (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
23818         (gst_base_audio_sink_get_time), (gst_base_audio_sink_event),
23819         (gst_base_audio_sink_render),
23820         (gst_base_audio_sink_create_ringbuffer),
23821         (gst_base_audio_sink_change_state):
23822         Make sure the audio clock always returns an increasing value.
23823
23824 2005-07-19  Andy Wingo  <wingo@pobox.com>
23825
23826         * gst/videotestsrc/: Cleanups.
23827
23828 2005-07-19  Wim Taymans  <wim@fluendo.com>
23829
23830         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
23831         Better debugging.
23832
23833 2005-07-19  Wim Taymans  <wim@fluendo.com>
23834
23835         * examples/seeking/seek.c: (make_dv_pipeline),
23836         (make_vorbis_theora_pipeline), (query_rates),
23837         (query_positions_elems), (query_positions_pads), (do_seek):
23838         Make correct DV pipeline.
23839
23840 2005-07-18  Andy Wingo  <wingo@pobox.com>
23841
23842         * configure.ac (DEFAULT_AUDIOSINK, DEFAULT_AUDIOSRC): Use alsa by
23843         default. Also because it's the only thing that really works. (This
23844         is used in the GConf elements).
23845         Use AS_LIBTOOL_TAGS.
23846
23847 2005-07-18  Wim Taymans  <wim@fluendo.com>
23848
23849         * gst/playback/gstdecodebin.c: (remove_element_chain):
23850         * gst/playback/gstplaybin.c: (add_sink):
23851         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
23852         (gst_stream_info_set_mute):
23853         * gst/playback/gststreamselector.c:
23854         (gst_stream_selector_get_linked_pad),
23855         (gst_stream_selector_getcaps), (gst_stream_selector_chain):
23856         More leak and compile fixes.
23857
23858 2005-07-18  Wim Taymans  <wim@fluendo.com>
23859
23860         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
23861         (query_rates), (query_positions_elems), (query_positions_pads),
23862         (do_seek), (seek_cb), (stop_seek):
23863         Updated seek example. 
23864
23865         * gst/playback/gstdecodebin.c: (remove_element_chain), (unlinked):
23866         * gst/playback/gstplaybasebin.c: (queue_threshold_reached),
23867         (queue_out_of_data), (gen_preroll_element), (new_decoded_pad):
23868         * gst/playback/gstplaybin.c: (add_sink):
23869         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
23870         (gst_stream_info_set_mute):
23871         Some refcount leak fixes.
23872
23873 2005-07-16  Wim Taymans  <wim@fluendo.com>
23874
23875         * gst-libs/gst/audio/gstbaseaudiosink.c:
23876         (gst_base_audio_sink_render):
23877         Align samples even if we have roundoff errors in the 
23878         timestamp conversion.
23879
23880 2005-07-16  Wim Taymans  <wim@fluendo.com>
23881
23882         * docs/libs/tmpl/gstringbuffer.sgml:
23883         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
23884         (query_rates), (query_positions_elems), (query_positions_pads),
23885         (update_scale), (do_seek):
23886         Updated seek example.
23887
23888         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
23889         (gst_ogg_pad_submit_page), (gst_ogg_demux_activate_chain),
23890         (gst_ogg_demux_find_chains), (gst_ogg_demux_send_event),
23891         (gst_ogg_demux_loop):
23892         Push out correct discont values.
23893
23894         * ext/theora/theoradec.c: (theora_dec_src_convert),
23895         (theora_dec_sink_convert), (theora_dec_src_getcaps),
23896         (theora_dec_sink_event), (theora_handle_type_packet),
23897         (theora_handle_header_packet), (theora_dec_push),
23898         (theora_handle_data_packet), (theora_dec_chain),
23899         (theora_dec_change_state):
23900         Better timestamping.
23901
23902         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
23903         (vorbis_dec_sink_event), (vorbis_dec_push),
23904         (vorbis_handle_data_packet), (vorbis_dec_chain):
23905         * ext/vorbis/vorbisdec.h:
23906         Better timestamping.
23907
23908         * gst-libs/gst/audio/gstbaseaudiosink.c:
23909         (gst_base_audio_sink_get_time), (gst_base_audio_sink_get_times),
23910         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
23911         Handle syncing on timestamps instead of sample offsets. Make
23912         use of DISCONT values as described in design docs.
23913
23914         * gst-libs/gst/audio/gstbaseaudiosrc.c:
23915         (gst_base_audio_src_get_time):
23916         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_acquire),
23917         (gst_ring_buffer_set_sample), (gst_ring_buffer_commit),
23918         (gst_ring_buffer_read):
23919         * gst-libs/gst/audio/gstringbuffer.h:
23920         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times),
23921         (gst_ximagesink_show_frame):
23922         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
23923         Correcly convert buffer timestamp to stream time.
23924
23925 2005-07-16  Wim Taymans  <wim@fluendo.com>
23926
23927         * gst/audioconvert/gstaudioconvert.c:
23928         (gst_audio_convert_get_buffer):
23929         Timestamp buffers correctly.
23930
23931         * gst/playback/gstplaybin.c: (gen_video_element):
23932         Make internal fakesink silent.
23933
23934 2005-07-15  Wim Taymans  <wim@fluendo.com>
23935
23936         * gst/ffmpegcolorspace/Makefile.am:
23937         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
23938         (gst_ffmpegcsp_caps_remove_format_info),
23939         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
23940         (gst_ffmpegcsp_get_type), (gst_ffmpegcsp_class_init),
23941         (gst_ffmpegcsp_init), (gst_ffmpegcsp_get_size),
23942         (gst_ffmpegcsp_transform_ip), (gst_ffmpegcsp_transform):
23943         Ported ffmpegcolorspace to basetransform.
23944
23945         * gst/videoscale/gstvideoscale.c: (gst_videoscale_transform):
23946         * gst/volume/gstvolume.c: (volume_transform):
23947         Ported to new API.
23948
23949 2005-07-14  Wim Taymans  <wim@fluendo.com>
23950
23951         * gst/videotestsrc/Makefile.am:
23952         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get_type),
23953         (gst_videotestsrc_class_init), (gst_videotestsrc_negotiate),
23954         (gst_videotestsrc_setcaps), (gst_videotestsrc_getcaps),
23955         (gst_videotestsrc_init), (gst_videotestsrc_event),
23956         (gst_videotestsrc_create), (gst_videotestsrc_start),
23957         (gst_videotestsrc_stop), (gst_videotestsrc_get_times),
23958         (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
23959         (gst_videotestsrc_get_property):
23960         * gst/videotestsrc/gstvideotestsrc.h:
23961         Make videotestsrc a pushsrc.
23962
23963 2005-07-14  Wim Taymans  <wim@fluendo.com>
23964
23965         * gst/tcp/gstfdset.c: (gst_fdset_free):
23966         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
23967         (gst_multifdsink_add), (gst_multifdsink_remove),
23968         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
23969         (gst_multifdsink_remove_client_link),
23970         (gst_multifdsink_client_queue_data),
23971         (gst_multifdsink_client_queue_caps),
23972         (gst_multifdsink_client_queue_buffer),
23973         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
23974         (gst_multifdsink_stop):
23975         * gst/tcp/gstmultifdsink.h:
23976         0.8 backporting.
23977
23978         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
23979         Also draw image when not from a pool.
23980
23981 2005-07-14  Wim Taymans  <wim@fluendo.com>
23982
23983         * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
23984         (mute_stream), (silence_stream):
23985         Small debug additions.
23986
23987 2005-07-14  Wim Taymans  <wim@fluendo.com>
23988
23989         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
23990         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
23991         (gst_ogg_demux_activate_chain), (gst_ogg_demux_loop):
23992         Better error recovery, ignore unconnected pads and
23993         non-fatal errors.
23994
23995 2005-07-14  Thomas Vander Stichele  <thomas at apestaart dot org>
23996
23997         * docs/libs/tmpl/gstaudio.sgml:
23998         * docs/libs/tmpl/gstcolorbalance.sgml:
23999         * docs/libs/tmpl/gstgconf.sgml:
24000         * docs/libs/tmpl/gstmixer.sgml:
24001         * docs/libs/tmpl/gstringbuffer.sgml:
24002         * docs/libs/tmpl/gsttuner.sgml:
24003         * gst-libs/gst/audio/gstbaseaudiosrc.c:
24004         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
24005         (gst_tcpclientsrc_class_init):
24006         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
24007         (gst_tcpserversrc_class_init):
24008         * sys/v4l/gstv4lelement.c:
24009           more autistic cleanliness in functions/names/defines
24010
24011 2005-07-13  Thomas Vander Stichele  <thomas at apestaart dot org>
24012
24013         * configure.ac:
24014           make GST_PLUGIN_LDFLAGS only be flags; GST_LIBS should be
24015           added manually to each Makefile.am so we are sure it goes
24016           *last* and doesn't add -L flags before linking in libs of our
24017           own, like, say, internal .la libs, that then accidentally pick
24018           up the installed copy.
24019         * docs/libs/Makefile.am:
24020         * ext/alsa/Makefile.am:
24021         * ext/cdparanoia/Makefile.am:
24022         * ext/gnomevfs/Makefile.am:
24023         * ext/libvisual/Makefile.am:
24024         * ext/ogg/Makefile.am:
24025         * ext/theora/Makefile.am:
24026         * ext/vorbis/Makefile.am:
24027         * gst-libs/gst/video/Makefile.am:
24028         * gst/adder/Makefile.am:
24029         * gst/audioconvert/Makefile.am:
24030         * gst/audiorate/Makefile.am:
24031         * gst/audioscale/Makefile.am:
24032         * gst/ffmpegcolorspace/Makefile.am:
24033         * gst/playback/Makefile.am:
24034         * gst/sine/Makefile.am:
24035         * gst/subparse/Makefile.am:
24036         * gst/tags/Makefile.am:
24037         * gst/tcp/Makefile.am:
24038         * gst/typefind/Makefile.am:
24039         * gst/videorate/Makefile.am:
24040         * gst/videoscale/Makefile.am:
24041         * gst/videotestsrc/Makefile.am:
24042         * gst/volume/Makefile.am:
24043         * sys/v4l/Makefile.am:
24044         * sys/ximage/Makefile.am:
24045         * sys/xvimage/Makefile.am:
24046           adapt properly to this change. This should make sure that
24047           plugins and libs properly link to the as-yet-uninstalled
24048           copies of stuff like libgstinterfaces and libgstvideo
24049
24050 2005-07-13  Andy Wingo  <wingo@pobox.com>
24051
24052         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_stop): Fix a spurious warning.
24053         (gst_v4lsrc_fixate): Fixate on format as well.
24054
24055         * sys/xvimage/xvimagesink.c (gst_xvimage_buffer_destroy) 
24056         (gst_xvimagesink_xvimage_new): Ref the xvimagesink while the
24057         buffer points to it.
24058         (gst_xvimagesink_check_xshm_calls): Don't use our xvimage buffer,
24059         rather just doing X calls ourselves. Also fixes a memleak.
24060
24061 2005-07-12  Andy Wingo  <wingo@pobox.com>
24062
24063         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_get_property) 
24064         (gst_v4lsrc_set_property, gst_v4lsrc_class_init, gst_v4lsrc_init) 
24065         (gst_v4lsrc_create): Re-add the copy-mode property, default to
24066         TRUE to avoid deadlocks if an element holds on to our buffers.
24067
24068 2005-07-11  Thomas Vander Stichele  <thomas at apestaart dot org>
24069
24070         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
24071         (gst_sinesrc_init), (gst_sinesrc_create),
24072         (gst_sinesrc_set_property), (gst_sinesrc_get_property),
24073         (gst_sinesrc_start):
24074         * gst/sine/gstsinesrc.h:
24075           removing num-buffers property before moving it
24076
24077 2005-07-10  Thomas Vander Stichele  <thomas at apestaart dot org>
24078
24079         * configure.ac:
24080           use overridable ERROR_CFLAGS
24081         * docs/libs/gst-plugins-base-libs.types:
24082         * docs/libs/tmpl/gstringbuffer.sgml:
24083         * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
24084         (gst_alsasink_class_init):
24085         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
24086         (gst_alsasrc_class_init):
24087         * gst-libs/gst/audio/audio.h:
24088         * gst-libs/gst/audio/gstaudioclock.h:
24089         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
24090         (gst_audio_filter_base_init), (gst_audio_filter_class_init),
24091         (gst_audio_filter_link), (gst_audio_filter_init),
24092         (gst_audio_filter_chain), (gst_audio_filter_set_property),
24093         (gst_audio_filter_get_property),
24094         (gst_audio_filter_class_add_pad_templates):
24095         * gst-libs/gst/audio/gstaudiofilter.h:
24096         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
24097         (gst_audio_filter_template_get_type),
24098         (gst_audio_filter_template_base_init),
24099         (gst_audio_filter_template_class_init),
24100         (gst_audio_filter_template_init),
24101         (gst_audio_filter_template_set_property),
24102         (gst_audio_filter_template_get_property), (plugin_init),
24103         (gst_audio_filter_template_setup),
24104         (gst_audio_filter_template_filter),
24105         (gst_audio_filter_template_filter_inplace):
24106         * gst-libs/gst/audio/gstaudiosink.c:
24107         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
24108         (audioringbuffer_thread_func), (gst_audioringbuffer_acquire),
24109         (gst_audioringbuffer_release), (gst_audioringbuffer_start),
24110         (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
24111         (gst_audio_sink_base_init), (gst_audio_sink_class_init),
24112         (gst_audio_sink_init), (gst_audio_sink_create_ringbuffer):
24113         * gst-libs/gst/audio/gstaudiosink.h:
24114         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
24115         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
24116         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
24117         (gst_audioringbuffer_start), (gst_audioringbuffer_stop),
24118         (gst_audioringbuffer_delay), (gst_audio_src_base_init),
24119         (gst_audio_src_class_init), (gst_audio_src_init),
24120         (gst_audio_src_create_ringbuffer):
24121         * gst-libs/gst/audio/gstaudiosrc.h:
24122         * gst-libs/gst/audio/gstbaseaudiosink.c:
24123         (gst_base_audio_sink_base_init), (gst_base_audio_sink_class_init),
24124         (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
24125         (gst_base_audio_sink_get_clock), (gst_base_audio_sink_get_time),
24126         (gst_base_audio_sink_set_property),
24127         (gst_base_audio_sink_get_property), (gst_base_audio_sink_setcaps),
24128         (gst_base_audio_sink_get_times), (gst_base_audio_sink_event),
24129         (gst_base_audio_sink_preroll), (gst_base_audio_sink_render),
24130         (gst_base_audio_sink_create_ringbuffer),
24131         (gst_base_audio_sink_callback), (gst_base_audio_sink_change_state):
24132         * gst-libs/gst/audio/gstbaseaudiosink.h:
24133         * gst-libs/gst/audio/gstbaseaudiosrc.c:
24134         (gst_base_audio_src_base_init), (gst_base_audio_src_class_init),
24135         (gst_base_audio_src_init), (gst_base_audio_src_get_clock),
24136         (gst_base_audio_src_get_time), (gst_base_audio_src_set_property),
24137         (gst_base_audio_src_get_property), (gst_base_audio_src_fixate),
24138         (gst_base_audio_src_setcaps), (gst_base_audio_src_get_times),
24139         (gst_base_audio_src_event), (gst_base_audio_src_create),
24140         (gst_base_audio_src_create_ringbuffer),
24141         (gst_base_audio_src_callback), (gst_base_audio_src_change_state):
24142         * gst-libs/gst/audio/gstbaseaudiosrc.h:
24143         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
24144         (gst_ring_buffer_class_init), (gst_ring_buffer_init),
24145         (gst_ring_buffer_dispose), (gst_ring_buffer_finalize),
24146         (gst_ring_buffer_debug_spec_caps),
24147         (gst_ring_buffer_debug_spec_buff), (gst_ring_buffer_parse_caps),
24148         (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
24149         (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
24150         (gst_ring_buffer_start), (gst_ring_buffer_pause),
24151         (gst_ring_buffer_stop), (gst_ring_buffer_delay),
24152         (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
24153         (wait_segment), (gst_ring_buffer_commit), (gst_ring_buffer_read),
24154         (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
24155         (gst_ring_buffer_clear):
24156         * gst-libs/gst/audio/gstringbuffer.h:
24157         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
24158         (gst_video_sink_class_init), (gst_video_sink_get_type):
24159         * gst-libs/gst/video/videosink.h:
24160         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
24161         (gst_multifdsink_class_init),
24162         (gst_multifdsink_handle_client_write),
24163         (gst_multifdsink_change_state):
24164         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
24165         (gst_tcpclientsink_setcaps):
24166         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
24167         (gst_ximagesink_getcaps), (gst_ximagesink_setcaps),
24168         (gst_ximagesink_change_state), (gst_ximagesink_show_frame),
24169         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
24170         (gst_ximagesink_send_pending_navigation),
24171         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size),
24172         (gst_ximagesink_class_init), (gst_ximagesink_get_type):
24173         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
24174         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
24175         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc),
24176         (gst_xvimagesink_send_pending_navigation),
24177         (gst_xvimagesink_navigation_send_event),
24178         (gst_xvimagesink_set_xwindow_id),
24179         (gst_xvimagesink_get_desired_size), (gst_xvimagesink_class_init),
24180         (gst_xvimagesink_get_type):
24181         more macro splitting
24182
24183 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
24184
24185         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
24186           plug a memleak, allows me to import 1479 albums in one go
24187           in jamboree
24188         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
24189         (vorbis_handle_type_packet), (vorbis_dec_chain),
24190         (vorbis_dec_change_state):
24191           fix some format strings
24192
24193 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
24194
24195         * docs/libs/tmpl/gstcolorbalance.sgml:
24196         * docs/libs/tmpl/gstmixer.sgml:
24197         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
24198         (gst_alsasink_set_property), (gst_alsasink_get_property):
24199         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
24200         (gst_alsasrc_set_property), (gst_alsasrc_get_property):
24201           add device property
24202
24203 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
24204
24205         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
24206         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
24207         (audiocast_register_listener), (audiocast_thread_run),
24208         (gst_gnomevfssrc_send_additional_headers_callback),
24209         (gst_gnomevfssrc_received_headers_callback),
24210         (gst_gnomevfssrc_push_callbacks), (gst_gnomevfssrc_pop_callbacks),
24211         (gst_gnomevfssrc_get_icy_metadata), (gst_gnomevfssrc_create),
24212         (gst_gnomevfssrc_get_size):
24213           add/clean up debugging
24214         * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
24215           cleanups
24216
24217 2005-07-07  Andy Wingo  <wingo@pobox.com>
24218
24219         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Also fixate the
24220         framerate. Need to get a handle on when exactly this function is
24221         called, tho.
24222
24223         * sys/v4l/v4lsrc_calls.h:
24224         * sys/v4l/v4lsrc_calls.c: Remove sync-related stuff.
24225         (gst_v4lsrc_get_fps_list): Moved here from gstv4lsrc.c.
24226         (gst_v4lsrc_buffer_new): Totally derive from GstBuffer.
24227
24228         * sys/v4l/v4l_calls.h: Cast to V4lElement.
24229         * sys/v4l/v4l_calls.c: Header loc fixen, don't load mjpeg, all
24230         v4lelements are sources.
24231
24232         * sys/v4l/gstv4lxoverlay.h:
24233         * sys/v4l/gstv4lxoverlay.c:
24234         * sys/v4l/gstv4ltuner.h:
24235         * sys/v4l/gstv4ltuner.c: Header loc fixen.
24236         
24237         * sys/v4l/gstv4lsrc.h:
24238         * sys/v4l/gstv4lsrc.c: Crucial GPL update. Clean up a bit, port to
24239         PushSrc/BaseSrc. Removed most sync-related properties, videorate
24240         or something should handle that. Made a live source.
24241
24242         * sys/v4l/gstv4lelement.h:
24243         * sys/v4l/gstv4lelement.c: Derive from GstPushSrc. No more
24244         signals. Some cleanups.
24245
24246         * sys/v4l/gstv4lcolorbalance.h: Interface header update.
24247
24248         * sys/v4l/gstv4l.c: Don't register v4lelement, or the jpeg/mjpeg
24249         stuff.
24250
24251         * sys/v4l/Makefile.am: Build everything except the jpeg/mjpeg
24252         stuff.
24253
24254         * sys/Makefile.am (SUBDIRS): Hit the V4L crack pipe.
24255
24256 2005-07-07  Wim Taymans  <wim@fluendo.com>
24257
24258         * ext/theora/theoradec.c: (theora_get_query_types),
24259         (theora_dec_src_getcaps), (theora_dec_push):
24260         * ext/vorbis/vorbisdec.c: (vorbis_get_query_types):
24261         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types):
24262         Remove deprecated/unused query types.
24263
24264 2005-07-06  Wim Taymans  <wim@fluendo.com>
24265
24266         * ext/alsa/Makefile.am:
24267         * ext/alsa/gstalsaplugin.c: (plugin_init):
24268         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
24269         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
24270         (gst_alsasrc_dispose), (gst_alsasrc_base_init),
24271         (gst_alsasrc_class_init), (gst_alsasrc_init),
24272         (gst_alsasrc_getcaps), (set_hwparams), (set_swparams),
24273         (alsasrc_parse_spec), (gst_alsasrc_open), (gst_alsasrc_close),
24274         (xrun_recovery), (gst_alsasrc_read), (gst_alsasrc_delay),
24275         (gst_alsasrc_reset):
24276         * ext/alsa/gstalsasrc.h:
24277         * gst-libs/gst/audio/Makefile.am:
24278         * gst-libs/gst/audio/gstaudiosink.c:
24279         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
24280         (gst_audioringbuffer_start):
24281         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
24282         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
24283         (gst_audioringbuffer_init), (gst_audioringbuffer_dispose),
24284         (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
24285         (gst_audioringbuffer_release), (gst_audioringbuffer_start),
24286         (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
24287         (gst_audiosrc_base_init), (gst_audiosrc_class_init),
24288         (gst_audiosrc_init), (gst_audiosrc_create_ringbuffer):
24289         * gst-libs/gst/audio/gstaudiosrc.h:
24290         * gst-libs/gst/audio/gstbaseaudiosink.c:
24291         (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
24292         (gst_baseaudiosink_get_time), (gst_baseaudiosink_setcaps),
24293         (gst_baseaudiosink_preroll), (gst_baseaudiosink_render):
24294         * gst-libs/gst/audio/gstbaseaudiosrc.c:
24295         (gst_baseaudiosrc_base_init), (gst_baseaudiosrc_class_init),
24296         (gst_baseaudiosrc_init), (gst_baseaudiosrc_get_clock),
24297         (gst_baseaudiosrc_get_time), (gst_baseaudiosrc_set_property),
24298         (gst_baseaudiosrc_get_property), (gst_baseaudiosrc_fixate),
24299         (gst_baseaudiosrc_setcaps), (gst_baseaudiosrc_get_times),
24300         (gst_baseaudiosrc_event), (gst_baseaudiosrc_create),
24301         (gst_baseaudiosrc_create_ringbuffer), (gst_baseaudiosrc_callback),
24302         (gst_baseaudiosrc_change_state):
24303         * gst-libs/gst/audio/gstbaseaudiosrc.h:
24304         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
24305         (gst_ringbuffer_debug_spec_caps), (gst_ringbuffer_debug_spec_buff),
24306         (gst_ringbuffer_parse_caps), (gst_ringbuffer_start),
24307         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
24308         (gst_ringbuffer_samples_done), (gst_ringbuffer_set_sample),
24309         (wait_segment), (gst_ringbuffer_commit), (gst_ringbuffer_read),
24310         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance):
24311         * gst-libs/gst/audio/gstringbuffer.h:
24312         Added audiosource base classes.
24313         Ported alsasrc, still very basic.
24314
24315 2005-07-06  Wim Taymans  <wim@fluendo.com>
24316
24317         * ext/theora/theoradec.c: (theora_dec_src_getcaps),
24318         (theora_dec_push), (theora_handle_data_packet):
24319         Prepare for better timestamp fix later.
24320
24321         * gst/audioconvert/gstaudioconvert.c:
24322         List most accurate caps first
24323
24324         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_loop):
24325         Use proper pad task function.
24326
24327         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
24328         (gst_xvimagesink_show_frame):
24329         Fix deadlock when alloc failed.
24330
24331 2005-07-05  Andy Wingo  <wingo@pobox.com>
24332
24333         * ext/gnomevfs/gstgnomevfssrc.c:
24334         * gst/sine/gstsinesrc.c:
24335         * gst/tcp/gsttcpserversrc.c:
24336         * gst/tcp/gsttcpclientsrc.c: s/BASESRC/BASE_SRC/.
24337
24338         * sys/v4l/: Port from 0.8.
24339
24340         * Many files: Null if we got it....
24341
24342 2005-07-05  Andy Wingo  <wingo@pobox.com>
24343
24344         * gst/tcp/gsttcpserversink.c (gst_tcpserversink_handle_server_read): 
24345         * gst/tcp/gstmultifdsink.c (gst_multifdsink_client_queue_data):
24346         Signedness fixes.
24347
24348 2005-07-05  Wim Taymans  <wim@fluendo.com>
24349
24350         * configure.ac:
24351         * gst/tcp/Makefile.am:
24352         * gst/tcp/README:
24353         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
24354         (gst_multifdsink_base_init), (gst_multifdsink_class_init),
24355         (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
24356         (is_sync_frame), (gst_multifdsink_handle_client_write),
24357         (gst_multifdsink_render), (gst_multifdsink_start),
24358         (gst_multifdsink_stop), (gst_multifdsink_change_state):
24359         * gst/tcp/gstmultifdsink.h:
24360         * gst/tcp/gsttcp.c: (gst_tcp_host_to_ip),
24361         (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps),
24362         (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
24363         * gst/tcp/gsttcp.h:
24364         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
24365         (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
24366         (gst_tcpclientsink_render), (gst_tcpclientsink_start),
24367         (gst_tcpclientsink_stop), (gst_tcpclientsink_change_state):
24368         * gst/tcp/gsttcpclientsink.h:
24369         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
24370         (gst_tcpclientsrc_base_init), (gst_tcpclientsrc_class_init),
24371         (gst_tcpclientsrc_init), (gst_tcpclientsrc_getcaps),
24372         (gst_tcpclientsrc_create), (gst_tcpclientsrc_start),
24373         (gst_tcpclientsrc_stop), (gst_tcpclientsrc_unlock):
24374         * gst/tcp/gsttcpclientsrc.h:
24375         * gst/tcp/gsttcpplugin.c: (plugin_init):
24376         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init):
24377         * gst/tcp/gsttcpserversink.h:
24378         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
24379         (gst_tcpserversrc_base_init), (gst_tcpserversrc_class_init),
24380         (gst_tcpserversrc_init), (gst_tcpserversrc_finalize),
24381         (gst_tcpserversrc_create), (gst_tcpserversrc_start),
24382         (gst_tcpserversrc_stop):
24383         * gst/tcp/gsttcpserversrc.h:
24384         * gst/tcp/gsttcpsink.c:
24385         * gst/tcp/gsttcpsink.h:
24386         * gst/tcp/gsttcpsrc.c:
24387         * gst/tcp/gsttcpsrc.h:
24388         Ported tcp plugins to 0.9. 
24389         
24390
24391 2005-07-05  Andy Wingo  <wingo@pobox.com>
24392
24393         * gst/playback/gstplaybasebin.c (fill_buffer):
24394         message_new_application fixen.
24395
24396         * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_caps):
24397         Style fix.
24398
24399 2005-07-04  Wim Taymans  <wim@fluendo.com>
24400
24401         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
24402         Set caps on output buffer.
24403
24404 2005-07-04  Andy Wingo  <wingo@pobox.com>
24405
24406         * ext/gnomevfs/gstgnomevfssrc.c
24407         (gst_gnomevfssrc_received_headers_callback) 
24408         (audiocast_thread_kill, audiocast_thread_run): FORTIFY fixen,
24409         hopefully.
24410
24411         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_fixate):
24412         No refcount leakage.
24413
24414         * configure.ac: Enable -Werror.
24415         
24416         * ext/theora/theoradec.c (theora_dec_src_getcaps):
24417         * gst/audioconvert/bufferframesconvert.c
24418         (buffer_frames_convert_fixate):
24419         * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int)
24420         (gst_audio_convert_fixate):
24421         * gst/sine/gstsinesrc.c (gst_sinesrc_src_fixate)
24422         (gst_sinesrc_create): Fixate func changes.
24423         
24424         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
24425         (gst_ximagesink_buffer_alloc): Unused var.
24426
24427 2005-07-01  Andy Wingo  <wingo@pobox.com>
24428
24429         * ext/theora/theoradec.c (theora_dec_src_getcaps): Implement a
24430         getcaps to do explicit caps. Needs to be done in all decoders,
24431         possibly via a base class.
24432
24433         * configure.ac (GST_PLUGIN_LDFLAGS): Add videoscale.
24434
24435         * ext/ogg/gstoggdemux.c (gst_ogg_pad_typefind): No need to set
24436         caps on the sink pad, just rely on the pad template. Also, setting
24437         ANY caps on a pad is not valid because the caps are not fixed.
24438
24439         * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc): Set the
24440         caps on the buffer, and get the width from the desired_caps if
24441         they're set.
24442         (gst_ximagesink_renegotiate_size): Implement via setting the
24443         desired_caps on the ximagesink.
24444         (gst_ximagesink_setcaps): Only reset the width of the player if it
24445         wasn't already set. Not sure if this is right.
24446         (gst_ximagesink_show_frame): Memcpy only for normal buffers.
24447
24448         * sys/ximage/ximagesink.h (desired_caps): New field, is the caps
24449         that the user wants. NULL unless the window has been resized.
24450
24451         * gst/volume/gstvolume.c (volume_transform): Adapt to
24452         basetransform refcount changes.
24453         
24454 2005-07-01  Andy Wingo  <wingo@pobox.com>
24455
24456         * gst/videoscale/gstvideoscale.c:
24457         * gst/videoscale/gstvideoscale.h: Clean up, port to 0.9. Derives
24458         from BaseTransform, implements a transform_caps. Removed dead code
24459         including some PAR stuff that was never reached -- should probably
24460         be added back somehow.
24461
24462 2005-07-01  Andy Wingo  <wingo@pobox.com>
24463
24464         * gst/videoscale: Merge David's work from 0.8 branch. Changes to
24465         come later.
24466
24467 2005-06-30  Thomas Vander Stichele  <thomas at apestaart dot org>
24468
24469         * configure.ac:
24470         * docs/libs/Makefile.am:
24471         * docs/libs/gst-plugins-libs.types:
24472         * ext/alsa/Makefile.am:
24473         * ext/alsa/gstalsamixer.h:
24474         * ext/alsa/gstalsamixeroptions.h:
24475         * ext/alsa/gstalsamixertrack.h:
24476         * gst-libs/gst/Makefile.am:
24477         * gst-libs/gst/colorbalance/.cvsignore:
24478         * gst-libs/gst/colorbalance/Makefile.am:
24479         * gst-libs/gst/colorbalance/colorbalance-marshal.list:
24480         * gst-libs/gst/colorbalance/colorbalance.c:
24481         * gst-libs/gst/colorbalance/colorbalance.h:
24482         * gst-libs/gst/colorbalance/colorbalance.vcproj:
24483         * gst-libs/gst/colorbalance/colorbalancechannel.c:
24484         * gst-libs/gst/colorbalance/colorbalancechannel.h:
24485         * gst-libs/gst/interfaces/Makefile.am:
24486         * gst-libs/gst/interfaces/colorbalance.c:
24487         (gst_color_balance_class_init):
24488         * gst-libs/gst/interfaces/colorbalance.h:
24489         * gst-libs/gst/interfaces/interfaces-marshal.list:
24490         * gst-libs/gst/interfaces/mixer.c: (gst_mixer_class_init):
24491         * gst-libs/gst/interfaces/mixer.h:
24492         * gst-libs/gst/interfaces/mixeroptions.h:
24493         * gst-libs/gst/interfaces/navigation.c:
24494         * gst-libs/gst/interfaces/tuner.c: (gst_tuner_class_init):
24495         * gst-libs/gst/interfaces/tuner.h:
24496         * gst/volume/Makefile.am:
24497         * gst/volume/gstvolume.c:
24498         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
24499         * sys/ximage/Makefile.am:
24500         * sys/ximage/ximagesink.c:
24501         * sys/xvimage/Makefile.am:
24502         * sys/xvimage/xvimagesink.c:
24503           fold in all interfaces into an interfaces dir, preserving CVS
24504           history
24505
24506 2005-06-30  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24507
24508         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
24509           Fix build after riff changes.
24510
24511 2005-06-30  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24512
24513         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
24514         (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
24515         (gst_riff_create_video_template_caps),
24516         (gst_riff_create_audio_template_caps),
24517         (gst_riff_create_iavs_template_caps):
24518         * gst-libs/gst/riff/riff-media.h:
24519         * gst-libs/gst/riff/riff-read.h:
24520         * gst-libs/gst/riff/riff.c: (gst_riff_init):
24521           Add gst_riff_init() to initialize the debug category, instead
24522           of plugin_init(). Port riff-media.[ch] from -THREADED to HEAD.
24523
24524 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24525
24526         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init):
24527           Oops, I shouldn't apply hacks.
24528
24529 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24530
24531         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init):
24532           Remove pad_loop function which doesn't work.
24533
24534 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24535
24536         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain):
24537           Send EOS when deactivating.
24538         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
24539         (check_queue), (queue_threshold_reached), (queue_out_of_data),
24540         (gen_preroll_element), (probe_triggered), (mute_stream),
24541         (silence_stream), (new_decoded_pad), (setup_substreams),
24542         (set_active_source):
24543         * gst/playback/gstplaybin.c: (gst_play_bin_get_property),
24544         (remove_sinks), (add_sink):
24545         * gst/playback/gststreaminfo.c: (cb_probe), (gst_stream_info_new):
24546           Change for new probe API.
24547
24548 2005-06-29  Wim Taymans  <wim@fluendo.com>
24549
24550         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_init):
24551         * gst-libs/gst/audio/gstbaseaudiosink.c:
24552         (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
24553         (gst_baseaudiosink_change_state):
24554         * gst-libs/gst/audio/gstbaseaudiosink.h:
24555         * gst-libs/gst/audio/gstringbuffer.c:
24556         (gst_ringbuffer_set_callback):
24557         Fix compilation error.
24558         Ringbuffer starts out as not running.
24559         Free our clock in dispose.
24560         When releasing the ringbuffer we need to renegotiate so
24561         clear the pad caps.
24562
24563 2005-06-29  Thomas Vander Stichele  <thomas at apestaart dot org>
24564
24565         * autogen.sh:
24566         * configure.ac:
24567         * docs/Makefile.am:
24568         * docs/libs/Makefile.am:
24569         * docs/libs/gst-plugins-libs-docs.sgml:
24570         * docs/libs/gst-plugins-libs-sections.txt:
24571         * docs/libs/gst-plugins-libs.types:
24572         * docs/libs/tmpl/gstaudio.sgml:
24573         * docs/libs/tmpl/gstcolorbalance.sgml:
24574         * docs/libs/tmpl/gstringbuffer.sgml:
24575         * gst-libs/gst/audio/gstringbuffer.c:
24576         (gst_ringbuffer_set_callback):
24577           reinstate gtk-doc docs for plugin libs
24578
24579 2005-06-28  Wim Taymans  <wim@fluendo.com>
24580
24581         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
24582         (gst_ogg_demux_init):
24583         Removed pad loop function.
24584
24585 2005-06-28  Wim Taymans  <wim@fluendo.com>
24586
24587         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
24588         If we're building a chain we are not in an error case
24589         when we queue a buffer.
24590
24591 2005-06-28  Andy Wingo  <wingo@pobox.com>
24592
24593         * *.c: Don't cast to GstObject before reffing/unreffing.
24594
24595 2005-06-27  Andy Wingo  <wingo@pobox.com>
24596
24597         * gst/videotestsrc/gstvideotestsrc.c
24598         (gst_videotestsrc_activate_push): Activation API changes.
24599
24600         * gst/playback/gstdecodebin.c (gst_decode_bin_change_state) 
24601         (gst_decode_bin_dispose): Free dynamics in READY->NULL, because
24602         they have refs on the decodebin.
24603
24604         * ext/ogg/gstoggdemux.c (gst_ogg_pad_class_init): Ref the right
24605         parent class.
24606         (gst_ogg_pad_typefind): Don't leak a pad ref.
24607         (gst_ogg_chain_new_stream): gst_object_unref, not g_object_unref.
24608         (gst_ogg_demux_sink_activate, gst_ogg_demux_sink_activate_push) 
24609         (gst_ogg_demux_sink_activate_pull): Changes for activation API.
24610
24611 2005-06-27  Edward Hervey  <edward@fluendo.com>
24612
24613         * ext/theora/theoradec.c: (theora_dec_change_state): 
24614         re-arranged call to parent's state change in order to avoid locks (or
24615         worse).
24616
24617 2005-06-26  Edward Hervey  <edward@fluendo.com>
24618
24619         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
24620         2nd argument of 'unknow-type' signal is a GstCaps and not a
24621         GstMiniObject
24622
24623 2005-06-25  Jan Schmidt  <thaytan@mad.scientist.com>
24624         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_acquire):
24625           Set the worker thread's running flag to TRUE before starting the
24626           thread.
24627         * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
24628           Catch a failure to add typefind to the bin.
24629
24630 2005-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
24631
24632         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
24633         (gst_sinesrc_init), (gst_sinesrc_create),
24634         (gst_sinesrc_set_property), (gst_sinesrc_get_property),
24635         (gst_sinesrc_start):
24636         * gst/sine/gstsinesrc.h:
24637           add num-buffers and timestamp-offset properties
24638         * gst/videotestsrc/gstvideotestsrc.c:
24639         (gst_videotestsrc_class_init), (gst_videotestsrc_set_property),
24640         (gst_videotestsrc_get_property):
24641           add timestamp-offset property
24642
24643 2005-06-23  Christian Schaller  <uraeus@gnome.org>
24644
24645         * configure.ac: add videorate
24646         * gst-plugins-base.spec.in: add videorate
24647
24648 2005-06-23  Wim Taymans  <wim@fluendo.com>
24649
24650         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
24651         (gst_videorate_getcaps), (gst_videorate_setcaps),
24652         (gst_videorate_event), (gst_videorate_chain):
24653         Fixed videorate, fixating an already fixated caps is not
24654         an error.
24655
24656 2005-06-23  Wim Taymans  <wim@fluendo.com>
24657
24658         * ext/ogg/README:
24659         * ext/ogg/gstoggmux.c: (gst_ogg_mux_set_header_on_caps):
24660         Buffer on caps is not boxed anymore.
24661
24662 2005-06-22  Wim Taymans  <wim@fluendo.com>
24663
24664         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
24665         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
24666         Set buffers on caps as miniobjects and not as boxed.
24667
24668 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
24669
24670         * configure.ac:
24671           back to HEAD
24672
24673 === release 0.9.1 ===
24674
24675 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
24676
24677         * .cvsignore:
24678         * NEWS:
24679         * README:
24680         * RELEASE:
24681         * configure.ac:
24682         * po/af.po:
24683         * po/az.po:
24684         * po/cs.po:
24685         * po/en_GB.po:
24686         * po/hu.po:
24687         * po/it.po:
24688         * po/nb.po:
24689         * po/nl.po:
24690         * po/or.po:
24691         * po/sq.po:
24692         * po/sr.po:
24693         * po/sv.po:
24694         * po/uk.po:
24695         * po/vi.po:
24696           updates for release
24697
24698 2005-06-09  Andy Wingo  <wingo@pobox.com>
24699
24700         * gst-libs/gst/net/Makefile.am (lib_LTLIBRARIES): Install gstnet.
24701         
24702 2005-06-09  Andy Wingo  <wingo@pobox.com>
24703
24704         * configure.ac:
24705         * gst-libs/gst/Makefile.am:
24706         * gst-libs/gst/net/Makefile.am:
24707         Add gstnet to build.
24708
24709 2005-06-09  Andy Wingo  <wingo@pobox.com>
24710
24711         * gst-libs/gst/gconf/gconf.c:
24712         * gst/playback/test.c:
24713         * gst/playback/gstplaybin.c (gen_video_element): Ghost pad API
24714         fixes.
24715
24716         * gst/audioconvert/gstaudioconvert.c: RPAD fixes.
24717
24718         * ext/theora/theoraenc.c (theora_enc_chain): 
24719         * ext/theora/theoradec.c (theora_handle_data_packet): GCC4 fixes.
24720
24721         * ext/ogg/gstoggdemux.c (GstOggPad): Derive from GstPad, not
24722         RealPad.
24723
24724 2005-06-02  Wim Taymans  <wim@fluendo.com>
24725
24726         * gst-libs/gst/net/Makefile.am:
24727         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
24728         * pkgconfig/gstreamer-libs.pc.in:
24729         Added net stuff, version net lib.
24730
24731 2005-06-02  Wim Taymans  <wim@fluendo.com>
24732
24733         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
24734         (query_rates), (query_positions_elems), (query_positions_pads),
24735         (do_seek):
24736         Updated seek example.
24737
24738 2005-06-02  Andy Wingo  <wingo@pobox.com>
24739
24740         * pkgconfig/gstreamer-libs-uninstalled.pc.in (prefix):
24741         * pkgconfig/gstreamer-libs.pc.in (prefix): Add gst/tag to the -L
24742         list.
24743
24744         * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Don't
24745         remove the typefind, the bin dispose will do it for us. When it's
24746         removed and unreffed, the signal handler will be disconnected,
24747         too.
24748         (unlinked): It's too difficult to disconnect from unlinked
24749         handlers, as they are on pads not elements. Just punt if the pads
24750         aren't grandkids of the bin.
24751
24752 2005-06-02  Wim Taymans  <wim@fluendo.com>
24753
24754         * ext/ogg/README:
24755         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
24756         (gst_ogg_demux_activate_chain), (gst_ogg_demux_clear_chains):
24757         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
24758         * ext/theora/theoradec.c: (theora_dec_src_query),
24759         (theora_handle_data_packet):
24760         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
24761         (theora_enc_chain):
24762         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
24763         (vorbis_handle_data_packet):
24764         * gst/audioconvert/bufferframesconvert.c:
24765         (buffer_frames_convert_chain):
24766         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
24767         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
24768         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
24769         (gst_ffmpegcsp_chain):
24770         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
24771         (gst_videorate_getcaps), (gst_videorate_setcaps),
24772         (gst_videorate_event), (gst_videorate_chain):
24773         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_activate),
24774         (gst_videotestsrc_src_query), (gst_videotestsrc_loop):
24775         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
24776         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
24777         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
24778         (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
24779         (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
24780         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
24781         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
24782         Cleanups and buffer alloc.
24783
24784 2005-05-31  Wim Taymans  <wim@fluendo.com>
24785
24786         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_delay):
24787         Don't try to call the delay method when the device is not
24788         opened.
24789
24790 2005-05-31  Wim Taymans  <wim@fluendo.com>
24791
24792         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_open):
24793         Get actual segment size and buffer size after opening
24794         the device.
24795
24796 2005-05-30  Wim Taymans  <wim@fluendo.com>
24797
24798         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
24799         (gst_ogg_demux_perform_seek), (gst_ogg_demux_clear_chains):
24800         Also FLUSH upstream, makes the loop function exit faster.
24801         
24802         * ext/theora/theoradec.c: (theora_dec_src_query):
24803         Some more debug info in the query.
24804         
24805         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
24806         (gst_ximagesink_setcaps):
24807         Release lock on par error, better error reporting.
24808
24809 2005-05-26  Wim Taymans  <wim@fluendo.com>
24810
24811         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
24812         (gst_ogg_demux_activate_chain), (gst_ogg_demux_chain),
24813         (gst_ogg_demux_clear_chains), (gst_ogg_demux_change_state):
24814         Clear chains in READY
24815         Queue packets until the chain is activated.
24816
24817 2005-05-25  Wim Taymans  <wim@fluendo.com>
24818
24819         * gst-libs/gst/audio/gstaudiosink.c:
24820         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
24821         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
24822         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
24823         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
24824         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
24825         (gst_audiosink_create_ringbuffer):
24826         * gst-libs/gst/audio/gstbaseaudiosink.c:
24827         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
24828         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
24829         (gst_baseaudiosink_set_property), (build_linear_format),
24830         (debug_spec_caps), (debug_spec_buffer),
24831         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
24832         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
24833         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
24834         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
24835         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
24836         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
24837         (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
24838         (gst_ringbuffer_play), (gst_ringbuffer_pause),
24839         (gst_ringbuffer_stop), (gst_ringbuffer_delay),
24840         (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
24841         (wait_segment), (gst_ringbuffer_commit),
24842         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
24843         (gst_ringbuffer_clear):
24844         Various small cleanups.
24845
24846         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
24847         (gst_audio_convert_change_state):
24848         * gst/subparse/gstsubparse.c: (gst_subparse_chain):
24849         No need to take the locks anymore.
24850
24851 2005-05-25  Wim Taymans  <wim@fluendo.com>
24852
24853         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
24854         (gst_decode_bin_dispose), (try_to_link_1), (get_our_ghost_pad),
24855         (remove_element_chain), (no_more_pads), (unlinked), (close_link),
24856         (type_found):
24857         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_dispose),
24858         (group_destroy), (group_commit), (queue_overrun),
24859         (gen_preroll_element), (no_more_pads), (preroll_unlinked),
24860         (mute_stream), (new_decoded_pad), (setup_substreams),
24861         (setup_source), (mute_group_type), (set_active_source),
24862         (gst_play_base_bin_change_state):
24863         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
24864         (gen_video_element), (gen_text_element), (gen_audio_element),
24865         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks):
24866         * gst/playback/gststreaminfo.c: (gst_stream_info_new),
24867         (gst_stream_info_dispose), (gst_stream_info_set_mute):
24868         * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
24869         Some playbin cleanups mostly refcounting sloppyness.
24870
24871 2005-05-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24872
24873         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
24874           Work with streaming input.
24875
24876 2005-05-25  Wim Taymans  <wim@fluendo.com>
24877
24878         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
24879         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
24880         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
24881         (gst_ffmpegcsp_chain), (gst_ffmpegcsp_change_state):
24882         No need to take the STREAM lock anymore.
24883
24884 2005-05-25  Wim Taymans  <wim@fluendo.com>
24885
24886         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
24887         (gst_ogg_pad_typefind), (gst_ogg_pad_submit_packet),
24888         (gst_ogg_chain_new_stream), (gst_ogg_demux_perform_seek),
24889         (gst_ogg_demux_chain), (gst_ogg_demux_loop),
24890         (gst_ogg_demux_sink_activate):
24891         * ext/theora/theoradec.c: (theora_dec_src_event),
24892         (theora_handle_comment_packet), (theora_dec_chain),
24893         (theora_dec_change_state):
24894         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
24895         (vorbis_handle_data_packet), (vorbis_dec_chain),
24896         (vorbis_dec_change_state):
24897         Remove STREAM locks as they are taken in core now.
24898         Never set bogus granulepos on vorbis/theora.
24899         Fix leaks in theoradec tag parsing.
24900
24901 2005-05-25  Wim Taymans  <wim@fluendo.com>
24902
24903         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
24904         Fix memleaks, GST_BUFFER_DATA() is not freed.
24905
24906 2005-05-25  Wim Taymans  <wim@fluendo.com>
24907
24908         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
24909         Open non-blocking, set to blocking mode afterwards to avoid
24910         lockups when audio device is busy.
24911
24912 2005-05-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24913
24914         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_clear):
24915           This can't be good.
24916
24917 2005-05-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24918
24919         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
24920         (gst_audio_convert_chain), (gst_audio_convert_link_src),
24921         (gst_audio_convert_setcaps):
24922           Implement instant setup switching.
24923
24924 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24925
24926         * gst/playback/gstplaybasebin.c: (probe_triggered):
24927           Fix missing unlock.
24928         * gst/playback/gstplaybin.c: (add_sink):
24929           First add, then link (otherwise pad link fails).
24930
24931 2005-05-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
24932
24933         * examples/Makefile.am:
24934         fix buildbot (make distcheck)
24935
24936 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24937
24938         * gst/playback/gstplaybin.c: (gen_vis_element):
24939           Remove some wrong code. Doesn't work yet.
24940
24941 2005-05-19  Wim Taymans  <wim@fluendo.com>
24942
24943         * gst-libs/gst/net/Makefile.am:
24944         * gst-libs/gst/net/README:
24945         * gst-libs/gst/net/gstnetbuffer.c: (gst_netbuffer_get_type),
24946         (gst_netbuffer_class_init), (gst_netbuffer_init),
24947         (gst_netbuffer_finalize), (gst_netbuffer_copy),
24948         (gst_netbuffer_new), (gst_netaddress_set_ip4_address),
24949         (gst_netaddress_set_ip6_address), (gst_netaddress_get_net_type),
24950         (gst_netaddress_get_ip4_address), (gst_netaddress_get_ip6_address):
24951         * gst-libs/gst/net/gstnetbuffer.h:
24952         Added buffer subclass to store extra to/from addresses for
24953         network sources/sinks.
24954
24955 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24956
24957         * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
24958           Don't lock an unassigned variable.
24959
24960 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
24961
24962         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
24963           Increase buffer for video, decrease buffer for other media types.
24964         * gst/playback/gstplaybin.c: (gen_video_element),
24965         (gen_audio_element):
24966           Change names for debugging purposes.
24967
24968 2005-05-18  Wim Taymans  <wim@fluendo.com>
24969
24970         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
24971         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
24972         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
24973         (gst_ffmpegcsp_chain):
24974         Enable buffer alloc passthrough if the source and dest
24975         formats are the same.
24976
24977 2005-05-17  Wim Taymans  <wim@fluendo.com>
24978
24979         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
24980         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
24981         (gst_ogg_demux_chain_unlocked):
24982         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
24983         (gst_audio_convert_caps_remove_format_info),
24984         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
24985         (gst_audio_convert_fixate), (gst_audio_convert_change_state):
24986         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
24987         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
24988         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_init),
24989         (gst_ffmpegcsp_bufferalloc), (gst_ffmpegcsp_chain),
24990         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
24991         (gst_ffmpegcsp_get_property):
24992         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
24993         (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
24994         (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
24995         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
24996         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_imagepool_clear),
24997         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
24998         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_free),
24999         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id):
25000         Leak fixes in oggdemux.
25001         Some cleanups in audioconvert.
25002         Make passthrough work along with buffer_alloc etc.
25003         Make buffer_alloc and buffer recycling actually work in
25004         xvimagesink.
25005
25006 2005-05-17  Thomas Vander Stichele  <thomas at apestaart dot org>
25007
25008         * gst/subparse/gstsubparse.c: (parse_subrip), (parse_mpsub):
25009           make the compiler happy
25010
25011 2005-05-17  Wim Taymans  <wim@fluendo.com>
25012
25013         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
25014         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
25015         (gst_xvimage_buffer_init), (gst_xvimage_buffer_class_init),
25016         (gst_xvimage_buffer_get_type), (gst_xvimagesink_check_xshm_calls),
25017         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
25018         (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_setcaps),
25019         (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
25020         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
25021         (gst_xvimagesink_set_xwindow_id):
25022         * sys/xvimage/xvimagesink.h:
25023         Port xvimagesink to new MiniObject.
25024
25025 2005-05-17  Wim Taymans  <wim@fluendo.com>
25026
25027         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
25028         (gst_audiofilter_chain):
25029         * gst-libs/gst/audio/gstaudiosink.c:
25030         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
25031         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
25032         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
25033         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
25034         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
25035         (gst_audiosink_create_ringbuffer):
25036         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
25037         (gst_audio_convert_caps_remove_format_info),
25038         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
25039         (gst_audio_convert_fixate), (gst_audio_convert_channels):
25040         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
25041         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
25042         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
25043         Fix passthrough in ffmpegcolorspace.
25044         Fix memset in audiosink on wrong memory.
25045
25046 2005-05-16  David Schleef  <ds@schleef.org>
25047
25048         * gst/playback/gststreaminfo.c: (cb_probe): Port from GstData
25049         to GstMiniObject.
25050
25051 2005-05-16  David Schleef  <ds@schleef.org>
25052
25053         Port from GstData to GstMiniObject.
25054         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
25055         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
25056         (gst_ogg_mux_queue_pads), (gst_ogg_mux_set_header_on_caps),
25057         (gst_ogg_mux_collected):
25058         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
25059         * ext/theora/theoradec.c: (theora_handle_comment_packet),
25060         (theora_handle_data_packet):
25061         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
25062         (theora_set_header_on_caps), (theora_enc_chain):
25063         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
25064         (vorbis_handle_comment_packet):
25065         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
25066         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
25067         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_chain):
25068         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_chain):
25069         * gst/audioconvert/gstaudioconvert.c:
25070         (gst_audio_convert_get_buffer):
25071         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
25072         * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
25073         (mute_stream), (silence_stream):
25074         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
25075         * gst/volume/gstvolume.c: (volume_transform):
25076         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
25077         (gst_ximage_buffer_init), (gst_ximage_buffer_class_init),
25078         (gst_ximage_buffer_get_type), (gst_ximagesink_check_xshm_calls),
25079         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
25080         (gst_ximagesink_ximage_put), (gst_ximagesink_imagepool_clear),
25081         (gst_ximagesink_show_frame), (gst_ximagesink_buffer_free),
25082         (gst_ximagesink_buffer_alloc):
25083         * sys/ximage/ximagesink.h:
25084
25085 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25086
25087         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
25088         (fill_buffer), (check_queue), (queue_threshold_reached),
25089         (queue_out_of_data):
25090         * gst/playback/gstplaybasebin.h:
25091           Post buffer-fullness on the bus.
25092
25093 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25094
25095         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
25096         (try_to_link_1):
25097         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
25098         (group_commit), (probe_triggered), (setup_source),
25099         (gst_play_base_bin_change_state):
25100         * gst/playback/gstplaybasebin.h:
25101         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
25102         (gst_play_bin_init), (remove_sinks), (setup_sinks),
25103         (gst_play_bin_change_state):
25104           Move setup_output_pads into a virtual function, remove
25105           group-switch (no longer needed) and redirect (handled by bus
25106           now) signals.
25107
25108 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25109
25110         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
25111         (gst_play_base_bin_class_init), (gst_play_base_bin_finalize),
25112         (get_active_group), (get_building_group), (group_destroy),
25113         (group_commit), (check_queue), (queue_overrun),
25114         (queue_threshold_reached), (queue_out_of_data),
25115         (gen_preroll_element), (remove_groups), (unknown_type),
25116         (add_element_stream), (no_more_pads), (probe_triggered),
25117         (preroll_unlinked), (new_decoded_pad), (setup_subtitle),
25118         (setup_substreams), (setup_source), (finish_source),
25119         (prepare_output), (muted_group_change_state),
25120         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
25121         (gst_play_base_bin_change_state):
25122         * gst/playback/gstplaybasebin.h:
25123         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
25124         (gst_play_bin_init), (gst_play_bin_set_property),
25125         (gen_video_element), (gen_text_element), (gen_audio_element),
25126         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
25127         (gst_play_bin_change_state):
25128         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
25129         (cb_probe), (gst_stream_info_new), (gst_stream_info_dispose),
25130         (stream_info_change_state), (gst_stream_info_set_mute),
25131         (gst_stream_info_get_property):
25132         * gst/playback/gststreaminfo.h:
25133         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
25134         (gst_stream_selector_get_linked_pad),
25135         (gst_stream_selector_getcaps),
25136         (gst_stream_selector_get_linked_pads),
25137         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
25138         * gst/playback/gststreamselector.h:
25139           Rough port of playbin. Needs some more work, but is mostly done,
25140           and uses a few locks in important places, which should make stuff
25141           like chain-switches clean. Still uses GST_STATE() in a few places,
25142           which isn't all that good an idea, subtitles/elements disabled
25143           because no elements to test with and thus probably broken, query
25144           and event handling moved to GstBin, internal thread removed
25145           alltogether because the pipeline does that for us now. Can play
25146           Ogg/Vorbis files. Haven't tested anything else yet.
25147
25148 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25149
25150         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
25151           Do no-more-pads (needed for autoplugging).
25152
25153 2005-05-10  Andy Wingo  <wingo@pobox.com>
25154
25155         * ext/vorbis/vorbisdec.c (vorbis_handle_comment_packet): Post a
25156         message to the bus with the tags. Still not sent downstream tho.
25157
25158         * gst/playback/gstdecodebin.c (remove_element_chain): Unref after
25159         get_parent.
25160         (remove_element_chain): Use OBJECT_PARENT instead of get_parent to
25161         avoid refcounting hassles.
25162
25163 2005-05-09  Andy Wingo  <wingo@pobox.com>
25164
25165         * gst/volume/Makefile.am:
25166         * gst/volume/demo.c
25167         * gst/volume/gstvolume.h
25168         * gst/volume/gstvolume.c: Port to 0.9 API, derive from
25169         basetransform. Probably need an audio filter base class.
25170
25171 2005-05-09  Wim Taymans  <wim@fluendo.com>
25172
25173         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_setcaps),
25174         (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
25175         (gst_vorbisenc_set_header_on_caps), (gst_vorbisenc_sink_event),
25176         (gst_vorbisenc_chain):
25177         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
25178         (gst_audio_convert_caps_remove_format_info),
25179         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
25180         (gst_audio_convert_fixate), (gst_audio_convert_channels):
25181         Make caps writable before writing to it.
25182         Fix negotiation in audioconvert some more.
25183
25184 2005-05-09  Wim Taymans  <wim@fluendo.com>
25185
25186         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
25187         (gst_videorate_getcaps), (gst_videorate_setcaps),
25188         (gst_videorate_event), (gst_videorate_chain):
25189         Better negotiation.
25190
25191 2005-05-09  Wim Taymans  <wim@fluendo.com>
25192
25193         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
25194         (gst_videorate_getcaps), (gst_videorate_setcaps),
25195         (gst_videorate_blank_data), (gst_videorate_init),
25196         (gst_videorate_event), (gst_videorate_chain),
25197         (gst_videorate_change_state):
25198         Port videorate, do a better job at negotiation while we're at
25199         it.
25200
25201 2005-05-09  Jan Schmidt  <thaytan@mad.scientist.com>
25202
25203         * configure.ac:
25204           Disable libvisual
25205
25206         * examples/Makefile.am:
25207         * gst-libs/gst/audio/Makefile.am:
25208         * gst-libs/gst/riff/Makefile.am:
25209         * gst-libs/gst/tag/Makefile.am:
25210         * gst-libs/gst/video/Makefile.am:
25211           Fixups for missing variables.
25212
25213 2005-05-09  Wim Taymans  <wim@fluendo.com>
25214
25215         * examples/seeking/seek.c: (make_theora_pipeline),
25216         (make_vorbis_theora_pipeline), (make_avi_msmpeg4v3_mp3_pipeline),
25217         (query_rates), (query_positions_elems), (query_positions_pads),
25218         (update_scale), (play_cb), (pause_cb), (stop_cb), (main):
25219         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
25220         (gst_ogg_pad_query_types), (gst_ogg_pad_src_query),
25221         (gst_ogg_pad_typefind), (gst_ogg_demux_init),
25222         (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
25223         (gst_ogg_demux_read_end_chain), (gst_ogg_demux_sink_activate):
25224         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
25225         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
25226         (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
25227         (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
25228         (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
25229         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
25230         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
25231         (gst_ogm_parse_sink_query), (gst_ogm_parse_chain):
25232         * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
25233         (theora_dec_src_convert), (theora_dec_sink_convert),
25234         (theora_dec_src_query), (theora_dec_sink_query),
25235         (theora_dec_src_event), (theora_dec_sink_event),
25236         (theora_handle_comment_packet), (theora_handle_type_packet),
25237         (theora_handle_header_packet), (theora_handle_data_packet),
25238         (theora_dec_chain):
25239         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
25240         (vorbis_dec_convert), (vorbis_dec_src_query),
25241         (vorbis_dec_sink_query), (vorbis_dec_src_event),
25242         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
25243         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
25244         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
25245         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
25246         (gst_vorbisenc_sink_query), (gst_vorbisenc_init),
25247         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain):
25248         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
25249         (gst_play_bin_query):
25250         * gst/playback/test3.c: (update_scale):
25251         * gst/sine/gstsinesrc.c: (gst_sinesrc_setcaps),
25252         (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start):
25253         * gst/subparse/gstsubparse.c: (gst_subparse_init):
25254         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
25255         (gst_videotestsrc_src_query):
25256         * gst/videotestsrc/videotestsrc.c: (paint_hline_I420),
25257         (paint_hline_Y41B), (paint_hline_Y42B), (paint_hline_Y800),
25258         (paint_hline_YUV9):
25259         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
25260         Port to new query API.
25261         Updated seek.
25262         Cleanups in x[v]imagesink
25263
25264 2005-05-09  Andy Wingo  <wingo@pobox.com>
25265
25266         * ext/alsa/gstalsasink.h:
25267         * ext/gnomevfs/gstgnomevfssrc.c:
25268         (gst_gnomevfssrc_get_icy_metadata):
25269         * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek)
25270         (gst_ogg_demux_read_chain, gst_ogg_demux_read_end_chain)
25271         * ext/theora/theoradec.c (theora_dec_src_query)
25272         (theora_dec_src_event, theora_dec_sink_event)
25273         (theora_handle_comment_packet, theora_handle_data_packet):
25274         * ext/theora/theoraenc.c (theora_enc_chain):
25275         * ext/vorbis/vorbisdec.c (vorbis_dec_src_event)
25276         (vorbis_dec_sink_event, vorbis_handle_comment_packet):
25277         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
25278         * gst/typefind/gsttypefindfunctions.c (mp3_type_find)
25279         (qt_type_find):
25280         * gst/videotestsrc/videotestsrc.c (paint_setup_I420)
25281         (paint_setup_YV12, paint_setup_YUY2, paint_setup_UYVY)
25282         (paint_setup_YVYU, paint_setup_IYU2, paint_setup_Y41B)
25283         (paint_setup_Y42B, paint_setup_Y800, paint_setup_IMC1)
25284         (paint_setup_IMC2, paint_setup_IMC3, paint_setup_IMC4)
25285         (paint_setup_YVU9, paint_setup_YUV9, paint_setup_xRGB8888)
25286         (paint_setup_xBGR8888, paint_setup_RGBx8888)
25287         (paint_setup_BGRx8888, paint_setup_RGB888, paint_setup_BGR888)
25288         (paint_setup_RGB565, paint_setup_xRGB1555):
25289         * gst/videotestsrc/videotestsrc.h:
25290         * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc):
25291         * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support)
25292         (gst_xvimagesink_setcaps, gst_xvimagesink_buffer_alloc):
25293         GCC4 fixes.
25294         
25295         * ext/ogg/gstoggdemux.c (gst_ogg_demux_find_chains): Use the new
25296         gst_pad_query_position. Fixes oggdemux.
25297
25298 2005-05-08  David Schleef  <ds@schleef.org>
25299
25300         * configure.ac: Require liboil.
25301         * gst/videotestsrc/gstvideotestsrc.c: Fix up liboil calls, add
25302         a few more.
25303         * gst/videotestsrc/videotestsrc.c:
25304         * gst/videotestsrc/videotestsrc.h:
25305
25306 2005-05-06  Wim Taymans  <wim@fluendo.com>
25307
25308         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
25309         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
25310         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
25311         Well, unreffing a buffer right before pushing it is asking
25312         for trouble..
25313
25314 2005-05-06  Christian Schaller  <uraeus@gnome.org>
25315
25316         * pkgconfig/gstreamer-libs.pc.in: add missing library calls
25317
25318 2005-05-06  Wim Taymans  <wim@fluendo.com>
25319
25320         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
25321         (gst_audio_convert_caps_remove_format_info),
25322         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
25323         (gst_audio_convert_fixate), (gst_audio_convert_channels):
25324         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
25325         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
25326         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
25327         * gst/sine/Makefile.am:
25328         * gst/sine/gstsinesrc.c: (gst_sinesrc_get_type),
25329         (gst_sinesrc_class_init), (gst_sinesrc_init),
25330         (gst_sinesrc_src_fixate), (gst_sinesrc_setcaps),
25331         (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start),
25332         (gst_sinesrc_update_freq):
25333         * gst/sine/gstsinesrc.h:
25334         * gst/tcp/gstmultifdsink.c:
25335         * sys/xvimage/xvimagesink.c:
25336         Fixed negotiation wrt _peer_get_caps()
25337         Some cleanups.
25338
25339
25340 2005-05-06  Wim Taymans  <wim@fluendo.com>
25341
25342         * gst-libs/gst/audio/gstaudiosink.c:
25343         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
25344         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
25345         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
25346         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
25347         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
25348         (gst_audiosink_create_ringbuffer):
25349         * gst-libs/gst/audio/gstbaseaudiosink.c:
25350         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
25351         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
25352         (gst_baseaudiosink_set_property), (build_linear_format),
25353         (debug_spec_caps), (debug_spec_buffer),
25354         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
25355         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
25356         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
25357         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
25358         * gst-libs/gst/audio/gstbaseaudiosink.h:
25359         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
25360         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
25361         (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
25362         (gst_ringbuffer_play), (gst_ringbuffer_pause),
25363         (gst_ringbuffer_stop), (gst_ringbuffer_delay),
25364         (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
25365         (wait_segment), (gst_ringbuffer_commit),
25366         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
25367         (gst_ringbuffer_clear):
25368         * gst-libs/gst/audio/gstringbuffer.h:
25369         Make the base audiosink return an error when there is no
25370         audiobuffer negotiated.
25371
25372 2005-05-06  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
25373
25374         * ext/Makefile.am:
25375         Disable cdparanoia until someone ports it!
25376
25377 2005-05-06  Wim Taymans  <wim@fluendo.com>
25378
25379         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
25380         (gst_ogg_demux_sink_activate):
25381         And revert after wingo's revert.. sigh..
25382
25383 2005-05-05  Andy Wingo  <wingo@pobox.com>
25384
25385         * gst/audiorate/gstaudiorate.c (gst_audiorate_class_init): Pacify
25386         GObject.
25387         * configure.ac: Return audiorate and subparse from the ghetto.
25388         Re-enable -Wall -Werror.
25389         * gst/subparse/gstsubparse.c:
25390         * gst/subparse/gstsubparse.h: Port to 0.9. Can operate loop-based
25391         or chain-based. Cleaned up a bit. Not tested.
25392         
25393 2005-05-05  Christian Schaller <christian@fluendo.com> 
25394
25395         * Makefile.am: remove stuff that is not building
25396         * configure.ac: remove stuff that is not building
25397         * examples/Makefile.am: remove stuff that is not building
25398         * ext/alsa/gstalsasink.c: add alsa/ before the alsalib.h file
25399         * ext/alsa/gstalsasink.h: add alsa/ before the alsalib.h file
25400         * sys/Makefile.am: remove stuff that is not building
25401         * testsuite/Makefile.am: remove stuff that is not building
25402
25403 2005-05-05  Andy Wingo  <wingo@pobox.com>
25404
25405         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
25406         * gst-libs/gst/tag/gstvorbistag.c:
25407         (gst_tag_list_from_vorbiscomment_buffer), (gst_vorbis_tag_chain):
25408         * gst/adder/gstadder.h:
25409         * gst/audioconvert/gstchannelmix.c:
25410         (gst_audio_convert_fill_one_other):
25411         * gst/audiorate/gstaudiorate.c: (gst_audiorate_setcaps),
25412         (gst_audiorate_init), (gst_audiorate_chain):
25413         * gst/playback/gstplaybasebin.c: (setup_source):
25414         * gst/playback/test3.c: (update_scale):
25415         Some GCC4 fixes
25416         
25417         * po/af.po:
25418         * po/az.po:
25419         * po/cs.po:
25420         * po/en_GB.po:
25421         * po/hu.po:
25422         * po/it.po:
25423         * po/nb.po:
25424         * po/nl.po:
25425         * po/or.po:
25426         * po/sq.po:
25427         * po/sr.po:
25428         * po/sv.po:
25429         * po/uk.po:
25430         * po/vi.po: Foo
25431
25432 2005-05-05  Wim Taymans  <wim@fluendo.com>
25433
25434         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
25435         (gst_audio_convert_caps_remove_format_info),
25436         (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
25437         (gst_audio_convert_change_state), (gst_audio_convert_channels):
25438         * gst/videotestsrc/gstvideotestsrc.c:
25439         (gst_videotestsrc_src_negotiate), (gst_videotestsrc_src_link),
25440         (gst_videotestsrc_parse_caps), (gst_videotestsrc_src_accept_caps),
25441         (gst_videotestsrc_setcaps), (gst_videotestsrc_activate),
25442         (gst_videotestsrc_init), (gst_videotestsrc_loop):
25443         Don't ignore _push() return values.
25444         Make sure no processing is done when shutting down.
25445         Videotestsrc pad activation fix.
25446
25447 2005-05-05  Wim Taymans  <wim@fluendo.com>
25448
25449         * gst/adder/Makefile.am:
25450         * gst/adder/gstadder.c: (gst_adder_setcaps),
25451         (gst_adder_class_init), (gst_adder_init),
25452         (gst_adder_request_new_pad), (gst_adder_collected),
25453         (gst_adder_change_state):
25454         * gst/adder/gstadder.h:
25455         Ported adder as an example of a mixer element using
25456         collect pads. Needs more negotiation work.
25457
25458 2005-05-05  Wim Taymans  <wim@fluendo.com>
25459
25460         * ext/theora/theoradec.c: (_inc_granulepos),
25461         (theora_dec_src_event), (theora_dec_sink_event),
25462         (theora_handle_comment_packet), (theora_handle_type_packet),
25463         (theora_handle_header_packet), (theora_handle_data_packet),
25464         (theora_dec_chain):
25465         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
25466         (gst_theora_enc_init), (theora_enc_sink_setcaps),
25467         (theora_push_buffer), (theora_push_packet),
25468         (theora_enc_sink_event), (theora_enc_chain),
25469         (theora_enc_change_state), (theora_enc_set_property),
25470         (theora_enc_get_property):
25471         Added stream lock to decoder so that we can serialize
25472         the discont event.
25473         More theoraenc porting, recover from errors, do clean
25474         shutdown.
25475
25476 2005-05-05  Wim Taymans  <wim@fluendo.com>
25477
25478         * ext/ogg/Makefile.am:
25479         * ext/ogg/README:
25480         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
25481         (gst_ogg_pad_submit_packet), (gst_ogg_demux_sink_activate),
25482         (gst_ogg_print):
25483         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
25484         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
25485         (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
25486         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
25487         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected),
25488         (gst_ogg_mux_change_state):
25489         Ported ogg muxer.
25490
25491 2005-05-05  Wim Taymans  <wim@fluendo.com>
25492
25493         * docs/design-audiosinks.txt:
25494         * gst-libs/gst/audio/TODO:
25495         * gst-libs/gst/audio/gstaudiosink.c:
25496         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
25497         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
25498         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
25499         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
25500         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
25501         (gst_audiosink_create_ringbuffer):
25502         * gst-libs/gst/audio/gstbaseaudiosink.c:
25503         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
25504         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
25505         (gst_baseaudiosink_set_property), (build_linear_format),
25506         (debug_spec_caps), (debug_spec_buffer),
25507         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
25508         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
25509         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
25510         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
25511         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
25512         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
25513         (gst_ringbuffer_release), (gst_ringbuffer_play),
25514         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
25515         (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
25516         (gst_ringbuffer_set_sample), (wait_segment),
25517         (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
25518         (gst_ringbuffer_advance), (gst_ringbuffer_clear):
25519         More work on the audiosink, mostly debugging and a race in
25520         shutdown.
25521
25522 2005-04-28  Wim Taymans  <wim@fluendo.com>
25523
25524         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
25525         (gst_ogg_demux_perform_seek), (gst_ogg_demux_sink_activate):
25526         * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
25527         (vorbis_dec_src_query), (vorbis_dec_src_event),
25528         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
25529         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
25530         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
25531         Don't crap out when seeking back to position 0.
25532
25533 2005-04-28  Wim Taymans  <wim@fluendo.com>
25534
25535         * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
25536         (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
25537         (make_vorbis_pipeline), (make_vorbis_theora_pipeline),
25538         (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
25539         (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline):
25540         Make audio sink configurable, use alsasink as default.
25541
25542 2005-04-28  Wim Taymans  <wim@fluendo.com>
25543
25544         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
25545         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
25546         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
25547         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain),
25548         (vorbis_dec_change_state):
25549         * ext/vorbis/vorbisdec.h:
25550         Refactor, use STREAM_LOCK.
25551
25552 2005-04-28  Wim Taymans  <wim@fluendo.com>
25553
25554         * ext/theora/theoradec.c: (_inc_granulepos),
25555         (theora_dec_sink_event), (theora_handle_comment_packet),
25556         (theora_handle_type_packet), (theora_handle_header_packet),
25557         (theora_handle_data_packet), (theora_dec_chain),
25558         (theora_dec_change_state):
25559         Refactor a bit, use STREAM_LOCK.
25560
25561 2005-04-28  Wim Taymans  <wim@fluendo.com>
25562
25563         * ext/alsa/Makefile.am:
25564         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_get_caps),
25565         (gst_alsa_fixate_to_mimetype), (gst_alsa_fixate_field_nearest_int),
25566         (gst_alsa_link), (gst_alsa_close_audio):
25567         * ext/alsa/gstalsaplugin.c: (plugin_init):
25568         * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
25569         (gst_alsasink_dispose), (gst_alsasink_base_init),
25570         (gst_alsasink_class_init), (gst_alsasink_init),
25571         (gst_alsasink_getcaps), (set_hwparams), (set_swparams),
25572         (alsasink_parse_spec), (gst_alsasink_open), (gst_alsasink_close),
25573         (xrun_recovery), (gst_alsasink_write), (gst_alsasink_delay),
25574         (gst_alsasink_reset):
25575         * ext/alsa/gstalsasink.h:
25576         Implement alsasink with simple open/write/close API. 
25577         Make alsa dir build by disabling compilation of code.
25578
25579 2005-04-28  Wim Taymans  <wim@fluendo.com>
25580
25581         * gst-libs/gst/audio/Makefile.am:
25582         * gst-libs/gst/audio/audio.h:
25583         * gst-libs/gst/audio/audioclock.c:
25584         * gst-libs/gst/audio/audioclock.h:
25585         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_get_type),
25586         (gst_audio_clock_class_init), (gst_audio_clock_init),
25587         (gst_audio_clock_new), (gst_audio_clock_get_internal_time):
25588         * gst-libs/gst/audio/gstaudioclock.h:
25589         * gst-libs/gst/audio/gstaudiosink.c:
25590         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
25591         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
25592         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
25593         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
25594         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
25595         (gst_audiosink_create_ringbuffer):
25596         * gst-libs/gst/audio/gstbaseaudiosink.c:
25597         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
25598         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
25599         (gst_baseaudiosink_set_property), (gst_baseaudiosink_get_property),
25600         (build_linear_format), (debug_spec_caps), (debug_spec_buffer),
25601         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
25602         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
25603         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
25604         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
25605         * gst-libs/gst/audio/gstbaseaudiosink.h:
25606         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
25607         (gst_ringbuffer_init), (gst_ringbuffer_finalize),
25608         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
25609         (gst_ringbuffer_release), (gst_ringbuffer_play),
25610         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
25611         (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
25612         (gst_ringbuffer_set_sample), (wait_segment),
25613         (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
25614         (gst_ringbuffer_advance), (gst_ringbuffer_clear):
25615         * gst-libs/gst/audio/gstringbuffer.h:
25616         Make ringbuffer faster and more simple by removing the locks
25617         in the playback thread.
25618         Add sample accurate playback based on buffer sample offsets.
25619         Make the baseaudiosink provide a clock.
25620         Parse caps in the base class.
25621         Correctly handle seeking, flushing and state changes.
25622
25623 2005-04-25  Thomas Vander Stichele  <thomas at apestaart dot org>
25624
25625         * configure.ac:
25626         * gst/audioconvert/Makefile.am:
25627         * gst/audioscale/Makefile.am:
25628           Fix part of the build.  Come on guys, autogen didn't even work :)
25629
25630 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25631
25632         * configure.ac:
25633         * gst-libs/gst/Makefile.am:
25634         * gst-libs/gst/media-info/.cvsignore:
25635         * gst-libs/gst/media-info/Makefile.am:
25636         * gst-libs/gst/media-info/README:
25637         * gst-libs/gst/media-info/media-info-priv.c:
25638         * gst-libs/gst/media-info/media-info-priv.h:
25639         * gst-libs/gst/media-info/media-info-test.c:
25640         * gst-libs/gst/media-info/media-info.c:
25641         * gst-libs/gst/media-info/media-info.h:
25642         * gst-libs/gst/media-info/media-info.vcproj:
25643         * pkgconfig/Makefile.am:
25644         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
25645         * pkgconfig/gstreamer-media-info.pc.in:
25646           Remove media-info, which is also successed by playbin (see Totem
25647           implementation).
25648
25649 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25650
25651         * configure.ac:
25652         * examples/Makefile.am:
25653         * examples/gstplay/.cvsignore:
25654         * examples/gstplay/Makefile.am:
25655         * examples/gstplay/player.c:
25656         * gst-libs/gst/Makefile.am:
25657         * gst-libs/gst/play/.cvsignore:
25658         * gst-libs/gst/play/Makefile.am:
25659         * gst-libs/gst/play/play.c:
25660         * gst-libs/gst/play/play.h:
25661         * gst-libs/gst/play/play.vcproj:
25662         * pkgconfig/Makefile.am:
25663         * pkgconfig/gstreamer-play-uninstalled.pc.in:
25664         * pkgconfig/gstreamer-play.pc.in:
25665           Remove libgstplay, playbin is now the official successor.
25666
25667 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25668
25669         * configure.ac:
25670         * gst-libs/gst/Makefile.am:
25671         * gst-libs/gst/xwindowlistener/Makefile.am:
25672         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
25673         * gst-libs/gst/xwindowlistener/xwindowlistener.h:
25674           Remove deprecated xwindowlistener (I've moved xwindowlistening
25675           in the v4l/v4l2 plugins over to serverside).
25676
25677 2005-04-25  David Schleef  <ds@schleef.org>
25678
25679         * examples/dynparams/Makefile.am: Move demo-dparams from gst/sine
25680         to examples/dynparams.  Examples do not belong interspersed with
25681         source code.
25682         * examples/dynparams/demo-dparams.c:
25683         * gst/sine/Makefile.am:
25684         * gst/sine/demo-dparams.c:
25685
25686 2005-04-25  David Schleef  <ds@schleef.org>
25687
25688         Don't use GST_PLUGIN_LDFLAGS, because these aren't plugins.
25689         * gst-libs/gst/audio/Makefile.am:
25690         * gst-libs/gst/riff/Makefile.am:
25691         * gst-libs/gst/tag/Makefile.am:
25692         * gst-libs/gst/video/Makefile.am:
25693         * gst-libs/gst/xwindowlistener/Makefile.am:
25694
25695         Convert to 0.9 API, seems to work:
25696         * sys/ximage/Makefile.am:
25697         * sys/ximage/ximagesink.c:
25698
25699 2005-04-24  David Schleef  <ds@schleef.org>
25700
25701         Link plugins against libraries:
25702         * ext/alsa/Makefile.am:
25703         * gst/tcp/Makefile.am:
25704
25705         Remove asm code that should be in liboil
25706         * gst/videoscale/Makefile.am:
25707         * gst/videoscale/videoscale_x86_asm.s:
25708
25709         gettext wants these checked in:
25710         * po/af.po:
25711         * po/az.po:
25712         * po/cs.po:
25713         * po/en_GB.po:
25714         * po/hu.po:
25715         * po/it.po:
25716         * po/nb.po:
25717         * po/nl.po:
25718         * po/or.po:
25719         * po/sq.po:
25720         * po/sr.po:
25721         * po/sv.po:
25722         * po/uk.po:
25723         * po/vi.po:
25724
25725 2005-04-24  David Schleef  <ds@schleef.org>
25726
25727         Convert gst_main() to g_main_loop_run()
25728         * gst/playback/decodetest.c: (main):
25729         * gst/playback/test2.c: (main):
25730         * gst/playback/test3.c: (main):
25731         * gst/playback/test4.c: (main):
25732
25733         Link plugins against libraries:
25734         * ext/libvisual/Makefile.am:
25735         * sys/xvimage/Makefile.am:
25736
25737 2005-04-24  David Schleef  <ds@schleef.org>
25738
25739         * configure.ac: Remove idct and resample libs
25740         * gst-libs/gst/Makefile.am: same
25741
25742         Remove usage of gst_library_load():
25743         * ext/alsa/gstalsaplugin.c: (plugin_init):
25744         * ext/libvisual/visual.c: (plugin_init):
25745         * ext/ogg/gstogg.c: (plugin_init):
25746         * ext/theora/theora.c: (plugin_init):
25747         * ext/vorbis/vorbis.c: (plugin_init):
25748         * gst-libs/gst/audio/gstaudiofiltertemplate.c: (plugin_init):
25749         * gst/audioscale/gstaudioscale.c:
25750         * gst/adder/gstadder.c: (plugin_init):
25751         * gst/audioconvert/plugin.c: (plugin_init):
25752         * sys/ximage/ximagesink.c: (plugin_init):
25753         * sys/xvimage/xvimagesink.c: (plugin_init):
25754         * gst/tcp/gsttcpplugin.c: (plugin_init):
25755
25756         Link plugins against libraries:
25757         * ext/ogg/Makefile.am:
25758         * ext/theora/Makefile.am:
25759         * ext/vorbis/Makefile.am:
25760         * gst/audioconvert/Makefile.am:
25761
25762         Create proper libraries:
25763         * gst-libs/gst/riff/Makefile.am:
25764         * gst-libs/gst/audio/Makefile.am:
25765         * gst-libs/gst/video/Makefile.am:
25766
25767         Move resample library to audioscale plugin directory:
25768         * gst-libs/gst/resample/Makefile.am:
25769         * gst-libs/gst/resample/README:
25770         * gst-libs/gst/resample/dtof.c:
25771         * gst-libs/gst/resample/dtos.c:
25772         * gst-libs/gst/resample/functable.c:
25773         * gst-libs/gst/resample/private.h:
25774         * gst-libs/gst/resample/resample.c:
25775         * gst-libs/gst/resample/resample.h:
25776         * gst-libs/gst/resample/resample.vcproj:
25777         * gst-libs/gst/resample/test.c:
25778         * gst/audioscale/Makefile.am:
25779         * gst/audioscale/README:
25780         * gst/audioscale/dtof.c:
25781         * gst/audioscale/dtos.c:
25782         * gst/audioscale/functable.c:
25783         * gst/audioscale/private.h:
25784         * gst/audioscale/resample.c:
25785         * gst/audioscale/resample.h:
25786         * gst/audioscale/test.c:
25787
25788         Move tagedit library to gst-libs:
25789         * gst-libs/gst/tag/Makefile.am:
25790         * gst-libs/gst/tag/gstid3tag.c:
25791         * gst-libs/gst/tag/gsttagediting.c:
25792         * gst-libs/gst/tag/gsttageditingprivate.h:
25793         * gst-libs/gst/tag/gstvorbistag.c:
25794         * gst/tags/Makefile.am:
25795         * gst/tags/gstid3tag.c:
25796         * gst/tags/gstvorbistag.c:
25797
25798         Fix for core changes:
25799         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
25800         (gst_sinesrc_init), (gst_sinesrc_src_fixate), (gst_sinesrc_link),
25801         (gst_sinesrc_getrange):
25802
25803 2005-04-23  David Schleef  <ds@schleef.org>
25804
25805         * gst-libs/gst/Makefile.am: Remove idct.  It hasn't been used
25806         in gst-plugins in a long time, and properly belongs in liboil.
25807         * gst-libs/gst/idct/Makefile.am:
25808         * gst-libs/gst/idct/README:
25809         * gst-libs/gst/idct/dct.h:
25810         * gst-libs/gst/idct/doieee:
25811         * gst-libs/gst/idct/fastintidct.c:
25812         * gst-libs/gst/idct/floatidct.c:
25813         * gst-libs/gst/idct/idct.c:
25814         * gst-libs/gst/idct/idct.h:
25815         * gst-libs/gst/idct/idtc.vcproj:
25816         * gst-libs/gst/idct/ieeetest.c:
25817         * gst-libs/gst/idct/intidct.c:
25818
25819 2005-04-20  Wim Taymans  <wim@fluendo.com>
25820
25821         * docs/design-audiosinks.txt:
25822         * gst-libs/gst/audio/Makefile.am:
25823         * gst-libs/gst/audio/TODO:
25824         * gst-libs/gst/audio/gstaudiosink.c:
25825         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
25826         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
25827         (gst_audioringbuffer_dispose), (gst_audioringbuffer_finalize),
25828         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
25829         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
25830         (gst_audioringbuffer_delay), (gst_audiosink_base_init),
25831         (gst_audiosink_class_init), (gst_audiosink_init),
25832         (gst_audiosink_create_ringbuffer):
25833         * gst-libs/gst/audio/gstaudiosink.h:
25834         * gst-libs/gst/audio/gstbaseaudiosink.c:
25835         (gst_baseaudiosink_base_init), (gst_baseaudiosink_class_init),
25836         (gst_baseaudiosink_init), (gst_baseaudiosink_set_property),
25837         (gst_baseaudiosink_get_property), (gst_baseaudiosink_setcaps),
25838         (gst_baseaudiosink_get_times), (gst_baseaudiosink_event),
25839         (gst_baseaudiosink_preroll), (gst_baseaudiosink_render),
25840         (gst_baseaudiosink_create_ringbuffer),
25841         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
25842         * gst-libs/gst/audio/gstbaseaudiosink.h:
25843         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
25844         (gst_ringbuffer_class_init), (gst_ringbuffer_init),
25845         (gst_ringbuffer_dispose), (gst_ringbuffer_finalize),
25846         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
25847         (gst_ringbuffer_release), (gst_ringbuffer_play_unlocked),
25848         (gst_ringbuffer_play), (gst_ringbuffer_pause),
25849         (gst_ringbuffer_resume), (gst_ringbuffer_stop),
25850         (gst_ringbuffer_callback), (gst_ringbuffer_delay),
25851         (gst_ringbuffer_played_samples), (gst_ringbuffer_commit),
25852         (gst_ringbuffer_prepare_read), (gst_ringbuffer_clear):
25853         * gst-libs/gst/audio/gstringbuffer.h:
25854         An attempt at a set of audio base classes together with some
25855         design docs.
25856
25857 2005-04-20  Wim Taymans  <wim@fluendo.com>
25858
25859         * gst/audioconvert/Makefile.am:
25860         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
25861         (gst_audio_convert_caps_remove_format_info),
25862         (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
25863         (gst_audio_convert_channels):
25864         Link against audio libs.
25865         Fix audio convert plugin.
25866
25867 2005-04-20  Wim Taymans  <wim@fluendo.com>
25868
25869         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter),
25870         (gst_ogg_demux_sink_activate):
25871         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
25872         (theora_set_header_on_caps), (theora_enc_sink_event),
25873         (theora_enc_chain):
25874         Fix theora encoder.
25875
25876 2005-04-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
25877
25878         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter):
25879         * gst/playback/gstdecodebin.c: (find_compatibles):
25880           Work with staticpadtemplates in elementfactories.
25881
25882 2005-04-12  Wim Taymans  <wim@fluendo.com>
25883
25884         * gst/playback/README:
25885         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
25886         (compare_ranks), (print_feature), (gst_decode_bin_init),
25887         (dynamic_create), (dynamic_free), (find_compatibles),
25888         (mimetype_is_raw), (close_pad_link), (got_redirect),
25889         (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
25890         (new_pad), (no_more_pads), (unlinked), (close_link), (type_found),
25891         (gst_decode_bin_change_state):
25892         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
25893         (gst_play_base_bin_init), (group_destroy), (group_commit),
25894         (check_queue), (queue_overrun), (queue_threshold_reached),
25895         (queue_out_of_data), (gen_preroll_element), (unknown_type),
25896         (new_decoded_pad), (setup_subtitle), (gen_source_element),
25897         (got_redirect), (setup_source), (play_base_eos),
25898         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
25899         (gst_play_base_bin_remove_element):
25900         * gst/playback/gstplaybasebin.h:
25901         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
25902         (gst_play_bin_init), (gst_play_bin_dispose),
25903         (gst_play_bin_set_property), (gen_video_element),
25904         (gen_text_element), (gen_audio_element), (remove_sinks),
25905         (gst_play_bin_send_event):
25906         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
25907         (stream_info_change_state), (gst_stream_info_set_mute):
25908         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
25909         (gst_stream_selector_get_caps), (gst_stream_selector_setcaps),
25910         (gst_stream_selector_request_new_pad), (gst_stream_selector_event),
25911         (gst_stream_selector_chain):
25912         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
25913         (main):
25914         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
25915         (gst_xvimagesink_setcaps), (gst_xvimagesink_get_times),
25916         (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
25917         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_class_init):
25918         Raw and crude port of decodebin. 
25919         Make playbin compile.
25920
25921 2005-04-06  Wim Taymans  <wim@fluendo.com>
25922
25923         * ext/gnomevfs/Makefile.am:
25924         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
25925         (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
25926         (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
25927         (gst_gnomevfssrc_create), (gst_gnomevfssrc_is_seekable),
25928         (gst_gnomevfssrc_get_size), (gst_gnomevfssrc_start),
25929         (gst_gnomevfssrc_stop):
25930         * ext/ogg/Makefile.am:
25931         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_get_data),
25932         (gst_ogg_demux_find_chains), (gst_ogg_demux_sink_activate):
25933         * ext/theora/Makefile.am:
25934         * ext/theora/theoradec.c: (_inc_granulepos),
25935         (theora_dec_sink_event), (theora_dec_chain):
25936         * ext/vorbis/Makefile.am:
25937         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
25938         (vorbis_dec_sink_event), (vorbis_dec_chain):
25939         * gst-libs/gst/audio/Makefile.am:
25940         * sys/xvimage/Makefile.am:
25941         Make gnomevfssrc extend the source base class.
25942         Fix linking against libs in various plugins.
25943
25944 2005-04-06  Andy Wingo  <wingo@pobox.com>
25945
25946         * gst-libs/gst/video/Makefile.am (libgstvideo_la_LDFLAGS): Use
25947         GST_BASE_LIBS.
25948
25949         * configure.ac: Add check and AC_SUBST for libgstbase.
25950
25951 2005-03-31  Wim Taymans  <wim@fluendo.com>
25952
25953         * examples/seeking/Makefile.am:
25954         * examples/seeking/cdparanoia.c: (main):
25955         * examples/seeking/cdplayer.c: (update_scale), (stop_seek),
25956         (play_cb), (pause_cb), (stop_cb), (main):
25957         * examples/seeking/playbin.c:
25958         * examples/seeking/seek.c: (dynamic_link), (make_mod_pipeline),
25959         (make_dv_pipeline), (make_wav_pipeline), (make_flac_pipeline),
25960         (make_sid_pipeline), (make_vorbis_pipeline),
25961         (make_theora_pipeline), (make_vorbis_theora_pipeline),
25962         (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
25963         (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline),
25964         (make_playerbin_pipeline), (update_scale), (end_scrub), (do_seek),
25965         (seek_cb), (start_seek), (stop_seek), (play_cb), (pause_cb),
25966         (stop_cb), (main):
25967         * examples/seeking/spider_seek.c:
25968         * examples/seeking/vorbisfile.c:
25969         * ext/gnomevfs/Makefile.am:
25970         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
25971         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_base_init),
25972         (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
25973         (gst_gnomevfssrc_get_property), (gst_gnomevfssrc_get),
25974         (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file),
25975         (gst_gnomevfssrc_getrange), (gst_gnomevfssrc_loop),
25976         (gst_gnomevfssrc_activate), (gst_gnomevfssrc_change_state),
25977         (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
25978         * ext/ogg/README:
25979         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_get_type),
25980         (gst_ogg_pad_class_init), (gst_ogg_pad_init),
25981         (gst_ogg_pad_dispose), (gst_ogg_pad_finalize),
25982         (gst_ogg_pad_formats), (gst_ogg_pad_event_masks),
25983         (gst_ogg_pad_query_types), (gst_ogg_pad_getcaps),
25984         (gst_ogg_pad_src_convert), (gst_ogg_pad_src_query),
25985         (gst_ogg_pad_event), (gst_ogg_pad_reset),
25986         (gst_ogg_demux_factory_filter), (compare_ranks),
25987         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
25988         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
25989         (gst_ogg_chain_new), (gst_ogg_chain_free),
25990         (gst_ogg_chain_new_stream), (gst_ogg_chain_get_stream),
25991         (gst_ogg_chain_has_stream), (gst_ogg_demux_base_init),
25992         (gst_ogg_demux_class_init), (gst_ogg_demux_init),
25993         (gst_ogg_demux_finalize), (gst_ogg_demux_handle_event),
25994         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_seek),
25995         (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
25996         (gst_ogg_demux_get_prev_page),
25997         (gst_ogg_demux_deactivate_current_chain),
25998         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
25999         (gst_ogg_demux_bisect_forward_serialno),
26000         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
26001         (gst_ogg_demux_find_pad), (gst_ogg_demux_find_chain),
26002         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain_unlocked),
26003         (gst_ogg_demux_chain), (gst_ogg_demux_send_eos),
26004         (gst_ogg_demux_loop), (gst_ogg_demux_sink_activate),
26005         (gst_ogg_demux_change_state), (gst_ogg_print):
26006         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
26007         (gst_ogg_mux_init), (gst_ogg_mux_sinkconnect),
26008         (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
26009         (gst_ogg_mux_push_page), (gst_ogg_mux_send_headers),
26010         (gst_ogg_mux_loop):
26011         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
26012         * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
26013         (theora_dec_src_convert), (theora_dec_sink_convert),
26014         (theora_dec_src_query), (theora_dec_src_event),
26015         (theora_dec_sink_event), (theora_dec_chain),
26016         (theora_dec_change_state):
26017         * ext/theora/theoraenc.c: (gst_theora_enc_init),
26018         (theora_enc_sink_setcaps), (theora_buffer_from_packet),
26019         (theora_push_buffer), (theora_enc_sink_event), (theora_enc_chain),
26020         (theora_enc_change_state):
26021         * ext/vorbis/Makefile.am:
26022         * ext/vorbis/oggvorbisenc.c:
26023         * ext/vorbis/oggvorbisenc.h:
26024         * ext/vorbis/vorbis.c: (plugin_init):
26025         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
26026         (vorbis_dec_src_query), (vorbis_dec_src_event),
26027         (vorbis_dec_sink_event), (vorbis_dec_chain),
26028         (vorbis_dec_change_state):
26029         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
26030         (gst_vorbisenc_sink_setcaps), (gst_vorbisenc_init),
26031         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
26032         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
26033         (gst_vorbisenc_change_state):
26034         * ext/vorbis/vorbisenc.h:
26035         * ext/vorbis/vorbisparse.c: (vorbis_parse_chain):
26036         * gst-libs/gst/audio/audioclock.c:
26037         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
26038         (gst_audiofilter_init), (gst_audiofilter_chain):
26039         * gst-libs/gst/audio/testchannels.c: (main):
26040         * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
26041         * gst-libs/gst/media-info/media-info-priv.c: (gmip_reset),
26042         (gmip_find_type), (gmip_find_stream), (gmip_find_track_metadata),
26043         (gmip_find_track_streaminfo), (gmip_find_track_format):
26044         * gst-libs/gst/media-info/media-info.c:
26045         (gst_media_info_read_idler):
26046         * gst-libs/gst/play/play.c: (gst_play_get_sink_element),
26047         (gst_play_get_all_by_interface):
26048         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
26049         (gst_riff_parse_chunk), (gst_riff_parse_file_header),
26050         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
26051         (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
26052         (gst_riff_parse_info):
26053         * gst-libs/gst/riff/riff-read.h:
26054         * gst-libs/gst/riff/riff.c: (plugin_init):
26055         * gst-libs/gst/video/Makefile.am:
26056         * gst-libs/gst/video/gstvideosink.c: (gst_videosink_init),
26057         (gst_videosink_class_init), (gst_videosink_get_type):
26058         * gst-libs/gst/video/videosink.h:
26059         * gst/audioconvert/bufferframesconvert.c:
26060         (buffer_frames_convert_init), (buffer_frames_convert_fixate),
26061         (buffer_frames_convert_setcaps), (buffer_frames_convert_chain):
26062         * gst/audioconvert/channelmixtest.c: (main):
26063         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
26064         (gst_audio_convert_chain),
26065         (gst_audio_convert_caps_remove_format_info),
26066         (gst_audio_convert_getcaps), (gst_audio_convert_parse_caps),
26067         (gst_audio_convert_setcaps), (_fixate_caps_to_int),
26068         (gst_audio_convert_fixate), (gst_audio_convert_get_buffer),
26069         (gst_audio_convert_buffer_to_default_format),
26070         (gst_audio_convert_buffer_from_default_format),
26071         (gst_audio_convert_channels):
26072         * gst/audioconvert/gstchannelmix.h:
26073         * gst/ffmpegcolorspace/avcodec.h:
26074         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26075         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
26076         (gst_ffmpegcsp_configure_context), (gst_ffmpegcsp_setcaps),
26077         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain):
26078         * gst/tags/gstid3tag.c: (gst_tag_extract_id3v1_string):
26079         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
26080         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
26081         (mp3_type_find), (mpeg2_sys_type_find), (mpeg1_sys_type_find),
26082         (mpeg_video_type_find), (mpeg_video_stream_type_find),
26083         (dv_type_find):
26084         * gst/videotestsrc/gstvideotestsrc.c:
26085         (gst_videotestsrc_class_init), (gst_videotestsrc_src_negotiate),
26086         (gst_videotestsrc_src_link), (gst_videotestsrc_parse_caps),
26087         (gst_videotestsrc_src_accept_caps), (gst_videotestsrc_setcaps),
26088         (gst_videotestsrc_src_unlink), (gst_videotestsrc_activate),
26089         (gst_videotestsrc_change_state), (gst_videotestsrc_getcaps),
26090         (gst_videotestsrc_init), (gst_videotestsrc_src_query),
26091         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_loop):
26092         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
26093         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_fixate),
26094         (gst_xvimagesink_getcaps), (gst_xvimagesink_setcaps),
26095         (gst_xvimagesink_change_state), (gst_xvimagesink_get_times),
26096         (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
26097         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
26098         (gst_xvimagesink_navigation_send_event),
26099         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_expose),
26100         (gst_xvimagesink_set_property), (gst_xvimagesink_finalize),
26101         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
26102         * sys/xvimage/xvimagesink.h:
26103         Plugin port to 0.9, ogg/theora playback should work in the seek
26104         example now.
26105         Removed old examples.
26106         Removed old oggvorbisenc, renamed rawvorbisenc to vorbisenc as
26107         explained in 0.9 TODO doc.
26108
26109
26110 2005-02-23  Thomas Vander Stichele  <thomas at apestaart dot org>
26111
26112         * autogen.sh:
26113         * configure.ac:
26114         * ext/Makefile.am:
26115         * gst/Makefile.am:
26116         * po/POTFILES.in:
26117         * po/af.po:
26118         * po/az.po:
26119         * po/cs.po:
26120         * po/en_GB.po:
26121         * po/hu.po:
26122         * po/it.po:
26123         * po/nb.po:
26124         * po/nl.po:
26125         * po/or.po:
26126         * po/sq.po:
26127         * po/sr.po:
26128         * po/sv.po:
26129         * po/uk.po:
26130         * po/vi.po:
26131         * sys/Makefile.am:
26132         * testsuite/Makefile.am:
26133           remove a whole bunch of plugins.  This module now contains a set
26134           of free reference plugins/elements as agreed.
26135
26136 2005-02-22  Thomas Vander Stichele  <thomas at apestaart dot org>
26137
26138         * configure.ac:
26139           hunting season on 0.9 is now OPEN
26140
26141 2005-02-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26142
26143         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
26144           Kick the hell out of gcc for not warning me about a symbol conflict.
26145
26146 2005-02-22  Luca Ognibene  <luogni@tin.it>
26147
26148         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
26149
26150         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link):
26151           Don't leak caps string (fixes #168134)
26152
26153         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init),
26154         (gst_jpegenc_init), (gst_jpegenc_finalize),
26155         (gst_jpegenc_change_state):
26156           Don't leak line buffers and context struct (fixes #168133).
26157
26158 2005-02-21  Tim-Philipp Müller  <tim at centricular dot net>
26159
26160         * configure.ac:
26161         * ext/dirac/gstdiracdec.cc:
26162         (gst_diracdec_chain):
26163           Since dirac 0.5.0 the framerate in dirac is expressed as a
26164           rational number. Fix build and up requirement to 0.5.0, and
26165           also pass parameters to gst_diracdec_link in the right order
26166           (fixes #167959).
26167
26168 2005-02-21  Maciej Katafiasz  <mathrick@freedesktop.org>
26169
26170         * ext/faad/gstfaad.c: (gst_faad_sinkconnect), (gst_faad_chain):
26171         * ext/faad/gstfaad.h:
26172         TEH LONGEST DEBUGGING SESSION EVAR is over. Fix interaction with 
26173         certain invalid muxed streams, where some packets will contain 
26174         junk after decoder data. Partially fixes #149158.
26175
26176 2005-02-21  Jan Schmidt <thaytan@mad.scientist.com>
26177         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_chain):
26178           Make sure we only write to writable buffers
26179
26180 2005-02-20  Tim-Philipp Müller  <tim at centricular dot net>
26181
26182         * gst-libs/gst/riff/riff-media.c:
26183         (gst_riff_create_audio_caps_with_data):
26184           Do actually fix invalid RIFF fmt header values for alaw
26185           and mulaw audio instead of just saying so.
26186
26187         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
26188           Give gst_riff_create_audio_caps_with_data() a chance to
26189           fix up broken format header fields before extracting any
26190           parameters from the header. (fixes #167633)
26191
26192 2005-02-19  Martin Holters  <martin.holters@gmx.de>
26193
26194         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
26195
26196         * gst/audioconvert/bufferframesconvert.c:
26197         (buffer_frames_convert_link):
26198           Don't leak othercaps. (fixes #167878)
26199
26200 2005-02-19  Arwed v. Merkatz  <v.merkatz@gmx.net>
26201
26202         * configure.ac:
26203         * ext/libvisual/visual.c: (gst_visual_srclink),
26204         (gst_visual_change_state):
26205           Support libvisual 0.2.0.
26206
26207 2005-02-18  Tim-Philipp Müller  <tim at centricular dot net>
26208
26209         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_chain):
26210         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_resync), (gst_jpegenc_chain):
26211           Use same rowstrides for I420 as used everywhere else.
26212
26213 2005-02-17  Tim-Philipp Müller  <tim at centricular dot net>
26214
26215         * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
26216           Declare variables at beginning of block and make gcc-2.95 happy
26217           (fixes # 167482, patch by Gergely Nagy).
26218           
26219         * gst/tcp/gsttcpclientsrc.c:
26220         * gst/tcp/gsttcpclientsrc.h:
26221           Move some includes into the header, so that struct sockaddr_in is
26222           defined when it should be defined on FreeBSD as well (fixes
26223           #167483).
26224           
26225         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
26226           Don't pass uninitialised values to setsockopt() here either.
26227
26228 2005-02-17  Luca Ognibene  <luogni at tin dot it>
26229
26230         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
26231
26232         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send):
26233           Don't pass uninitialised values to setsockopt(). (fixes #167704)
26234
26235 2005-02-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26236
26237         * gst/playback/gstplaybin.c: (add_sink):
26238           Invert bin_add/link order to workaround deadlock in opt.
26239
26240 2005-02-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26241
26242         * gst/modplug/gstmodplug.cc:
26243           Add missing break causing position queries to fail.
26244
26245 2005-02-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26246
26247         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_populate):
26248           Granpos can apparently be -1, which screws up calculations...
26249
26250 2005-02-16  Jan Schmidt  <thaytan@mad.scientist.com>
26251
26252         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
26253         (gst_ximagesink_send_pending_navigation),
26254         (gst_ximagesink_navigation_send_event), (gst_ximagesink_finalize),
26255         (gst_ximagesink_init):
26256         * sys/ximage/ximagesink.h:
26257         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
26258         (gst_xvimagesink_send_pending_navigation),
26259         (gst_xvimagesink_navigation_send_event),
26260         (gst_xvimagesink_finalize), (gst_xvimagesink_init):
26261         * sys/xvimage/xvimagesink.h:
26262           Use a mutex protected list to marshal navigation
26263           events into the stream thread from whichever thread
26264           sends them.
26265
26266 2005-02-15  Tim-Philipp Müller  <tim at centricular dot net>
26267
26268         * gst/speed/demo-mp3.c: (time_tick_cb), (main):
26269           Display current position and track length; misc. clean-ups.
26270           
26271         * gst/speed/gstspeed.c: (speed_get_query_types), (speed_src_query),
26272         (speed_init), (speed_chain):
26273           Add query function, so that the stream length and current position
26274           get adjusted when queried (note that current position queries may
26275           still be wrong if the audio sink returns values based on buffer
26276           timestamps instead of passing on the query).
26277
26278 2005-02-13  Benjamin Otte  <otte@gnome.org>
26279
26280         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
26281         (gst_audio_convert_channels):
26282           create channel conversion matrix when linking
26283         * gst/audioconvert/.cvsignore:
26284         * gst/audioconvert/Makefile.am:
26285         * gst/audioconvert/channelmixtest.c: (main):
26286           add (ugly) test that ensures stereo <=> mono conversion works
26287           correctly
26288
26289 2005-02-13  Benjamin Otte  <otte@gnome.org>
26290
26291         * gst/audioconvert/gstchannelmix.h:
26292           include missing header file
26293         * gst/audioconvert/gstchannelmix.c:
26294         (gst_audio_convert_fill_compatible):
26295           use same sign for both channels when converting to/from compatible
26296           channel. Previously used different signs made the signals cancel
26297           each other out and appear like silence. (fixes #167269)
26298
26299 2005-02-12  Tim-Philipp Müller  <tim at centricular dot net>
26300
26301         * gst/ffmpegcolorspace/avcodec.h:
26302         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
26303         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
26304         (gst_ffmpegcsp_avpicture_fill):
26305         * gst/ffmpegcolorspace/imgconvert.c:
26306           Convert to and from YV12 (fixes #156379).
26307
26308 2005-02-12  Julien MOUTTE  <julien@moutte.net>
26309
26310         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
26311         (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
26312         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
26313         (gst_ximagesink_expose), (gst_ximagesink_set_property),
26314         (gst_ximagesink_finalize), (gst_ximagesink_init): Protect interface
26315         methods from chain and negotiation and vice versa (Fixes #166142).
26316         * sys/ximage/ximagesink.h: Add stream_lock.
26317         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
26318         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
26319         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
26320         (gst_xvimagesink_expose): Check for xcontext before trying to link.
26321
26322 2005-02-12  Tim-Philipp Müller  <tim at centricular dot net>
26323
26324         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_open):
26325           Don't send "Hey! You gave me a NULL pointer you naughty person" as
26326           error message when we can't open the DVD device (when dvdnav_open()
26327           fails, src->dvdnav is NULL, so dvdnav_err_to_string() will return
26328           the above). Send something more useful instead (fixes #167117).
26329
26330 2005-02-11  Julien MOUTTE  <julien@moutte.net>
26331
26332         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
26333         (gst_xvimagesink_sink_link), (gst_xvimagesink_change_state),
26334         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
26335         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
26336         (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
26337         (gst_xvimagesink_finalize), (gst_xvimagesink_init): Protect interface
26338         methods from chain and negotiation and vice versa (Fixes #166142).
26339         Fix a possible bug of images in the buffer pool being discarded because
26340         we are looking at the wrong geometry.
26341         * sys/xvimage/xvimagesink.h: Add stream_lock.
26342
26343 2005-02-11  David Schleef  <ds@schleef.org>
26344
26345         * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer): Change uint to
26346         unsigned int. (fixes #167128)
26347
26348 2005-02-11  David Schleef  <ds@schleef.org>
26349
26350         * gst/librfb/Makefile.am: Testing stuff before committing is
26351           for wimps... and people with fast machines.  Fix stupid
26352           mistake.
26353
26354 2005-02-11  David Schleef  <ds@schleef.org>
26355
26356         * configure.ac: Pull in librfb from my CVS tree, because it is
26357           too small and annoying to be separate.  Move rfbsrc plugin
26358           to gst/.
26359         * ext/Makefile.am:
26360         * ext/librfb/Makefile.am:
26361         * ext/librfb/gstrfbsrc.c:
26362         * gst/librfb/Makefile.am:
26363         * gst/librfb/gstrfbsrc.c:
26364         * gst/librfb/rfb.c:
26365         * gst/librfb/rfb.h:
26366         * gst/librfb/rfbbuffer.c:
26367         * gst/librfb/rfbbuffer.h:
26368         * gst/librfb/rfbbytestream.c:
26369         * gst/librfb/rfbbytestream.h:
26370         * gst/librfb/rfbcontext.h:
26371         * gst/librfb/rfbdecoder.c:
26372         * gst/librfb/rfbdecoder.h:
26373         * gst/librfb/rfbutil.h:
26374
26375 2005-02-10  Tim-Philipp Müller  <tim at centricular dot net>
26376
26377         * gst/speed/Makefile.am:
26378         * gst/speed/demo-mp3.c: (main):
26379         * gst/speed/filter.func:
26380         * gst/speed/gstspeed.c: (speed_link), (speed_parse_caps),
26381         (speed_class_init), (speed_init), (speed_chain_int16),
26382         (speed_chain_float32), (speed_chain), (speed_set_property),
26383         (speed_get_property), (speed_change_state):
26384         * gst/speed/gstspeed.h:
26385           Fix speed element and make it chain-based (fixes #156467),
26386           and make it handle more than one channel.
26387
26388 2005-02-10  Jan Schmidt  <thaytan@mad.scientist.com>
26389
26390         * ext/dts/gstdtsdec.c: (gst_dtsdec_init), (gst_dtsdec_channels),
26391         (gst_dtsdec_handle_event), (gst_dtsdec_handle_frame),
26392         (gst_dtsdec_chain), (gst_dtsdec_change_state):
26393         * ext/dts/gstdtsdec.h:
26394           Don't clobber the stack constructing the channels array.
26395           Make the element chain-based. DTS tracks can now be played.
26396           
26397 2005-02-09  Tim-Philipp Müller  <tim at centricular dot net>
26398
26399         * gst-libs/gst/audio/multichannel.h:
26400         * gst-libs/gst/gconf/gconf.h:
26401         * gst-libs/gst/idct/idct.h:
26402         * gst-libs/gst/media-info/media-info-priv.h:
26403         * gst-libs/gst/play/play.h:
26404         * gst-libs/gst/resample/private.h:
26405         * gst-libs/gst/resample/resample.h:
26406         * gst-libs/gst/riff/riff-ids.h:
26407         * gst-libs/gst/video/video.h:
26408         * gst-libs/gst/video/videosink.h:
26409           Add G_BEGIN_DECLS and G_END_DECLS around headers where
26410           missing, so that they work when included from C++ code.
26411
26412 2005-02-09  David Schleef  <ds@schleef.org>
26413
26414         * testsuite/gst-lint: Check for non-statically scoped
26415           parent_class variables.  This won't be a problem once
26416           plugins are loaded with RTLD_LOCAL.
26417
26418 2005-02-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26419
26420         * ext/mplex/gstmplexibitstream.cc:
26421           gcc madness.
26422
26423 2005-02-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26424
26425         * ext/ogg/gstogmparse.c:
26426         * gst/debug/gstnavigationtest.c:
26427           Die, thou faulty symbol pollutors (non-static parent_class).
26428
26429 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26430
26431         * ext/mplex/gstmplexibitstream.cc:
26432           Fix event handling (#165525).
26433
26434 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26435
26436         * ext/mikmod/gstmikmod.c:
26437         * gst/modplug/gstmodplug.cc:
26438           Add missing endianness to template (fixes #165509).
26439
26440 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26441
26442         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_data):
26443           Fix wrong order of reading of optional bytes (#165290).
26444
26445 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26446
26447         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
26448           Implement FILLER event awareness.
26449
26450 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26451
26452         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_convert):
26453           Fix track calculations (#166208).
26454
26455 2005-02-08  Gergely Nagy  <algernon@bonehunter.rulez.org>
26456
26457         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26458
26459         * ext/libpng/gstpngdec.c: (gst_pngdec_init), (gst_pngdec_chain):
26460         * ext/libpng/gstpngenc.c:
26461           Fix byte-order, use proper fixed caps. Fixes #164197.
26462
26463 2005-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
26464
26465         * configure.ac:
26466           Add dvdlpcmdec 
26467
26468         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_reset),
26469         (free_all_buffers), (gst_mpeg2dec_alloc_buffer):
26470           Don't push buffers if the src pad isn't negotiated yet.
26471           
26472         * gst/audioconvert/gstaudioconvert.c:
26473         (gst_audio_convert_buffer_to_default_format),
26474         (gst_audio_convert_buffer_from_default_format):
26475           Add support for 24-bit width.
26476
26477         * gst/dvdlpcmdec/.cvsignore:
26478         * gst/dvdlpcmdec/Makefile.am:
26479         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_get_type),
26480         (gst_dvdlpcmdec_base_init), (gst_dvdlpcmdec_class_init),
26481         (gst_dvdlpcm_reset), (gst_dvdlpcmdec_init), (gst_dvdlpcmdec_link),
26482         (gst_dvdlpcmdec_chain), (gst_dvdlpcmdec_change_state),
26483         (plugin_init):
26484         * gst/dvdlpcmdec/gstdvdlpcmdec.h:
26485           New decoder for rearranging DVD LPCM into our audio/x-raw-int
26486           format. Needs support for the channels maps if someone can find 
26487           a DVD LPCM track with > 2 channels.
26488
26489         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_handle_dvd_event),
26490         (gst_dvd_demux_send_discont), (gst_dvd_demux_handle_discont),
26491         (gst_dvd_demux_get_audio_stream), (gst_dvd_demux_process_private):
26492         * gst/mpegstream/gstdvddemux.h:
26493         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
26494         (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_init_stream),
26495         (gst_mpeg_demux_send_subbuffer), (gst_mpeg_demux_handle_src_query):
26496         * gst/mpegstream/gstmpegdemux.h:
26497         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_reset),
26498         (gst_mpeg_parse_parse_packhead), (gst_mpeg_parse_loop),
26499         (gst_mpeg_parse_get_rate), (gst_mpeg_parse_convert_src),
26500         (gst_mpeg_parse_handle_src_query),
26501         (gst_mpeg_parse_handle_src_event):
26502           Use audio/x-dvd-lpcm for LPCM output.
26503           Add DTS output.
26504
26505 2005-02-08  Gergely Nagy  <algernon@bonehunter.rulez.org>
26506
26507         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26508
26509         * gst/alpha/gstalphacolor.c: (gst_alpha_color_sink_link),
26510         (transform_rgb), (transform_bgr), (gst_alpha_color_chain):
26511           Add BGRA handling (#165736).
26512
26513 2005-02-08  Francis Labonte  <francis_labonte@hotmail.com>
26514
26515         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26516
26517         * gst/law/alaw-decode.c: (alawdec_link):
26518         * gst/law/alaw-encode.c: (alawenc_link):
26519         * gst/law/mulaw-decode.c: (mulawdec_link):
26520         * gst/law/mulaw-encode.c: (mulawenc_link):
26521           Fix caps memleaks (#166600).
26522
26523 2005-02-08  Tim-Philipp Müller  <tim at centricular dot net>
26524
26525         * ext/tarkin/mem.h:
26526         * ext/tarkin/wavelet.h:
26527         * ext/tarkin/yuv.h:
26528         * gst/ffmpegcolorspace/avcodec.h:
26529           Include "_stdint.h" instead of <stdint.h>. Fixes build on
26530           systems that don't have stdint.h, like Solaris9 (fixes #166631).
26531
26532 2005-02-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26533
26534         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state):
26535         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_clear),
26536         (gst_xvimagesink_change_state):
26537           Clear window on PAUSED->READY instead of READY->PAUSED. Stop
26538           Xv video (and thereby regenerate Xv colourkey) in clear() so
26539           that PLAY -> READY -> PLAY works (fixes #162504).
26540
26541 2005-02-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26542
26543         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_getcaps):
26544           Switch to list instead of range, since MJPEG-devices really just
26545           support decimations, not any size.
26546
26547 2005-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
26548         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_open_decoder),
26549         (gst_mpeg2dec_reset), (free_all_buffers),
26550         (gst_mpeg2dec_alloc_buffer), (handle_sequence):
26551         * ext/mpeg2dec/gstmpeg2dec.h:
26552           The libmpeg2 user-allocated buffer management is awkward, 
26553           to say the least. Hopefully this fixes things.
26554
26555 2005-02-04  Andy Wingo  <wingo@pobox.com>
26556
26557         * gst/audioconvert/bufferframesconvert.c
26558         (buffer_frames_convert_fixate): New function, fixates to 256
26559         frames per buffer by default. (Much better than 1.)
26560         (buffer_frames_convert_init): Set the fixate function for both src
26561         and sink pad.
26562         (buffer_frames_convert_link): After success setting nonfixed caps,
26563         get the negotiated caps so we can know how many buffer-frames it
26564         will be. No idea how this worked at all before.
26565
26566 2005-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
26567
26568         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
26569         (gst_mpeg2dec_close_decoder), (put_buffer), (check_buffer),
26570         (free_buffer), (free_all_buffers), (gst_mpeg2dec_alloc_buffer),
26571         (handle_sequence), (handle_picture):
26572         * ext/mpeg2dec/gstmpeg2dec.h:
26573           Rearrange buffer tracking and refcounting and refactor
26574           a little for readability. 
26575
26576 2005-02-04  Jan Schmidt  <thaytan@mad.scientist.com>
26577         * sys/v4l/gstv4l.c: (plugin_init):
26578         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_get_type),
26579         (gst_v4ljpegsrc_base_init), (gst_v4ljpegsrc_class_init),
26580         (gst_v4ljpegsrc_init), (gst_v4ljpegsrc_src_link),
26581         (gst_v4ljpegsrc_getcaps), (gst_v4ljpegsrc_get):
26582         * sys/v4l/gstv4ljpegsrc.h:
26583         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_open), (gst_v4lsrc_src_link):
26584         * sys/v4l/v4l_calls.h:
26585         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_palette_name),
26586         (gst_v4lsrc_get_fps):
26587         * sys/v4l/v4lsrc_calls.h:
26588           Add new v4ljpegsrc for handling the ov51x hacky "I'll give
26589           you jpeg inside rgb frames" driver.
26590           Don't error in the v4lsrc link function, just return 
26591           REFUSED.
26592
26593 2005-02-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26594
26595         * sys/qcam/gstqcamsrc.c: (gst_qcamsrc_change_state),
26596         (gst_qcamsrc_open):
26597           Use GST_ELEMENT_ERROR, not g_warning, if open failed.
26598
26599 2005-02-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26600
26601         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
26602           Change caps on MJPEG-B so it doesn't interfere with MJPEG/JPEG.
26603
26604 2005-02-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26605
26606         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_change_state):
26607           Reset negotiated state on PAUSED->READY.
26608
26609 2005-02-02  David Schleef  <ds@schleef.org>
26610
26611         * configure.ac: Put DEFAULT_AUDIOSINK in config.h and use
26612         whereever possible.  (Fixes #165997)
26613         * examples/capsfilter/capsfilter1.c: (main):
26614         * examples/dynparams/filter.c: (create_ui):
26615         * examples/seeking/cdparanoia.c: (get_track_info), (main):
26616         * examples/seeking/chained.c: (main):
26617         * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
26618         (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
26619         (make_vorbis_pipeline), (make_mp3_pipeline), (make_avi_pipeline),
26620         (make_mpeg_pipeline), (make_mpegnt_pipeline):
26621         * examples/seeking/spider_seek.c: (make_spider_pipeline):
26622         * examples/switch/switcher.c: (main):
26623         * ext/dv/demo-play.c: (main):
26624         * ext/faad/gstfaad.c: (gst_faad_change_state):
26625         * ext/mad/gstmad.c: (gst_mad_chain):
26626         * ext/smoothwave/demo-osssrc.c: (main):
26627         * gst-libs/gst/gconf/gconf.c: (gst_gconf_set_string),
26628         (gst_gconf_render_bin_from_description),
26629         (gst_gconf_get_default_audio_sink),
26630         (gst_gconf_get_default_video_sink),
26631         (gst_gconf_get_default_audio_src),
26632         (gst_gconf_get_default_video_src),
26633         (gst_gconf_get_default_visualization_element):
26634         * gst/level/demo.c: (main):
26635         * gst/level/plot.c: (main):
26636         * gst/playback/gstplaybin.c: (gen_video_element),
26637         (gen_audio_element):
26638         * gst/playback/test.c: (gen_video_element), (gen_audio_element):
26639         * gst/playondemand/demo-mp3.c: (setup_pipeline):
26640         * gst/sine/demo-dparams.c: (main):
26641         * gst/spectrum/demo-osssrc.c: (main):
26642         * gst/speed/demo-mp3.c: (main):
26643         * gst/volume/demo.c: (main):
26644         * testsuite/embed/embed.c: (main):
26645
26646 2005-02-02  Jan Schmidt  <thaytan@mad.scientist.com>
26647
26648         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
26649         (gst_tcpclientsink_finalize):
26650         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
26651         (gst_tcpclientsrc_finalize):
26652         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
26653         (gst_tcpserversink_init), (gst_tcpserversink_finalize):
26654         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
26655         (gst_tcpserversrc_init), (gst_tcpserversrc_finalize):
26656           Don't leak the hostname when shutting down.
26657           In tcpserversrc, take a copy of the default hostname.
26658
26659 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26660
26661         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_iso_receive):
26662           Set caps to systemstream=TRUE.
26663
26664 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26665
26666         * testsuite/Makefile.am:
26667           Fix more OSX buildbots.
26668
26669 2005-02-02  Jan Schmidt  <thaytan@mad.scientist.com>
26670
26671         * ext/mpeg2dec/gstmpeg2dec.c:
26672           Don't send things to NULL PAD_PEERs
26673
26674         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_chain):
26675           Copy-on-write the incoming buffer.
26676
26677         * gst/mpegstream/gstdvddemux.h:
26678         * gst/mpegstream/gstmpegclock.h:
26679         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
26680         (normal_seek), (gst_mpeg_demux_handle_src_event):
26681         * gst/mpegstream/gstmpegdemux.h:
26682         * gst/mpegstream/gstmpegpacketize.h:
26683         * gst/mpegstream/gstmpegparse.c:
26684         (gst_mpeg_parse_update_streaminfo), (gst_mpeg_parse_reset),
26685         (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead),
26686         (gst_mpeg_parse_loop), (gst_mpeg_parse_get_rate),
26687         (gst_mpeg_parse_convert_src), (gst_mpeg_parse_handle_src_query),
26688         (gst_mpeg_parse_handle_src_event), (gst_mpeg_parse_change_state):
26689         * gst/mpegstream/gstmpegparse.h:
26690         * gst/mpegstream/gstrfc2250enc.h:
26691           Various changes to the way time is computed that make seeking and
26692           total time estimation much better here.
26693           Use G_BEGIN/END_DECLS instead of __cplusplus
26694
26695         * gst/videocrop/gstvideocrop.c: (gst_video_crop_chain):
26696           Use gst_buffer_stamp instead of only copying the TIMESTAMP
26697
26698 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26699
26700         * gst/subparse/gstsubparse.c:
26701           Fix OSX buildbot.
26702
26703 2005-01-31  Tim-Philipp Müller  <tim at centricular dot net>
26704
26705         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
26706         (theora_enc_chain), (theora_enc_change_state):
26707         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
26708         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_chain),
26709         (gst_vorbisenc_change_state):
26710         * ext/vorbis/vorbisenc.h:
26711           Set granulepos and timestamp correctly for streams not
26712           starting at 0, taking into account the initial delay.
26713
26714 2005-01-31  Tim-Philipp Müller  <tim at centricular dot net>
26715
26716         * gst/mpegstream/gstdvddemux.c:
26717           Add audio/x-dts to audio pad template caps
26718
26719 2005-01-30  David Schleef  <ds@schleef.org>
26720
26721         * ext/polyp/polypsink.c: (gst_polypsink_base_init),
26722         (create_context), (gst_polypsink_link): Fix silly endianness
26723         bug.  Add some debugging.  Remove float from caps; it doesn't
26724         work.  Attempt to get remote audio working.
26725
26726 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26727
26728         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
26729           Add 3IV2 fourcc.
26730
26731 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26732
26733         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream), (swap_line),
26734         (gst_avi_demux_invert), (gst_avi_demux_process_next_entry),
26735         (gst_avi_demux_stream_data):
26736         * gst/avi/gstavidemux.h:
26737           Invert DIB images. Fixes #132341.
26738
26739 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26740
26741         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26742         (gst_ffmpegcsp_chain):
26743           D'oh, reference the palette data, not the palette structure.
26744           Fixes color distortion in #132341.
26745
26746 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26747
26748         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
26749           PAR can be non-fixed when not provided as argument (#162626).
26750
26751 2005-01-29  David Moore  <dcm@acm.org>
26752
26753         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26754
26755         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
26756         (gst_qtdemux_loop_header):
26757           Re-apply patch from #142272 that allows non-seekable sources,
26758           re-proposed by Daniel Drake <dsd@gentoo.org>.
26759
26760 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26761
26762         * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_init):
26763           Use the src template for creating the src pad (#162330).
26764
26765 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26766
26767         * configure.ac:
26768         * ext/musepack/Makefile.am:
26769         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_class_init),
26770         (gst_musepackdec_init), (gst_musepackdec_dispose),
26771         (gst_musepackdec_src_query), (gst_musepackdec_src_convert),
26772         (gst_musepack_stream_init), (gst_musepackdec_loop),
26773         (gst_musepackdec_change_state):
26774         * ext/musepack/gstmusepackdec.cpp:
26775         * ext/musepack/gstmusepackdec.h:
26776         * ext/musepack/gstmusepackreader.c: (gst_musepack_reader_peek),
26777         (gst_musepack_reader_read), (gst_musepack_reader_seek),
26778         (gst_musepack_reader_tell), (gst_musepack_reader_get_size),
26779         (gst_musepack_reader_canseek), (gst_musepack_init_reader):
26780         * ext/musepack/gstmusepackreader.cpp:
26781         * ext/musepack/gstmusepackreader.h:
26782           Update to 1.1 API (#165446).
26783
26784 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26785
26786         * ext/Makefile.am:
26787           Unbreak buildbot.
26788
26789 2005-01-28  Andy Wingo  <wingo@pobox.com>
26790
26791         * ext/dv/gstdvdec.c: Change the pixel aspect ratio of dvdec output
26792         to reflect a different dubious internet source. Add a reference
26793         and some commentary.
26794
26795 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26796
26797         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
26798         (gst_stream_selector_get_caps), (gst_stream_selector_chain):
26799         * gst/playback/gststreamselector.h:
26800           Be more selective when we're redoing caps negotiation from
26801           within the chain function on a stream change.
26802
26803 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26804
26805         * configure.ac:
26806         * ext/Makefile.am:
26807         * ext/amrnb/Makefile.am:
26808         * ext/amrnb/amrnb.c: (plugin_init):
26809         * ext/amrnb/amrnbdec.c: (gst_amrnbdec_get_type),
26810         (gst_amrnbdec_base_init), (gst_amrnbdec_class_init),
26811         (gst_amrnbdec_init), (gst_amrnbdec_link), (gst_amrnbdec_chain),
26812         (gst_amrnbdec_state_change):
26813         * ext/amrnb/amrnbdec.h:
26814         * ext/amrnb/amrnbparse.c: (gst_amrnbparse_get_type),
26815         (gst_amrnbparse_base_init), (gst_amrnbparse_class_init),
26816         (gst_amrnbparse_init), (gst_amrnbparse_formats),
26817         (gst_amrnbparse_querytypes), (gst_amrnbparse_query),
26818         (gst_amrnbparse_handle_event), (gst_amrnbparse_reserve),
26819         (gst_amrnbparse_loop), (gst_amrnbparse_state_change):
26820         * ext/amrnb/amrnbparse.h:
26821           Add support for AMR-NB (mobile phone audio format; #155163, #163286).
26822         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
26823           Add AMR-NB/-WB raw formats.
26824         * ext/alsa/gstalsa.c: (gst_alsa_link):
26825           Keep valid time when changing format.
26826         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
26827         (qtdemux_parse_trak):
26828           Add some more format-specific options (#140141, #143555, #155163).
26829
26830 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26831
26832         * gst/matroska/matroska-demux.c:
26833         (gst_matroska_demux_parse_blockgroup):
26834           Fix logic error in timing of subtitle stream synchronization.
26835         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
26836           Add skip-chunk, which is found in kodak-camera streams.
26837
26838 2005-01-27  Thomas Vander Stichele  <thomas at apestaart dot org>
26839
26840         * po/LINGUAS:
26841         * po/vi.po:
26842           Adding Vietnamese translation (submitted by Clytie Siddall)
26843
26844 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26845
26846         * gst/playback/gstdecodebin.c: (try_to_link_1):
26847           Use realpad for signal.
26848
26849 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26850
26851         * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_base_init):
26852           Fix category so decodebin picks it up.
26853
26854 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26855
26856         * ext/mad/Makefile.am:
26857         * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_get_type),
26858         (gst_id3demux_bin_base_init), (gst_id3demux_bin_class_init),
26859         (gst_id3demux_bin_init), (gst_id3demux_bin_remove_pad),
26860         (found_type), (gst_id3demux_bin_change_state):
26861         * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
26862         (gst_id3_tag_init), (gst_id3_tag_handle_event),
26863         (gst_id3_tag_src_link), (gst_id3_tag_chain),
26864         (gst_id3_tag_change_state), (plugin_init):
26865         * ext/mad/gstmad.h:
26866           Add id3demuxbin (which is a simple bin consisting of id3demux
26867           and typefind), take over rank from id3demux, remove typefind
26868           code from id3demux. Makes all broken mp3s that I know of work,
26869           and thereby fixes #152688.
26870
26871 2005-01-27  Edward Hervey  <bilboed@bilboed.com>
26872
26873         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26874
26875         * ext/mad/gstmad.c: (gst_mad_src_event):
26876         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
26877           Allow seeks on audio pad, make mad forward those (#164826).
26878         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
26879           Set duration (#165335).
26880
26881 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26882
26883         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
26884         (gst_asf_demux_commit_taglist), (gst_asf_demux_process_comment),
26885         (gst_asf_demux_process_ext_content_desc),
26886         (gst_asf_demux_change_state), (gst_asf_demux_add_audio_stream),
26887         (gst_asf_demux_add_video_stream), (gst_asf_demux_setup_pad):
26888         * gst/asfdemux/gstasfdemux.h:
26889           Improve metadata display, e.g. if the metadata comes before the
26890           streams are loaded (which is perfectly valid).
26891
26892 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26893
26894         * tools/gst-launch-ext-m.m:
26895           Fix AVI/ASF pipelines (#165340).
26896
26897 2005-01-26  Amaury Jacquot  <sxpert@esitcom.org>
26898         * ext/cairo/gsttextoverlay.c: include  string.h and strings.h to fix
26899         build failure on amd64
26900
26901 2005-01-26  Tim-Philipp Müller  <tim at centricular dot net>
26902
26903         * ext/mad/gstid3tag.c: (mad_id3_parse_latin1_string),
26904         (mad_id3_parse_comment_frame), (gst_mad_id3_to_tag_list):
26905           Check environment variables GST_ID3V2_TAG_ENCODING,
26906           GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
26907           list of character encodings to force interpretation of non-unicode
26908           strings stored in an ID3v2 tag to a particular encoding. If none
26909           is specified, try to use current locale's encoding, then fall back
26910           to ISO-8859-1 (which will always succeed). (Resolves #149274)
26911         * gst/tags/gstid3tag.c: (gst_tag_from_id3_tag),
26912         (gst_tag_extract_id3v1_string), (gst_tag_list_new_from_id3v1):
26913           Check environment variables GST_ID3V1_TAG_ENCODING,
26914           GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
26915           list of character encodings to use in case a string encountered
26916           in an ID3v1 tag is not valid UTF-8 already. If no encoding is
26917           specified, try to use the current locale's encoding, then fall
26918           back to ISO-8859-1 (which will always succeed).
26919
26920 2005-01-25  Benjamin Otte  <otte@gnome.org>
26921
26922         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
26923           - on half framerate, compute the rate in advance so the comparisons
26924             don't compare wrong values
26925           - don't use mad_synth/frame_mute anymore, this mirrors mad_decoder
26926             behaviour
26927           - don't use mad_header_decode anymore, mad_frame_decode does that
26928             automatically
26929           - when getting rid of consumed bytes, reset the stream's skiplen
26930           (fixes #163867)
26931
26932 2005-01-26  Jan Schmidt  <thaytan@mad.scientist.com>
26933
26934         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init)
26935           Use 1/2 a second for default max_discont, as PES streams from DVB
26936           seem to have larger spacings in the SCR. 
26937           Fix a typo.
26938
26939 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26940
26941         * gst/playback/gstplaybasebin.c: (group_commit):
26942           Notify delayed stream-info availability.
26943
26944 2005-01-26  Jan Schmidt  <thaytan@mad.scientist.com>
26945         * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
26946         (gst_a52dec_handle_event), (gst_a52dec_chain):
26947         Add some debug output. Check that a discont has a valid
26948         time associated.
26949         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
26950         (gst_alsa_sink_loop):
26951         Ignore TAG events. A little extra debug for broken timestamps.
26952         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init), (dvdnavsrc_loop),
26953         (dvdnavsrc_change_state):
26954         Ensure we send a discont to engage the link before we send any
26955         other events.
26956         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_init),
26957         (dvdreadsrc_finalize), (_close), (_open), (_seek_title),
26958         (_seek_chapter), (seek_sector), (dvdreadsrc_get),
26959         (dvdreadsrc_uri_get_uri), (dvdreadsrc_uri_set_uri):
26960         Handle URI of the form dvd://title[,chapter[,angle]]. Currently only
26961         dvd://title works in totem because typefinding sends a seek that ends
26962         up going back to chapter 1 regardless.
26963         * ext/mpeg2dec/gstmpeg2dec.c:
26964         * ext/mpeg2dec/gstmpeg2dec.h:
26965         Output correct timestamps and handle disconts.
26966         * ext/ogg/gstoggdemux.c: (get_relative):
26967         Small guard against a null dereference.
26968         * ext/pango/gsttextoverlay.c: (gst_textoverlay_finalize),
26969         (gst_textoverlay_set_property):
26970         Free memory when done. Don't call gst_event_filler_get_duration on
26971         EOS events. Use GST_LOG and GST_WARNING instead of g_message and
26972         g_warning.
26973         * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_init),
26974         (draw_line), (gst_smoothwave_dispose), (gst_sw_sinklink),
26975         (gst_sw_srclink), (gst_smoothwave_chain):
26976         Draw solid lines, prettier colours.
26977         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_init):
26978         Add a default palette that'll work for some movies.
26979         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_init),
26980         (gst_dvd_demux_handle_dvd_event), (gst_dvd_demux_send_discont),
26981         (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_reset):
26982         * gst/mpegstream/gstdvddemux.h:
26983         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
26984         (gst_mpeg_demux_parse_syshead), (gst_mpeg_demux_parse_pes):
26985         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
26986         (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead):
26987         * gst/mpegstream/gstmpegparse.h:
26988         Use PTM/NAV events when for timestamp adjustment when connected to 
26989         dvdnavsrc. Don't use many discont events where one suffices.
26990         * gst/playback/gstplaybasebin.c: (group_destroy),
26991         (gen_preroll_element), (gst_play_base_bin_add_element):
26992         * gst/playback/gstplaybasebin.h:
26993         Make sure we remove subtitles from the same bin we put them in.
26994         * gst/subparse/gstsubparse.c: (convert_encoding), (parse_subrip),
26995         (gst_subparse_buffer_format_autodetect),
26996         (gst_subparse_change_state):
26997         Fix some memleaks and invalid accesses.
26998         * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find),
26999         (oggskel_type_find), (cmml_type_find), (plugin_init):
27000         Some typefind functions for Annodex v3.0 files
27001         * gst/wavparse/gstwavparse.h:
27002         GstRiffReadClass is the correct parent class.
27003
27004 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27005
27006         * gst-libs/gst/riff/riff-media.c:
27007         (gst_riff_create_video_caps_with_data):
27008           Add extradata to huffyuv (fixes #165013).
27009         * gst-libs/gst/riff/riff-read.c:
27010         (gst_riff_read_strf_vids_with_data):
27011           Fix extradata extraction if it is in the chunk size.
27012
27013 2005-01-25  Edward Hervey  <bilboed@bilboed.com>
27014
27015         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27016
27017         * gst/effectv/gstquark.c: (gst_quarktv_class_init),
27018         (gst_quarktv_change_state), (gst_quarktv_dispose):
27019           Memory free'ing location fix (#164708).
27020
27021 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27022
27023         * gst/playback/gstplaybasebin.c: (group_commit),
27024         (gen_preroll_element), (probe_triggered), (gen_source_element),
27025         (setup_source), (gst_play_base_bin_change_state),
27026         (gst_play_base_bin_add_element):
27027           Don't block for streams.
27028         * gst/playback/gststreaminfo.c: (stream_info_change_state),
27029         (gst_stream_info_set_mute):
27030           Use gst_pad_set_active_recursive.
27031
27032 2005-01-25  Andy Wingo  <wingo@pobox.com>
27033
27034         * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Fix compile
27035         for #ifndef HAVE_XVIDEO.
27036
27037 2005-01-24  Jeffrey C. Ollie
27038
27039         reviewed by: Maciej Katafiasz  <mathrick@freedesktop.org>
27040
27041         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_chain):
27042         * ext/gsm/gstgsmdec.h:
27043         * ext/gsm/gstgsmenc.c: (gst_gsmenc_init), (gst_gsmenc_chain):
27044         * ext/gsm/gstgsmenc.h:
27045         Fix rate to 8kHz as per spec, removes obscure errors when no rate
27046         was given by property. Add proper buffer timestamps and offsets.
27047
27048 2005-01-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27049
27050         * gst-libs/gst/riff/riff-media.c:
27051         (gst_riff_create_audio_caps_with_data):
27052           Audio can be <8000Hz.
27053
27054 2005-01-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27055
27056         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
27057           Explicit state change to workaround refcount bugs.
27058
27059 2005-01-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27060
27061         * gst/avi/gstavimux.c: (gst_avimux_write_tag),
27062         (gst_avimux_riff_get_avi_header):
27063           Fix...
27064
27065 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27066
27067         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_element_data),
27068         (gst_riff_read_element_data):
27069         * gst-libs/gst/riff/riff-read.h:
27070           Add _peek version (req'ed in CDXA).
27071         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_init),
27072         (gst_cdxaparse_loop):
27073           Fix parsing in playbin.
27074         * gst/playback/gstdecodebin.c: (close_pad_link):
27075           Ignore current_ pads, they cause major annoyance.
27076
27077 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27078
27079         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
27080           Safety guard.
27081
27082 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27083
27084         * gst/avi/gstavimux.c: (gst_avimux_write_tag):
27085           Fix padding...
27086
27087 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27088
27089         * gst/matroska/ebml-read.c: (gst_ebml_read_buffer):
27090           Allow for 0-sized buffers. Fixes length query problems in
27091           starwars.mkv from the testsuite.
27092
27093 2005-01-19  Tim-Philipp Müller  <tim at centricular dot net>
27094
27095         * gst/videobox/gstvideobox.c: (gst_video_box_copy_plane_i420),
27096         (gst_video_box_i420), (gst_video_box_chain):
27097           Fix row strides for I420 (fixes #163159)
27098           
27099 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27100
27101         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
27102           MPEG2 has a useful rate property, so we can actually use that.
27103           For MPEG-1, continue using the bytes/time properties.
27104
27105 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27106
27107         * gst-libs/gst/riff/riff-media.c:
27108         (gst_riff_create_video_caps_with_data),
27109         (gst_riff_create_video_template_caps):
27110           Add intel-h263.
27111
27112 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27113
27114         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
27115           Fail if caps negotiation fails. Should fix #162184, and should
27116           definately be in there regardless of it fixing the actual bug.
27117         * gst/avi/gstavimux.c: (gst_avimux_get_type), (gst_avimux_init),
27118         (gst_avimux_write_tag), (gst_avimux_riff_get_avi_header),
27119         (gst_avimux_riff_get_avix_header),
27120         (gst_avimux_riff_get_video_header),
27121         (gst_avimux_riff_get_audio_header), (gst_avimux_write_index),
27122         (gst_avimux_start_file), (gst_avimux_handle_event),
27123         (gst_avimux_change_state):
27124         * gst/avi/gstavimux.h:
27125           Refactor structure writing to use GST_WRITE_UINT macros, add
27126           metadata writing support.
27127
27128 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27129
27130         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
27131           Elements may already be destroyed when this function is called.
27132
27133 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27134
27135         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
27136         (gst_qtdemux_loop_header), (gst_qtdemux_handle_esds):
27137           More memory leak fixes (#149162).
27138
27139 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27140
27141         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
27142         (gst_qtdemux_add_stream):
27143           Fix two memleaks.
27144
27145 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27146
27147         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
27148           Argh...
27149
27150 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27151
27152         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
27153           Fix off-by-one bug. Fixes warnings during playback of sincity.mp4
27154           when fixating to six channels in Totem.
27155
27156 2005-01-17  Tim-Philipp Müller  <tim at centricular dot net>
27157
27158         * ext/dvdread/dvdreadsrc.c: (get_next_cell_for):
27159           Fix compile warnings on Solaris 10 buildbot
27160
27161 2005-01-17  Tim-Philipp Müller  <tim at centricular dot net>
27162
27163         * ext/dvdread/dvdreadsrc.c: (_read):
27164           Don't read beyond the last cell in a chapter (fixes 
27165           invalid memory access)
27166
27167 2005-01-17  Tim-Philipp Müller  <tim at centricular dot net>
27168
27169         * ext/dvdread/stream_labels.c:
27170         (dvdreadsrc_get_audio_stream_labels):
27171           Use NULL for an empty GList instead of g_list_alloc(); fix 
27172           memory leaks; s/LCPM/LPCM/; use g_strdup_printf() instead 
27173           of GString (easier to bulk free later)
27174
27175 2005-01-17  Gergely Nagy  <algernon@bonehunter.rulez.org>
27176
27177         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27178
27179         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
27180         (gst_ffmpeg_pixfmt_to_caps):
27181           Fix BGRA32 caps (#164209).
27182
27183 2005-01-17  Gergely Nagy  <algernon@bonehunter.rulez.org>
27184
27185         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27186
27187         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
27188         (gst_ffmpeg_caps_to_pixfmt):
27189           alpha_mask can be RGBA/ABGR. Fixes #164265.
27190
27191 2005-01-17  Francis Labonte  <francis_labonte@hotmail.com>
27192
27193         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27194
27195         * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer),
27196         (gst_mpeg2dec_alloc_buffer):
27197         * ext/mpeg2dec/gstmpeg2dec.h:
27198           Crop if decoding size is not the actual image size (#163676).
27199
27200 2005-01-17  Steve Baker  <steve@stevebaker.org>
27201
27202         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27203
27204         * gst/typefind/gsttypefindfunctions.c: (aiff_type_find),
27205         (svx_type_find), (sds_type_find), (ircam_type_find), (plugin_init):
27206           Add libsndfile typefind functions (#163309).
27207
27208 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27209
27210         * tools/gst-launch-ext-m.m:
27211           Add .aac, fix .m1v/.m2v (#163891).
27212
27213 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27214
27215         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_wait):
27216           Sanity check, don't wait endlessly since the clock might not
27217           actually run at this point (which is a deadlock). Fixes #164069.
27218
27219 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27220
27221         * gst/playback/gstplaybasebin.c: (probe_triggered):
27222           Of course, only pause if group is done...
27223
27224 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27225
27226         * gst/playback/gstplaybasebin.c: (probe_triggered):
27227           Thread safety.
27228
27229 2005-01-16  Jan Schmidt  <thaytan@mad.scientist.com>
27230
27231         * ext/swfdec/gstswfdec.c: (gst_swfdec_change_state):
27232           Don't return state change success when the parent
27233           failed.
27234
27235 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27236
27237         * gst/avi/gstavimux.c: (gst_avimux_handle_event):
27238           Free events (fix memleak in #162905).
27239
27240 2005-01-15  Gergely Nagy  <algernon@bonehunter.rulez.org>
27241
27242         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27243
27244         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
27245         (gst_ffmpeg_caps_to_pixfmt):
27246           Fix for depth = 15. Fixes #161675.
27247
27248 2005-01-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27249
27250         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
27251           Set FPS correctly, even for webcams and the like.
27252         * sys/v4l/v4l_calls.c: (gst_v4l_set_chan_norm):
27253           Don error on setting while capturing.
27254
27255 2005-01-14  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27256
27257         * ext/dv/gstdvdec.c:
27258         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
27259         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
27260           I'm a bad boy. using /1001. to force C to do float division
27261           and not integer division (as it did in my last commit)
27262           Thanks to David I. Lehn for pointing this mistake.
27263
27264 2005-01-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27265
27266         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
27267           Revert Johan's 1.35->1.36 since it breaks compat.
27268
27269 2005-01-14  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27270
27271         * ext/dv/gstdvdec.c:
27272         * ext/libfame/gstlibfame.c:
27273         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
27274         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
27275           replace framerate aproximations by their real value
27276           (24000/1001, 30000/1001, 60000/1001)
27277           Finish fixing bug #164049
27278
27279 2005-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
27280
27281         * ext/ogg/gstoggmux.c:
27282           eos/bos debugging
27283         * gst/tcp/gstmultifdsink.c:
27284         * gst/tcp/gstmultifdsink.h:
27285         * gst/tcp/gsttcp.c:
27286         * gst/tcp/gsttcp.h:
27287         * gst/tcp/gsttcpclientsink.c:
27288         * gst/tcp/gsttcpclientsrc.c:
27289         * gst/tcp/gsttcpserversink.c:
27290         * gst/tcp/gsttcpserversrc.c:
27291           improve reusability of elements after state changes and errors
27292           make multifdsink throw away streamheaders when receiving new ones
27293
27294 2005-01-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27295
27296         * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
27297           Fix for if items are already in list...
27298
27299 2005-01-12  Benjamin Otte  <otte@gnome.org>
27300
27301         * gst/adder/gstadder.c: (gst_adder_loop):
27302           fix adder a bit so it doesn't screw up with events as much anymore
27303
27304 2005-01-12  Jan Schmidt  <thaytan@mad.scientist.com>
27305
27306         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link),
27307         (pixbufscale_scale), (gst_pixbufscale_chain):
27308         * ext/gdk_pixbuf/pixbufscale.h:
27309           Incorporate changes from Tim-Philipp Mueller <t.i.m@orange.net>
27310           to ensure rowstrides are calculated the same way as 
27311           ffmpegcolorspace
27312           Use gst_buffer_stamp instead of copying TIMESTAMP manually, so
27313           that we pick up duration and offset also.
27314
27315 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27316
27317         * gst/avi/gstavimux.c: (gst_avimux_class_init),
27318         (gst_avimux_pad_unlink), (gst_avimux_release_pad):
27319           Reusability fixes.
27320
27321 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27322
27323         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
27324         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
27325         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
27326         (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
27327           Update flags when requested.
27328
27329 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27330
27331         * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
27332           Fix dmix.
27333
27334 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27335
27336         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
27337         (gst_play_base_bin_init), (gst_play_base_bin_dispose),
27338         (probe_triggered), (new_decoded_pad), (gen_source_element),
27339         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
27340         * gst/playback/gstplaybasebin.h:
27341         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
27342         (gst_play_bin_init), (group_switch), (remove_sinks), (setup_sinks),
27343         (gst_play_bin_change_state):
27344           Implement group-switch signal for use in apps to clear metadata
27345           cache, clean up subtitle, add suburi property instead of # hack,
27346           some error-out fixes.
27347
27348 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27349
27350         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
27351           Debug.
27352         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame):
27353           If we got a state change in the _get handler, don't return success.
27354
27355 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27356
27357         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_my_output_message),
27358         (gst_jpegdec_my_emit_message), (gst_jpegdec_init):
27359           Make jpegdec quiet on MJPEG decoding
27360         * gst/asfdemux/README:
27361           Fix mimetypes for MJPEG and H263
27362
27363 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27364
27365         * ext/theora/theoradec.c: (theora_dec_chain):
27366           Fix broken code generation by gcc by swapping arguments.
27367         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
27368           Fix \n in debug.
27369
27370 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27371
27372         * TODO:
27373           delete this file, it is by far outdated
27374         * ext/alsa/gstalsa.1: remove
27375         * ext/alsa/gstalsa.c: (add_rates), (add_channels), (gst_alsa_caps),
27376         (gst_alsa_check_sample_rates), (gst_alsa_rates_probe),
27377         (gst_alsa_get_caps):
27378           Add HW probing for supported sample rates. Fixes #161704
27379
27380 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27381
27382         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
27383           Don't crash, biatch! :).
27384
27385 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27386
27387         * ext/musepack/gstmusepackreader.cpp:
27388         * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
27389           Some work on tags - still doesn't work in playbin...
27390         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
27391           Handle events...
27392
27393 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27394
27395         * gst/qtdemux/qtdemux.c: (qtdemux_parse_tree):
27396           Also shove tags on kid pads.
27397
27398 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27399
27400         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
27401           Don't bail on unknown events.
27402         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
27403           Don't crash on events before negotiation.
27404         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
27405           Send tags on pads, too.
27406         * gst/playback/gststreamselector.c:
27407         (gst_stream_selector_request_new_pad):
27408           Forward events on first pad if no input was selected yet.
27409
27410 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27411
27412         * gst/playback/gstplaybasebin.c: (setup_substreams):
27413           Don't disable streamtype if the stream doesn't exist, since
27414           then playing a video after audio will disable both and nothing
27415           will happen. Fixes the testsuite.
27416
27417 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27418
27419         * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_interface_init),
27420         (gst_v4l_xoverlay_set_xwindow_id):
27421         * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_interface_init),
27422         (gst_v4l2_xoverlay_set_xwindow_id):
27423           Add debug categories, fix overlay disabling.
27424
27425 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27426
27427         * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_get_caps):
27428         * ext/alsa/gstalsa.h:
27429           Add HW probing for period_count/size and buffer_size MIX/MAX
27430           Adjust default/user defined value if out of bounds
27431           Should fix bug #162024
27432
27433 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27434
27435         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event):
27436           Fix warning (#161191).
27437
27438 2005-01-09  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27439
27440         * ext/dvdread/stream_labels.c:
27441         (dvdreadsrc_get_audio_stream_labels):
27442           Fix warning (init the good variable in switch default)
27443
27444 2005-01-09  Koop Mast  <kwm@rainbow-runner.nl>
27445
27446         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27447
27448         * gst/tta/gstttaparse.c: (gst_tta_src_event):
27449           Fix gcc-2.95 compile (#163485).
27450
27451 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27452
27453         * configure.ac:
27454         * ext/flac/gstflacenc.c: (gst_flacenc_init),
27455         (gst_flacenc_seek_callback), (gst_flacenc_write_callback),
27456         (gst_flacenc_tell_callback), (gst_flacenc_chain),
27457         (gst_flacenc_change_state):
27458         * ext/flac/gstflacenc.h:
27459           Update for API change in flac-1.1.1. Update requirement in
27460           configure.ac. Fixes #162974.
27461
27462 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27463
27464         * gst/playback/gstplaybasebin.c: (group_destroy):
27465           Remove hack to get rid of assert and get rid of unlinked
27466           signals properly.
27467
27468 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27469
27470         * gst/playback/gstplaybasebin.c: (setup_source):
27471           Set source to NULL so that resources are free'ed. Fixes issues
27472           with playback of CDDA and similar device-accessing things.
27473
27474 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27475
27476         * testsuite/embed/Makefile.am:
27477           test->noinst, fix make test in buildbot.
27478
27479 2005-01-09  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27480
27481         * ext/dvdread/stream_labels.c: new file
27482         * ext/dvdread/stream_labels.h: new file
27483         * ext/dvdread/Makefile.am:
27484         * ext/dvdread/dvdreadsrc.c: (_seek_title):
27485           Extract audio stream label from DVD IFO files.
27486           It only dump them on the console for now, still have to
27487           make playbin aware of them.
27488
27489 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27490
27491         * gst/playback/gstplaybasebin.c: (setup_source):
27492           Fix hanging subs.
27493
27494 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27495
27496         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
27497         (gen_preroll_element), (remove_groups), (setup_subtitle),
27498         (gen_source_element), (setup_source):
27499         * gst/playback/gstplaybasebin.h:
27500           Multiple .sub files is just a stupid idea... Fix some threading
27501           mistakes. Interestingly, external .sub files cause playbin to
27502           hang, I don't know why... Parsing fixes contributed by Fran??ois
27503           Kooman <fkooman@tuxed.net>.
27504
27505 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27506
27507         * testsuite/embed/Makefile.am:
27508           Fix buildbot.
27509
27510 2005-01-09  Gergely Nagy  <algernon@bonehunter.rulez.org>
27511
27512         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27513
27514         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
27515         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
27516         (gst_pngenc_set_property):
27517         * ext/libpng/gstpngenc.h:
27518           Add compression level property (#163323).
27519
27520 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27521
27522         * configure.ac:
27523         * examples/capsfilter/capsfilter1.c: (main):
27524         * examples/seeking/spider_seek.c: (make_spider_pipeline):
27525         * ext/dvdread/Makefile.am:
27526         * ext/dvdread/demo-play:
27527         * ext/dvdread/demo-play.c:
27528         * gconf/gstreamer.schemas.in:
27529         * gst-libs/gst/gconf/gconf.c:
27530         * sys/v4l/TODO:
27531         * testsuite/Makefile.am:
27532         * testsuite/embed/Makefile.am:
27533         * testsuite/embed/embed.c: (cb_expose), (main):
27534           Remove all references to xvideosink, fix examples (#140845).
27535         * gst/playback/gstplaybasebin.c: (group_destroy):
27536           Apparently, disposal does not unlink - so do explicitely.
27537         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
27538           Add debug.
27539
27540 2005-01-09  Maciej Katafiasz <mathrick@freedesktop.org>
27541
27542         * README: fix PKG_CONFIG_PATH instructions, what was there
27543         previously was breaking default search path, not nice. 
27544         Fixes #163358
27545
27546 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27547
27548         * gst/audioscale/gstaudioscale.c: (gst_audioscale_init),
27549         (gst_audioscale_chain):
27550           %#^@^#@^@#^#@^#@^@#^@#^@#^@#^#@^#@^#@^@#^#@ fix seeking
27551           when resampling - how the ^@$^!@^! is this possible?!?
27552
27553 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27554
27555         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
27556           Reset variables on READY.
27557         * gst/matroska/matroska-mux.c: (gst_matroska_mux_request_new_pad),
27558         (gst_matroska_mux_loop):
27559           Require data before writing header.
27560
27561 2005-01-09  Francis Labonte  <francis_labonte@hotmail.com>
27562
27563         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27564
27565         * ext/mad/gstmad.c: (gst_mad_chain):
27566           Don't call mad_stream_sync() directly after recovering sync.
27567           Fixes #151661.
27568
27569 2005-01-09  Martin Eikermann  <meiker@upb.de>
27570
27571         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27572
27573         * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init),
27574         (snapshot_handler), (gst_snapshot_sinkconnect),
27575         (gst_snapshot_chain):
27576           Allocate resources when required, fix recursive signal emission
27577           and fix caps. Fixes #161667.
27578
27579 2005-01-09  Gergely Nagy  <algernon@bonehunter.rulez.org>
27580
27581         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27582
27583         * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps),
27584         (gst_pngdec_chain):
27585           Handle only 8-bppc (bits-per-pixel-component) images, better
27586           error handling and correct strides. Fixes #163177.
27587         * ext/libpng/gstpngenc.c: (gst_pngenc_sinklink),
27588         (gst_pngenc_chain):
27589           Better error handling. Fixes #163348.
27590
27591 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27592
27593         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_get_type),
27594         (dvdnavsrc_uri_get_type), (dvdnavsrc_uri_get_protocols),
27595         (dvdnavsrc_uri_get_uri), (dvdnavsrc_uri_set_uri),
27596         (dvdnavsrc_uri_handler_init):
27597           Add DVD-nav URI (dvdnav://) for Totem testing purposes.
27598         * gst/playback/gstplaybasebin.c: (gen_source_element):
27599           Add MMS to streaming URIs.
27600
27601 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27602
27603         * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
27604         * sys/xvimage/xvimagesink.c:
27605         (gst_xvimagesink_navigation_send_event):
27606           Check for pad availability before sending event.
27607
27608 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27609
27610         * gst-plugins.spec.in:
27611           Add subparse.
27612
27613 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27614
27615         * configure.ac:
27616           Since we use functions from CVS, up requirement.
27617
27618 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27619
27620         * gst/playback/Makefile.am:
27621         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
27622         (group_destroy), (group_commit), (group_is_muted),
27623         (gen_preroll_element), (add_stream), (unknown_type),
27624         (probe_triggered), (preroll_unlinked), (mute_stream),
27625         (silence_stream), (new_decoded_pad), (setup_substreams),
27626         (setup_source), (get_active_source), (mute_group_type),
27627         (muted_group_change_state), (set_active_source),
27628         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
27629         (play_base_eos), (gst_play_base_bin_change_state):
27630         * gst/playback/gstplaybasebin.h:
27631         * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
27632         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
27633         (gst_stream_info_dispose), (stream_info_mute_pad),
27634         (stream_info_change_state), (gst_stream_info_set_mute):
27635         * gst/playback/gststreamselector.c: (gst_stream_selector_get_type),
27636         (gst_stream_selector_base_init), (gst_stream_selector_class_init),
27637         (gst_stream_selector_init), (gst_stream_selector_dispose),
27638         (gst_stream_selector_get_linked_pad),
27639         (gst_stream_selector_get_caps), (gst_stream_selector_link),
27640         (gst_stream_selector_get_linked_pads),
27641         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
27642         * gst/playback/gststreamselector.h:
27643           Adding stream selection support plus required properties for
27644           applications to use this. Fully fixes #100931.
27645
27646 2005-01-08  Benjamin Otte  <otte@gnome.org>
27647
27648         * gst/games/gstpuzzle.c: (nav_event_handler):
27649           - handle nav events differently: forward every event no matter if it
27650             was handled or not.
27651           - translate events
27652           You can now cheat by using navigationtest ! puzzle and moving the
27653           mouse close to the edge of a tile. ;)
27654
27655 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27656
27657         * configure.ac:
27658         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
27659         * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_get_type),
27660         (gst_ogm_text_parse_base_init), (gst_ogm_text_parse_init),
27661         (gst_ogm_parse_get_sink_querytypes), (gst_ogm_parse_sink_convert),
27662         (gst_ogm_parse_sink_query), (gst_ogm_parse_chain),
27663         (gst_ogm_parse_plugin_init):
27664         * ext/pango/gsttextoverlay.c: (gst_textoverlay_linkedpads),
27665         (gst_textoverlay_link), (gst_textoverlay_getcaps),
27666         (gst_textoverlay_event), (gst_textoverlay_video_chain),
27667         (gst_textoverlay_loop), (gst_textoverlay_init), (plugin_init):
27668         * ext/pango/gsttextoverlay.h:
27669         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
27670         (gst_matroska_demux_handle_seek_event),
27671         (gst_matroska_demux_sync_streams),
27672         (gst_matroska_demux_parse_blockgroup),
27673         (gst_matroska_demux_subtitle_caps),
27674         (gst_matroska_demux_plugin_init):
27675         * gst/matroska/matroska-ids.h:
27676         * gst/playback/gstdecodebin.c: (close_pad_link):
27677         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
27678         (gen_preroll_element), (remove_groups), (add_stream),
27679         (new_decoded_pad), (setup_subtitles), (gen_source_element),
27680         (setup_source):
27681         * gst/playback/gstplaybasebin.h:
27682         * gst/playback/gstplaybin.c: (gen_text_element), (setup_sinks):
27683         * gst/subparse/Makefile.am:
27684         * gst/subparse/gstsubparse.c: (gst_subparse_get_type),
27685         (gst_subparse_base_init), (gst_subparse_class_init),
27686         (gst_subparse_init), (gst_subparse_formats),
27687         (gst_subparse_eventmask), (gst_subparse_event),
27688         (gst_subparse_handle_event), (convert_encoding), (get_next_line),
27689         (parse_mdvdsub), (parse_mdvdsub_init), (parse_subrip),
27690         (parse_subrip_deinit), (parse_subrip_init), (parse_mpsub),
27691         (parse_mpsub_deinit), (parse_mpsub_init),
27692         (gst_subparse_buffer_format_autodetect),
27693         (gst_subparse_format_autodetect), (gst_subparse_loop),
27694         (gst_subparse_change_state), (gst_subparse_type_find),
27695         (plugin_init):
27696         * gst/subparse/gstsubparse.h:
27697         * gst/typefind/gsttypefindfunctions.c: (ogmtext_type_find),
27698         (plugin_init):
27699           Add subtitle support, .sub parser (supports SRT and MPsub),
27700           OGM text support, Matroska UTF-8 text support, deadlock fixes
27701           all over the place, subtitle awareness in decodebin/playbin
27702           and some fixes to textoverlay to handle subtitles in a stream
27703           correctly. Fixes #100931.
27704
27705 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27706
27707         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
27708           Check for pad availability before doing a query on it.
27709
27710 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27711
27712         * ext/dv/gstdvdec.c:
27713           really fix bpp24/32 dvdec caps (classic rgba indeed)
27714         * gst/asfdemux/gstasfdemux.c:
27715         (gst_asf_demux_process_ext_content_desc):
27716           don't send text tags if they are empty (bis repetita)
27717
27718 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27719
27720         * ext/dv/gstdvdec.c:
27721          remove unneeded comment from dvdec
27722           (related to DV 4CC codes in AVI files)
27723           moved them in gstreamer/docs/random/mimetypes
27724         * gst/asfdemux/gstasfdemux.c:
27725         (gst_asf_demux_process_ext_content_desc):
27726          don't send text tags if they are empty
27727          fix mem leak on error path
27728         * gst/ffmpegcolorspace/avcodec.h:
27729         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
27730         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
27731         (gst_ffmpegcsp_avpicture_fill):
27732         * gst/ffmpegcolorspace/imgconvert.c: (img_get_alpha_info):
27733         * gst/ffmpegcolorspace/imgconvert_template.h:
27734          adds BGR32 and BGRA32 to ffmpegcolorspace
27735           (still bad colors, fixing it on next commit)
27736           helps with dvdec outputing BGR32
27737
27738 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27739
27740         * ext/dv/gstdvdec.c:
27741          Fix audio caps i just broke (missing ',')
27742         * gst/matroska/matroska-mux.c: (gst_matroska_mux_get_type),
27743         (gst_matroska_mux_reset):
27744          Fix typo + add FIXME about old "x-gst-metadata" crap
27745
27746 2005-01-07  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27747
27748         * ext/dv/demo-play.c: (main):
27749          xvideosink -> xvimagesink
27750         * ext/dv/gstdvdec.c:
27751          change rgb 32/32 caps to 24/32 (no alpha)
27752          change nb of channels to be a list (2 or 4, not 2)
27753          change sample rate to be a list (32, 44.1, 48 kHz) not a range
27754         * gst/asfdemux/gstasfdemux.c:
27755         (gst_asf_demux_process_ext_content_desc):
27756          Add 'date/year' to extracted metadata list
27757
27758 2005-01-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27759
27760         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
27761           The return value of fixate_to does not imply that the requested
27762           value was set, so don't assume.
27763
27764 2005-01-07  Gergely Nagy  <algernon@bonehunter.rulez.org>
27765
27766         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27767
27768         * ext/libpng/gstpngdec.c:
27769         * ext/libpng/gstpngenc.c: (gst_pngenc_base_init),
27770         (gst_pngenc_sinklink), (gst_pngenc_init), (gst_pngenc_chain):
27771         * ext/libpng/gstpngenc.h:
27772           Alpha support (encoder; #163161), mime fixage.
27773
27774 2005-01-07  Sebastien Cote  <sc5@hermes.usherb.ca>
27775
27776         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27777
27778         * ext/faac/gstfaac.c: (gst_faac_outputformat_get_type),
27779         (gst_faac_class_init), (gst_faac_init), (gst_faac_srcconnect),
27780         (gst_faac_set_property), (gst_faac_get_property):
27781         * ext/faac/gstfaac.h:
27782           Allow for ADTS output (#153434).
27783
27784 2005-01-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27785
27786         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
27787           Fix against template (#150576).
27788
27789 2005-01-06  Benjamin Otte  <otte@gnome.org>
27790
27791         * gst/games/gstpuzzle.c: (draw_puzzle):
27792           don't draw a puzzle if either width or height of tiles would be 0.
27793
27794 2005-01-06  Benjamin Otte  <otte@gnome.org>
27795
27796         * gst/games/gstpuzzle.c: (gst_puzzle_get_type),
27797         (gst_puzzle_class_init), (gst_puzzle_finalize):
27798           no memleaks, please
27799         (gst_puzzle_create), (gst_puzzle_init),
27800         (gst_puzzle_set_property), (gst_puzzle_setup):
27801           change initialization code around so we don't reshuffle on resize
27802         (draw_puzzle):
27803           fix another stupid typo
27804
27805 2005-01-06  Benjamin Otte  <otte@gnome.org>
27806
27807         * gst/games/gstvideoimage.c: (copy_hline_YUY2):
27808           fix stupid typo that borked copying on YUY2
27809
27810 2005-01-06  Benjamin Otte  <otte@gnome.org>
27811
27812         * gst/games/gstpuzzle.c: (draw_puzzle):
27813           fix edges when image sizes aren't multiples of tile sizes
27814
27815 2005-01-06  Benjamin Otte  <otte@gnome.org>
27816
27817         * gst/games/gstpuzzle.c: (gst_puzzle_base_init):
27818           make RGB endianness work correctly
27819         (gst_puzzle_show), (gst_puzzle_swap), (gst_puzzle_move):
27820           refactor and fix race with initial shuffling
27821         (nav_event_handler):
27822           allow using the mouse to puzzle
27823         (draw_puzzle):
27824           insist on tiles having width and height as multiples of 4 to get
27825           clean YUV image handling
27826         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
27827         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_buffer_alloc):
27828           s/DEBUG/LOG/ for common messages
27829         (gst_xvimagesink_navigation_send_event):
27830           fix mouse event translation to not include screen PAR
27831         * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
27832           fix mouse event translation to actually work
27833
27834 2005-01-06  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27835
27836         * gst/asfdemux/gstasfdemux.c:
27837         (gst_asf_demux_process_ext_content_desc):
27838          Extract TrackNumber metadata + clean up code
27839         * gst/games/gstvideoimage.c: (gst_video_image_draw_rectangle):
27840          Hope this is the good fix (var used unitialised)
27841
27842 2005-01-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27843
27844         * ext/faad/gstfaad.c: (gst_faad_chain):
27845           Only increment timestamp if it's valid. Fixes raw AAC streams.
27846
27847 2005-01-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
27848
27849         * configure.ac:
27850         * gst/games/Makefile.am:
27851         * gst/games/gstpuzzle.c:
27852           add a puzzle game with...
27853         * gst/games/gstvideoimage.c:
27854         * gst/games/gstvideoimage.h:
27855           ... full colorspace support (that includes YUV9 and RGB16)) stolen
27856           from videotestsrc and made into something that would be a nice
27857           library for a lot of other plugins.
27858
27859 2005-01-06  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27860
27861         * configure.ac:
27862          don't compile faad plugin if a RC of 2.0 is found
27863          Fixes #155346 (and FC1 buildbot)
27864         * gst/asfdemux/gstasfdemux.c:
27865         (gst_asf_demux_process_ext_content_desc):
27866          try to make Solaris compiler happier
27867
27868 2005-01-06  Paul Jack  <pjack@sfaf.org>
27869
27870         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27871
27872         * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init):
27873           Fix segfault (#161667).
27874
27875 2005-01-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27876
27877         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
27878           Fix framerate reporting.
27879
27880 2005-01-05  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
27881
27882         * gst-libs/gst/riff/riff-ids.h:
27883         * gst/wavenc/riff.h:
27884          Add AMR (VBR and CBR) ids to riff.h audio codec list
27885         * gst/asfdemux/gstasfdemux.c:
27886         (gst_asf_demux_process_ext_content_desc),
27887         (gst_asf_demux_process_object):
27888           Retrieve more tags from ASF files (Genre, AlbumTitle, Artist)
27889
27890 2005-01-05  Martin Eikermann  <meiker@upb.de>
27891
27892         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27893
27894         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
27895         (gst_dvd_demux_handle_discont):
27896         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_class_init),
27897         (gst_mpeg_demux_handle_discont):
27898           Recreate pads on new-media (#160730).
27899         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_new_pad):
27900           Send discont even if manager changes timestamps (#161929).
27901
27902 2005-01-05  Sebastien Cote  <sc5@hermes.usherb.ca>
27903
27904         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27905
27906         * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16):
27907           Fix invalid memory access (#159211).
27908
27909 2005-01-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27910
27911         * examples/gstplay/player.c: (main):
27912           Don't iterate.
27913         * examples/seeking/seek.c: (fixate), (make_playerbin_pipeline):
27914           Add visualizations.
27915         * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
27916         (gst_a52dec_handle_frame):
27917           Set duration.
27918         * ext/dvdnav/gst-dvd:
27919           Add audioconvert. Fixes #161325.
27920         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get):
27921           Explicitely case to gint64. Possible valgrind error.
27922         * gst-libs/gst/play/play.c: (caps_set), (setup_size),
27923         (gst_play_tick_callback), (gst_play_change_state),
27924         (gst_play_dispose), (gst_play_init), (gst_play_class_init),
27925         (gst_play_set_location), (gst_play_get_location),
27926         (gst_play_seek_to_time), (gst_play_set_data_src),
27927         (gst_play_set_video_sink), (gst_play_set_audio_sink),
27928         (gst_play_set_visualization), (gst_play_connect_visualization),
27929         (gst_play_get_framerate), (gst_play_get_all_by_interface),
27930         (gst_play_new):
27931           Use playbin. Fixes #139749 and #147744.
27932         * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags):
27933           Add genre tag.
27934         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
27935         (audioscale_get_type), (gst_audioscale_base_init),
27936         (gst_audioscale_class_init), (gst_audioscale_expand_caps),
27937         (gst_audioscale_getcaps), (gst_audioscale_fixate),
27938         (gst_audioscale_link), (gst_audioscale_get_buffer),
27939         (gst_audioscale_decrease_rate), (gst_audioscale_increase_rate),
27940         (gst_audioscale_init), (gst_audioscale_dispose),
27941         (gst_audioscale_chain), (gst_audioscale_set_property),
27942         (gst_audioscale_get_property), (plugin_init):
27943           Indent properly.
27944         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
27945           Fix LPCM.
27946         * gst/qtdemux/qtdemux.c: (qtdemux_parse_udta),
27947         (qtdemux_tag_add_str), (qtdemux_tag_add_num),
27948         (qtdemux_tag_add_gnre), (qtdemux_video_caps):
27949           Add more metadata (fixes #162656).
27950
27951 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
27952
27953         * configure.ac:
27954           back to cvs
27955
27956 === release 0.8.7 ===
27957
27958 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
27959
27960         * NEWS:
27961         * RELEASE:
27962         * configure.ac:
27963           releasing 0.8.7, "Hyperspace"
27964
27965 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
27966
27967         patch by: Tim-Philipp Müller  <t.i.m@zen.co.uk>
27968
27969         * gst/playback/gstplaybasebin.c:
27970          Fix for #162924 - free caps after use, not before
27971
27972 2005-01-04  Thomas Vander Stichele  <thomas at apestaart dot org>
27973
27974         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
27975
27976         * gst/playback/gstplaybasebin.c:
27977         * gst/wavparse/gstwavparse.c:
27978           Fix for #154773 - fixes playback of small .wav files
27979
27980 2005-01-03  Thomas Vander Stichele  <thomas at apestaart dot org>
27981
27982         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
27983
27984         * gst/audioscale/gstaudioscale.c:
27985           Fix for #162819 - make audioscale reusable
27986           Fixes playback of more than one file with playbin/totem
27987
27988 2004-12-29  Thomas Vander Stichele  <thomas at apestaart dot org>
27989
27990         * gst/ffmpegcolorspace/avcodec.h:
27991         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
27992         * gst/ffmpegcolorspace/imgconvert.c:
27993           clean up the mess that made me cry and avoid needless duplication
27994
27995 2004-12-29  Thomas Vander Stichele  <thomas at apestaart dot org>
27996
27997         * gst/ffmpegcolorspace/imgconvert.c:
27998           give some indication of why we're segfaulting
27999
28000 2004-12-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28001
28002         * configure.ac:
28003           Fix indentation, fix v4l2 plugin detection.
28004         * ext/Makefile.am:
28005           Fix libmms location (Maciej, use diff -u!).
28006         * ext/alsa/gstalsa.c: (gst_alsa_init):
28007           Initialize caps cache to NULL.
28008         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
28009           Only change state on audiosink if it exists.
28010
28011 2004-12-28  Maciej Katafiasz  <mathrick@mathrick.org>
28012
28013         * gst/matroska/matroska-demux.c:
28014         * gst/matroska/matroska-ids.h:
28015         * gst/matroska/matroska-demux.h:
28016         Fix Vorbis streams failing to decode in some files, where cluster_time
28017         isn't 0, because then it doesn't send codec_priv before actual data.
28018         Remove time-based test and replace it with marker set on beginning of
28019         new stream
28020
28021 2004-12-28  David Schleef  <ds@schleef.org>
28022
28023         Merge patch from Ronald fixing problems with streaming
28024         text.
28025         * ext/cairo/gstcairo.c: (plugin_init):
28026         * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
28027         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
28028         (gst_textoverlay_video_chain), (gst_textoverlay_loop),
28029         (gst_textoverlay_font_init), (gst_textoverlay_init),
28030         (gst_textoverlay_set_property):
28031         * ext/cairo/gsttextoverlay.h:
28032
28033 2004-12-27  David Schleef  <ds@schleef.org>
28034
28035         * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
28036         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
28037         (gst_textoverlay_video_chain), (gst_textoverlay_loop),
28038         (gst_textoverlay_font_init), (gst_textoverlay_init),
28039         (gst_textoverlay_set_property): Improvements to actually
28040         render text as white on black outline on video, including
28041         font selection and horizontal/vertical alignment.  (Ronald's
28042         christmas present)
28043         * ext/cairo/gsttextoverlay.h:
28044
28045 2004-12-26  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
28046
28047         * ext/ogg/gstogg.c:
28048         * ext/ogg/gstogmparse.c:
28049           fix ogm[audio/video]parse plugin registration
28050           (riff won't load if bytestream is already loaded)
28051
28052 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
28053
28054         * gst/audioconvert/gstchannelmix.c:
28055           fix for GLIB < 2.4
28056
28057 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
28058
28059         * Makefile.am:
28060         * configure.ac:
28061           disable docs again until it actually passes make distcheck.
28062
28063 2004-12-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28064
28065         * gst/qtdemux/qtdemux.c: (qtdemux_type_get), (qtdemux_audio_caps):
28066         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
28067         (plugin_init):
28068           Add 3GP (variables name Q3GP because they can't start with a
28069           number). Add samr audio fourcc (used in .3gp files), decoder
28070           is work in progress. Also do a GST_WARNING instead of ERROR
28071           in case of unknown nodes, to decrease output.
28072
28073 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
28074
28075         * Makefile.am:
28076           really fix dist
28077
28078 2004-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
28079
28080         * configure.ac:
28081         * ext/speex/gstspeexdec.h:
28082         * ext/speex/gstspeexenc.h:
28083           Fixes #158382.  Make speex plugin compatible with both 1.0 and 1.1.
28084           Fix detection code in configure.ac
28085
28086 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28087
28088         * gst/matroska/matroska-demux.c:
28089         (gst_matroska_demux_parse_blockgroup):
28090           Save position, so that queries give proper return values. Don't
28091           know how this could ever have worked before...
28092
28093 2004-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
28094
28095         * configure.ac:
28096           Put additional LAME check inside the conditional.  Fixes #152339
28097
28098 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28099
28100         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
28101         (gst_avi_demux_stream_scan):
28102           Add some more debug. Fix logic error when setting movi offset
28103           while reading index.
28104
28105 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28106
28107         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
28108         (gst_avi_demux_stream_scan), (gst_avi_demux_handle_seek),
28109         (gst_avi_demux_process_next_entry):
28110           Add some debugging. Better detection of broken indexes and the
28111           accompanying index recovery. No infinite loops on state changes
28112           when we're still in our loopfunction.
28113
28114 2004-12-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28115
28116         * configure.ac:
28117           Fix up.
28118
28119 2004-12-22  Archana Shah  <archana.shah@wipro.com>
28120
28121         Reviewed by:  Ronald S. Bultje <rbultje@ronald.bitfreak.net>
28122
28123         * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_volume):
28124           Normalizing the value before setting
28125         (gst_sunaudiomixer_get_volume):
28126           Normalizing the value after getting. Fixes bug# 161980
28127
28128 2004-12-22  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
28129
28130         * Makefile.am: Make sure docs gets disted
28131         * docs/Makefile.am: Make sure all needed files get disted
28132         * gst-plugins.spec.in: latest updates
28133
28134 2004-12-22  Wim Taymans  <wim@fluendo.com>
28135
28136         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
28137         Revert patch 1.38 as clock distribution over schedulers does
28138         not work correcly in the core yet.
28139
28140 2004-12-21  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
28141
28142         * sys/oss/README: remove this file, which predates my birth
28143           (and which content is by far outdated)
28144
28145 2004-12-20  Stefan Kost  <ensonic@users.sf.net>
28146
28147         * Makefile.am:
28148         * configure.ac:
28149         * docs/Makefile.am:
28150         * docs/libs/Makefile.am:
28151         * docs/libs/gst-plugins-libs-docs.sgml:
28152         * docs/libs/gst-plugins-libs-sections.txt:
28153         * docs/libs/tmpl/gstgconf.sgml:
28154         * docs/upload.mak:
28155         * docs/version.entities.in:
28156           Added boilerplate gtk-doc files for plugin-libs documentation.
28157
28158 2004-12-19  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
28159
28160         * gst/auparse/gstauparse.c: fix int and float audio caps
28161
28162 2004-12-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28163
28164         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
28165         * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
28166           g_assert() can be a macro, don't use #ifdef inside it.
28167
28168 2004-12-19  Edward Hervey  <bilboed@bilboed.com>
28169
28170         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28171
28172         * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
28173         (gst_videorate_init), (gst_videorate_chain),
28174         (gst_videorate_change_state):
28175           Event handling (fixes #159986).
28176
28177 2004-12-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28178
28179         * gst-libs/gst/riff/riff-media.c:
28180         (gst_riff_create_video_caps_with_data):
28181           Add BLZ0 (Blizzard's version of DivX) fourcc.
28182
28183 2004-12-18  David Schleef  <ds@schleef.org>
28184
28185         * gst/tta/gstttadec.c: (gst_tta_dec_link): And yet another
28186         portability fix.
28187
28188 2004-12-18  David Schleef  <ds@schleef.org>
28189
28190         * gst/tta/ttadec.h: Disable some header code that isn't used
28191         and clearly isn't portable.
28192
28193 2004-12-18  David Schleef  <ds@schleef.org>
28194
28195         * gst/ffmpegcolorspace/imgconvert.c: (get_pix_fmt_info),
28196         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
28197         (avcodec_get_pix_fmt), (avpicture_layout),
28198         (avcodec_get_pix_fmt_loss), (avg_bits_per_pixel), (img_copy),
28199         (get_convert_table_entry), (img_convert), (img_get_alpha_info):
28200         Fix code to not use GCC extensions (and c99 extensions that
28201         Forte does not like.)
28202
28203 2004-12-19  Tim-Philipp Müller  <t.i.m@zen.co.uk>
28204
28205         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28206
28207         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
28208         (gst_deinterlace_chain):
28209           Rowstride fixes. Fixes #161039.
28210         * gst/videocrop/gstvideocrop.c: (gst_video_crop_init),
28211         (gst_video_crop_get_property), (gst_video_crop_add_to_struct_val),
28212         (gst_video_crop_getcaps), (gst_video_crop_link),
28213         (gst_video_crop_i420), (gst_video_crop_chain),
28214         (gst_video_crop_change_state):
28215           Rework of negotiation. Actually works now. Fixes #158650.
28216
28217 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28218
28219         * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_sint):
28220           That was very stupid.
28221
28222 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28223
28224         * gst/matroska/matroska-demux.c:
28225         (gst_matroska_demux_parse_blockgroup):
28226           Fix possible crasher.
28227
28228 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28229
28230         * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_uint),
28231         (gst_matroska_ebmlnum_sint), (gst_matroska_demux_parse_blockgroup):
28232           Lace sizes can be zero.
28233
28234 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28235
28236         * ext/musepack/gstmusepackdec.cpp:
28237           Fetch error return values. Fixes #161624.
28238         * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
28239           Really EOS.
28240
28241 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28242
28243         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index):
28244           Work for truncated (unfinished download etc.) files. Fixes #160514.
28245
28246 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28247
28248         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
28249           Fix for integer overflow. Makes #156001 not crash. Probably masks
28250           the real bug.
28251
28252 2004-12-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28253
28254         * gst/ac3parse/gstac3parse.c: (plugin_init):
28255           Parsers never have ranks. Fixes #159651.
28256
28257 2004-12-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28258
28259         * gst/playback/gstdecodebin.c: (compare_ranks):
28260           make sure the facotries are ordered the same every time even if they
28261           have the same rank by using the name
28262         * gst/playback/gstdecodebin.c: (find_compatibles):
28263           make sure we don't add factories to the list twice
28264
28265 2004-12-16  David Schleef  <ds@schleef.org>
28266
28267         * configure.ac: look for musepack headers as musepack/*.h
28268         (fixes #159847)
28269         * ext/musepack/gstmusepackdec.h: use <musepack/*.h>
28270         * ext/musepack/gstmusepackreader.h: same
28271
28272 2004-12-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28273
28274         * gst-libs/gst/riff/riff-read.c:
28275         (gst_riff_read_strf_auds_with_data):
28276           Read extradata correctly (fixes #155879).
28277
28278 2004-12-16  David Schleef  <ds@schleef.org>
28279
28280         * gst/audioscale/gstaudioscale.c: allow passthru of >2 channel
28281         audio.  does _not_ attempt or allow conversion unless channels
28282         is 1 or 2.
28283
28284 2004-12-16  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
28285
28286         * tools/gst-launch-ext-m.m: fix mpeg and vob pipelines
28287
28288 2004-12-16  David Schleef  <ds@schleef.org>
28289
28290         * gst/audioscale/gstaudioscale.c: the resample library only
28291         handles 1 or 2 channels.  Change caps to compensate.
28292
28293 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28294
28295         * gst/matroska/matroska-demux.c: (aac_rate_idx), (aac_profile_idx),
28296         (gst_matroska_demux_audio_caps):
28297           Some MPEG-AAC hacks, because else it doesn't work...
28298
28299 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28300
28301         * gst-libs/gst/riff/riff-media.c:
28302         (gst_riff_create_video_caps_with_data),
28303         (gst_riff_create_video_template_caps):
28304           Add h264.
28305
28306 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28307
28308         * gst-libs/gst/audio/Makefile.am:
28309           Try to fix buildbot.
28310
28311 2004-12-16  Thomas Vander Stichele  <thomas at apestaart dot org>
28312
28313         * gst/tcp/gstmultifdsink.c:
28314           Clean up and uniformize debugging.
28315
28316 2004-12-16  Edward Hervey  <bilboed@bilboed.com>
28317
28318         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28319
28320         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
28321         (gst_dvd_demux_reset), (gst_dvd_demux_change_state):
28322         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_reset),
28323         (gst_mpeg_demux_change_state):
28324           Reset on ready. Fixes 160276.
28325
28326 2004-12-16  Sebastien Cote  <sc5@hermes.usherb.ca>
28327
28328         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28329
28330         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
28331         (gst_ffmpegcsp_pad_link):
28332           Fix memleak (#154815).
28333
28334 2004-12-16  James Bowes  <bowes@cs.dal.ca>
28335
28336         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28337
28338         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init),
28339         (gst_musicbrainz_init), (gst_musicbrainz_chain),
28340         (gst_musicbrainz_set_property), (gst_musicbrainz_get_property):
28341         * ext/musicbrainz/gsttrm.h:
28342           Add support for using a proxy server when getting a trm id from
28343           the MusicBrainz database (#149613).
28344
28345 2004-12-16  Christophe Fergeau  <teuf@gnome.org>
28346
28347         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28348
28349         * gst/playback/gstdecodebin.c: (new_pad), (close_link):
28350         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
28351           Fix memleaks (#157233).
28352
28353 2004-12-16  Sebastien Cote  <sc5@hermes.usherb.ca>
28354
28355         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28356
28357         * gst-libs/gst/resample/resample.c: (gst_resample_close):
28358         * gst-libs/gst/resample/resample.h:
28359         * gst/audioscale/gstaudioscale.c:
28360           Fix memleak (#159215).
28361
28362 2004-12-16  Toni Willberg  <toniw@iki.fi>
28363
28364         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28365
28366         * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
28367         * sys/oss/oss_probe.c: (main):
28368           Check for mono/stereo support (similar to samplerate probing),
28369           fixes #159433. Also add missing copyright header to oss_probe.c.
28370
28371 2004-12-15  David Schleef  <ds@schleef.org>
28372
28373         * configure.ac: add audioresample and cairo plugins.  Remove
28374         HAVE_MMX stuff, because it's not used.
28375         * ext/Makefile.am: same
28376         * ext/audioresample/Makefile.am: You are not ready for an
28377         audio resampling element based on audioresample.
28378         * ext/audioresample/gstaudioresample.c:
28379         * ext/audioresample/gstaudioresample.h:
28380         * ext/cairo/Makefile.am: You are not ready for overlay elements
28381         based on cairo.  Don't look too closely, these elements kinda
28382         suck right now.
28383         * ext/cairo/gstcairo.c: new
28384         * ext/cairo/gsttextoverlay.c: new
28385         * ext/cairo/gsttextoverlay.h: new
28386         * ext/cairo/gsttimeoverlay.c: new
28387         * ext/cairo/gsttimeoverlay.h: new
28388         * gst-libs/gst/media-info/media-info-priv.h: fix compile
28389         problem with compilers that don't support variadic macros.
28390
28391 2004-12-15  Balamurali Viswanathan  <balamurali.viswanathan@wipro.com>
28392
28393         Reviewed by:  David Schleef  <ds@schleef.org>
28394
28395         * sys/sunaudio/gstsunaudio.c: (plugin_init):  Apply patch from
28396         Bala, registering sunaudiosrc (oops!), and cleaning up code a
28397         bit.  Also ran indent-gst.
28398         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_init),
28399         (gst_sunaudiosrc_change_state), (gst_sunaudiosrc_get),
28400         (gst_sunaudiosrc_setparams):
28401
28402 2004-12-14  David Schleef  <ds@schleef.org>
28403
28404         * gst/festival/gstfestival.c: (gst_festival_chain): Set the
28405         output rate to 16000.  Should fix #160235.
28406
28407 2004-12-14  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
28408
28409         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
28410         Add typefinding for mpeg2 pes streams
28411
28412 2004-12-13  David Schleef  <ds@schleef.org>
28413
28414         * configure.ac:  Applied patch from bug #143659, making default
28415         sources and sinks OS-dependent (for Solaris), and added code
28416         for OS/X.
28417         * gconf/gstreamer.schemas.in: use OS-dependent sinks in gconf.
28418
28419 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
28420
28421         * gst-libs/gst/riff/riff-media.c:
28422           forgot to add h2.64 to avidemux template caps
28423
28424 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
28425
28426         * gst/wavenc/riff.h:
28427         * gst-libs/gst/riff/riff-media.c:
28428         * gst-libs/gst/riff/riff-ids.h:
28429         * gst/avi/gstavimux.c
28430         add 4CC code for VideoSoft h264 in AVI (VSSH)
28431           fixes bug #160655
28432         remove s323 from riff, it's quicktime specific :(
28433
28434 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
28435
28436         * gst/asfdemux/README
28437         * gst/wavenc/riff.h
28438         * gst-libs/gst/riff/riff-ids.h
28439         * gst-libs/gst/riff/riff-media.c
28440         * gst/qtdemux/qtdemux.c:
28441           add new 4CC codes for h263 related codecs
28442           fixes partially bug #155163
28443
28444 2004-12-12  Christian Fredrik Kalager Schaller  <christian at fluendo dot com>
28445
28446         * configure.ac: Update polyaudio requirement to 0.7
28447         * ext/polyp/polypsink.c: (create_stream): add patch from iain (158258)
28448
28449 2004-12-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
28450
28451         * gst/interleave/deinterleave.c:
28452         fix my name's spelling! :)
28453
28454 2004-12-11  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
28455
28456         * AUTHORS ChangeLog
28457         * gst/auparse/gstauparse.c
28458         * gst/interleave/deinterleave.c
28459         * gst/law/:
28460                 alaw-decode.c alaw-encode.c
28461                 mulaw-decode.c mulaw-encode.c
28462         * gst/oneton/gstoneton.c
28463         * sys/osxaudio/:
28464                 gstosxaudioelement.c gstosxaudiosink.c gstosxaudiosrc.c
28465         * sys/osxvideo/:
28466                 cocoawindow.h cocoawindow.m
28467                 osxvideosink.h osxvideosink.m
28468
28469         put the same mail address for Zaheer Abbas Merali everywhere
28470
28471 2004-12-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28472
28473         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_loop):
28474           Align by packetsize, and assert that we a packet available before
28475           playing. The first makes webstreams work (they often include
28476           trailing padding data in a packet), the second allows pausing a
28477           ASF stream in totem without getting demux errors afterwards.
28478
28479 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28480
28481         * ext/ogg/gstoggdemux.c: (get_relative):
28482           Check for non-NULL before accessing member (end-of-chain).
28483
28484 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28485
28486         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
28487         (cdparanoia_set_property), (cdparanoia_get_property):
28488         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
28489         (dvdnavsrc_set_property), (dvdnavsrc_get_property):
28490         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
28491         (dvdreadsrc_init), (dvdreadsrc_set_property),
28492         (dvdreadsrc_get_property):
28493         * sys/vcd/vcdsrc.c: (gst_vcdsrc_class_init),
28494         (gst_vcdsrc_set_property), (gst_vcdsrc_get_property):
28495           Synchronize property names where not yet the case. Devices are
28496           now device=X, other versions are deprecated (but still exist).
28497           Also use g_free() unconditionally.
28498         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
28499         (setup_source), (gst_play_base_bin_get_property):
28500           Expose source.
28501
28502 2004-12-09  Thomas Vander Stichele  <thomas at apestaart dot org>
28503
28504         * configure.ac: move GCONF macro outside conditional for the am
28505           conditional. Fixes #160439
28506
28507 2004-12-08  David Schleef  <ds@schleef.org>
28508
28509         * tools/gst-visualise-m.m: Switch to elements that currently
28510         exist.
28511
28512 2004-12-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28513
28514         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
28515           We love wrong commas.
28516
28517 2004-12-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28518
28519         * gst/matroska/matroska-demux.c:
28520         (gst_matroska_demux_handle_src_query):
28521           Don't set DEFAULT, unsupported - makes length display incorrectly
28522           in some cases.
28523
28524 2004-12-07  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
28525
28526         * gst/monoscope/README: remove blurb about files being GPL
28527         * gst/monoscope/gstmonoscope.c: Change license field to LGPL
28528         * gst/monoscope/monoscope.c: Change license to BSD with explanation
28529           monoscope is now effectively LGPL licensed
28530
28531 2004-12-07  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
28532
28533         * gst/monoscope/README: Update information to be more correct
28534         * gst/monoscope/convolve.c: Relicense to LGPL
28535         * gst/monoscope/convolve.h: Relicense to LGPL
28536
28537 2004-12-06  Arwed v. Merkatz <v.merkatz@gmx.net>
28538
28539         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
28540           set BUFFER_DURATION to correct values (mpeg1 audio frame length is fixed)
28541         * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link):
28542           set default_duration for mpeg1 audio
28543
28544 2004-12-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
28545
28546         * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_close_audio):
28547         * ext/alsa/gstalsa.h:
28548           refactor big chunks of the core caps negotiation code to make it
28549           a lot faster, because people claim it's really slow
28550           (actually, just cache the getcaps when the device is opened)
28551
28552 2004-12-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28553
28554         * ext/a52dec/gsta52dec.c: (gst_a52dec_init),
28555         (gst_a52dec_handle_event), (gst_a52dec_update_streaminfo),
28556         (gst_a52dec_handle_frame), (gst_a52dec_chain),
28557         (gst_a52dec_change_state), (plugin_init):
28558         * ext/a52dec/gsta52dec.h:
28559           Do something useful with timestamps. Make chain-based (since
28560           there's really no reason to be loopbased).
28561         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
28562           Update current_byte/frame correctly.
28563
28564 2004-12-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28565
28566         * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags),
28567         (gst_ape_demux_stream_init):
28568           Forward tags, too.
28569
28570 2004-12-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28571
28572         * gst/apetag/apedemux.c: (gst_ape_demux_stream_init):
28573           Let's make sure we're done typefinding when detecting tags.
28574
28575 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28576
28577         * gst/matroska/ebml-read.c: (gst_ebml_read_class_init),
28578         (gst_ebml_read_init), (gst_ebml_read_use_event),
28579         (gst_ebml_read_element_id), (gst_ebml_peek_id),
28580         (gst_ebml_read_seek), (gst_ebml_read_skip),
28581         (gst_ebml_read_reserve), (gst_ebml_read_buffer),
28582         (gst_ebml_read_master):
28583         * gst/matroska/ebml-read.h:
28584         * gst/matroska/matroska-demux.c:
28585         (gst_matroska_demux_parse_contents),
28586         (gst_matroska_demux_loop_stream), (gst_matroska_demux_audio_caps):
28587           Disgustingly evil hack for working around INTERRUPT events and
28588           their extremely annoying habit of being a pain in the ass. We
28589           simply peek a cluster before reading any of it.
28590
28591 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28592
28593         * ext/musepack/gstmusepackdec.cpp:
28594           There's also floating point libmusepacks.
28595
28596 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28597
28598         * ext/faad/gstfaad.c: (gst_faad_chanpos_from_gst),
28599         (gst_faad_chanpos_to_gst), (gst_faad_chain):
28600           Set DURATION even if source buffer didn't. Also use increasing
28601           timestamps.
28602         * gst-libs/gst/riff/riff-media.c:
28603         (gst_riff_create_audio_caps_with_data):
28604           Block_align can have larger values than 8192.
28605
28606 2004-12-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28607
28608         * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link):
28609         * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link):
28610         * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link):
28611         * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link):
28612           Fix caps.
28613
28614 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28615
28616         * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
28617           Fix logic bug.
28618
28619 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28620
28621         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
28622           Yay, another one.
28623
28624 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28625
28626         * ext/esd/esdsink.c: (gst_esdsink_chain):
28627           Make error actually say something useful (fixes #156798).
28628         * gst-libs/gst/riff/riff-media.c:
28629         (gst_riff_create_video_caps_with_data),
28630         (gst_riff_create_video_template_caps):
28631           Add Intel Video 5.0 fourcc (IV50).
28632
28633 2004-12-01  Christophe Fergeau  <teuf@gnome.org>
28634
28635         * ext/mad/gstmad.c: (mpg123_parse_xing_header): fix xing header
28636         detection on mono and stereo mp3 files.
28637
28638 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28639
28640         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
28641           Don't crash on EMPTY caps (e.g. when the demuxer didn't recognize
28642           the contained stream).
28643
28644 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28645
28646         * ext/faad/gstfaad.c: (gst_faad_srcconnect), (gst_faad_chain):
28647           Oops, remove debug.
28648
28649 2004-12-01  Sebastien Cote  <sc5@hermes.usherb.ca>
28650
28651         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28652
28653         * gst/law/alaw-decode.c: (alawdec_getcaps):
28654         * gst/law/mulaw-decode.c: (mulawdec_getcaps):
28655           Prevent warnings when negotiating caps (fixes #159338).
28656
28657 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28658
28659         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
28660         (gst_ffmpegcsp_chain):
28661           Remove old leftover that shouldn't be there...
28662
28663 2004-12-01  Sebastien Cote  <sc5@hermes.usherb.ca>
28664
28665         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28666
28667         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
28668           Don't forward DISCONT events (fixes #159684).
28669
28670 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28671
28672         * gst/playback/gstplaybin.c: (remove_sinks), (setup_sinks):
28673           Unlink manually since sometimes bin disposal (and therefore
28674           pad unlinking) is delayed, which will cause a new media file
28675           to not be able to start playing instantly.
28676
28677 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28678
28679         * gst/playback/gststreaminfo.c: (stream_info_mute_pad):
28680           On mute of an unlinked stream, check for pad availability so
28681           we don't crash on unlinked pad.
28682
28683 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28684
28685         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
28686         (gst_avi_demux_massage_index):
28687           Fix quite humiliating bug in omitting 0-sized index chunks but
28688           forgetting to count them for timestamps.
28689
28690 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28691
28692         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
28693           Actually leave the loop if we failed to sync. Don't crash.
28694
28695 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28696
28697         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream),
28698         (gst_dvd_demux_process_private):
28699         * gst/mpegstream/gstdvddemux.h:
28700           Fix crash (#159759). Doesn't work, though. :-(.
28701
28702 2004-11-28  Benjamin Otte  <otte@gnome.org>
28703
28704         * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
28705           more overwriting protection due to modifying channels one by one
28706           instead of all at once
28707
28708 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28709
28710         * gst/audioconvert/gstchannelmix.c:
28711         (gst_audio_convert_fill_normalize):
28712           Normalize using absolute values.
28713
28714 2004-11-28  Julien MOUTTE  <julien@moutte.net>
28715
28716         * configure.ac:
28717         * ext/Makefile.am:
28718         * ext/directfb/Makefile.am:
28719         * ext/directfb/directfbvideosink.c: (gst_directfbvideosink_create),
28720         (gst_directfbvideosink_get_pixel_format),
28721         (gst_directfbvideosink_get_format_from_fourcc),
28722         (gst_directfbvideosink_fixate), (gst_directfbvideosink_getcaps),
28723         (gst_directfbvideosink_sink_link),
28724         (gst_directfbvideosink_change_state),
28725         (gst_directfbvideosink_chain), (gst_directfbvideosink_buffer_free),
28726         (gst_directfbvideosink_buffer_alloc),
28727         (gst_directfbvideosink_interface_supported),
28728         (gst_directfbvideosink_interface_init),
28729         (gst_directfbvideosink_navigation_send_event),
28730         (gst_directfbvideosink_navigation_init),
28731         (gst_directfbvideosink_set_property),
28732         (gst_directfbvideosink_get_property),
28733         (gst_directfbvideosink_finalize), (gst_directfbvideosink_init),
28734         (gst_directfbvideosink_base_init),
28735         (gst_directfbvideosink_class_init),
28736         (gst_directfbvideosink_get_type), (plugin_init):
28737         * ext/directfb/directfbvideosink.h: Adding a first version of
28738         directfbvideosink.
28739         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): Initializing some
28740         more.
28741
28742 2004-11-28  Benjamin Otte  <otte@gnome.org>
28743
28744         * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
28745           walk the samples backwards if out_channels > in_channels so we don't
28746           overwrite data
28747
28748 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28749
28750         * gst/audioconvert/Makefile.am:
28751         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
28752         (gst_audio_convert_link), (gst_audio_convert_change_state),
28753         (gst_audio_convert_channels):
28754         * gst/audioconvert/gstchannelmix.c:
28755         (gst_audio_convert_unset_matrix),
28756         (gst_audio_convert_fill_identical),
28757         (gst_audio_convert_fill_compatible),
28758         (gst_audio_convert_detect_pos), (gst_audio_convert_fill_one_other),
28759         (gst_audio_convert_fill_others),
28760         (gst_audio_convert_fill_normalize),
28761         (gst_audio_convert_fill_matrix), (gst_audio_convert_setup_matrix),
28762         (gst_audio_convert_passthrough), (gst_audio_convert_mix):
28763         * gst/audioconvert/gstchannelmix.h:
28764           Implement a channel mixer.
28765
28766 2004-11-28  Martin Soto  <martinsoto@users.sourceforge.net>
28767
28768         * ext/alsa/gstalsasink.c (gst_alsa_sink_loop):
28769         * ext/alsa/gstalsa.h:
28770         * ext/alsa/gstalsa.c (gst_alsa_set_clock):
28771         Make alsasink actually honor gst_element_set_clock and use that
28772         clock instead of its internal one.
28773
28774 2004-11-27  Christophe Fergeau  <teuf@gnome.org>
28775
28776         * gst/playback/gstplaybasebin.c: (setup_source): fixed a caps leak
28777         (gst_play_base_bin_change_state): nullify source and decoder when
28778         going from READY to NULL so that we don't try to do weird stuff with
28779         them when going from NULL to READY
28780         * gst/playback/gstplaybin.c: (gst_play_bin_init): use gst_object_unref
28781         instead of g_object_unref
28782         (gen_video_element), (gen_audio_element): more refcounting fixes, now
28783         it should be correct
28784         (gst_play_bin_change_state): don't call remove_sinks if we are
28785         currently disposing the object
28786
28787 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28788
28789         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
28790           Don't forget bass if it's there. Else left channel is silent...
28791
28792 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28793
28794         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop),
28795         (gst_a52dec_change_state):
28796           Don't do sample adjusting anymore, we use float audio now.
28797         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
28798           Don't fixate to non-existing properties.
28799
28800 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28801
28802         * ext/a52dec/gsta52dec.c: (gst_a52dec_channels),
28803         (gst_a52dec_change_state):
28804           Advertise that we can do surround sound.
28805
28806 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28807
28808         * ext/a52dec/gsta52dec.c: (gst_a52dec_reneg):
28809           Add buffer-frames=0.
28810         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get_type),
28811         (dvdreadsrc_init), (dvdreadsrc_get_event_mask),
28812         (dvdreadsrc_get_query_types), (dvdreadsrc_get_formats),
28813         (dvdreadsrc_srcpad_event), (dvdreadsrc_srcpad_query),
28814         (_seek_title), (_seek_chapter), (get_next_cell_for), (_read),
28815         (seek_sector), (dvdreadsrc_get), (dvdreadsrc_open_file),
28816         (dvdreadsrc_change_state), (dvdreadsrc_uri_get_type),
28817         (dvdreadsrc_uri_get_protocols), (dvdreadsrc_uri_get_uri),
28818         (dvdreadsrc_uri_set_uri), (dvdreadsrc_uri_handler_init):
28819         * ext/dvdread/dvdreadsrc.h:
28820           Add seeking, querying for bytes, sectors, title, angle and
28821           chapter. Handle multiple chapters. Relicense to LGPL because
28822           Billy agreed on that (thanks Billy!).
28823
28824 2004-11-27  Christophe Fergeau  <teuf@gnome.org>
28825
28826         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose):
28827         call parent dispose method
28828
28829 2004-11-27  Martin Soto  <martinsoto@users.sourceforge.net>
28830
28831         * gst-libs/gst/audio/audioclock.c (gst_audio_clock_set_active)
28832         (gst_audio_clock_get_internal_time):
28833         Fix active <-> inactive transitions: ensure time value always
28834         grows and avoid abrupt value changes.
28835
28836 2004-11-27  Arwed v. Merkatz <v.merkatz@gmx.net>
28837
28838         * configure.ac:
28839         * gst/tta/Makefile.am:
28840         * gst/tta/crc32.h:
28841         * gst/tta/filters.h:
28842         * gst/tta/gsttta.c:
28843         * gst/tta/gstttadec.c:
28844         * gst/tta/gstttadec.h:
28845         * gst/tta/gstttaparse.c:
28846         * gst/tta/gstttaparse.h:
28847         * gst/tta/ttadec.h:
28848           added TTA parser and decoder
28849
28850 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28851
28852         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
28853         (probe_triggered), (check_queue), (buffer_underrun),
28854         (buffer_running), (buffer_overrun), (gen_source_element),
28855         (setup_source):
28856         * gst/playback/gstplaybasebin.h:
28857           Implement buffering. Needs some more work.
28858
28859 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28860
28861         * ext/theora/theoradec.c: (theora_dec_chain):
28862           Fix ilog mask range overflow.
28863
28864 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28865
28866         * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
28867           Don't omit the last (which in case of dmix is the only :) )
28868           channel count. Don't set channels if <= 2.
28869
28870 2004-11-26  Christophe Fergeau  <teuf@gnome.org>
28871
28872         * gst/playback/gstplaybin.c: (gen_video_element),
28873         (gen_audio_element): Removed 2 obsolete comments
28874
28875 2004-11-26  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
28876
28877         * ext/vorbis/oggvorbisenc.c
28878         * ext/vorbis/vorbisenc.c :
28879           change description fields of those plugins to differentiate them
28880           (pitivi show Encoders by description, they had the same one)
28881
28882 2004-11-25  Christophe Fergeau  <teuf@gnome.org>
28883
28884         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28885
28886         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
28887         (gst_play_bin_set_property), (gen_video_element),
28888         (gen_audio_element):
28889           Refcounting fixes for provided audio-/videosinks.
28890
28891 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28892
28893         * gst/playback/gstplaybin.c: (gen_video_element),
28894         (gen_audio_element), (setup_sinks), (gst_play_bin_change_state):
28895           Don't reference all sinks, but only the video- and audiosinks.
28896           The vis. element should be disposed when we're done with it.
28897           We don't have any reason to keep it around. This fixes warnings
28898           when reusing playbin for playing multiple audio files with
28899           vis. enabled. Also release audio device on pause - idea stolen
28900           from Rhythmbox.
28901
28902 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28903
28904         * ext/a52dec/gsta52dec.c: (gst_a52dec_channels), (gst_a52dec_push),
28905         (gst_a52dec_reneg), (gst_a52dec_loop), (plugin_init):
28906         * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
28907         * ext/alsa/gstalsaplugin.c: (plugin_init):
28908         * ext/dts/gstdtsdec.c: (gst_dtsdec_channels),
28909         (gst_dtsdec_renegotiate), (gst_dtsdec_loop), (plugin_init):
28910         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_chanpos_from_gst),
28911         (gst_faad_chanpos_to_gst), (gst_faad_sinkconnect),
28912         (gst_faad_srcgetcaps), (gst_faad_srcconnect), (gst_faad_chain),
28913         (gst_faad_change_state), (plugin_init):
28914         * ext/faad/gstfaad.h:
28915         * ext/vorbis/vorbis.c: (plugin_init):
28916         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
28917         * gst-libs/gst/audio/Makefile.am:
28918         * gst-libs/gst/audio/audio.c: (plugin_init):
28919         * gst-libs/gst/audio/multichannel.c:
28920         (gst_audio_check_channel_positions),
28921         (gst_audio_get_channel_positions),
28922         (gst_audio_set_channel_positions),
28923         (gst_audio_set_structure_channel_positions_list),
28924         (add_list_to_struct), (gst_audio_set_caps_channel_positions_list),
28925         (gst_audio_fixate_channel_positions):
28926         * gst-libs/gst/audio/multichannel.h:
28927         * gst-libs/gst/audio/testchannels.c: (main):
28928         * gst/audioconvert/gstaudioconvert.c:
28929         (gst_audio_convert_class_init), (gst_audio_convert_init),
28930         (gst_audio_convert_dispose), (gst_audio_convert_getcaps),
28931         (gst_audio_convert_parse_caps), (gst_audio_convert_link),
28932         (gst_audio_convert_fixate), (gst_audio_convert_channels):
28933         * gst/audioconvert/plugin.c: (plugin_init):
28934           Surround sound support.
28935
28936 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28937
28938         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
28939           Fix position for discont if we're close as well. Nitpicking, but
28940           saves a few milliseconds of extra waiting or skipping.
28941
28942 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28943
28944         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter):
28945           We sometimes need parsers for playback, so add those too.
28946
28947 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28948
28949         * configure.ac:
28950         * gst/apetag/Makefile.am:
28951         * gst/apetag/apedemux.c: (gst_ape_demux_get_type),
28952         (gst_ape_demux_base_init), (gst_ape_demux_class_init),
28953         (gst_ape_demux_init), (gst_ape_demux_get_src_formats),
28954         (gst_ape_demux_get_src_query_types),
28955         (gst_ape_demux_handle_src_query), (gst_ape_demux_get_event_mask),
28956         (gst_ape_demux_handle_src_event), (gst_ape_demux_handle_event),
28957         (gst_ape_demux_typefind_peek), (gst_ape_demux_typefind_get_length),
28958         (gst_ape_demux_typefind_suggest), (gst_ape_demux_typefind),
28959         (gst_ape_demux_parse_tags), (gst_ape_demux_stream_init),
28960         (gst_ape_demux_stream_data), (gst_ape_demux_loop),
28961         (gst_ape_demux_change_state):
28962         * gst/apetag/apedemux.h:
28963         * gst/apetag/apetag.c: (plugin_init):
28964         * gst/typefind/gsttypefindfunctions.c: (apetag_type_find),
28965         (plugin_init):
28966           APE v1/2 tag reader plus typefind function.
28967
28968 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28969
28970         * configure.ac:
28971         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
28972         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
28973           Remove hacks for older core. Require newer core version
28974           accordingly.
28975
28976 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28977
28978         * gst/cdxaparse/Makefile.am:
28979         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_get_type),
28980         (gst_cdxaparse_class_init), (gst_cdxaparse_init),
28981         (gst_cdxaparse_loop), (gst_cdxaparse_change_state), (plugin_init):
28982         * gst/cdxaparse/gstcdxaparse.h:
28983         * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_get_type),
28984         (gst_cdxastrip_base_init), (gst_cdxastrip_class_init),
28985         (gst_cdxastrip_init), (gst_cdxastrip_get_src_formats),
28986         (gst_cdxastrip_get_src_query_types),
28987         (gst_cdxastrip_handle_src_query), (gst_cdxastrip_get_event_mask),
28988         (gst_cdxastrip_handle_src_event), (gst_cdxastrip_strip),
28989         (gst_cdxastrip_sync), (gst_cdxastrip_handle_event),
28990         (gst_cdxastrip_chain), (gst_cdxastrip_change_state):
28991         * gst/cdxaparse/gstcdxastrip.h:
28992           SVCD/VCD header stripping separated from CDXA image parsing.
28993         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
28994         (plugin_init):
28995           Add VCD/SVCD header typefinding for VCD/SVCD.
28996         * sys/vcd/vcdsrc.c: (gst_vcdsrc_get_type), (gst_vcdsrc_base_init),
28997         (gst_vcdsrc_class_init), (gst_vcdsrc_init),
28998         (gst_vcdsrc_set_property), (gst_vcdsrc_get_property),
28999         (gst_vcdsrc_get_event_mask), (gst_vcdsrc_get_query_types),
29000         (gst_vcdsrc_get_formats), (gst_vcdsrc_srcpad_event),
29001         (gst_vcdsrc_srcpad_query), (gst_vcdsrc_get),
29002         (gst_vcdsrc_open_file), (gst_vcdsrc_close_file),
29003         (gst_vcdsrc_change_state), (gst_vcdsrc_msf),
29004         (gst_vcdsrc_recalculate), (gst_vcdsrc_uri_get_type),
29005         (gst_vcdsrc_uri_get_protocols), (gst_vcdsrc_uri_get_uri),
29006         (gst_vcdsrc_uri_set_uri), (gst_vcdsrc_uri_handler_init):
29007         * sys/vcd/vcdsrc.h:
29008           Fix up, add seeking, querying, URI interface. Works in totem now.
29009
29010 2004-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
29011
29012         * configure.ac:
29013           back to CVS
29014
29015 === release 0.8.6 ===
29016
29017 2004-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
29018
29019         * NEWS:
29020         * RELEASE:
29021         * configure.ac:
29022         * po/af.po:
29023         * po/az.po:
29024         * po/cs.po:
29025         * po/en_GB.po:
29026         * po/hu.po:
29027         * po/it.po:
29028         * po/nb.po:
29029         * po/nl.po:
29030         * po/or.po:
29031         * po/sq.po:
29032         * po/sr.po:
29033         * po/sv.po:
29034         * po/uk.po:
29035           releasing 0.8.6, "IOU Love"
29036
29037 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
29038
29039         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
29040
29041         * gst/playback/gstplaybasebin.c:
29042           Fix unplayable files error handling.  Fixes #158365
29043
29044 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
29045
29046         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
29047
29048         * gst/typefind/gsttypefindfunctions.c:
29049           Fix broken mp3 typefinding.  Fixes #158375
29050
29051 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
29052
29053         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
29054
29055         * ext/ogg/gstoggdemux.c:
29056           Fix sync on broken files.  Fixes #158976
29057
29058 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
29059
29060         patch by: Edward Hervey <bilboed@bilboed.com>
29061
29062         * ext/libpng/gstpngenc.c:
29063           Copy over buffer properties.  Fixes #158832
29064
29065 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
29066
29067         patch by: Tim-Philipp Müller <t.i.m@zen.co.uk>
29068
29069         * ext/dvdread/dvdreadsrc.c:
29070           Fixes invalid reads (#158462)
29071
29072 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
29073
29074         * sys/v4l/gstv4lsrc.c:
29075         * sys/v4l/gstv4lsrc.h:
29076         * sys/v4l/v4lsrc_calls.c:
29077           Probe less and cache it.  Fixes #159187.
29078
29079 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
29080
29081         * gst/videorate/gstvideorate.c:
29082           Handle all video formats. Fixes #159186.
29083
29084 2004-11-16  Jan Schmidt  <thaytan@mad.scientist.com>
29085         * gst/synaesthesia/gstsynaesthesia.c:
29086         (gst_synaesthesia_class_init), (gst_synaesthesia_init),
29087         (gst_synaesthesia_dispose), (gst_synaesthesia_finalize),
29088         (gst_synaesthesia_sink_link), (gst_synaesthesia_src_getcaps),
29089         (gst_synaesthesia_src_link), (gst_synaesthesia_chain),
29090         (gst_synaesthesia_change_state), (plugin_init):
29091         Fix up synaesthesia to work under different samplerates/ buffer sizes.
29092         Force 320x200 output, as that's the only thing the underlying
29093         synaesthesia implementation supports. Still needs to be made
29094         re-entrant.
29095
29096 2004-11-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29097
29098         * configure.ac:
29099           Fix mpeg2enc configure check (similar to mplex check below).
29100
29101 2004-11-14  Koop Mast  <kwm@rainbow-runner.nl>
29102
29103         reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29104
29105         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
29106           Fix for gcc-2.95 (fixes #158221).
29107
29108 2004-11-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29109
29110         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
29111           Re-add clock distribution hack (until new core is released).
29112           Fixes #158125.
29113
29114 2004-11-13  Arwed v. Merkatz  <v.merkatz@gmx.net>
29115         * configure.ac:
29116           fix mplex configure check segfaulting on some systems (bug #140994)
29117
29118 2004-11-13  Benjamin Otte  <otte@gnome.org>
29119
29120         * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait):
29121           add debugging
29122         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
29123           do a wait when we enter the loop func with no data available to
29124           write instead of getting into an 100% CPU loop by just returning and
29125           being called again by the scheduler
29126
29127 2004-11-13  Jan Schmidt  <thaytan@mad.scientist.com>
29128
29129         * configure.ac:
29130         * ext/libvisual/visual.c: (gst_visual_get_type),
29131         (libvisual_log_handler), (gst_visual_getcaps),
29132         (gst_visual_srclink), (gst_visual_change_state), (make_valid_name),
29133         (plugin_init):
29134           Update libvisual to 0.1.7. Link in the debug handling to gstreamer
29135         * ext/smoothwave/Makefile.am:
29136         * ext/smoothwave/demo-osssrc.c: (main):
29137         * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_class_init),
29138         (gst_smoothwave_init), (gst_smoothwave_dispose), (gst_sw_sinklink),
29139         (gst_sw_srclink), (gst_smoothwave_chain), (gst_sw_change_state),
29140         (plugin_init):
29141         * ext/smoothwave/gstsmoothwave.h:
29142           Make gstsmoothwave a working element in the 20th century.
29143
29144         * gst/chart/gstchart.c: (gst_chart_init), (gst_chart_srcconnect):
29145           Fix incorrect link function
29146
29147 2004-11-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29148
29149         * gst/volume/gstvolume.c:
29150           Allow buffer-frames=0.
29151
29152 2004-11-12 Iain <iaingnome@gmail.com>
29153
29154         * configure.ac: Check for polypaudio
29155
29156         * ext/Makefile.am: Build the polyp dir
29157
29158         * ext/polyp: The polypsink sources.
29159
29160 2004-10-30 Iain <iaingnome@gmail.com>
29161
29162         * gst/interleave/interleave.c (interleave_unlink): Change the src pads
29163         caps to reflect the new number of channels.
29164
29165 2004-11-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29166
29167         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
29168           Fix for negotiation order problem. This would show when the
29169           ALSA loopfuction was called before any other function. ALSA
29170           wouldn't do anything because we're not negotiated yet, leading
29171           to an infinite loop. Showed in e.g. Rhythmbox. Fixes #158006.
29172
29173 2004-11-11  Tim-Philipp Müller  <t.i.m@zen.co.uk>
29174
29175         reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29176
29177         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
29178           No warnings (#157986).
29179
29180 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29181
29182         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
29183           Prefer apev1/2 and id3v1 (at end of file) over musepack.
29184
29185 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29186
29187         * gst/matroska/matroska-demux.c: (gst_matroska_demux_loop_stream):
29188           Signal no-more-pads (so it works in playbin).
29189
29190 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29191
29192         * ext/musepack/gstmusepackreader.cpp:
29193           Workaround for older core.
29194
29195 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29196
29197         * gst/ffmpegcolorspace/imgconvert.c: (yuv420p_to_yuv422):
29198           Actually test for odd width/height rather than testing whether
29199           a temporary variable that was 0 before we subtracted 1 is now
29200           not equal to zero (which it always is).
29201
29202 2004-11-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
29203
29204         * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
29205         Fix compilation if HAVE_XVIDEO is not defined
29206
29207 2004-11-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
29208
29209         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
29210         Fix compilation if HAVE_XVIDEO is not defined
29211
29212 2004-11-11  Jan Schmidt  <thaytan@mad.scientist.com>
29213
29214         * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
29215         (gst_goom_dispose), (gst_goom_sinkconnect), (gst_goom_chain),
29216         (gst_goom_change_state), (plugin_init):
29217         Use the bytestream adapter so goom doesn't depend on the input
29218         buffer size.
29219         Add a debug category
29220
29221 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29222
29223         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
29224           Only set hardware parameters *after* negotiation. Before
29225           negotiation, it will set ANY and that seems to cause crashes
29226           (see e.g. #151288, #153227).
29227
29228 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29229
29230         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
29231           This seems to be antique leftover. It needs to pass error
29232           checking.
29233         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
29234         (gst_sdlvideosink_deinitsdl), (gst_sdlvideosink_initsdl),
29235         (gst_sdlvideosink_destroy), (gst_sdlvideosink_create),
29236         (gst_sdlvideosink_sinkconnect), (gst_sdlvideosink_chain):
29237           Fix GstXOverlay implementation (#151059).
29238
29239 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29240
29241         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
29242           Don't assert (#157853).
29243
29244 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29245
29246         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
29247           Fix bytes/samples confustion.
29248         (gst_alsa_sink_mmap), (gst_alsa_sink_loop):
29249           Fix for underrun (#144389).
29250
29251 2004-11-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29252
29253         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
29254           Disable halfway-seek for pending release (since it needs a new
29255           core release).
29256
29257 2004-11-09  Thomas Vander Stichele  <thomas at apestaart dot org>
29258
29259         * sys/v4l/gstv4lsrc.c:
29260         * sys/v4l/gstv4lsrc.h:
29261         * sys/v4l/v4lsrc_calls.c:
29262           add autoprobe-fps property so we can separate autoprobing parts
29263
29264 2004-11-09  Thomas Vander Stichele  <thomas at apestaart dot org>
29265
29266         * sys/v4l/gstv4lsrc.c:
29267         * sys/v4l/v4lsrc_calls.c:
29268         initialise fourcc to catch unset fourcc's, and debug
29269
29270 2004-11-09  Wim Taymans  <wim@fluendo.com>
29271
29272         * gst/playback/README:
29273         * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
29274         * gst/playback/gstplaybin.c: (gst_play_bin_init),
29275         (gst_play_bin_dispose), (gst_play_bin_set_property),
29276         (remove_sinks), (setup_sinks), (gst_play_bin_change_state),
29277         (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
29278         (gst_play_bin_get_formats), (gst_play_bin_convert),
29279         (gst_play_bin_get_query_types), (gst_play_bin_query):
29280         Cleanups and some more documentation.
29281
29282 2004-11-09  Jan Schmidt  <thaytan@mad.scientist.com>
29283
29284         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
29285         (gst_cacasink_init), (gst_cacasink_chain):
29286         * ext/libcaca/gstcacasink.h:
29287         Cacasink inherits from VideoSink, so let that store the clock.
29288
29289 2004-11-09  Wim Taymans  <wim@fluendo.com>
29290
29291         * gst/playback/README:
29292         * gst/playback/gstplaybasebin.c: (group_destroy), (group_is_muted),
29293         (add_stream), (unknown_type), (add_element_stream), (no_more_pads),
29294         (probe_triggered), (preroll_unlinked), (new_decoded_pad),
29295         (gst_play_base_bin_change_state), (gst_play_base_bin_found_tag):
29296         * gst/playback/gstplaybin.c: (gen_vis_element), (remove_sinks),
29297         (setup_sinks):
29298         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute),
29299         (gst_stream_info_is_mute), (gst_stream_info_set_property):
29300         * gst/playback/gststreaminfo.h:
29301         Updated README.
29302         Only switch groups if all streams have muted (EOSed).
29303         Send Tags in sync with the stream playback instead of in
29304         the playback/preroll phase.
29305         Some cleanups, free the fakesrc elements.
29306
29307 2004-11-09  Benjamin Otte  <in7y118@public.uni-hamburg.de>
29308
29309         * ext/alsa/gstalsa.c: (gst_alsa_get_caps_internal):
29310           buffer-frames property was missing
29311         * ext/arts/gst_arts.c:
29312           rate missing from sinkcaps
29313         * ext/audiofile/gstafparse.c:
29314         * ext/audiofile/gstafsink.c:
29315         * ext/audiofile/gstafsrc.c:
29316         * ext/swfdec/gstswfdec.c:
29317           int audio doesn't know buffer-frames
29318         * ext/cdparanoia/gstcdparanoia.c:
29319           int audio doesn't know chunksize either
29320         * ext/nas/nassink.c:
29321           it's endianness, not endianess
29322         * gst-libs/gst/audio/audio.h:
29323           make float standard pad template caps really describe float
29324         * gst/law/mulaw.c: (linear_factory):
29325           signed only, please
29326         * gst/mpegstream/gstdvddemux.c:
29327           widths of 20 are not valid
29328
29329 2004-11-08  Thomas Vander Stichele  <thomas at apestaart dot org>
29330
29331         Submitted by: Luca Ferretti <elle.uca@infinito.it>
29332
29333         * po/LINGUAS:
29334         * po/it.po:
29335           Add Italian
29336
29337 2004-11-08  Wim Taymans  <wim@fluendo.com>
29338
29339         * gst/playback/README:
29340         * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
29341         * gst/playback/gstplaybasebin.c: (probe_triggered),
29342         (gst_play_base_bin_change_state):
29343         Updated README, added more comments for fixmes etc..
29344
29345 2004-11-08  Wim Taymans  <wim@fluendo.com>
29346
29347         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
29348         We can remove this hack now.
29349
29350 2004-11-08  Wim Taymans  <wim@fluendo.com>
29351
29352         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_ayuv),
29353         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
29354         (gst_videomixer_blend_buffers), (gst_videomixer_loop):
29355         Only mix AYUV for maximum quality.
29356
29357 2004-11-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29358
29359         * ext/ogg/gstoggdemux.c: (get_relative), (gst_ogg_demux_src_query),
29360         (gst_ogg_demux_push), (gst_ogg_pad_push):
29361           Let's act as if we're synchronized now! :).
29362         * ext/theora/theoradec.c: (theora_dec_chain):
29363           Add some debug.
29364
29365 2004-11-08  Wim Taymans  <wim@fluendo.com>
29366
29367         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
29368         (gst_alpha_set_property), (gst_alpha_sink_link),
29369         (gst_alpha_set_ayuv), (gst_alpha_set_i420),
29370         (gst_alpha_chroma_key_ayuv), (gst_alpha_chroma_key_i420),
29371         (gst_alpha_init_params), (gst_alpha_chain):
29372         Implement alpha functions for AYUV too, this increases
29373         accuracy quite a bit.
29374
29375 2004-11-08  Wim Taymans  <wim@fluendo.com>
29376
29377         * gst/ffmpegcolorspace/avcodec.h:
29378         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
29379         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
29380         (gst_ffmpegcsp_avpicture_fill):
29381         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
29382         (gst_ffmpegcsp_caps_remove_format_info):
29383         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
29384         (shrink12), (img_get_alpha_info), (deinterlace_line),
29385         (deinterlace_line_inplace):
29386         * gst/ffmpegcolorspace/imgconvert_template.h:
29387         Added AYUV colorspace and handle RGBA a bit more respectful.
29388
29389 2004-11-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29390
29391         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
29392           Actually always send a discont (cornercase when resending the
29393           same serial-tagged chain twice).
29394
29395 2004-11-08  Julien MOUTTE  <julien@moutte.net>
29396
29397         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_clear),
29398         (gst_ximagesink_finalize):
29399         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
29400         (gst_xvimagesink_finalize): Some more cleanups, leaks fixed and checks.
29401
29402 2004-11-08  Wim Taymans  <wim@fluendo.com>
29403
29404         * gst/typefind/gsttypefindfunctions.c: (aac_type_find):
29405         Don't segfault on NULL data.
29406
29407 2004-11-08  Wim Taymans  <wim@fluendo.com>
29408
29409         * gst/playback/gstdecodebin.c: (unlinked):
29410         * gst/playback/gstplay-marshal.list:
29411         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
29412         (gst_play_base_bin_init), (group_create), (get_active_group),
29413         (get_building_group), (group_destroy), (group_commit),
29414         (queue_overrun), (remove_groups), (add_stream), (unknown_type),
29415         (add_element_stream), (no_more_pads), (probe_triggered),
29416         (preroll_unlinked), (new_decoded_pad), (removed_decoded_pad),
29417         (state_change), (setup_source), (gst_play_base_bin_get_property),
29418         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
29419         (gst_play_base_bin_link_stream),
29420         (gst_play_base_bin_get_streaminfo):
29421         * gst/playback/gstplaybasebin.h:
29422         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
29423         (remove_sinks), (setup_sinks), (gst_play_bin_change_state):
29424         Add support for chained ogg files. Prepare for playlist
29425         support. This patch introduces the concept of pad groups, which
29426         together compose one playable media file.
29427
29428 2004-11-07  David Schleef  <ds@schleef.org>
29429
29430         * testsuite/gst-lint: Check for pad templates that aren't statically
29431         scoped.
29432
29433 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29434
29435         * configure.ac:
29436         * ext/Makefile.am:
29437         * ext/musepack/Makefile.am:
29438         * ext/musepack/gstmusepackdec.cpp:
29439         * ext/musepack/gstmusepackdec.h:
29440         * ext/musepack/gstmusepackreader.cpp:
29441         * ext/musepack/gstmusepackreader.h:
29442           Add musepack decoder.
29443         * ext/faad/gstfaad.c: (gst_faad_base_init):
29444           Make pad templates static.
29445         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
29446         (plugin_init):
29447           Add musepack typefinder, make mp3 typefinding work halfway stream,
29448           which doesn't actually work yet because id3demux doesn't implement
29449           _get_length().
29450
29451 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29452
29453         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
29454         (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop):
29455           Fix interrupt event handling (#144436).
29456
29457 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29458
29459         * ext/mad/gstid3tag.c: (gst_id3_tag_do_typefind):
29460           Hide unused glory.
29461
29462 2004-11-06  Tim-Philipp Müller  <t.i.m@zen.co.uk>
29463
29464         reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29465
29466         * ext/vorbis/vorbisenc.c: (raw_caps_factory):
29467           Fix weird caps (#157548).
29468
29469 2004-11-06  Tim-Philipp Müller  <t.i.m@zen.co.uk>
29470
29471         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29472
29473         * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsm_caps_nego):
29474           Add missing NULL terminator (#157543).
29475
29476 2004-11-05  Thomas Vander Stichele  <thomas at apestaart dot org>
29477
29478         * gst/tcp/gsttcp.h:
29479         * gst/tcp/gsttcpclientsink.c:
29480         * gst/tcp/gsttcpclientsrc.c:
29481         * gst/tcp/gsttcpserversink.c:
29482         * gst/tcp/gsttcpserversrc.c:
29483           ports can go up to 65535.  Move common defines to gsttcp.h
29484
29485 2004-11-05  Wim Taymans  <wim@fluendo.com>
29486
29487         * gst/videotestsrc/videotestsrc.c: (paint_setup_Y41B),
29488         (paint_hline_Y41B), (paint_setup_Y42B), (paint_hline_Y42B):
29489         Added two more colorspaces.
29490
29491 2004-11-05  Wim Taymans  <wim@fluendo.com>
29492
29493         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
29494         (gst_ffmpegcsp_avpicture_fill):
29495         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
29496         (yuv422p_to_yuv422), (yuv420p_to_yuv422), (shrink12),
29497         (img_convert), (deinterlace_line), (deinterlace_line_inplace):
29498         More stride fixes.
29499
29500 2004-11-05  Wim Taymans  <wim@fluendo.com>
29501
29502         * gst/alpha/gstalpha.c: (gst_alpha_set_property), (gst_alpha_add),
29503         (gst_alpha_chroma_key), (gst_alpha_init_params), (gst_alpha_chain):
29504         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
29505         (gst_videomixer_fill_checker), (gst_videomixer_blend_buffers),
29506         (gst_videomixer_loop):
29507         More stride fixes.
29508
29509 2004-11-05  Benjamin Otte  <otte@gnome.org>
29510
29511         * ext/mad/gstmad.c: (gst_mad_chain):
29512           don't overflow data buffer. Flush not needed sync data when syncing
29513           failed.
29514
29515 2004-11-04  Wim Taymans  <wim@fluendo.com>
29516
29517         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
29518         (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
29519         (gst_alpha_get_property), (gst_alpha_add), (gst_alpha_chroma_key),
29520         (gst_alpha_init_params), (gst_alpha_chain),
29521         (gst_alpha_change_state):
29522         Updated the chroma keying algorithm with something more
29523         sophisticated.
29524
29525 2004-11-03  Wim Taymans  <wim@fluendo.com>
29526
29527         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
29528         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
29529         (gst_videomixer_blend_buffers), (gst_videomixer_loop):
29530         Fix stride issues. Does not completely work for odd
29531         heights.
29532
29533 2004-11-03  Wim Taymans  <wim@fluendo.com>
29534
29535         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
29536         (gst_alpha_chroma_key), (gst_alpha_chain):
29537         Fix stride issues. Does not completely work for odd
29538         heights.
29539
29540 2004-11-03  Christophe Fergeau  <teuf@gnome.org>
29541
29542         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
29543         * gst/videoscale/videoscale.c: (videoscale_find_by_structure):
29544         leak fixes
29545
29546 2004-11-03  Wim Taymans  <wim@fluendo.com>
29547
29548         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
29549         (gst_ffmpegcsp_avpicture_fill):
29550         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
29551         (avpicture_alloc):
29552         * gst/ffmpegcolorspace/imgconvert_template.h:
29553         Use correct _fill function to get correct strides.
29554
29555 2004-11-02  David Schleef  <ds@schleef.org>
29556
29557         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
29558         (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_parse_tree),
29559         (qtdemux_parse_udta), (qtdemux_tag_add), (gst_qtdemux_handle_esds):
29560         Change all g_print()s to debugging.  Add a bunch of consistency
29561         checks.
29562
29563 2004-11-02  Wim Taymans  <wim@fluendo.com>
29564
29565         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
29566         (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
29567         (unlinked), (no_more_pads), (close_link):
29568         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
29569         (unknown_type), (add_element_stream), (new_decoded_pad),
29570         (removed_decoded_pad), (setup_source):
29571         * gst/playback/gststreaminfo.c: (gst_stream_info_get_type),
29572         (gst_stream_info_class_init), (gst_stream_info_init),
29573         (gst_stream_info_new), (gst_stream_info_dispose),
29574         (stream_info_mute_pad), (gst_stream_info_set_property),
29575         (gst_stream_info_get_property):
29576         * gst/playback/gststreaminfo.h:
29577         Fix playback of multiple files.
29578         a slightly different approach to handling dynamic pad removals.
29579         This one only looks at pads that we have linked.
29580
29581 2004-11-01  Christophe Fergeau  <teuf@gnome.org>
29582
29583         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_finalize): fix an "invalid
29584         free" warning from libc.
29585
29586 2004-11-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29587
29588         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
29589         (get_unconnected_element), (remove_starting_from), (pad_removed),
29590         (close_link):
29591           Implement support for dynamic pad changing. We listen to "live"
29592           pad removals (i.e. while playing) and re-setup autoplugging
29593           after that. Playbasebin/playbin need some more work for this
29594           to finally work, but decodebin supports (and replugs) chained
29595           ogg now.
29596
29597 2004-11-02  Jan Schmidt  <thaytan@mad.scientist.com>
29598
29599         * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_dispose),
29600         (gst_alsa_finalize):
29601         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init),
29602         (gst_cdaudio_finalize):
29603         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
29604         (cdparanoia_finalize):
29605         * ext/divx/gstdivxdec.c: (gst_divxdec_dispose):
29606         * ext/divx/gstdivxenc.c: (gst_divxenc_dispose):
29607         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
29608         (dvdreadsrc_finalize):
29609         * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
29610         (gst_flacdec_finalize):
29611         * ext/flac/gstflacenc.c: (gst_flacenc_class_init),
29612         (gst_flacenc_finalize):
29613         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_class_init),
29614         (gst_gnomevfssink_finalize):
29615         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_class_init),
29616         (gst_gnomevfssrc_finalize):
29617         * ext/libfame/gstlibfame.c: (gst_fameenc_class_init),
29618         (gst_fameenc_finalize):
29619         * ext/nas/nassink.c: (gst_nassink_class_init),
29620         (gst_nassink_finalize):
29621         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_finalize),
29622         (gst_sdlvideosink_class_init):
29623         * ext/sndfile/gstsf.c: (gst_sf_dispose):
29624         * gst-libs/gst/mixer/mixertrack.c: (gst_mixer_track_dispose):
29625         * gst-libs/gst/tuner/tunerchannel.c: (gst_tuner_channel_dispose):
29626         * gst-libs/gst/tuner/tunernorm.c: (gst_tuner_norm_dispose):
29627         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
29628         (gst_x_window_listener_dispose):
29629         * gst/audioscale/gstaudioscale.c:
29630         * gst/playondemand/gstplayondemand.c: (play_on_demand_class_init),
29631         (play_on_demand_finalize):
29632         * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose):
29633         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
29634         * sys/cdrom/gstcdplayer.c: (cdplayer_class_init),
29635         (cdplayer_finalize):
29636         * sys/glsink/glimagesink.c: (gst_glimagesink_finalize),
29637         (gst_glimagesink_class_init):
29638         * sys/oss/gstosselement.c: (gst_osselement_class_init),
29639         (gst_osselement_finalize):
29640         * sys/oss/gstosssink.c: (gst_osssink_dispose):
29641         * sys/oss/gstosssrc.c: (gst_osssrc_dispose):
29642         * sys/v4l/gstv4lelement.c: (gst_v4lelement_dispose):
29643           Fixes a bunch of problems with finalize and dispose functions,
29644           either assumptions that dispose is only called once, or not calling
29645           the parent class dispose/finalize function
29646
29647 2004-11-01  Stefan Kost  <ensonic@users.sf.net>
29648
29649         * ext/esd/esdsink.c: (gst_esdsink_init), (gst_esdsink_link):
29650           added two api precondition guards
29651           use g_strdup with getenv to fix crash when using ENVVAR
29652
29653 2004-11-01  Jan Schmidt  <thaytan@mad.scientist.com>
29654         * ext/esd/esdsink.c: (gst_esdsink_class_init),
29655         (gst_esdsink_finalize):
29656         Use a finalize function, not dispose, and more importantly,
29657         call the parent class finalize function too
29658
29659 2004-11-01  Johan Dahlin  <johan@gnome.org>
29660
29661         * ext/ogg/gstoggdemux.c:
29662         * gst/tags/gstvorbistag.c:
29663         Plug leaks.
29664
29665 2004-10-31  Benjamin Otte  <otte@gnome.org>
29666
29667         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
29668           lotsa memleaks today. But they're all small...
29669
29670 2004-10-31  Benjamin Otte  <otte@gnome.org>
29671
29672         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
29673           another memleak crushed
29674
29675 2004-10-31  Benjamin Otte  <otte@gnome.org>
29676
29677         * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
29678           fix memleak
29679
29680 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29681
29682         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
29683           Hack to prevent crash when going to READY inside signal handler
29684           while this function is active.
29685
29686 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29687
29688         * gst/ffmpegcolorspace/Makefile.am:
29689         * gst/ffmpegcolorspace/avcodec.h:
29690         * gst/ffmpegcolorspace/common.h:
29691         * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
29692         * gst/ffmpegcolorspace/dsputil.h:
29693         * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
29694         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
29695         (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
29696         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps),
29697         (gst_ffmpegcsp_codectype_to_caps), (gst_ffmpeg_caps_to_smpfmt),
29698         (gst_ffmpeg_caps_to_pixfmt), (gst_ffmpegcsp_caps_with_codectype),
29699         (gst_ffmpegcsp_avpicture_fill):
29700         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
29701         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
29702         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
29703         (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_get_type),
29704         (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
29705         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
29706         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
29707         (gst_ffmpegcsp_get_property), (gst_ffmpegcolorspace_register):
29708         * gst/ffmpegcolorspace/imgconvert.c:
29709         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
29710         (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
29711         (avpicture_get_size), (avcodec_get_pix_fmt_loss),
29712         (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
29713         (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
29714         (yuv422_to_yuv420p), (uyvy422_to_yuv420p), (uyvy422_to_yuv422p),
29715         (yuv422_to_yuv422p), (yuv422p_to_yuv422), (yuv422p_to_uyvy422),
29716         (uyvy411_to_yuv411p), (yuv420p_to_yuv422), (C_JPEG_TO_CCIR),
29717         (img_convert_init), (img_apply_table), (shrink41), (shrink21),
29718         (shrink12), (shrink22), (shrink44), (grow21_line), (grow41_line),
29719         (grow21), (grow22), (grow41), (grow44), (conv411),
29720         (gif_clut_index), (build_rgb_palette), (bitcopy_n), (mono_to_gray),
29721         (monowhite_to_gray), (monoblack_to_gray), (gray_to_mono),
29722         (gray_to_monowhite), (gray_to_monoblack), (avpicture_alloc),
29723         (avpicture_free), (is_yuv_planar), (img_convert),
29724         (get_alpha_info_pal8), (img_get_alpha_info), (deinterlace_line),
29725         (deinterlace_line_inplace), (deinterlace_bottom_field),
29726         (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
29727         * gst/ffmpegcolorspace/imgconvert_template.h:
29728         * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
29729         * gst/ffmpegcolorspace/mmx.h:
29730         * gst/ffmpegcolorspace/utils.c: (av_mallocz), (av_strdup),
29731         (av_fast_realloc), (av_mallocz_static), (av_free_static),
29732         (av_freep), (avcodec_get_context_defaults),
29733         (avcodec_alloc_context), (avcodec_init):
29734           Sync back from gst-ffmpeg. Deprecates ffcolorspace. Adds palette
29735           handling plus update from ffmpeg CVS. Large clean-up.
29736
29737 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29738
29739         * gst/playback/Makefile.am:
29740           We need the marshallers for decodebin, too.
29741
29742 2004-10-30  David Schleef  <ds@schleef.org>
29743
29744         * gst/typefind/gsttypefindfunctions.c: (qt_type_find): Make
29745           quicktime typefinding work with 64-bit offsets.
29746
29747 2004-10-30  Jan Schmidt  <thaytan@mad.scientist.com>
29748
29749         * ext/dv/gstdvdec.c: (gst_dvdec_handle_sink_event):
29750           Set EOS on the element when processing an EOS event.
29751         * ext/speex/gstspeexdec.h:
29752         * ext/speex/gstspeexenc.h:
29753           Only keep a const ptr to the mode
29754         * gst-libs/gst/riff/riff-media.c:
29755         (gst_riff_create_audio_caps_with_data),
29756         (gst_riff_create_audio_template_caps):
29757           Allow WMAV3, with up to 6 channels.
29758         * gst/asfdemux/gstasfmux.c: (gst_asfmux_request_new_pad):
29759           Don't call gst_pad_set_event_function on a sink pad.
29760         * gst/mpegstream/gstdvddemux.c:
29761         (gst_dvd_demux_get_subpicture_stream),
29762         (gst_dvd_demux_set_cur_audio), (gst_dvd_demux_set_cur_subpicture):
29763           Copy the explicit caps that were set across to the cur_* pads,
29764           instead of trying to use a possibly non-existent negotiated caps.
29765           Reset the type of subpicture pads to UNKNOWN after calling
29766           init_stream, so that the caps get set.
29767
29768 2004-10-29  Martin Pitt  <martin.pitt@canonical.com>
29769
29770         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29771
29772         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
29773           Don't touch buffer if it is of size 0 (fixes #151064).
29774
29775 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29776
29777         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push), (gst_ogg_pad_push):
29778           Synchronized discont handling.
29779
29780 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29781
29782         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
29783         (gst_ogg_demux_push):
29784           Make seeking sort-of exact again (fixes #156387).
29785
29786 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29787
29788         * gst/playback/gstplaybasebin.c: (unknown_type),
29789         (add_element_stream), (new_decoded_pad),
29790         (gst_play_base_bin_change_state):
29791         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
29792         (gst_stream_info_init), (gst_stream_info_new),
29793         (gst_stream_info_dispose), (gst_stream_info_get_property):
29794         * gst/playback/gststreaminfo.h:
29795           Make caps explicitely available. Makes testing for unsupported
29796           types possible. Improves error reporting.
29797
29798 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29799
29800         * gst/audioconvert/gstaudioconvert.c:
29801         (gst_audio_convert_buffer_to_default_format):
29802           Really don't touch read-only buffers (#156563).
29803
29804 2004-10-29  Sebastien Cote  <sc5@hermes.usherb.ca>
29805
29806         Reviewd by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29807
29808         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
29809           Fix memleak (#155223).
29810
29811 2004-10-29  Wim Taymans  <wim@fluendo.com>
29812
29813         * gst/tcp/.cvsignore:
29814         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
29815         (gst_multifdsink_class_init), (gst_multifdsink_init),
29816         (gst_multifdsink_add), (gst_multifdsink_remove),
29817         (gst_multifdsink_remove_client_link), (is_sync_frame),
29818         (gst_multifdsink_new_client),
29819         (gst_multifdsink_handle_client_write),
29820         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
29821         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
29822         (gst_multifdsink_get_property):
29823         * gst/tcp/gstmultifdsink.h:
29824         Added burst on connect sync_method, deprecated sync_clients,
29825         streamlined the sync code some more.
29826
29827 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29828
29829         * gst/playback/gstplaybasebin.c: (thread_error), (setup_source),
29830         (gst_play_base_bin_change_state):
29831           Improve error reporting.
29832
29833 2004-10-28  Wim Taymans  <wim@fluendo.com>
29834
29835         * gst/tcp/Makefile.am:
29836         * gst/tcp/fdsetstress.c: (mess_some_more), (run_test), (main):
29837         * gst/tcp/gstfdset.c: (nearest_pow), (resize), (ensure_size),
29838         (gst_fdset_new), (gst_fdset_free), (gst_fdset_set_mode),
29839         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
29840         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
29841         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
29842         (gst_fdset_wait):
29843         Added more locks around fdset structures. Fixed/reworked
29844         the poll array resizing code.
29845         Added stress test for fdset.
29846
29847 2004-10-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
29848
29849         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
29850         fix build
29851
29852 2004-10-28  Benjamin Otte  <otte@gnome.org>
29853
29854         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
29855           fix link function to always query channels and query width for
29856           floats
29857         * configure.ac:
29858           add equalizer dir
29859         * gst/equalizer/Makefile.am:
29860         * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_get_type),
29861         (gst_iir_equalizer_base_init), (gst_iir_equalizer_class_init),
29862         (gst_iir_equalizer_init), (gst_iir_equalizer_finalize),
29863         (arg_to_scale), (setup_filter),
29864         (gst_iir_equalizer_compute_frequencies),
29865         (gst_iir_equalizer_set_property), (gst_iir_equalizer_get_property),
29866         (gst_iir_equalizer_filter_inplace), (gst_iir_equalizer_setup),
29867         (plugin_init):
29868           add an equalizer
29869
29870 2004-10-27  Thomas Vander Stichele  <thomas at apestaart dot org>
29871
29872         Submitted by: Kjartan Maraas <kmaraas@broadpark.no>
29873
29874         * po/LINGUAS:
29875         * po/nb.po:
29876           Added Norwegian Bokmaal translation
29877
29878 2004-10-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29879
29880         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
29881           Don't break on options (fixes #156488).
29882
29883 2004-10-27  Thomas Vander Stichele  <thomas at apestaart dot org>
29884
29885         * configure.ac:
29886         * ext/cdaudio/Makefile.am:
29887         * sys/Makefile.am:
29888           fix build on older automake
29889
29890 2004-10-26  Wim Taymans  <wim@fluendo.com>
29891
29892         * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
29893         (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
29894         Allow a little margin when negotiating the framerate.
29895
29896 2004-10-26  Stefan Kost  <ensonic@users.sf.net>
29897
29898         * gst/level/gstlevel.c:
29899           synchonised naming of pads and pad-templates
29900
29901 2004-10-26  Wim Taymans  <wim@fluendo.com>
29902
29903         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
29904         (gst_ogg_demux_handle_event), (_find_chain_get_unknown_part),
29905         (_find_streams_check), (gst_ogg_demux_push):
29906         Fix EOS again. Needs to be done in a better way. We should not
29907         remove the pad if there is no new chained stream.
29908
29909 2004-10-26 Iain <iaingnome@gmail.com>
29910
29911         * ext/ogg/gstoggdemux.c (gst_ogg_pad_new): Free the tag list.
29912         * gst/audioscale/gstaudioscale.c (gst_audioscale_link): Free the copy
29913         of the caps.
29914         * gst/interleave/interleave.c (interleave_class_init): Hook up release
29915         pad.
29916         (interleave_release_pad): Remove the pad.
29917         * gst/level/gstlevel.c: Allow the level to take 1 or 2 channels.
29918         * sys/sunaudio/gstsunaudio.c (gst_sunaudio_setparams): Pay attention to
29919         the set device.
29920         * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support): Free the
29921         attrs
29922         (gst_xvimagesink_xcontext_clear): Free the xcontext.
29923         (gst_xvimagesink_finalize): Free the par.
29924
29925 2004-10-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29926
29927         * gst/avi/gstavimux.c: (gst_avimux_audsinkconnect),
29928         (gst_avimux_stop_file):
29929           First calculate the rate, and only then use it. Hdr.rate is a
29930           multiple and not a derivative of hdr.scale. Scale is not the
29931           same as blockalign but is solely related to rate.
29932
29933 2004-10-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29934
29935         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
29936         (gst_gnomevfssink_handle_event), (gst_gnomevfssink_chain):
29937           Implement seeking.
29938
29939 2004-10-25  James Henstridge  <james@jamesh.id.au>
29940
29941         Reviewed by:  David Schleef  <ds@schleef.org>
29942
29943         * examples/gstplay/player.c: (got_stream_length), (main):
29944         * examples/seeking/cdplayer.c: (update_scale):
29945         * examples/seeking/seek.c: (format_value), (update_scale):
29946         * examples/seeking/spider_seek.c: (format_value), (update_scale),
29947         (stop_seek):
29948         Build fixes on AMD64.
29949
29950 2004-10-25  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
29951
29952         reviewed by: Ronald Bultje <rbultje at gnome dot org>
29953
29954         * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
29955         Fix for some v4l cards which hang in v4lsrc
29956
29957 2004-10-25  Wim Taymans  <wim@fluendo.com>
29958
29959         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_remove),
29960         (gst_ogg_demux_push), (gst_ogg_chains_clear):
29961         Make sure to remove the pad when a new chain is
29962         encountered. Set some vars to NULL so we don't try
29963         to reference freed memory.
29964
29965 2004-10-25  Wim Taymans  <wim@fluendo.com>
29966
29967         * examples/seeking/Makefile.am:
29968         * examples/seeking/cdplayer.c: (update_scale):
29969         * examples/seeking/chained.c: (unlinked), (new_pad), (main):
29970         * examples/seeking/playbin.c: (make_playerbin_pipeline),
29971         (format_value), (update_scale), (iterate), (start_seek),
29972         (stop_seek), (print_media_info), (play_cb), (pause_cb), (stop_cb),
29973         (print_usage), (main):
29974         Added some more examples, update others.
29975
29976 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29977
29978         * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
29979         * ext/speex/gstspeexdec.c: (speex_dec_chain):
29980         * ext/theora/theoradec.c: (theora_dec_chain):
29981         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
29982           Add codec-name metadata.
29983
29984 2004-10-25  Takao Fujiwara  <Takao.Fujiwara@Sun.COM>
29985
29986         Reviewd by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29987
29988         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
29989         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
29990         * ext/alsa/gstalsamixertrack.h:
29991         * po/POTFILES.in:
29992           ALSA mixer track label internationalization (#154054).
29993
29994 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29995
29996         * ext/theora/theoradec.c: (theora_dec_chain):
29997           Export bitrate as metadata.
29998
29999 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30000
30001         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
30002         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
30003         * ext/alsa/gstalsamixertrack.h:
30004           Fix names, fix loop.
30005
30006 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30007
30008         * ext/speex/gstspeexdec.c: (gst_speex_dec_init),
30009         (speex_dec_convert):
30010           sinkconvert function so oggdemux can get the file length (totem).
30011
30012 2004-10-25  James Morrison  <ja2morri@csclub.uwaterloo.ca>
30013
30014         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30015
30016         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
30017           Don't push incomplete packets.
30018         * gst/typefind/gsttypefindfunctions.c: (m4a_type_find):
30019           Fix MPEG-4 audio typefinding.
30020
30021 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30022
30023         * sys/v4l/Makefile.am:
30024         * sys/v4l/gstv4l.c: (plugin_init):
30025         * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_type),
30026         (gst_v4lelement_init), (gst_v4lelement_dispose),
30027         (gst_v4lelement_change_state):
30028         * sys/v4l/gstv4lelement.h:
30029         * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_open),
30030         (gst_v4l_xoverlay_close), (idle_refresh),
30031         (gst_v4l_xoverlay_set_xwindow_id):
30032         * sys/v4l/gstv4lxoverlay.h:
30033         * sys/v4l/v4l-overlay_calls.c:
30034         * sys/v4l/v4l_calls.h:
30035         * sys/v4l2/Makefile.am:
30036         * sys/v4l2/gstv4l2.c: (plugin_init):
30037         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_type),
30038         (gst_v4l2element_init), (gst_v4l2element_dispose),
30039         (gst_v4l2element_change_state):
30040         * sys/v4l2/gstv4l2element.h:
30041         * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_open),
30042         (gst_v4l2_xoverlay_close), (idle_refresh),
30043         (gst_v4l2_xoverlay_set_xwindow_id):
30044         * sys/v4l2/gstv4l2xoverlay.h:
30045         * sys/v4l2/v4l2-overlay_calls.c:
30046         * sys/v4l2/v4l2_calls.h:
30047           Remove client-side overlay handling, use the X-server v4l plugin
30048           for that. Nicer overlay, less code. Also make the plugin
30049           compileable without X (but then without overlay, obviously).
30050           Makes xwindowlistener obsolete, should we remove that?
30051
30052 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30053
30054         * sys/oss/gstosssrc.c: (gst_osssrc_get_time), (gst_osssrc_get),
30055         (gst_osssrc_src_query):
30056         * sys/oss/gstosssrc.h:
30057           OK, so people want offset in DEFAULT. This time, actually fix all
30058           cases.
30059         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
30060           Add FPS properly.
30061
30062 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30063
30064         * gst/asfdemux/gstasfmux.c:
30065         * gst/avi/gstavimux.c:
30066           Framerate.
30067
30068 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30069
30070         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_set_property):
30071           Fix properties (channel, norm, frequency).
30072
30073 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30074
30075         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_property):
30076           Flag typo.
30077         * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults):
30078           No warnings.
30079
30080 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30081
30082         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_clear_format_list):
30083           Fix hang.
30084
30085 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30086
30087         * sys/v4l2/gstv4l2element.h:
30088           Yet Another Hack (tm) for kernel header borkedness.
30089         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
30090         (gst_v4l2src_v4l2fourcc_to_caps), (gst_v4l2_fourcc_from_structure),
30091         (gst_v4l2src_link), (gst_v4l2src_getcaps),
30092         (gst_v4l2src_change_state):
30093         * sys/v4l2/gstv4l2src.h:
30094         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_capture_init),
30095         (gst_v4l2src_capture_start), (gst_v4l2src_capture_stop):
30096           Fix caps, keep track of state, work.
30097
30098 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30099
30100         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
30101           Quiet.
30102
30103 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30104
30105         * sys/oss/gstosssrc.c: (gst_osssrc_get):
30106           Don't mix bytes and samples.
30107
30108 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30109
30110         * ext/ogg/gstoggmux.c:
30111           Basic pad template which accepts OGM tracks, speex, flac, vorbis
30112           and theora. Any is incorrect.
30113         * gst/asfdemux/gstasfmux.c: (gst_asfmux_vidsink_link):
30114           Fix caps.
30115         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
30116         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
30117         (gst_v4lmjpegsrc_init), (gst_v4lmjpegsrc_srcconnect),
30118         (gst_v4lmjpegsrc_getcaps), (gst_v4lmjpegsrc_change_state):
30119         * sys/v4l/gstv4lmjpegsrc.h:
30120         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
30121         (gst_v4lsrc_change_state):
30122         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_start),
30123         (gst_v4lmjpegsrc_capture_stop):
30124           Fix caps. Keep track of internal state. Work.
30125
30126 2004-10-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30127
30128         * ext/Makefile.am:
30129           Fix the build fixes.
30130
30131 2004-10-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30132
30133         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
30134         (gst_ogg_demux_src_event), (_find_chain_seek),
30135         (gst_ogg_pad_push):
30136           Check for pad availability before using it.
30137         * ext/ogg/gstoggdemux.c: (_find_chain_process):
30138           Fix parsing of chained ogg. Needs more work on the decoder side.
30139
30140 2004-10-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
30141
30142         * gst/spectrum/Makefile.am:
30143         * gst/spectrum/demo-osssrc.c: (spectrum_chain), (main),
30144         (idle_func):
30145           Fix demo and reenable it. Yes, I'm currently playing with audio
30146           analysis tools
30147
30148 2004-10-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30149
30150         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
30151           We love it if files that start at zero work too...
30152
30153 2004-10-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30154
30155         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
30156           Handle files with missing EOS headers.
30157
30158 2004-10-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
30159
30160         * gst/tcp/gsttcpserversink.c:
30161         (gst_tcpserversink_handle_server_read),
30162         (gst_tcpserversink_init_send):
30163         Zero some variables first (need for accept not to return EINVAL)
30164
30165 2004-10-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30166
30167         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
30168         (gst_ogg_demux_src_event), (gst_ogg_pad_push):
30169         * ext/theora/theoradec.c: (theora_dec_sink_convert),
30170         (theora_dec_chain):
30171         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
30172         (gst_vorbis_dec_init), (vorbis_dec_convert), (vorbis_dec_chain):
30173           Seeking and querying finetune.
30174
30175 2004-10-20  Thomas Vander Stichele  <thomas at apestaart dot org>
30176
30177         * configure.ac:
30178         * ext/Makefile.am:
30179         * ext/raw1394/Makefile.am:
30180           fix the build
30181
30182 2004-10-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30183
30184         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
30185           Wrong return.
30186         * gst/playback/Makefile.am:
30187         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
30188         * gst/playback/gstplay-marshal.list:
30189         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
30190           Fix marshallers.
30191
30192 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30193
30194         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event):
30195           Silence.
30196
30197 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30198
30199         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
30200         (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
30201         (gst_ogg_pad_push):
30202           Yay for non-lineair granulepos in theora.
30203
30204 2004-10-18  Wim Taymans  <wim@fluendo.com>
30205
30206         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
30207         (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
30208         * ext/dv/gstdvdec.h:
30209         Make sure we renegotiate aspect ratio when the camera switches.
30210
30211 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30212
30213         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
30214         (gst_ogg_demux_src_event), (gst_ogg_pad_push):
30215           Start at zero.
30216         * ext/theora/theoradec.c: (theora_dec_chain):
30217           Skip headers. Bad idea for chained ogg, but fixes seeking.
30218
30219 2004-10-18  Wim Taymans  <wim@fluendo.com>
30220
30221         * configure.ac:
30222         I swear, this is the last time I touch this.
30223
30224 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30225
30226         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
30227         (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
30228         (_read_bos_process), (gst_ogg_demux_iterate), (gst_ogg_pad_new):
30229           Faster seeking.
30230         * ext/theora/theoradec.c: (theora_dec_sink_convert):
30231           Time-to-default conversion.
30232         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
30233           Don't error on unknown packets, just skip. We should probably
30234           read them if we want to support chained ogg.
30235
30236 2004-10-18  Wim Taymans  <wim@fluendo.com>
30237
30238         * configure.ac:
30239         Added cdaudio to wrong list.
30240
30241 2004-10-18  Wim Taymans  <wim@fluendo.com>
30242
30243         * configure.ac:
30244         Revive cdaudio.
30245
30246 2004-10-18  Wim Taymans  <wim@fluendo.com>
30247
30248         * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
30249         (gst_dvdec_video_link), (gst_dvdec_push):
30250         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
30251         (gst_smokeenc_resync), (gst_smokeenc_chain):
30252         Fix mimetype on smoke encoder.
30253         Add aspect ratio to dvdec. Not sure if these
30254         values are correct though....
30255
30256 2004-10-18  Wim Taymans  <wim@fluendo.com>
30257
30258         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
30259         Fix vorbis property descriptions and ranges.
30260
30261 2004-10-18  Wim Taymans  <wim@fluendo.com>
30262
30263         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
30264         Really do nothing when no data is available.
30265         Go to the playing state when the stream is not seekable
30266         instead of failing.
30267
30268 2004-10-18  Wim Taymans  <wim@fluendo.com>
30269
30270         * ext/cdaudio/gstcdaudio.c: (_do_init), (gst_cdaudio_base_init),
30271         (gst_cdaudio_get_event_masks), (gst_cdaudio_send_event),
30272         (gst_cdaudio_query), (plugin_init), (cdaudio_uri_get_type),
30273         (cdaudio_uri_get_protocols), (cdaudio_uri_get_uri),
30274         (cdaudio_uri_set_uri), (cdaudio_uri_handler_init):
30275         Added uri handler for cd://
30276         Port to new API.
30277
30278 2004-10-18  Wim Taymans  <wim@fluendo.com>
30279
30280         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
30281         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
30282         (try_to_link_1), (no_more_pads), (close_link), (type_found):
30283         * gst/playback/gstplaybasebin.c: (gen_preroll_element),
30284         (remove_prerolls), (unknown_type), (add_element_stream),
30285         (new_decoded_pad), (setup_source), (gst_play_base_bin_add_element),
30286         (gst_play_base_bin_remove_element),
30287         (gst_play_base_bin_link_stream):
30288         * gst/playback/gstplaybin.c: (gen_video_element),
30289         (gen_vis_element), (remove_sinks), (setup_sinks):
30290         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
30291         (gst_stream_info_get_type), (gst_stream_info_class_init),
30292         (gst_stream_info_init), (gst_stream_info_new),
30293         (gst_stream_info_dispose), (stream_info_mute_pad),
30294         (gst_stream_info_set_property), (gst_stream_info_get_property):
30295         * gst/playback/gststreaminfo.h:
30296         Add sink padtemplate to decodebin.
30297         Added some more comments.
30298         Make queue size configurable in playbasebin.
30299         Added possibility to use elements as sinks (ex cdaudio).
30300
30301 2004-10-15  Wim Taymans  <wim@fluendo.com>
30302
30303         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init),
30304         (gst_speexenc_chain):
30305         Fix speex timestamps so that it gets muxed properly.
30306
30307 2004-10-15  Wim Taymans  <wim@fluendo.com>
30308
30309         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_get_type),
30310         (gst_dv1394src_base_init), (gst_dv1394src_class_init),
30311         (gst_dv1394src_init), (gst_dv1394src_dispose),
30312         (gst_dv1394src_iso_receive), (gst_dv1394src_discover_avc_node),
30313         (gst_dv1394src_change_state), (gst_dv1394src_get_event_mask),
30314         (gst_dv1394src_event), (gst_dv1394src_get_formats),
30315         (gst_dv1394src_convert), (gst_dv1394src_get_query_types),
30316         (gst_dv1394src_query), (gst_dv1394src_uri_get_type),
30317         (gst_dv1394src_uri_get_protocols), (gst_dv1394src_uri_get_uri),
30318         (gst_dv1394src_uri_set_uri), (gst_dv1394src_uri_handler_init):
30319         * ext/raw1394/gstdv1394src.h:
30320         Added conversion/query functions.
30321         Update buffer timestamps,
30322         Added signals.
30323         Added uri dv:// so it might play from the firewire in playbin.
30324         Fix a possible leak.
30325         Added debugging.
30326
30327 2004-10-15  Wim Taymans  <wim@fluendo.com>
30328
30329         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_class_init),
30330         (gst_dv1394src_init), (gst_dv1394src_set_property),
30331         (gst_dv1394src_get_property), (gst_dv1394src_iso_receive),
30332         (gst_dv1394src_discover_avc_node), (gst_dv1394src_change_state):
30333         * ext/raw1394/gstdv1394src.h:
30334         Added AV/C VTR control support needed for some cameras.
30335         Added automatic port detection.
30336         Added properties for selecting the channel.
30337         The configure.ac script is not yet updated to reflect the
30338         new libavc1394 and librom1394 dependencies.
30339
30340 2004-10-15  Wim Taymans  <wim@fluendo.com>
30341
30342         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
30343         (qtdemux_parse), (gst_qtdemux_handle_esds):
30344         An esds box is not a container.
30345         Fix parsing of mp4v boxes.
30346         Do not try to renegotiate fps for each frame. Need to
30347         find a better method. This should fix mp4 playback.
30348
30349 2004-10-14  David Schleef  <ds@schleef.org>
30350
30351         * configure.ac: update for swfdec-0.3 and liboil-0.2
30352         * ext/swfdec/gstswfdec.c: update for swfdec-0.3
30353         * ext/swfdec/gstswfdec.h: same
30354         * gst/videofilter/gstvideobalance.c: update for liboil-0.2
30355         * gst/videotestsrc/videotestsrc.c: same
30356
30357 2004-10-14  Wim Taymans  <wim@fluendo.com>
30358
30359         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
30360         (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
30361         (is_sync_frame), (gst_multifdsink_new_client),
30362         (gst_multifdsink_handle_client_write),
30363         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
30364         (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
30365         Turn warnings into info.
30366         Don't allow a state change in the streaming thread.
30367
30368 2004-10-14  Thomas Vander Stichele  <thomas at apestaart dot org>
30369
30370         * ext/vorbis/oggvorbisenc.c:
30371         * ext/vorbis/vorbisdec.c:
30372           fix template sample rate
30373
30374 2004-10-13  Wim Taymans  <wim@fluendo.com>
30375
30376         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
30377         Decoding the header first fixes some problems in resyncing
30378         in more mp3s.
30379
30380 2004-10-12  Wim Taymans  <wim@fluendo.com>
30381
30382         * gst/playback/gstplaybin.c: (gen_video_element),
30383         (gen_vis_element), (remove_sinks), (setup_sinks):
30384         Added vis plugin support, need to configure the vis
30385         element to activate it.
30386
30387 2004-10-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30388
30389         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get),
30390         (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
30391           Some debug.
30392         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
30393         (gst_avi_demux_handle_src_event), (gst_avi_demux_read_superindex),
30394         (gst_avi_demux_read_subindexes), (gst_avi_demux_add_stream),
30395         (gst_avi_demux_stream_index), (gst_avi_demux_skip),
30396         (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
30397         (gst_avi_demux_massage_index), (gst_avi_demux_stream_header):
30398         * gst/avi/gstavidemux.h:
30399           Support for openDML-2.0 indx/ix## chunks. Support for broken index
30400           recovery (where, if part of the index is broken, we will still read
30401           the rest of the index and recover the broken part by stream
30402           scanning). More broken media support. EOS workarounds. General AVI
30403           braindamage headache recovery. Aspirin included.
30404
30405 2004-10-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30406
30407         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_open),
30408         (cdparanoia_event), (cdparanoia_query):
30409           Get rid of hideous lead-in.
30410
30411 2004-10-11  Wim Taymans  <wim@fluendo.com>
30412
30413         * gst/playback/gstplaybasebin.c: (setup_source):
30414         Wrong var used to get g_list_next.
30415
30416 2004-10-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30417
30418         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
30419         (cdparanoia_get), (cdparanoia_open):
30420           Report discid as metadata, add duration.
30421
30422 2004-10-11  Wim Taymans  <wim@fluendo.com>
30423
30424         * gst/playback/gstplaybasebin.c: (setup_source):
30425         Cleanup the previous pipeline a little earlier for the
30426         case that a source element provides raw data.
30427
30428 2004-10-11  Benjamin Otte  <otte@gnome.org>
30429
30430         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
30431           reset v1 tag offset when there is no v1 tag. Fixes id3demux always
30432           consuming the last 128 bytes, even though it was valid mp3 data.
30433
30434 2004-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
30435
30436         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
30437         (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
30438         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
30439         Change g_warnings to GST_WARNING_OBJECT and fix colourspace issue
30440
30441 2004-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
30442
30443         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps):
30444         Fix for webcams that support only specific width or height
30445
30446 2004-10-09  Tim-Philipp Müller  <t.i.m@zen.co.uk>
30447
30448         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30449
30450         * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file):
30451           Fix wrong discont event setup (fixes #154967).
30452
30453 2004-10-09  Sebastien Cote  <sc5@hermes.usherb.ca>
30454
30455         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30456
30457         * gst/auparse/gstauparse.c: (gst_auparse_chain):
30458           Error out on invalid data (fixes #154807).
30459
30460 2004-10-09  Tim-Philipp Müller  <t.i.m@zen.co.uk>
30461
30462         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30463
30464         * ext/dvdread/dvdreadsrc.c: (_read):
30465           Make titles > 0 work again (fixes #154834).
30466
30467 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30468
30469         * gst-libs/gst/riff/riff-media.c:
30470         (gst_riff_create_video_template_caps):
30471           WMV3 missing in template caps.
30472
30473 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30474
30475         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
30476           OK, so the original code was too strict. It makes random AVI files
30477           hang for seconds upon opening, which is unacceptable and is far
30478           beyond the original goal of getting multiple chunks for one-chunk
30479           sounc stream files. So now do just that.
30480
30481 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30482
30483         * gst/playback/gstplaybasebin.c: (setup_source),
30484         (gst_play_base_bin_change_state):
30485           Actually clean up streaminfo if output fails. This would trigger
30486           if, for example, there was no CD in the drive. No preroll, so
30487           a streaminfo structure is created, but the subsequent state change
30488           of the thread fails.
30489         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
30490           Don't change state if parent failed.
30491
30492 2004-10-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30493
30494         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
30495         (gst_play_bin_init), (gst_play_bin_get_property), (handoff),
30496         (gen_video_element), (remove_sinks):
30497           Add small bits of code for screenshot handling.
30498
30499 2004-10-08  Wim Taymans  <wim@fluendo.com>
30500
30501         * gst/playback/gstplaybin.c: (gst_play_bin_set_property),
30502         (gen_video_element), (gen_audio_element), (setup_sinks):
30503         Don't assume the user provided sinks are named "sink"...
30504
30505 2004-10-08  Wim Taymans  <wim@fluendo.com>
30506
30507         * gst/playback/gstplaybasebin.c: (gen_preroll_element),
30508         (unknown_type), (setup_source), (gst_play_base_bin_remove_element),
30509         (gst_play_base_bin_link_stream):
30510         Do not try to autoplug sources that generate raw streams like
30511         cdparanoia.
30512         disconnect the preroll overrun signal when we don't need it anymore.
30513
30514 2004-10-08  Milosz Derezynski  <internalerror.rez@fhtw-berlin.de>
30515
30516         * ext/cdparanoia/gstcdparanoia.c: (_do_init),
30517         Added reworked patch from #154903 from milosz derezynski (deadchip).
30518
30519 2004-10-08  Wim Taymans  <wim@fluendo.com>
30520
30521         * ext/cdparanoia/gstcdparanoia.c: (_do_init),
30522         (cdparanoia_base_init), (cdparanoia_class_init), (cdparanoia_init),
30523         (cdparanoia_dispose), (cdparanoia_get), (cdparanoia_change_state),
30524         (cdparanoia_convert), (cdparanoia_uri_get_type),
30525         (cdparanoia_uri_get_protocols), (cdparanoia_uri_get_uri),
30526         (cdparanoia_uri_set_uri), (cdparanoia_uri_handler_init):
30527         * ext/cdparanoia/gstcdparanoia.h:
30528         This adds the cdda://<tracknum> uri.
30529
30530 2004-10-08  Wim Taymans  <wim@fluendo.com>
30531
30532         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
30533         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
30534         (try_to_link_1), (no_more_pads), (close_link), (type_found):
30535         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
30536         (unknown_type), (gst_play_base_bin_remove_element),
30537         (gst_play_base_bin_link_stream):
30538         * gst/playback/gstplaybasebin.h:
30539         * gst/playback/gstplaybin.c: (gst_play_bin_init),
30540         (gst_play_bin_set_property), (gen_video_element),
30541         (gen_audio_element), (setup_sinks):
30542         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
30543         (gst_stream_info_get_type), (gst_stream_info_class_init),
30544         (gst_stream_info_init), (gst_stream_info_new),
30545         (gst_stream_info_dispose), (stream_info_mute_pad),
30546         (gst_stream_info_set_property), (gst_stream_info_get_property):
30547         * gst/playback/gststreaminfo.h:
30548         Reuse the audio and video bins.
30549         Some internal cleanups in the stream selection code.
30550
30551 2004-10-08  Julien MOUTTE  <julien@moutte.net>
30552
30553         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
30554         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
30555         * sys/ximage/ximagesink.h:
30556         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
30557         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
30558         * sys/xvimage/xvimagesink.h: Reverting Ronald's changes as the issue is
30559         not coming from those elements. Moreover these elements should not keep
30560         the xid they have been given when in NULL state.
30561
30562 2004-10-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30563
30564         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
30565         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
30566         * sys/ximage/ximagesink.h:
30567         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
30568         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
30569         * sys/xvimage/xvimagesink.h:
30570           Actually only create a new toplevel window if we're not gonna
30571           embed it right after.
30572
30573 2004-10-07  Wim Taymans  <wim@fluendo.com>
30574
30575         * gst/playback/gstplaybasebin.c: (play_base_bin_mute_pad),
30576         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream):
30577         * gst/playback/gstplaybin.c: (setup_sinks):
30578         Implement muting/unmuting of streams, mute streams that are not
30579         used.
30580
30581 2004-10-07  Wim Taymans  <wim@fluendo.com>
30582
30583         * gst/typefind/gsttypefindfunctions.c: (ac3_type_find),
30584         (plugin_init):
30585         Added lame audio/x-ac3 typefind function.
30586
30587 2004-10-06  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
30588
30589         * configure.ac:
30590           bump nano to cvs
30591
30592 === release 0.8.5 ===
30593
30594 2004-10-06  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
30595
30596         * NEWS:
30597         * RELEASE:
30598         * configure.ac:
30599           releasing 0.8.5, "Take You On"
30600
30601 2004-10-06  Wim Taymans  <wim@fluendo.com>
30602
30603         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
30604         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
30605         (no_more_pads), (close_link), (type_found):
30606         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
30607         * gst/playback/gstplaybin.c: (gen_video_element):
30608         Do not signal the no_more_pads after the first pad when
30609         we are plugging a non dynamic element with multiple
30610         output pads (like swfdec, dvdec, ...).
30611
30612 2004-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
30613
30614         * configure.ac:
30615           bump for prerelease
30616
30617 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
30618
30619         * gst/wavparse/gstwavparse.c:
30620           add ATRAC3 to STATIC CAPS to fix a warning
30621
30622         * gst/matroska/ebml-read.c:
30623         * gst-libs/gst/riff/riff-read.c:
30624           fix typos
30625
30626 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
30627
30628         * gst-libs/gst/riff/riff-media.c:
30629           generate caps for ATRAC3 audio streams
30630
30631         * gst/realmedia/rmdemux.c:
30632           generate caps for ATRAC3 audio streams
30633
30634 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
30635
30636         * gst/wavparse/Makefile.am
30637         * gst/wavparse/riff.h
30638         * gst/wavparse/wavparse.vcproj
30639           riff.h removal (unused and duplication with riff-ids.h)
30640
30641 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
30642
30643         * gst/wavparse/gstwavparse.h
30644           remove duplicated defines for audio codec codes
30645
30646         * gst-libs/gst/riff/riff-ids.h
30647         * gst/wavenc/riff.h:
30648           add "4CC" code for ATRAC3 audio streams
30649           add "4CC" code for ITU_G721_ADPCM (unused for now)
30650
30651 2004-10-06  Wim Taymans  <wim@fluendo.com>
30652
30653         * gst/flx/gstflxdec.c: (gst_flxdec_init), (gst_flxdec_loop):
30654         Actually _do_ negotiation. Pass gdouble as arg instead
30655         of guint64 for the framerate.
30656
30657 2004-10-06  Wim Taymans  <wim@fluendo.com>
30658
30659         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
30660         (find_compatibles), (close_pad_link), (try_to_link_1),
30661         (no_more_pads), (close_link), (type_found):
30662         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
30663         * gst/playback/gstplaybin.c: (gen_video_element),
30664         (gen_audio_element):
30665         Set state on newly added element to READY so that negotiation
30666         can happen ASAP.
30667         Addes some more debug info.
30668         Do not try to plug pads with multiple caps structures or ANY
30669         because it is too dangerous since we do not do dynamic
30670         replugging.
30671
30672 2004-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
30673
30674         written by: Gora Mohanty <gora_mohanty@yahoo.co.in>
30675
30676         * po/LINGUAS:
30677         * po/or.po:
30678           add Oriya translation
30679
30680 2004-10-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30681
30682         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
30683           Prevent overwrite of size member. Makes audio sound crappy.
30684
30685 2004-10-05  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
30686
30687         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
30688         Add rmvb to the list of known RealMedia extensions
30689
30690 2004-10-05  Wim Taymans  <wim@fluendo.com>
30691
30692         * ext/libmng/gstmngdec.c: (gst_mngdec_loop), (mngdec_error),
30693         (mngdec_openstream), (mngdec_closestream),
30694         (mngdec_handle_sink_event), (mngdec_readdata),
30695         (mngdec_gettickcount), (mngdec_settimer), (mngdec_processheader),
30696         (mngdec_getcanvasline), (mngdec_refresh),
30697         (gst_mngdec_change_state):
30698         Set the framerate correctly.
30699
30700 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30701
30702         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
30703           There was something wrong with the index massaging.
30704
30705 2004-10-04  Wim Taymans  <wim@fluendo.com>
30706
30707         * ext/jpeg/gstjpeg.c: (smoke_type_find), (plugin_init):
30708         * ext/jpeg/gstsmokedec.c: (gst_smokedec_init),
30709         (gst_smokedec_chain):
30710         * ext/jpeg/gstsmokedec.h:
30711         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
30712         (gst_smokeenc_init), (gst_smokeenc_resync), (gst_smokeenc_chain):
30713         * ext/jpeg/gstsmokeenc.h:
30714         * ext/jpeg/smokecodec.c: (smokecodec_encode_new),
30715         (smokecodec_decode_new), (smokecodec_info_free),
30716         (smokecodec_set_quality), (smokecodec_get_quality),
30717         (smokecodec_set_threshold), (smokecodec_get_threshold),
30718         (smokecodec_set_bitrate), (smokecodec_get_bitrate),
30719         (find_best_size), (abs_diff), (put), (smokecodec_encode_id),
30720         (smokecodec_encode), (smokecodec_parse_id),
30721         (smokecodec_parse_header), (smokecodec_decode):
30722         * ext/jpeg/smokecodec.h:
30723         * ext/jpeg/smokeformat.h:
30724         Updated smoke, new bitstream, allows embedding in ogg.
30725
30726 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30727
30728         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
30729           Fix seeking in some files. All this code is no longer needed (and
30730           actually breaks stuff) because we now synchronize the full index
30731           right when reading the header.
30732
30733 2004-10-04  Wim Taymans  <wim@fluendo.com>
30734
30735         * configure.ac:
30736         configure update for libmng.
30737
30738 2004-10-04  Wim Taymans  <wim@fluendo.com>
30739
30740         * ext/libmng/Makefile.am:
30741         * ext/libmng/gstmng.c: (plugin_init):
30742         * ext/libmng/gstmng.h:
30743         * ext/libmng/gstmngdec.c: (gst_mngdec_get_type),
30744         (gst_mngdec_base_init), (gst_mngdec_class_init),
30745         (gst_mngdec_sinklink), (gst_mngdec_init), (gst_mngdec_src_getcaps),
30746         (gst_mngdec_loop), (gst_mngdec_get_property),
30747         (gst_mngdec_set_property), (mngdec_error), (mngdec_openstream),
30748         (mngdec_closestream), (mngdec_handle_sink_event),
30749         (mngdec_readdata), (mngdec_gettickcount), (mngdec_settimer),
30750         (mngdec_processheader), (mngdec_getcanvasline), (mngdec_refresh),
30751         (gst_mngdec_change_state):
30752         * ext/libmng/gstmngdec.h:
30753         * ext/libmng/gstmngenc.c: (gst_mngenc_get_type),
30754         (mng_caps_factory), (raw_caps_factory), (gst_mngenc_base_init),
30755         (gst_mngenc_class_init), (gst_mngenc_sinklink), (gst_mngenc_init),
30756         (gst_mngenc_chain), (gst_mngenc_get_property),
30757         (gst_mngenc_set_property):
30758         * ext/libmng/gstmngenc.h:
30759         Added basic MNG decoder. Needs more work. The encoder does
30760         not work yet.
30761
30762 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30763
30764         * gst/realmedia/rmdemux.c: (gst_rmdemux_handle_sink_event),
30765         (gst_rmdemux_loop), (gst_rmdemux_add_stream),
30766         (gst_rmdemux_parse_mdpr), (gst_rmdemux_dump_mdpr):
30767           Don't hang on length=0 chunks. Some negotiation fixes. Signal
30768           no-more-pads.
30769
30770 2004-10-04  Thomas Vander Stichele  <thomas at apestaart dot org>
30771
30772         * configure.ac:
30773           you need at least 1.0.4 of speex
30774
30775 2004-10-04 Iain <iaingnome@gmail.com>
30776
30777         * ext/speex/gstspeexdec.h: Revert the includes changes.
30778
30779         * ext/speex/gstspeexenc.[ch]: Revert the includes changes.
30780
30781 2004-09-30 Iain <iaingnome@gmail.com>
30782
30783         * sys/sunaudio/gstsunaudio.c (gst_sunaudiosink_open): Use the device
30784         found during init or set as a property instead of hardcoding /dev/audio
30785
30786 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30787
30788         * gst/realmedia/rmdemux.c: (gst_rmdemux_class_init),
30789         (gst_rmdemux_init), (gst_rmdemux_handle_sink_event),
30790         (gst_rmdemux_loop), (gst_rmdemux_add_stream), (re_hexdump_bytes),
30791         (re_dump_pascal_string), (gst_rmdemux_dump__rmf),
30792         (gst_rmdemux_dump_prop), (gst_rmdemux_parse_mdpr),
30793         (gst_rmdemux_dump_mdpr), (gst_rmdemux_dump_indx),
30794         (gst_rmdemux_dump_data):
30795           Use debug category, fix EOS handling. filesrc ! rmdemux now
30796           works.
30797
30798 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30799
30800         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
30801         (gst_avi_demux_stream_scan), (sort), (gst_avi_demux_massage_index),
30802         (gst_avi_demux_stream_header), (gst_avi_demux_stream_data):
30803           Improve allocation, cutting and sorting of the index. How takes a
30804           few seconds instead of minutes.
30805
30806 2004-10-03  Christophe Fergeau  <teuf@gnome.org>
30807
30808         * gst/realmedia/rmdemux.c: (gst_rmdemux_parse_mdpr):
30809           fixed compilation
30810
30811 2004-10-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30812
30813         * gst-libs/gst/riff/riff-media.c:
30814         (gst_riff_create_video_caps_with_data),
30815         (gst_riff_create_video_template_caps):
30816           Add wing commander format mimetype/fourccs.
30817         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
30818           Don't crash if some value is 0.
30819
30820 2004-10-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30821
30822         * gst-libs/gst/riff/riff-media.c:
30823         (gst_riff_create_video_caps_with_data),
30824         (gst_riff_create_video_template_caps):
30825           Add DIB fourcc (raw, palettized 8-bit RGB).
30826         * gst-libs/gst/riff/riff-read.c:
30827         (gst_riff_read_strf_vids_with_data):
30828           Oops, fix strf_data reading bug.
30829         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
30830           Use a non-NULL tag.
30831         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
30832           Time for hacks. Sorry Dave. At least one quicktime movie (a
30833           trailer) that I've encountered contains multiple video tracks.
30834           One of those is the actual video track, the other are one-frame
30835           tracks (images). Unfortunately, the number of frames according
30836           to the trak header is 1 for each, so that doesn't help. So
30837           instead, I look at the duration and discard tracks with a
30838           duration shorter than 20% of the length of the stream. Better
30839           than nothing.
30840
30841 2004-10-01  Christian Schaller <christian@fluendo.com>
30842
30843         * ext/ivorbis/vorbis.c:
30844           Patch from Phil Blundell (Bug 152341)
30845
30846 2004-10-01  Wim Taymans  <wim@fluendo.com>
30847
30848         * ext/speex/gstspeexdec.c: (gst_speex_dec_class_init),
30849         (speex_dec_get_formats), (speex_dec_convert),
30850         (speex_dec_src_query), (speex_dec_src_event), (speex_dec_event),
30851         (speex_dec_chain), (gst_speexdec_get_property),
30852         (gst_speexdec_set_property):
30853         Small cleanups.
30854
30855 2004-10-01  Wim Taymans  <wim@fluendo.com>
30856
30857         * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
30858         (gst_wavparse_stream_init), (gst_wavparse_fmt),
30859         (gst_wavparse_other), (gst_wavparse_loop),
30860         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
30861         (gst_wavparse_srcpad_event):
30862         * gst/wavparse/gstwavparse.h:
30863         Added some more debugging info.
30864         Fix the case where the length of the file is 0.
30865         Make sure we seek to sample borders.
30866
30867 2004-10-01  Wim Taymans  <wim@fluendo.com>
30868
30869         * gst/playback/README:
30870         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
30871         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
30872         (try_to_link_1), (no_more_pads), (close_link), (type_found):
30873         Add some debug info to decodebin, update README
30874
30875 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30876
30877         * ext/dvdnav/dvdnavsrc.c: (dvdnav_handle_navigation_event):
30878           Don't use g_print(); use GST_DEBUG().
30879
30880 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30881
30882         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
30883         (gst_ogg_mux_queue_pads):
30884           Handle EOS properly.
30885
30886 2004-10-01  Sebastien Cote  <sc5@hermes.usherb.ca>
30887
30888         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30889
30890         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_sinkconnect),
30891         (gst_faad_chain), (gst_faad_change_state):
30892         * ext/faad/gstfaad.h:
30893           Allow playback of raw (unframed) MPEG AAC files (#148993).
30894
30895 2004-10-01  Sebastien Cote  <sc5@hermes.usherb.ca>
30896
30897         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30898
30899         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
30900           Throw error if we didn't recognize the stream. Fixes #152289.
30901
30902 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30903
30904         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
30905           Fix negotiation.
30906
30907 2004-10-01  Francis Labonte  <francis_labonte@hotmail.com>
30908
30909         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30910
30911         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
30912           Fix memleak.
30913
30914 2004-10-01  Balamurali Viswanathan  <balamurali.viswanathan@wipro.com>
30915
30916         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30917
30918         * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_setparams):
30919           Solve #152805.
30920         * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_mute):
30921           Solve 152806.
30922
30923 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30924
30925         * gst-libs/gst/riff/riff-media.c:
30926         (gst_riff_create_video_caps_with_data),
30927         (gst_riff_create_audio_caps_with_data):
30928           Add codec_data handling (like asfdemux used to do).
30929         * gst/asfdemux/gstasf.c: (plugin_init):
30930         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
30931         (gst_asf_demux_add_audio_stream), (gst_asf_demux_add_video_stream):
30932           Use riff-media for caps creation instead of our own (mostly
30933           broken) copy of its functions.
30934
30935 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30936
30937         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_capture):
30938           Don't actually error out if we get another return value than
30939           -EINVAL. Opposite to what I first thought, drivers have random
30940           return values for this, although -EINVAL is the expected return
30941           value. Since this is not fatal, we shouldn't use
30942           GST_ELEMENT_ERROR() but just GST_ERROR_OBJECT().
30943
30944 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30945
30946         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
30947         (dvdreadsrc_init), (dvdreadsrc_dispose), (dvdreadsrc_set_property),
30948         (dvdreadsrc_get_property), (_open), (_seek), (_read),
30949         (dvdreadsrc_get), (dvdreadsrc_open_file),
30950         (dvdreadsrc_change_state):
30951           Fix. Don't do one big huge loop around the whole DVD, that will
30952           cache all data and thus eat sizeof(dvd) (several GB) before we
30953           see something.
30954         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
30955           Actually NULL'ify event after using it.
30956         * gst/matroska/ebml-read.c: (gst_ebml_read_use_event),
30957         (gst_ebml_read_handle_event), (gst_ebml_read_element_id),
30958         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
30959         (gst_ebml_read_seek), (gst_ebml_read_skip):
30960           Handle events.
30961         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_base_init),
30962         (gst_dvd_demux_init), (gst_dvd_demux_get_audio_stream),
30963         (gst_dvd_demux_get_subpicture_stream), (gst_dvd_demux_plugin_init):
30964           Fix timing (this will probably break if I seek using menus, but
30965           I didn't get there yet). VOBs and normal DVDs should now work.
30966           Add a mpeg2-only pad with high rank so this get autoplugged for
30967           MPEG-2 movies.
30968         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_base_init),
30969         (gst_mpeg_demux_class_init), (gst_mpeg_demux_init),
30970         (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_get_video_stream),
30971         (gst_mpeg_demux_get_audio_stream),
30972         (gst_mpeg_demux_get_private_stream), (gst_mpeg_demux_parse_packet),
30973         (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_plugin_init):
30974           Use this as second rank for MPEG-1 and MPEG-2. Still use this for
30975           MPEG-1 but use dvddemux for MPEG-2.
30976         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
30977         (gst_mpeg_parse_init), (gst_mpeg_parse_new_pad),
30978         (gst_mpeg_parse_parse_packhead):
30979           Timing. Only add pad template if it exists. Add sink template from
30980           class and not from ourselves. This means we will always use the
30981           correct sink template even if it is not the one defined in this
30982           file.
30983
30984 2004-09-29  Wim Taymans  <wim@fluendo.com>
30985
30986         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_packet),
30987         (gst_mpeg_demux_parse_pes):
30988         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
30989         Fix playback of mpeg again, timestamps where screwed up by
30990         patch 1.61.
30991
30992 2004-09-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30993
30994         * ext/flac/gstflacdec.c: (gst_flacdec_src_query):
30995           Only return true if we actually filled something in. Prevents
30996           player applications from showing a random length for flac files.
30997         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
30998         (gst_riff_read_use_event), (gst_riff_read_handle_event),
30999         (gst_riff_read_seek), (gst_riff_read_skip), (gst_riff_read_strh),
31000         (gst_riff_read_strf_vids_with_data),
31001         (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_iavs):
31002           OK, ok, so I implemented event handling. Apparently it's normal
31003           that we receive random events at random points without asking
31004           for it.
31005         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
31006         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
31007         (gst_avi_demux_handle_src_event), (gst_avi_demux_stream_index),
31008         (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
31009         (gst_avi_demux_massage_index), (gst_avi_demux_stream_header),
31010         (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
31011         (gst_avi_demux_stream_data), (gst_avi_demux_loop):
31012         * gst/avi/gstavidemux.h:
31013           Implement non-lineair chunk handling and subchunk processing.
31014           The first solves playback of AVI files where the audio and video
31015           data of individual buffers that we read are not synchronized.
31016           This should not happen according to the wonderful AVI specs, but
31017           of course it does happen in reality. It is also a prerequisite for
31018           the second. Subchunk processing allows us to cut chunks in small
31019           pieces and process each of these pieces separately. This is
31020           required because I've seen several AVI files with incredibly large
31021           audio chunks, even some files with only one audio chunk for the
31022           whole file. This allows for proper playback including seeking.
31023           This patch is supposed to fix all AVI A/V sync issues.
31024         * gst/flx/gstflxdec.c: (gst_flxdec_class_init),
31025         (flx_decode_chunks), (flx_decode_color), (gst_flxdec_loop):
31026           Work.
31027         * gst/modplug/gstmodplug.cc:
31028           Proper return value setting for the query() function.
31029         * gst/playback/gstplaybasebin.c: (setup_source):
31030           Being in non-playing state (after, e.g., EOS) is not necessarily
31031           a bad thing. Allow for that. This fixes playback of short files.
31032           They don't actually playback fully now, because the clock already
31033           runs. This means that small files (<500kB) with a small length
31034           (<2sec) will still not or barely play. Other files, such as mod
31035           or flx, will work correctly, however.
31036
31037 2004-09-28  Wim Taymans  <wim@fluendo.com>
31038
31039         * ext/speex/gstspeex.c: (plugin_init):
31040         * ext/speex/gstspeexdec.c: (gst_speex_dec_base_init),
31041         (gst_speex_dec_class_init), (speex_dec_get_formats),
31042         (speex_get_event_masks), (speex_get_query_types),
31043         (gst_speex_dec_init), (speex_dec_convert), (speex_dec_src_query),
31044         (speex_dec_src_event), (speex_dec_event), (speex_dec_chain),
31045         (gst_speexdec_get_property), (gst_speexdec_set_property),
31046         (speex_dec_change_state):
31047         * ext/speex/gstspeexdec.h:
31048         * ext/speex/gstspeexenc.c: (gst_speexenc_get_formats),
31049         (gst_speexenc_get_type), (speex_caps_factory), (raw_caps_factory),
31050         (gst_speexenc_base_init), (gst_speexenc_class_init),
31051         (gst_speexenc_sinkconnect), (gst_speexenc_convert_src),
31052         (gst_speexenc_convert_sink), (gst_speexenc_get_query_types),
31053         (gst_speexenc_src_query), (gst_speexenc_init),
31054         (gst_speexenc_get_tag_value), (comment_init), (comment_add),
31055         (gst_speexenc_metadata_set1), (gst_speexenc_set_metadata),
31056         (gst_speexenc_setup), (gst_speexenc_buffer_from_data),
31057         (gst_speexenc_push_buffer), (gst_speexenc_set_header_on_caps),
31058         (gst_speexenc_chain), (gst_speexenc_get_property),
31059         (gst_speexenc_set_property), (gst_speexenc_change_state):
31060         * ext/speex/gstspeexenc.h:
31061         Rewrote speex encoder, make sure it can be embedded in ogg.
31062         Implemented speex decoder.
31063
31064 2004-09-28  Christian Schaller <christian@fluendo.com>
31065
31066         * configure.ac:
31067         Remove kioslave plugin. Markey is brewing a new working one
31068         * ext/Makefile.am: Remove kioslave plugin
31069         * ext/kio: remove
31070         * gst-plugins.spec.in: remove kio plugin from spec
31071
31072 2004-09-27  Wim Taymans  <wim@fluendo.com>
31073
31074         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
31075         (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
31076         (is_sync_frame), (gst_multifdsink_client_queue_buffer),
31077         (gst_multifdsink_new_client),
31078         (gst_multifdsink_handle_client_write),
31079         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
31080         (gst_multifdsink_handle_clients):
31081         * gst/tcp/gstmultifdsink.h:
31082         Make syncing to keyframes actually work for new clients and lagging
31083         clients.
31084
31085 2004-09-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
31086
31087         * gst/debug/gstnavigationtest.c: (gst_navigationtest_class_init),
31088         (gst_navigationtest_handle_src_event), (draw_box_planar411),
31089         (gst_navigationtest_planar411), (gst_navigationtest_change_state):
31090         * gst/debug/gstnavigationtest.h:
31091           make navigationtest display button-press and button-release events
31092
31093 2004-09-26 Iain <iaingnome@gmail.com>
31094
31095         * gst/interleave/interleave.c (all_channels_new_media): Checks if all
31096         the channels have received a new media event.
31097         (interleave_buffered_loop): Compresses a new media event on all
31098         channels into one.
31099
31100 2004-09-26 Iain <iaingnome@gmail.com>
31101
31102         * gst/wavenc/gstwavenc.c (gst_wavenc_chain): Company says we need to
31103         call the sinkpad's default event handler and not the srcpads. He also
31104         says this is confusing :)
31105         (gst_wavenc_stop_file): Company says that seek events only go upstream
31106         we should send a discontinuous downstream instead.
31107
31108 2004-09-25  Christian Schaller <christian@fluendo.com>
31109
31110         * Update SPEC file to be usable in conjunction with Fedora Core,
31111           Fedora.us and freshrpms packages
31112         * Fix typo in multifilesrc test Makefile
31113
31114 2004-09-24  Wim Taymans  <wim@fluendo.com>
31115
31116         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
31117         Only signal the no_more_pads signal when we have
31118         added the stream to our list.
31119
31120 2004-09-24  Wim Taymans  <wim@fluendo.com>
31121
31122         * gst/playback/gstplaybasebin.c: (remove_prerolls),
31123         (new_decoded_pad):
31124         * gst/playback/gstplaybasebin.h:
31125         * gst/playback/gstplaybin.c: (setup_sinks):
31126         Don't try to preroll or decode more than one audio/video
31127         track.
31128
31129 2004-09-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31130
31131         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
31132           Throw error if we failed to find a suitable output. This should
31133           throw an error if we successfully set up a pipeline (e.g. because
31134           we recognized a media file) but found no decodable streams in it
31135           (e.g. because it contains only media stream types for which we
31136           have no decoders, or because it's not a media type).
31137
31138 2004-09-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31139
31140         * ext/dirac/Makefile.am:
31141         * ext/dirac/gstdirac.cc:
31142         * ext/dirac/gstdiracdec.cc:
31143         * ext/dirac/gstdiracdec.h:
31144           Do something. Don't actually know if this works because I don't
31145           have a demuxer yet.
31146         * ext/gsm/gstgsmdec.c: (gst_gsmdec_getcaps):
31147           Add channels=1 to caps returned from _getcaps().
31148         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_get_type),
31149         (gst_ogm_video_parse_get_type), (gst_ogm_audio_parse_base_init),
31150         (gst_ogm_video_parse_base_init), (gst_ogm_parse_init),
31151         (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
31152         (gst_ogm_parse_sink_convert), (gst_ogm_parse_chain),
31153         (gst_ogm_parse_change_state):
31154           Separate between audio/video so ogmaudioparse actually uses the
31155           audio pad templates. Both audio and video work now, including
31156           autoplugging. Also use sometimes-srcpad hack.
31157         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
31158           Handle events better. Don't hang on infinite loops.
31159         * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
31160         (gst_avi_demux_init), (gst_avi_demux_reset),
31161         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
31162         (gst_avi_demux_stream_header), (gst_avi_demux_stream_data),
31163         (gst_avi_demux_change_state):
31164         * gst/avi/gstavidemux.h:
31165           Improve A/V sync. Still not perfect.
31166         * gst/matroska/ebml-read.c: (gst_ebml_read_seek),
31167         (gst_ebml_read_skip):
31168           Handle events better.
31169         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
31170         (gst_qtdemux_loop_header), (qtdemux_parse_trak),
31171         (qtdemux_audio_caps):
31172           Add IMA4. Improve event handling. Save offset after a seek when
31173           the headers are at the end of the file so that we don't end up in
31174           an infinite loop.
31175         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
31176           Add low-priority typefind support for files with no length.
31177
31178 2004-09-23  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31179
31180         * testsuite/multifilesink/Makefile.am:
31181         fix typo
31182
31183 2004-09-22  Julien MOUTTE  <julien@moutte.net>
31184
31185         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
31186         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls): Fix
31187         mistakes from thaytan's patches.
31188
31189 2004-09-23  Jan Schmidt  <thaytan@mad.scientist.com>
31190
31191         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
31192           For completeness, XSync in the destroy function as xvimage does.
31193
31194 2004-09-23  Jan Schmidt  <thaytan@mad.scientist.com>
31195
31196         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
31197            Correct caps negotiation
31198         * gst/volume/gstvolume.c: (volume_chain_float),
31199         (volume_chain_int16):
31200            Modify debug output to be little more informative
31201         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
31202         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
31203         (gst_xvimagesink_xvimage_destroy):
31204           Add XSync calls after detaching from the shared memory segment to
31205           avoid a crash.
31206
31207 2004-09-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31208
31209         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
31210         (gst_ogg_mux_next_buffer), (gst_ogg_mux_loop):
31211         * ext/vorbis/vorbis.c: (plugin_init):
31212         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
31213         (gst_vorbisenc_chain):
31214         * ext/vorbis/vorbisenc.h:
31215         remove explicit newmedia support from oggmux and vorbisenc
31216         add debug category to vorbisenc
31217         * gst/multifilesink/gstmultifilesink.c:
31218         (gst_multifilesink_class_init), (gst_multifilesink_init),
31219         (gst_multifilesink_dispose), (gst_multifilesink_set_location),
31220         (gst_multifilesink_set_property), (gst_multifilesink_next_file),
31221         (gst_multifilesink_handle_event), (gst_multifilesink_chain),
31222         (plugin_init):
31223         * gst/multifilesink/gstmultifilesink.h:
31224         add support for streamheader in multifilesink
31225
31226 2004-09-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31227
31228         * gst/asfdemux/gstasfdemux.c: (_read_var_length), (_read_guid),
31229         (gst_asf_demux_process_segment), (gst_asf_demux_handle_data),
31230         (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event):
31231           Prevent infinite loops. More correct error reporting.
31232         * gst/auparse/gstauparse.c: (gst_auparse_chain):
31233           Error out if negotiation fails.
31234         * gst/playback/gstplaybasebin.c: (setup_source),
31235         (gst_play_base_bin_change_state), (gst_play_base_bin_error),
31236         (gst_play_base_bin_found_tag):
31237           Error/tag forwarding. Pre-roll fixes for source errors on state
31238           changes (e.g. "file does not exist") to prevent hangs.
31239
31240 2004-09-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31241
31242         * testsuite/multifilesink/Makefile.am:
31243         * testsuite/multifilesink/lame_test.c: (gst_newmedia_base_init),
31244         (gst_newmedia_class_init), (gst_newmedia_init),
31245         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
31246         (newfile_signal), (test_signal), (main):
31247         * testsuite/multifilesink/multifilesrc_test.c: (main):
31248         * testsuite/multifilesink/oggtheora_test.c:
31249         (gst_newmedia_base_init), (gst_newmedia_class_init),
31250         (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
31251         (test_format), (newfile_signal), (test_signal), (main):
31252         * testsuite/multifilesink/oggvorbis_test.c:
31253         (gst_newmedia_base_init), (gst_newmedia_class_init),
31254         (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
31255         (test_format), (newfile_signal), (test_signal), (main):
31256         * testsuite/multifilesink/wavenc_test.c: (gst_newmedia_base_init),
31257         (gst_newmedia_class_init), (gst_newmedia_init),
31258         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
31259         (newfile_signal), (test_signal), (main):
31260         New media tests
31261
31262 2004-09-20  Christian Schaller <christian@fluendo.com>
31263
31264         * Fix mikmod license to LGPL as they have relicensed
31265         * Move Dirac and Effectv into LGPL section of README_license
31266
31267 2004-09-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31268
31269         * ext/mad/gstmad.c: (gst_mad_check_caps_reset),
31270         (gst_mad_change_state):
31271           Allow for mp3 rate/channels changes. However, only very
31272           conservatively. Reason that we *have* to enable this is smiply
31273           because the mad find_sync() function is not good enough, it will
31274           regularly sync on random data as valid frames and therefore make
31275           us provide random caps as *final* caps of the stream. The best fix
31276           I could think of is to simply require several of the same stream
31277           changes in a row before we change caps.
31278           The actual testcase that works now is #
31279         * ext/ogg/Makefile.am:
31280         * ext/ogg/gstogg.c: (plugin_init):
31281         * ext/ogg/gstogmparse.c:
31282           OGM support (video only for now; I need an audio sample file).
31283         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
31284         (gst_asf_demux_process_stream), (gst_asf_demux_video_caps),
31285         (gst_asf_demux_add_video_stream):
31286           WMV extradata.
31287         * gst/playback/gstplaybasebin.c: (unknown_type):
31288           Don't error out on single unknown-types after all. It's wrong.
31289           If we found type of video and audio but not of a subtitle stream,
31290           it will still error out (which is unwanted). Will find a better fix
31291           later on.
31292         * gst/typefind/gsttypefindfunctions.c: (ogmvideo_type_find),
31293         (ogmaudio_type_find), (plugin_init):
31294           OGM support.
31295
31296 2004-09-20  Johan Dahlin  <johan@gnome.org>
31297
31298         * ext/jpeg/gstjpegdec.c (gst_jpegdec_chain): Allocate the buffer
31299         after setting caps.
31300
31301 2004-09-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31302
31303         * gst/wavenc/gstwavenc.c: (gst_wavenc_init), (gst_wavenc_chain):
31304         * gst/wavenc/gstwavenc.h:
31305         Added newmedia support to wavenc
31306
31307 2004-09-17  Wim Taymans  <wim@fluendo.com>
31308
31309         * gst/tcp/gstfdset.c: (gst_fdset_fd_has_closed),
31310         (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
31311         (gst_fdset_fd_can_write), (gst_fdset_wait):
31312         * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type),
31313         (gst_multifdsink_init), (gst_multifdsink_add),
31314         (gst_multifdsink_remove), (gst_multifdsink_get_stats),
31315         (gst_multifdsink_remove_client_link),
31316         (gst_multifdsink_client_queue_buffer),
31317         (gst_multifdsink_handle_client_write),
31318         (gst_multifdsink_recover_client), (gst_multifdsink_handle_clients),
31319         (gst_multifdsink_close), (gst_multifdsink_change_state):
31320         * gst/tcp/gstmultifdsink.h:
31321         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
31322         (gst_tcpserversink_removed):
31323         Small cleanups in fdset.c
31324         Use a hastable to map fd to the client structure for faster
31325         lookup in _remove and get_stats.
31326         Added virtual function to close the fds.
31327         Handle clients even when the select/poll call was unblocked because
31328         of a command.
31329         Implement syncing to keyframe in the recovery procedure.
31330
31331 2004-09-16 Iain <iaingnome@gmail.com>
31332
31333         * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int): Free the
31334         try caps.
31335
31336 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31337
31338         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream):
31339           Caps are only set if the type of the stream is unknown, but this
31340           is initialized in ->init_stream(), so set to UNKNOWN after calling
31341           ->init_stream() so that capsnego starts.
31342
31343 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31344
31345         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
31346         (gst_avi_demux_stream_data):
31347           Just hardcode for raw audio then. AVI audio sucks.
31348
31349 2004-09-15  Arwed v. Merkatz  <v.merkatz@gmx.net>
31350
31351         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
31352         * gst/matroska/matroska-mux.c: (audiosink_templ),
31353         (gst_matroska_mux_audio_pad_link):
31354         * gst/typefind/gsttypefindfunctions.c: (tta_caps), (plugin_init):
31355         Use audio/x-ttafile for tta files and audio/x-tta for raw tta frames.
31356
31357 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31358
31359         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
31360         (gst_avi_demux_stream_data):
31361           Try to fix a/v sync issues.
31362
31363 2004-09-15  David Schleef  <ds@schleef.org>
31364
31365         * configure.ac: remove NASM check, since we don't use it.  Update
31366         dirac check to 0.4
31367         * ext/dirac/gstdiracdec.cc: update to current 0.4 API
31368         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
31369         Initialized variables.
31370         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
31371         (gst_qtdemux_loop_header), (qtdemux_parse), (qtdemux_parse_trak),
31372         (gst_qtdemux_handle_esds), (qtdemux_audio_caps): Fix seeking, add
31373         SVQ3 format
31374
31375 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31376
31377         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
31378         (gst_avi_demux_add_stream), (gst_avi_demux_stream_data):
31379         * gst/avi/gstavidemux.h:
31380           Fix for compressed audio (mp3) timestamp generation. How did this
31381           ever work?
31382
31383 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31384
31385         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
31386           Volume is a double not a float.
31387
31388 2004-09-15  Wim Taymans  <wim@fluendo.com>
31389
31390         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_remove_client_link),
31391         (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
31392         Don't close the fd in multifdsink as we didn't open it in the
31393         first place. Some cleanups.
31394
31395 2004-09-15  Wim Taymans  <wim@fluendo.com>
31396
31397         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
31398         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
31399         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
31400         Fix the case where the muxer would mark pages as delta
31401         frames when they are not (vorbis only ogg).
31402
31403 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31404
31405         * gst/playback/gstplaybasebin.c: (state_change), (setup_source),
31406         (gst_play_base_bin_change_state):
31407           Handle the case where we failed to setup a clear pipeline. This
31408           will throw an error (or EOS, another nice case) and if you don't
31409           catch that, the app will wait for the signal forever (and thus
31410           hang).
31411
31412 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31413
31414         * ext/gnomevfs/gstgnomevfssink.c:
31415         (gst_gnomevfssink_uri_get_protocols):
31416         * ext/gnomevfs/gstgnomevfssrc.c:
31417         (gst_gnomevfssrc_uri_get_protocols):
31418         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
31419         * ext/gnomevfs/gstgnomevfsuri.h:
31420           Use _uri_new() instead of _open(), so it doesn't take as long and
31421           Christophe's computer won't hang.
31422         * gst/playback/gstplaybasebin.c: (unknown_type):
31423           Throw error on unknown media type, so apps actually display it.
31424
31425 2004-09-14  Brian Cameron  <brian.cameron@sun.com
31426
31427         * tools/gst-launch-ext-m.m:  Changed ~ to $ENV{HOME} to allow
31428           this script to work on Solaris since bash shell handles echo
31429           differenly than bash.
31430
31431 2004-09-17  Wim Taymans  <wim@fluendo.com>
31432
31433         * gst/playback/gstplaybasebin.c: (queue_overrun), (no_more_pads),
31434         (setup_source), (gst_play_base_bin_set_property),
31435         (gst_play_base_bin_add_element):
31436         * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
31437         Some more work on making sure seeking pauses the pipeline and
31438         that changing the uri actually does something.
31439
31440 2004-09-17  Wim Taymans  <wim@fluendo.com>
31441
31442         * gst/tcp/gstfdset.c: (gst_fdset_wait):
31443         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_close):
31444         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send),
31445         (gst_tcpserversink_close):
31446         Be a bit more paranoid when freeing memory.
31447
31448 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31449
31450         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
31451         (qtdemux_parse_trak):
31452           Don't crash by dividing by zero (see sample movie in #126922).
31453
31454 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31455
31456         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
31457           Don't touch non-existing data (fixes crash on file in #140147).
31458
31459 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31460
31461         * gst/playback/gstplaybasebin.c:
31462         (gst_play_base_bin_dispose), (gst_play_base_bin_set_property):
31463           Handle double disposals, and proper change of URIs.
31464
31465 2004-09-13  Martin Eikermann <meiker@upb.de>
31466
31467         * gst/mpegstream/gstmpegparse.c:
31468           fix synchronistation for streams recorded from digital PCR
31469           fixes bug #119376
31470
31471 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31472
31473         * ext/gnomevfs/Makefile.am:
31474         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
31475         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_get_type),
31476         (gst_gnomevfssink_dispose), (gst_gnomevfssink_init),
31477         (gst_gnomevfssink_uri_get_type),
31478         (gst_gnomevfssink_uri_get_protocols),
31479         (gst_gnomevfssink_uri_get_uri), (gst_gnomevfssink_uri_set_uri),
31480         (gst_gnomevfssink_uri_handler_init),
31481         (gst_gnomevfssink_set_property), (gst_gnomevfssink_get_property),
31482         (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file):
31483         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
31484         (gst_gnomevfssrc_init), (gst_gnomevfssrc_dispose),
31485         (gst_gnomevfssrc_uri_get_type),
31486         (gst_gnomevfssrc_uri_get_protocols), (gst_gnomevfssrc_uri_get_uri),
31487         (gst_gnomevfssrc_uri_set_uri), (gst_gnomevfssrc_uri_handler_init),
31488         (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
31489         (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file):
31490         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
31491         * ext/gnomevfs/gstgnomevfsuri.h:
31492           Add URI support to Gnome-VFS plugins. Tries to load a fixed list
31493           of fake URIs to see which this version of Gnome-VFS likes, and
31494           uses that for the Gst-URI interface. Makes playbin support http://
31495           streams. Also fix up some stupid behaviour in gnomevfssrc.
31496
31497 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31498
31499         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
31500         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
31501         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
31502         (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
31503           Update mixer (to sync with other sessions) if we try to obtain
31504           a new value. This makes alsamixer work accross applications.
31505         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
31506           Only call sync functions if we're running, else alsalib asserts.
31507         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
31508           Sometimes fails to compile. Possibly a gcc bug.
31509         * gst/playback/gstplaybin.c: (gen_video_element),
31510         (gen_audio_element):
31511           Add a reference to an application-provided object, because we lose
31512           this same reference if we add it to the bin. If we don't do this,
31513           we can only use this object once and thus crash if we go from
31514           ready to playing, back to ready and back to playing again.
31515           Also add an audioscale element because several cheap soundcards -
31516           like mine - don't support all samplerates.
31517         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
31518         (gst_ximagesink_xcontext_clear), (gst_ximagesink_change_state):
31519           Fix wrong order or PAR calls. Makes automatically obtained PAR
31520           from the X server atually being used.
31521
31522 2004-09-12  David Schleef  <ds@schleef.org>
31523
31524         Fixes: #151879, #151881, #151882, #151883, #151884, #151886,
31525         #151887, #152102, #152247.
31526         * examples/indexing/indexmpeg.c: 64-bit warning fixes.
31527         * examples/seeking/cdparanoia.c: same
31528         * examples/seeking/cdplayer.c: same
31529         * examples/seeking/seek.c: same
31530         * examples/seeking/spider_seek.c: same
31531         * examples/seeking/vorbisfile.c: same
31532         * examples/stats/mp2ogg.c: same
31533         * ext/esd/esdsink.c: (gst_esdsink_class_init),
31534         (gst_esdsink_dispose): Dispose of element properly.
31535         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_seek): 64-bit warning
31536         fixes.
31537         * ext/nas/nassink.c: (gst_nassink_class_init),
31538         (gst_nassink_dispose): Dispose of element correctly.
31539         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Fix leak.
31540         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
31541         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
31542         Fix 64-bit warning.
31543         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
31544         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
31545         Fix 64-bit warning.
31546
31547 2004-09-12  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
31548
31549         * configure.ac : change speex detection as 1.1.6 now uses
31550           .pc/pkg-config and they changed their headers location.
31551
31552 2004-09-09  Arwed v. Merkatz  <v.merkatz@gmx.net>
31553
31554         * gst/matroska/matroska-mux.h:
31555         * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
31556         (gst_matroska_mux_start), (gst_matroska_mux_finish),
31557         (gst_matroska_mux_write_data):
31558           Write multiple blocks/frames per cluster.
31559                 Write meta-seek information (seek heads).
31560
31561 2004-09-09  Scott Wheeler <wheeler@kde.org>
31562
31563         * gst/gstplaybin.c: (gst_play_bin_class_init), (gst_play_bin_init),
31564         (gst_play_bin_set_property), (gst_play_bin_get_property),
31565         (gen_audio_element), (gen_audio_element):
31566           Add a volume element / property to the pipeline.
31567
31568 2004-09-07  Wim Taymans  <wim@fluendo.com>
31569
31570         * gst/videomixer/videomixer.c: (gst_videomixer_blend_buffers):
31571         Copy timestamps from the master pad to the output buffers.
31572
31573 2004-09-03  Thomas Vander Stichele  <thomas at apestaart dot org>
31574
31575         * ext/raw1394/gstdv1394src.c:
31576           throw errors when applicable
31577
31578 2004-09-01  Arwed v. Merkatz  <v.merkatz@gmx.net>
31579
31580         * gst/matroska/ebml-ids.h:
31581         * gst/matroska/ebml-read.c: (gst_ebml_read_date):
31582         * gst/matroska/ebml-write.c: (gst_ebml_write_date):
31583         * gst/matroska/matroska-mux.c: (gst_matroska_mux_finish):
31584           automatically convert unix time <-> ebml time when reading/writing
31585           a date, use gst_ebml_write_uint to write CUETIME,
31586           not gst_ebml_write_date.
31587         * gst/matroska/matroska-ids.h:
31588         * gst/matroska/matroska-mux.c: (gst_matroska_mux_create_uid),
31589         (gst_matroska_mux_reset), (gst_matroska_mux_audio_pad_link),
31590         (gst_matroska_mux_track_header), (gst_matroska_mux_start),
31591         (gst_matroska_mux_write_data):
31592           Write track and segment UIDs, write muxing date, write
31593           TRACKDEFAULTDURATION for TTA audio, write BLOCKDURATION if known.
31594           Create cues for audio only files.
31595
31596 2004-08-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
31597
31598         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
31599         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
31600           Re-commit ALSA switches.
31601         * gst/adder/gstadder.c: (gst_adder_loop):
31602           64-bit fix (#151416).
31603         * gst/debug/progressreport.c: (gst_progressreport_report):
31604           64-bit fix (#151419).
31605         * gst/matroska/matroska-demux.c:
31606         (gst_matroska_demux_parse_contents):
31607           64-bit fix (#151420).
31608         * gst/playback/test3.c: (update_scale):
31609           64-bit fix (#151421).
31610
31611 2004-08-31  Thomas Vander Stichele  <thomas at apestaart dot org>
31612
31613         * configure.ac:
31614           bump nano to cvs
31615
31616 === release 0.8.4 ===
31617
31618 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
31619
31620         * configure.ac: releasing 0.8.4, "Alias"
31621
31622 2004-08-31  Thomas Vander Stichele  <thomas at apestaart dot org>
31623
31624         * ext/theora/Makefile.am:
31625           fix makefile.  Fixes #151462.
31626
31627 2004-08-30  Wim Taymans  <wim@fluendo.com>
31628
31629         * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_wait):
31630         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
31631         (gst_multifdsink_remove_client_link),
31632         (gst_multifdsink_client_queue_buffer),
31633         (gst_multifdsink_handle_client_write):
31634         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
31635         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
31636         Fix some memory leaks.
31637
31638 2004-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
31639
31640         Patch by: David Schleef
31641
31642         * configure.ac:
31643         * sys/Makefile.am:
31644           rename our detection macro for V4L2.  Fixes #151236.
31645
31646 2004-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
31647
31648         Patch by: David Schleef
31649
31650         * configure.ac:
31651           check to define LAMEPRESET.  Fixes #151232.
31652
31653 2004-08-27  David Schleef  <ds@schleef.org>
31654
31655         * sys/glsink/glimagesink.c: (gst_glimagesink_ximage_put),
31656         (gst_glimagesink_xwindow_new), (gst_glimagesink_xcontext_get),
31657         (gst_glimagesink_fixate):  Move local variable declarations to
31658         make gcc-2.95 happy.
31659
31660 2004-08-27  Thomas Vander Stichele  <thomas at apestaart dot org>
31661
31662         * configure.ac:
31663           bump nano for prerelease
31664
31665 2004-08-27  David Schleef  <ds@schleef.org>
31666
31667         * sys/sunaudio/Makefile.am: Add sunaudiosrc patch from Bala
31668         * sys/sunaudio/gstsunaudiosrc.c:
31669         * sys/sunaudio/gstsunaudiosrc.h:
31670
31671 2004-08-27 Arwed v. Merkatz <v.merkatz@gmx.net>
31672
31673         * gst/matroska/ebml-read.c: (gst_ebml_peed_id), (gst_ebml_read_element_id),
31674         handle EOS correctly
31675         * gst/matroska/matroska-mux.c: (gst_matroska_mux_video_pad_link):
31676         * gst/matroska/matroska-mux.h:
31677         added BITMAPINFOHEADER structure, mux video/x-divx and video/x-xvid in
31678         VFW compatibility mode
31679
31680 2004-08-27  Thomas Vander Stichele  <thomas at apestaart dot org>
31681
31682         patch by: Zaheer Abbas Merali
31683
31684         * ext/ogg/gstoggmux.c:
31685         * ext/vorbis/vorbisenc.c:
31686         * ext/vorbis/vorbisenc.h:
31687           handle NEWMEDIA
31688
31689 2004-08-26 Arwed v. Merkatz <v.merkatz@gmx.net>
31690
31691         * gst/matroska/ebml-write.c: (gst_ebml_write_float),
31692         fix byte order reversion on little endian machines.
31693         * gst/matroska/matroska-mux.c: (audiosink_templ),
31694         (gst_matroska_mux_audio_pad_link):
31695         add TTA codec to the list of supported codecs.
31696         * gst/matroska/matroska-mux.c: (gst_matroska_mux_init),
31697         (gst_matroska_mux_start), (gst_matroska_mux_finish),
31698         (gst_matroska_mux_write_data):
31699         * gst/matroska/matroska-mux.h:
31700         write segment duration correctly, write muxing app string, fixes bugs
31701         #140897 and #140898.
31702         * gst/matroska/matroska-mux.c: (gst_matroska_mux_loop),
31703         wait for all pads to be negotiated before starting to mux.
31704
31705 2004-08-26  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31706
31707         * ext/lame/gstlame.c: (gst_lame_init), (gst_lame_chain):
31708         * ext/lame/gstlame.h:
31709         Added new media support to lame
31710
31711 2004-08-25 Arwed v. Merkatz <v.merkatz@gmx.net>
31712
31713         * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_blockgroup),
31714         send vorbis headers at the beginning of a stream, fixes bug #141554.
31715         Interpret BLOCKDURATION and set buffer duration accordingly, fixes
31716         bug #148950.
31717         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps),
31718         (gst_matroska_demux_plugin_init):
31719         * gst/matroska/matroska-ids.h:
31720         enable demuxing of TTA audio streams, fixes bug #148951.
31721         * gst/typefind/gsttypefindfunctions.c: (tta_type_find), (plugin_init),
31722         enable typefinding for TTA audio files, fixes bug #148711.
31723         * ext/xvid/gstxviddec.c: (gst_xviddec_chain),
31724         set XVID_LOWDELAY flag for decoding so xvid always returns an image,
31725         fixes playback of packed bitstream and xvid with bframes, bug #135407.
31726
31727 2004-08-24  Sebastien Cote  <sc5@hermes.usherb.ca>
31728
31729         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
31730         (gst_riff_read_element_data), (gst_riff_read_seek),
31731         (gst_riff_read_skip): fix infinite loop in wavparse, fixes bug
31732         #144616, patch reviewed by Ronald and committed by Christophe Fergeau
31733         <teuf@gnome.org>
31734
31735 2004-08-23 Iain <iaingnome@gmail.com>
31736
31737         * ext/mad/gstid3tag.c (gst_mad_id3_to_tag_list): Special case COMM
31738         tags. They appear to be handled differently to normal.
31739         (tag_list_to_id3_tag_foreach): Ditto.
31740
31741 2004-08-22  Wim Taymans  <wim@fluendo.com>
31742
31743         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
31744         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
31745         Make sure we never send -1 granulepos.
31746
31747 2004-08-20  Wim Taymans  <wim@fluendo.com>
31748
31749         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
31750         (gst_ogg_mux_loop):
31751         I will accept bitchslappings with non sharp objects.
31752
31753 2004-08-20  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31754
31755         * configure.ac:
31756         Clean up the test for lame presets
31757
31758 2004-08-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31759
31760         * configure.ac:
31761         * ext/lame/Makefile.am:
31762         * ext/lame/gstlame.c: (gst_lame_class_init),
31763         (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
31764         Only enable lame presets if version of lame has presets in API
31765
31766 2004-08-19  Jan Schmidt  <thaytan@mad.scientist.com>
31767         * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_get):
31768         * gst/udp/gstudpsrc.h:
31769           Don't call gst_pad_push in a get function. Fixes #150449
31770
31771 2004-08-18  Wim Taymans  <wim@fluendo.com>
31772
31773         * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_set_mode),
31774         (gst_fdset_get_mode), (gst_fdset_add_fd), (gst_fdset_remove_fd),
31775         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
31776         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
31777         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
31778         (gst_fdset_wait):
31779         * gst/tcp/gstfdset.h:
31780         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
31781         (gst_multifdsink_client_queue_buffer),
31782         (gst_multifdsink_handle_client_write):
31783         * gst/tcp/gstmultifdsink.h:
31784         Some extra checks in gstfdset.
31785         Only use send() when the fd is a socket. Don't try to
31786         read from write only fds.
31787
31788 2004-08-18  Wim Taymans  <wim@fluendo.com>
31789
31790         * gst/tcp/gstfdset.c: (gst_fdset_add_fd), (gst_fdset_remove_fd),
31791         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
31792         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
31793         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
31794         (gst_fdset_wait):
31795         Add more locking and bounds checking.
31796
31797 2004-08-18  Wim Taymans  <wim@fluendo.com>
31798
31799         * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_wait):
31800         Realloc test fdset in the lock and right before starting
31801         the poll call. Bump the limit to 4096.
31802
31803 2004-08-17  David Schleef  <ds@schleef.org>
31804
31805         * sys/sunaudio/Makefile.am:
31806         * sys/sunaudio/gstsunaudio.c: Fix caps to handle full range
31807         of rates and channels.  Make debugging less obnoxious.
31808
31809         Patch from Balamurali Viswanathan implementing a mixer for
31810         Sun audio.  (bug #144091):
31811         * sys/sunaudio/gstsunelement.c:
31812         * sys/sunaudio/gstsunelement.h:
31813         * sys/sunaudio/gstsunmixer.c:
31814         * sys/sunaudio/gstsunmixer.h:
31815
31816 2004-08-17  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31817
31818         * gst/audioscale/gstaudioscale.c:
31819         * gst/audioscale/gstaudioscale.h:
31820         made audioscale resample from any sample rate to any sample rate
31821
31822 2004-08-17  Thomas Vander Stichele  <thomas at apestaart dot org>
31823
31824         * ext/libpng/gstpngdec.c:
31825           error out on unsupported types
31826
31827 2004-08-17  Iain <iaingnome@gmail.com>
31828
31829         * ext/flac/gstflacenc.c (gst_flacenc_update_quality): Only set the
31830         mid_side and loose_mid_side properties if its a stereo stream.
31831
31832 2004-08-17  Wim Taymans  <wim@fluendo.com>
31833
31834         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
31835         (theora_get_formats), (theora_dec_src_convert),
31836         (theora_dec_sink_convert), (theora_dec_src_query),
31837         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
31838         Add a debug line.
31839
31840 2004-08-17  Wim Taymans  <wim@fluendo.com>
31841
31842         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate),
31843         (gst_ogg_pad_push):
31844         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
31845         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
31846         (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_page),
31847         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
31848         Mark delta units in the muxer.
31849         Try to decode the packet after an out-of-sync error from
31850         libogg.
31851
31852 2004-08-17  Wim Taymans  <wim@fluendo.com>
31853
31854         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
31855         (gst_multifdsink_init), (gst_multifdsink_add),
31856         (gst_multifdsink_client_queue_buffer),
31857         (gst_multifdsink_set_property), (gst_multifdsink_get_property):
31858         * gst/tcp/gstmultifdsink.h:
31859         Added option to send a keyframe to clients as the first buffer.
31860         Make timeout property writable.
31861
31862 2004-08-17  Thomas Vander Stichele  <thomas at apestaart dot org>
31863
31864         patch by: Wim Taymans
31865
31866         * gst/tcp/gstfdset.c:
31867         * gst/tcp/gstmultifdsink.c:
31868           fix index comparison, should include 0
31869
31870 2004-08-16  Wim Taymans  <wim@fluendo.com>
31871
31872         * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_new),
31873         (gst_fdset_add_fd), (gst_fdset_remove_fd),
31874         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
31875         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
31876         (gst_fdset_wait):
31877           copy when reallocing for poll so the select arguments don't get
31878           changed during the call
31879
31880 2004-08-16  Wim Taymans  <wim@fluendo.com>
31881
31882         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
31883         (gst_theora_enc_class_init), (theora_enc_sink_link),
31884         (theora_buffer_from_packet), (theora_enc_chain):
31885         Fix bug where buffers were not marked as keyframes
31886         correctly.
31887
31888 2004-08-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31889
31890         * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
31891         (gst_lame_preset_get_type), (gst_lame_class_init):
31892         describe the enum values for vbr mode and presets more verbosely
31893
31894 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31895
31896         * ext/lame/gstlame.c: (gst_lame_mode_get_type),
31897         (gst_lame_quality_get_type), (gst_lame_padding_get_type),
31898         (gst_lame_preset_get_type), (gst_lame_class_init), (gst_lame_init),
31899         (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
31900         * ext/lame/gstlame.h:
31901         add preset property to lame so it can use lame presets
31902
31903 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31904
31905         * ext/lame/gstlame.c: (gst_lame_get_property):
31906         whoops forgot break, thanks teuf
31907
31908 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31909
31910         * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
31911         (gst_lame_class_init), (gst_lame_src_getcaps),
31912         (gst_lame_sink_link), (gst_lame_init), (gst_lame_set_property),
31913         (gst_lame_get_property), (gst_lame_setup):
31914         * ext/lame/gstlame.h:
31915         fix lame's broken vbr stuff, allow it to resample if need be, and also
31916         make xing header optional
31917
31918 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31919
31920         * ext/lame/gstlame.c: (gst_lame_src_getcaps), (gst_lame_init):
31921         added getcaps function so samplerate doesnt get fixated to silly values
31922
31923 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31924
31925         * ext/lame/gstlame.c: (gst_lame_src_link):
31926         revert previous fix
31927
31928 2004-08-12  Johan Dahlin  <johan@gnome.org>
31929
31930         * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Remove bogus
31931         checks. Doesn't matter what state we are in. Interfaces are a
31932         compile time thing, not runtime. It also broke the python bindings.
31933
31934 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31935
31936         * ext/lame/gstlame.c: (gst_lame_src_link):
31937         made source pad link function check if sinkpad is ok..fixes the problem
31938         where core fixates the output rate of lame stupidly
31939
31940 2004-08-12  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
31941
31942         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_fixate):
31943         * sys/v4l/v4l_calls.c:
31944         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_set_capture):
31945           fix fixate function to handle nonsimple caps.
31946           remove bogus check in _link
31947           cleanups
31948
31949 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
31950
31951         * ext/lame/gstlame.c: (gst_lame_class_init), (gst_lame_init):
31952         set default compression ratio parameter to 0.0 so bitrate parameter
31953         works :)
31954
31955 2004-08-11  David Schleef  <ds@schleef.org>
31956
31957         * gst/tcp/gstfdset.c: Fix compile problem on OS/X.
31958
31959 2004-08-11  David Schleef  <ds@schleef.org>
31960
31961         * gst/mpeg1sys/gstmpeg1systemencode.c: Oops, this was correct
31962         before.
31963
31964 2004-08-11  David Schleef  <ds@schleef.org>
31965
31966         * gst-libs/gst/video/videosink.h: Change copyright block to LGPL.
31967
31968 2004-08-11  David Schleef  <ds@schleef.org>
31969
31970         * ext/pango/gsttextoverlay.c: Add copyright block and fix plugin
31971           license field
31972         * gst-libs/gst/idct/Makefile.am: Remove mmx/sse code
31973         * gst-libs/gst/video/gstvideosink.c: Change copyright block to
31974           LGPL.
31975         * gst/auparse/gstauparse.c: Fix plugin license field.
31976         * gst/monoscope/gstmonoscope.c: Fix plugin license field.
31977         * gst/mpeg1sys/gstmpeg1systemencode.c: Fix plugin license field.
31978         * gst/rtp/gstrtp.c: Fix plugin license field.
31979
31980 2004-08-11  Wim Taymans  <wim@fluendo.com>
31981
31982         * gst/tcp/Makefile.am:
31983         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type), (nearest_pow),
31984         (ensure_size), (gst_fdset_new), (gst_fdset_free),
31985         (gst_fdset_set_mode), (gst_fdset_get_mode), (gst_fdset_add_fd),
31986         (gst_fdset_remove_fd), (gst_fdset_fd_ctl_write),
31987         (gst_fdset_fd_ctl_read), (gst_fdset_fd_has_closed),
31988         (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
31989         (gst_fdset_fd_can_write), (gst_fdset_wait):
31990         * gst/tcp/gstfdset.h:
31991         * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
31992         (gst_multifdsink_class_init), (gst_multifdsink_init),
31993         (gst_multifdsink_add), (gst_multifdsink_remove),
31994         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
31995         (gst_multifdsink_remove_client_link),
31996         (gst_multifdsink_handle_client_read),
31997         (gst_multifdsink_client_queue_data),
31998         (gst_multifdsink_client_queue_caps),
31999         (gst_multifdsink_client_queue_buffer),
32000         (gst_multifdsink_handle_client_write),
32001         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
32002         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
32003         (gst_multifdsink_get_property), (gst_multifdsink_init_send),
32004         (gst_multifdsink_close):
32005         * gst/tcp/gstmultifdsink.h:
32006         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
32007         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
32008         (gst_tcpserversink_handle_wait), (gst_tcpserversink_init_send),
32009         (gst_tcpserversink_close):
32010         * gst/tcp/gsttcpserversink.h:
32011         Abstracted away the select call, implemented poll (yes we ran into
32012         the 1024 limit in production).
32013
32014 2004-08-11  Thomas Vander Stichele  <thomas at apestaart dot org>
32015
32016         * gst/tcp/gsttcp.c:
32017         * gst/tcp/gsttcpplugin.c:
32018           improve debuggging, remove assert
32019
32020 2004-08-10  Wim Taymans  <wim@fluendo.com>
32021
32022         * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
32023         (gst_client_status_get_type), (gst_multifdsink_class_init),
32024         (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
32025         (gst_multifdsink_handle_client_read),
32026         (gst_multifdsink_handle_client_write),
32027         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
32028         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
32029         (gst_multifdsink_get_property):
32030         * gst/tcp/gstmultifdsink.h:
32031         * gst/tcp/gsttcp-marshal.list:
32032         Starting to prepare for specifying buffer time in other units
32033         than buffers. Expose remove reason in signal.
32034
32035 2004-08-10  Wim Taymans  <wim@fluendo.com>
32036
32037         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
32038         (gst_multifdsink_remove), (gst_multifdsink_clear),
32039         (gst_multifdsink_remove_client_link),
32040         (gst_multifdsink_handle_client_read),
32041         (gst_multifdsink_client_queue_data),
32042         (gst_multifdsink_client_queue_buffer),
32043         (gst_multifdsink_handle_client_write),
32044         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
32045         (gst_multifdsink_chain), (gst_multifdsink_close):
32046         * gst/tcp/gstmultifdsink.h:
32047         Added more debugging info. Changed the way clients are
32048         removed from the lists. Fixed a bug where a bad file descriptor
32049         could cause many clients to be removed.
32050
32051 2004-08-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
32052
32053         * gst/videotestsrc/gstvideotestsrc.c: (generate_capslist):
32054           allow all pixel-aspect-ratios, not just 1:1
32055
32056 2004-08-09  David Schleef  <ds@schleef.org>
32057
32058         * sys/glsink/ARB_multitexture.h:  Remove old files.
32059         * sys/glsink/EXT_paletted_texture.h:
32060         * sys/glsink/NV_register_combiners.h:
32061         * sys/glsink/gstgl_nvimage.c:
32062         * sys/glsink/gstgl_pdrimage.c:
32063         * sys/glsink/gstgl_rgbimage.c:
32064         * sys/glsink/gstglsink.c:
32065         * sys/glsink/gstglsink.h:
32066         * sys/glsink/gstglxwindow.c:
32067         * sys/glsink/regcomb_yuvrgb.c:
32068
32069 2004-08-09  David Schleef  <ds@schleef.org>
32070
32071         Patch from Gernot Ziegler <gz@lysator.liu.se> rewriting the
32072         GL sink plugin.  (Bug #147302)
32073
32074         * configure.ac: Test for OpenGL
32075         * sys/Makefile.am: Use test for OpenGL
32076         * sys/glsink/Makefile.am:
32077         * sys/glsink/glimagesink.c: rewrite
32078         * sys/glsink/glimagesink.h: rewrite
32079
32080 2004-08-09  David Schleef  <ds@schleef.org>
32081
32082         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_base_init):  Only allow
32083         sane framerates.
32084         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get): same
32085         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): same
32086         * testsuite/gst-lint: Test for G_GUINT64_FORMAT usage near gettext.
32087
32088 2004-08-09  Wim Taymans  <wim@fluendo.com>
32089
32090         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
32091         (gst_multifdsink_add), (gst_multifdsink_get_stats),
32092         (gst_multifdsink_client_remove),
32093         (gst_multifdsink_handle_client_read),
32094         (gst_multifdsink_handle_client_write),
32095         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
32096         Do a bit more logging, make the client_read code more robust.
32097
32098 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
32099
32100         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init_source),
32101         (gst_jpegdec_fill_input_buffer), (gst_jpegdec_skip_input_data),
32102         (gst_jpegdec_resync_to_restart), (gst_jpegdec_term_source),
32103         (gst_jpegdec_init), (gst_jpegdec_chain):
32104         * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
32105         (gst_multipart_demux_chain), (gst_multipart_demux_change_state):
32106           cleanups, debugging fixes and memleak plugging
32107
32108 2004-08-09  Wim Taymans  <wim@fluendo.com>
32109
32110         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
32111         (theora_get_formats), (theora_dec_src_convert),
32112         (theora_dec_sink_convert), (theora_dec_src_query),
32113         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain),
32114         (theora_dec_change_state):
32115         Don't crash on missing header packets.
32116
32117 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
32118
32119         * po/LINGUAS:
32120         * po/sq.po:
32121           Added Albanian translation (Laurent Dhima)
32122         * po/cs.po:
32123           updated
32124
32125 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
32126
32127         * ext/lame/gstlame.c:
32128           fix/add debugging
32129
32130 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
32131
32132         * sys/ximage/ximagesink.c:
32133         * sys/xvimage/xvimagesink.c:
32134           assign all TOO_LAZY's to a real category.  Thanks to Warthy Warthog.
32135
32136 2004-08-06  Wim Taymans  <wim@fluendo.com>
32137
32138         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
32139         (gst_multifdsink_add), (gst_multifdsink_get_stats),
32140         (gst_multifdsink_client_remove),
32141         (gst_multifdsink_handle_client_read),
32142         (gst_multifdsink_handle_client_write),
32143         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
32144         Make sure we don't try to read more from a client that what
32145         ioctl says us or we deadlock.
32146
32147 2004-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
32148
32149         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_src_link),
32150         (gst_videotestsrc_change_state), (gst_videotestsrc_src_query),
32151         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
32152           decouple running_time and n_frames so it can handle changing
32153           framerate while running
32154
32155 2004-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
32156
32157         * po/nl.po:
32158         * po/sv.po:
32159           updated translations
32160
32161 2004-08-04  Benjamin Otte  <otte@gnome.org>
32162
32163         * gst/videotestsrc/gstvideotestsrc.c:
32164         (gst_videotestsrc_get_capslist), (generate_capslist),
32165         (plugin_init):
32166           generate the list of supported caps at startup and reuse it instead
32167           of always generating it
32168
32169 2004-07-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
32170
32171         * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link):
32172           whoops, last checkin broke normal build
32173
32174 2004-08-03  Benjamin Otte  <otte@gnome.org>
32175
32176         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume),
32177         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
32178         (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
32179         (gst_alsa_mixer_get_option):
32180         * ext/dvdnav/dvdnavsrc.c: (dvdnav_get_event_name),
32181         (dvdnavsrc_print_event):
32182         * ext/ogg/gstoggdemux.c: (_find_chain_process), (gst_ogg_print):
32183         * ext/ogg/gstoggmux.c: (gst_ogg_mux_pad_link),
32184         (gst_ogg_mux_pad_unlink):
32185         * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link),
32186         (gst_multipart_mux_pad_unlink):
32187         * gst/videofilter/gstvideobalance.c:
32188         (gst_videobalance_colorbalance_set_value):
32189         * gst/videomixer/videomixer.c: (gst_videomixer_pad_link),
32190         (gst_videomixer_pad_unlink):
32191         * po/uk.po:
32192         * sys/oss/gstossmixer.c:
32193         * sys/v4l/gstv4lcolorbalance.c:
32194         * sys/v4l/gstv4ltuner.c:
32195         * sys/v4l/v4lsrc_calls.c:
32196         * sys/v4l2/gstv4l2colorbalance.c:
32197         * sys/v4l2/gstv4l2tuner.c:
32198           compile fixes for --disable-gst-debug, G_DISABLE_ASSERT and friends
32199
32200 2004-08-03  Benjamin Otte  <otte@gnome.org>
32201
32202         * examples/dynparams/filter.c: (ui_control_create):
32203         * examples/gstplay/player.c: (print_tag):
32204         * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad):
32205         * ext/gdk_pixbuf/gstgdkanimation.c:
32206         (gst_gdk_animation_iter_may_advance):
32207         * ext/jack/gstjack.c: (gst_jack_request_new_pad):
32208         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list),
32209         (tag_list_to_id3_tag_foreach), (gst_id3_tag_handle_event):
32210         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_tag_value):
32211         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value):
32212         * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
32213         * gst-libs/gst/media-info/media-info-test.c: (print_tag):
32214         * gst/sine/demo-dparams.c: (main):
32215         * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
32216         * testsuite/alsa/formats.c: (create_pipeline):
32217         * testsuite/alsa/sinesrc.c: (sinesrc_force_caps), (sinesrc_get):
32218           fixes for G_DISABLE_ASSERT and friends
32219         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
32220         (mp3_type_frame_length_from_header), (mp3_type_find),
32221         (plugin_init):
32222           require mp3 typefinding to have at least MIN_HEADERS valid headers
32223           add typefinding for AAC adts files
32224
32225 2004-08-04  Jan Schmidt  <thaytan@mad.scientist.com>
32226
32227         * sys/ximage/ximagesink.c:
32228         (gst_ximagesink_calculate_pixel_aspect_ratio):
32229         * sys/xvimage/xvimagesink.c:
32230         (gst_xvimagesink_calculate_pixel_aspect_ratio):
32231         Make sure we calculate pixel-aspect-ratio using floating point maths
32232
32233 2004-08-03  Thomas Vander Stichele  <thomas at apestaart dot org>
32234
32235         * po/uk.po:
32236           updated translation
32237
32238 2004-08-03  Thomas Vander Stichele  <thomas at apestaart dot org>
32239
32240         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
32241         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get):
32242           add debugging for display PAR calculation
32243
32244 2004-08-02  David Schleef  <ds@schleef.org>
32245
32246         * configure.ac: Fix mikmod CFLAGS.
32247
32248 2004-07-27  Benjamin Otte  <otte@gnome.org>
32249
32250         * gst/audioscale/gstaudioscale.c:
32251         - fix templates to only support S16, it's the only format that works
32252         - make caps nego code use try_set_caps_nonfixed and fixation instead
32253         of try_set_caps twice, which is not nice for autopluggers
32254         - change rank to secondary, so autopluggers can pick it up after
32255         audioconvert
32256
32257 2004-08-02  Iain <iain@prettypeople.org>
32258
32259         * gst/interleave/interleave.c (interleave_init),
32260         (interleave_request_new_pad),
32261         (interleave_pad_removed),
32262         (interleave_buffered_loop): Use the real pad count, not the artificial
32263         one.
32264
32265 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
32266
32267         * configure.ac: bump nano back to development
32268
32269 === release 0.8.3 ===
32270
32271 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
32272
32273         * configure.ac: releasing 0.8.3, "Water"
32274
32275 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
32276
32277         * sys/xvimage/xvimagesink.c:
32278         (gst_xvimagesink_calculate_pixel_aspect_ratio),
32279         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_sink_link),
32280         (gst_xvimagesink_change_state), (gst_xvimagesink_buffer_alloc),
32281         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
32282         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
32283         * sys/xvimage/xvimagesink.h:
32284           apply similar PAR fixes as to ximagesink
32285
32286 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
32287
32288         patch from: Benjamin Otte
32289
32290         * ext/lame/gstlame.c: (gst_lame_src_link), (gst_lame_init):
32291           add link function to lame.  Fixes #148986.
32292
32293 2004-08-02  Johan Dahlin  <johan@gnome.org>
32294
32295         * gst/multipart/multipartmux.c (gst_multipart_mux_next_buffer):
32296         fix debugging log
32297
32298 2004-07-30  David Schleef  <ds@schleef.org>
32299
32300         * gst/videomixer/Makefile.am: Fix things that should have been
32301         fixed in the last checkin.
32302
32303 2004-07-30  David Schleef  <ds@schleef.org>
32304
32305         * gst/multipart/Makefile.am: Fix things that should have been
32306         fixed in the last checkin.
32307
32308 2004-07-30  David Schleef  <ds@schleef.org>
32309
32310         * testsuite/multifilesink/Makefile.am: Fix unused variable.
32311
32312 2004-07-30  Thomas Vander Stichele  <thomas at apestaart dot org>
32313
32314         * configure.ac:
32315           bump nano for prerelease
32316         * po/af.po:
32317         * po/az.po:
32318         * po/cs.po:
32319         * po/en_GB.po:
32320         * po/hu.po:
32321         * po/nl.po:
32322         * po/sr.po:
32323         * po/sv.po:
32324         * po/uk.po:
32325           updates
32326
32327 2004-07-30  Wim Taymans  <wim@fluendo.com>
32328
32329         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
32330         (gst_multifdsink_add), (gst_multifdsink_remove),
32331         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
32332         (gst_multifdsink_client_remove),
32333         (gst_multifdsink_handle_client_write),
32334         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
32335         * gst/tcp/gstmultifdsink.h:
32336         Recover from a select with a bad file descriptor by removing
32337         the client.
32338
32339 2004-07-30  Thomas Vander Stichele  <thomas at apestaart dot org>
32340
32341         * configure.ac:
32342           fix requirement of core
32343         * gst-libs/gst/play/play.c: (gst_play_error_plugin),
32344         (gst_play_pipeline_setup):
32345           don't use colorspace element.  do use hermescolorspace element.
32346           make macro to get a colorspace element.
32347           mark strings for translation.
32348         * po/POTFILES.in:
32349           add play.c
32350         * po/af.po:
32351         * po/az.po:
32352         * po/cs.po:
32353         * po/en_GB.po:
32354         * po/hu.po:
32355         * po/nl.po:
32356         * po/sr.po:
32357         * po/sv.po:
32358         * po/uk.po:
32359           update translations
32360
32361 2004-07-30  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
32362
32363         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init):
32364         fix default for newmedia flag
32365
32366 2004-07-30  Wim Taymans  <wim@fluendo.com>
32367
32368         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
32369         (gst_theora_dec_init), (theora_get_formats),
32370         (theora_dec_src_convert), (theora_dec_sink_convert),
32371         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
32372         (theora_dec_chain), (theora_dec_set_property),
32373         (theora_dec_get_property):
32374         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
32375         (gst_theora_enc_class_init), (gst_theora_enc_init),
32376         (theora_enc_sink_link), (theora_enc_chain),
32377         (theora_enc_set_property), (theora_enc_get_property):
32378         Added cropping option to theora decoder.
32379         Added border option to theora encoder.
32380
32381 2004-07-30  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
32382
32383         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
32384         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
32385         (gst_pngenc_set_property):
32386         * ext/libpng/gstpngenc.h:
32387         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
32388
32389 2004-07-30  Wim Taymans  <wim@fluendo.com>
32390
32391         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
32392         (theora_enc_sink_link), (theora_enc_chain),
32393         (theora_enc_set_property), (theora_enc_get_property):
32394         Fix encoding of non-multiple-of-16 video.
32395
32396 2004-07-29  David Schleef  <ds@schleef.org>
32397
32398         * configure.ac: make test for audiofile more strict
32399
32400 2004-07-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
32401
32402         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
32403           give different names to typefind functions
32404
32405 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
32406
32407         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
32408         (gst_ximagesink_calculate_pixel_aspect_ratio),
32409         (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
32410         (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
32411         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_set_property),
32412         (gst_ximagesink_get_property), (gst_ximagesink_init):
32413         * sys/ximage/ximagesink.h:
32414           allocate PAR's dynamically.
32415           use autodetected PAR if no object-set PAR is given.
32416           add workaround for directfb's X not setting physical size.
32417           fix to xvimagesink will follow tomorrow.
32418
32419 2004-07-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
32420
32421         * ext/lame/gstlame.c: (gst_lame_chain): send tag events downstream
32422         * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
32423         (gst_shout2send_get_type), (gst_shout2send_set_clock),
32424         (gst_shout2send_class_init), (gst_shout2send_init),
32425         (set_shout_metadata), (gst_shout2send_set_metadata),
32426         (gst_shout2send_chain), (gst_shout2send_set_property),
32427         (gst_shout2send_get_property), (gst_shout2send_connect),
32428         (gst_shout2send_change_state):
32429         * ext/shout2/gstshout2.h:
32430         - fix for sending mp3 audio to icecast2 server, if pad link function not
32431         called before PAUSED state
32432         - added option to use GStreamer clock sync (as opposed to libshout's own sync)
32433         - added tagging support for mp3 audio broadcasted
32434         * gst/monoscope/gstmonoscope.c: (gst_monoscope_class_init):
32435         debug info
32436
32437 2004-07-28  Wim Taymans  <wim@fluendo.com>
32438
32439         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
32440         (gst_ogg_demux_push):
32441         Return query failure when we don't know the length of
32442         an ogg stream insteda of returning TRUE with a bogus value.
32443
32444 2004-07-28  Wim Taymans  <wim@fluendo.com>
32445
32446         * ext/theora/theoradec.c: (theora_get_formats),
32447         (theora_dec_src_convert), (theora_dec_sink_convert),
32448         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
32449         (theora_dec_chain):
32450         Don't screw up the 1 Chroma for 1 luma sample situation when we
32451         have an odd offset/width by adding a black border in those cases.
32452
32453 2004-07-28  Wim Taymans  <wim@fluendo.com>
32454
32455         * ext/theora/theoradec.c: (theora_get_formats),
32456         (theora_dec_src_convert), (theora_dec_sink_convert),
32457         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
32458         (theora_dec_chain):
32459         * ext/theora/theoraenc.c: (theora_enc_sink_link):
32460         Added first attempt at cropping of the image as required by the
32461         theora spec. We need more properties in the caps (offset_x,
32462         offset_y,stride) to implement this correctly.
32463
32464 2004-07-28  Jan Schmidt  <thaytan@mad.scientist.com>
32465
32466         * ext/dvdnav/README:
32467           Update the README to use dvddemux
32468         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
32469           Ensure getcaps returns a subset of the template caps
32470         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_base_init),
32471         (gst_mpeg2subt_init):
32472           Ensure getcaps returns a subset of the template caps
32473         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
32474         (gst_dvd_demux_init), (gst_dvd_demux_get_video_stream),
32475         (gst_dvd_demux_get_subpicture_stream),
32476         (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_set_cur_subpicture):
32477         * gst/mpegstream/gstdvddemux.h:
32478           Set the explicit caps on the current_video pad before pushing
32479           anything
32480         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
32481         (gst_mpeg_demux_get_audio_stream):
32482           Free caps used to gst_pad_set_explicit_caps, which takes a const
32483           GstCaps *
32484
32485 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
32486
32487         * configure.ac: update GStreamer requirement to 0.8.4 because of
32488           GstFraction.
32489
32490 2004-07-28  Wim Taymans  <wim@fluendo.com>
32491
32492         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt),
32493         (gst_wavparse_handle_seek), (gst_wavparse_srcpad_event):
32494         Add the pad to the element after setting up the caps. This
32495         makes it a lot easier to autoplug.
32496
32497 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
32498
32499         * gst/median/gstmedian.c:
32500         * gst/mpeg2subt/gstmpeg2subt.c:
32501         * gst/mpegaudioparse/gstmpegaudioparse.c:
32502         * gst/mpegstream/gstdvddemux.c:
32503         * gst/mpegstream/gstmpegdemux.c:
32504         * gst/mpegstream/gstmpegpacketize.c:
32505         * gst/rtjpeg/gstrtjpeg.c:
32506         * gst/rtjpeg/gstrtjpegdec.c:
32507         * gst/rtjpeg/gstrtjpegenc.c:
32508         * gst/sine/gstsinesrc.c:
32509         * gst/smooth/gstsmooth.c:
32510         * gst/smpte/gstsmpte.c:
32511         * gst/smpte/gstsmpte.h:
32512         * gst/stereo/gststereo.c:
32513         * gst/videofilter/gstgamma.c:
32514         * gst/videofilter/gstvideobalance.c:
32515         * gst/videofilter/gstvideofilter.c:
32516         * gst/videofilter/gstvideoflip.c:
32517         * gst/videoscale/gstvideoscale.c:
32518         * gst/videoscale/videoscale.c:
32519         * gst/videotestsrc/gstvideotestsrc.c:
32520         * gst/videotestsrc/videotestsrc.c:
32521         * gst/wavenc/gstwavenc.c:
32522         * gst/wavparse/gstwavparse.c:
32523           fix local includes and 64 bits constants
32524
32525 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
32526
32527         * win32/gst.sln:
32528         * gst-libs/gst/*/*.vcproj:
32529         * gst/*/*.vcproj:
32530           more working plugins
32531
32532 2004-07-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
32533
32534         * testsuite/alsa/Makefile.am:
32535         * testsuite/alsa/srcstate.c:
32536         add test for alsasrc changing state
32537
32538 2004-07-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
32539
32540         * gst/silence/gstsilence.c: (gst_silence_init), (gst_silence_link),
32541         (gst_silence_get):
32542         * gst/silence/gstsilence.h:
32543         fix silence generation for 16bit raw audio
32544
32545 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
32546
32547         * gst/matroska/matroska-demux.c:
32548         (gst_matroska_demux_parse_metadata),
32549         (gst_matroska_demux_video_caps), (gst_matroska_demux_plugin_init):
32550         * gst/mpegaudio/common.c:
32551         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
32552         (gst_videoscale_getcaps), (gst_videoscale_link),
32553         (gst_videoscale_src_fixate), (gst_videoscale_init),
32554         (gst_videoscale_finalize):
32555         * gst/videoscale/gstvideoscale.h:
32556         * gst/videotestsrc/gstvideotestsrc.c:
32557         (gst_videotestsrc_get_capslist):
32558         * gst/wavenc/gstwavenc.c:
32559         * sys/oss/gstossmixer.c: (fill_labels):
32560         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
32561         (gst_ximagesink_handle_xevents),
32562         (gst_ximagesink_calculate_pixel_aspect_ratio),
32563         (gst_ximagesink_xcontext_get), (gst_ximagesink_fixate),
32564         (gst_ximagesink_getcaps), (gst_ximagesink_sink_link),
32565         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
32566         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
32567         (gst_ximagesink_init), (gst_ximagesink_class_init):
32568         * sys/ximage/ximagesink.h:
32569         * sys/xvimage/xvimagesink.c:
32570         (gst_xvimagesink_calculate_pixel_aspect_ratio),
32571         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_sink_link),
32572         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
32573         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
32574         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
32575         * sys/xvimage/xvimagesink.h:
32576           first batch of pixel aspect ratio commits.
32577
32578 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
32579
32580         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
32581         (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_chain):
32582         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_fill):
32583           handle stride, needs work if we want to move stride handling
32584           upstream, but works correctly for our purposes.
32585
32586 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
32587
32588         * gst/videoscale/README:
32589           add testing examples
32590         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link),
32591         (gst_videoscale_chain):
32592         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
32593         (gst_videoscale_get_size):
32594           add get_size function that handles stride like videotestsrc.
32595           fixes conversion for YUV formats for as much as I can test them.
32596
32597 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
32598
32599         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
32600         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
32601         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
32602         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
32603         (gst_xvimagesink_xvimage_put):
32604           further cleanups, logging, error handling and synchronizing
32605
32606 2004-07-27  Wim Taymans  <wim@fluendo.com>
32607
32608         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
32609         (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
32610         (gst_videomixer_pad_set_property),
32611         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
32612         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
32613         (gst_videomixer_class_init), (gst_videomixer_init),
32614         (gst_videomixer_getcaps), (gst_videomixer_request_new_pad),
32615         (gst_videomixer_blend_ayuv_i420), (pad_zorder_compare),
32616         (gst_videomixer_sort_pads), (gst_videomixer_fill_checker),
32617         (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
32618         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
32619         (gst_videomixer_loop), (plugin_init):
32620         Be a nicer negotiation citizen and provide a getcaps function on
32621         the srcpad. This also fixes a crash when resizing.
32622
32623 2004-07-27  Julien MOUTTE  <julien@moutte.net>
32624
32625         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
32626         (gst_xvimagesink_xvimage_new): Some fixes to image size calculation.
32627
32628 2004-07-27  Wim Taymans  <wim@fluendo.com>
32629
32630         * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps):
32631         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
32632         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
32633         (gst_pngenc_set_property):
32634         * ext/libpng/gstpngenc.h:
32635         Added snapshot property to pngenc.
32636         removed g_print from pngdec
32637
32638 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
32639
32640         * gst/ac3parse/ac3parse.vcproj
32641         * gst/adder/adder.vcproj
32642         * gst/alpha/alpha.vcproj
32643         * gst/alpha/alphacolor.vcproj
32644         * gst/asfdemux/asf.vcproj
32645         * gst/audioconvert/audioconvert.vcproj
32646         * gst/audiorate/audiorate.vcproj
32647         * gst/audioscale/audioscale.vcproj
32648         * gst/auparse/auparse.vcproj
32649         * gst/avi/avi.vcproj
32650         * gst/cdxaparse/cdxaparse.vcproj
32651         * gst/chart/chart.vcproj
32652         * gst/colorspace/colorspace.vcproj
32653         * gst/cutter/cutter.vcproj
32654         * gst/debug/debug.vcproj
32655         * gst/debug/efence.vcproj
32656         * gst/debug/navigationtest.vcproj
32657         * gst/deinterlace/deinterlace.vcproj
32658         * gst/effectv/effectv.vcproj
32659         * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
32660         * gst/filter/filter.vcproj
32661         * gst/flx/flxdec.vcproj
32662         * gst/goom/goom.vcproj
32663         * gst/interleave/interleave.vcproj
32664         * gst/law/alaw.vcproj
32665         * gst/law/mulaw.vcproj
32666         * gst/matroska/matroska.vcproj
32667         * gst/median/median.vcproj
32668         * gst/mixmatrix/mixmatrix.vcproj
32669         * gst/mpeg1sys/mpeg1systemencode.vcproj
32670         * gst/mpeg1videoparse/mp1videoparse.vcproj
32671         * gst/mpeg2sub/mpeg2subt.vcproj
32672         * gst/mpegaudio/mpegaudio.vcproj
32673         * gst/mpegaudioparse/mpegaudioparse.vcproj
32674         * gst/mpegstream/mpegstream.vcproj
32675         * gst/multifilesink/multifilesink.vcproj
32676         * gst/multipart/multipart.vcproj
32677         * gst/oneton/oneton.vcproj
32678         * gst/overlay/overlay.vcproj
32679         * gst/passthrough/passthrough.vcproj
32680         * gst/qtdemux/qtdemux.vcproj
32681         * gst/realmedia/rmdemux.vcproj
32682         * gst/rtjpeg/rtjpeg.vcproj
32683         * gst/rtp/rtp.vcproj
32684         * gst/silence/silence.vcproj
32685         * gst/sine/sinesrc.vcproj
32686         * gst/smooth/smooth.vcproj
32687         * gst/smpte/smpte.vcproj
32688         * gst/spectrum/spectrum.vcproj
32689         * gst/speed/speed.vcproj
32690         * gst/stereo/stereo.vcproj
32691         * gst/switch/switch.vcproj
32692         * gst/tags/tagedit.vcproj
32693         * gst/tcp/tcp.vcproj
32694         * gst/typefind/typefindfunctions.vcproj
32695         * gst/udp/udp.vcproj
32696         * gst/videobox/videobox.vcproj
32697         * gst/videocrop/videocrop.vcproj
32698         * gst/videodrop/videodrop.vcproj
32699         * gst/videofilter/gamma.vcproj
32700         * gst/videofilter/videobalance.vcproj
32701         * gst/videofilter/videofilter.vcproj
32702         * gst/videofilter/videoflip.vcproj
32703         * gst/videoflip/videoflip.vcproj
32704         * gst/videomixer/videomixer.vcproj
32705         * gst/videorate/videorate.vcproj
32706         * gst/videoscale/videoscale.vcproj
32707         * gst/videotestsrc/videotestsrc.vcproj
32708         * gst/virtualdub/virtualdub.vcproj
32709         * gst/volenv/volenv.vcproj
32710         * gst/volume/volume.vcproj
32711         * gst/wavenc/wavenc.vcproj
32712         * gst/wavparse/wavparse.vcproj
32713         * gst/y4m/y4menc.vcproj
32714         * gst-libs/gst/audio/audio.vcproj
32715         * gst-libs/gst/audio/audiofilter.vcproj
32716         * gst-libs/gst/colorbalance/colorbalance.vcproj
32717         * gst-libs/gst/idct/idtc.vcproj
32718         * gst-libs/gst/media-info/media-info.vcproj
32719         * gst-libs/gst/mixer/mixer.vcproj
32720         * gst-libs/gst/navigation/navigation.vcproj
32721         * gst-libs/gst/play/play.vcproj
32722         * gst-libs/gst/propertyprobe/propertyprobe.vcproj
32723         * gst-libs/gst/resample/resample.vcproj
32724         * gst-libs/gst/riff/riff.vcproj
32725         * gst-libs/gst/tuner/tuner.vcproj
32726         * gst-libs/gst/video/video.vcproj
32727         * gst-libs/gst/xoverlay/xoverlay.vcproj
32728           avoid problems with math.h, fix release dependancy
32729           rename GStreamer-0.8.lib to libgstreamer.lib
32730
32731 2004-07-27  Julien MOUTTE  <julien@moutte.net>
32732
32733         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
32734         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate): When
32735         the atom is not available we have to unlock the mutex. Fixes #148023
32736
32737 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
32738
32739         * gst-libs/gst/media-info/media-info.h:
32740           issue for a vararg macro with MSVC
32741
32742 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
32743
32744         * gst/effectv/effectv.vcproj
32745         * gst-libs/gst/idct/idct.vcproj:
32746         * gst-libs/gst/media-info/media-info.vcproj:
32747         * gst-libs/gst/navigation/navigation.vcproj:
32748         * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
32749         * gst-libs/gst/video/video.vcproj:
32750         * gst-libs/gst/xoverlay/xoverlay.vcproj:
32751           fixes for build problems
32752
32753 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
32754
32755         * gst-libs/gst/audio/audio.def:
32756         * gst-libs/gst/audio/riff.def:
32757           add some definitions needed by plugins
32758
32759 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
32760
32761         * gst/asfdemux/gstasfmux.c
32762           Fix some 64 bits constants to be glib friendly
32763
32764 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
32765
32766         * gst/ac3parse/gstac3parse.c
32767         * gst/audioscale/gstaudioscale.c
32768         * gst/auparse/gstauparse.c
32769         * gst/colorspace/gstcolorspace.c
32770         * gst/colorspace/yuv2rgb.h
32771           local include fixes
32772
32773 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
32774
32775         * win32/gst.sln
32776           add more plugins to the build
32777
32778 2004-07-26  Julien MOUTTE  <julien@moutte.net>
32779
32780         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
32781         (gst_ximagesink_ximage_new): Some more fixes to image size calculation.
32782
32783 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
32784
32785         * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
32786         (gst_level_set_property), (gst_level_get_property),
32787         (gst_level_base_init), (gst_level_class_init):
32788           add debugging categories.  cleanups.
32789
32790 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
32791
32792         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
32793         (gst_videoscale_planar411), (gst_videoscale_planar400),
32794         (gst_videoscale_packed422), (gst_videoscale_packed422rev),
32795         (gst_videoscale_scale_nearest_str1),
32796         (gst_videoscale_scale_nearest_str2),
32797         (gst_videoscale_scale_nearest_str4),
32798         (gst_videoscale_scale_nearest_16bit),
32799         (gst_videoscale_scale_nearest_24bit):
32800           fixed stride issues
32801           tested with 320x240 -> 321, 322, 324 x240
32802           tested with YV12, I420, YUY2, UYVY
32803           fixed packed422rev (don't think it could have worked before)
32804           by testing with UYVY
32805
32806 2004-07-26  Benjamin Otte  <otte@gnome.org>
32807
32808         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_init),
32809         (gst_lame_chain), (gst_lame_setup), (gst_lame_change_state),
32810         (plugin_init):
32811           add debugging category, add error checks like checking return values
32812           of setup calls, make sure it still works after
32813           PLAYING=>NULL=>PLAYING, fix encoding of mono streams
32814
32815 2004-07-26  Wim Taymans  <wim@fluendo.com>
32816
32817         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
32818         (gst_mpeg_demux_get_audio_stream),
32819         (gst_mpeg_demux_process_private):
32820         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_send_data):
32821         Check for error codes from the negotiation functions. Make sure
32822         we really set the pad caps when a new pad is created.
32823
32824 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
32825
32826         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
32827         (gst_ffmpeg_caps_to_pix_fmt):
32828         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
32829         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
32830         (gst_ffmpegcolorspace_pad_link):
32831           don't make function do two things at the same time without reason.
32832
32833 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
32834
32835         * gst/ac3parse/ac3parse.vcproj
32836         * gst/adder/adder.vcproj
32837         * gst/alpha/alpha.vcproj
32838         * gst/alpha/alphacolor.vcproj
32839         * gst/asfdemux/asf.vcproj
32840         * gst/audioconvert/audioconvert.vcproj
32841         * gst/audiorate/audiorate.vcproj
32842         * gst/audioscale/audioscale.vcproj
32843         * gst/auparse/auparse.vcproj
32844         * gst/avi/avi.vcproj
32845         * gst/cdxaparse/cdxaparse.vcproj
32846         * gst/chart/chart.vcproj
32847         * gst/colorspace/colorspace.vcproj
32848         * gst/cutter/cutter.vcproj
32849         * gst/debug/debug.vcproj
32850         * gst/debug/efence.vcproj
32851         * gst/debug/navigationtest.vcproj
32852         * gst/deinterlace/deinterlace.vcproj
32853         * gst/effectv/effectv.vcproj
32854         * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
32855         * gst/filter/filter.vcproj
32856         * gst/flx/flxdec.vcproj
32857         * gst/goom/goom.vcproj
32858         * gst/interleave/interleave.vcproj
32859         * gst/law/alaw.vcproj
32860         * gst/law/mulaw.vcproj
32861         * gst/matroska/matroska.vcproj
32862         * gst/median/median.vcproj
32863         * gst/mixmatrix/mixmatrix.vcproj
32864         * gst/mpeg1sys/mpeg1systemencode.vcproj
32865         * gst/mpeg1videoparse/mp1videoparse.vcproj
32866         * gst/mpeg2sub/mpeg2subt.vcproj
32867         * gst/mpegaudio/mpegaudio.vcproj
32868         * gst/mpegaudioparse/mpegaudioparse.vcproj
32869         * gst/mpegstream/mpegstream.vcproj
32870         * gst/multifilesink/multifilesink.vcproj
32871         * gst/multipart/multipart.vcproj
32872         * gst/oneton/oneton.vcproj
32873         * gst/overlay/overlay.vcproj
32874         * gst/passthrough/passthrough.vcproj
32875         * gst/qtdemux/qtdemux.vcproj
32876         * gst/realmedia/rmdemux.vcproj
32877         * gst/rtjpeg/rtjpeg.vcproj
32878         * gst/rtp/rtp.vcproj
32879         * gst/silence/silence.vcproj
32880         * gst/sine/sinesrc.vcproj
32881         * gst/smooth/smooth.vcproj
32882         * gst/smpte/smpte.vcproj
32883         * gst/spectrum/spectrum.vcproj
32884         * gst/speed/speed.vcproj
32885         * gst/stereo/stereo.vcproj
32886         * gst/switch/switch.vcproj
32887         * gst/tags/tagedit.vcproj
32888         * gst/tcp/tcp.vcproj
32889         * gst/typefind/typefindfunctions.vcproj
32890         * gst/udp/udp.vcproj
32891         * gst/videobox/videobox.vcproj
32892         * gst/videocrop/videocrop.vcproj
32893         * gst/videodrop/videodrop.vcproj
32894         * gst/videofilter/gamma.vcproj
32895         * gst/videofilter/videobalance.vcproj
32896         * gst/videofilter/videofilter.vcproj
32897         * gst/videofilter/videoflip.vcproj
32898         * gst/videoflip/videoflip.vcproj
32899         * gst/videomixer/videomixer.vcproj
32900         * gst/videorate/videorate.vcproj
32901         * gst/videoscale/videoscale.vcproj
32902         * gst/videotestsrc/videotestsrc.vcproj
32903         * gst/virtualdub/virtualdub.vcproj
32904         * gst/volenv/volenv.vcproj
32905         * gst/volume/volume.vcproj
32906         * gst/wavenc/wavenc.vcproj
32907         * gst/wavparse/wavparse.vcproj
32908         * gst/y4m/y4menc.vcproj
32909           more plugins supported under windows
32910
32911 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
32912
32913         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
32914         (gst_ximagesink_ximage_put), (gst_ximagesink_renegotiate_size),
32915         (gst_ximagesink_chain), (gst_ximagesink_buffer_alloc):
32916         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
32917         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc):
32918           Add debugging statements.  Use the sizes as returned by the
32919           *CreateImage calls.
32920
32921 2004-07-26  Johan Dahlin  <johan@gnome.org>
32922
32923         * gst/tcp/gsttcpclientsrc.c (gst_tcpclientsrc_get): Make sure that
32924         the pad is negotiated.
32925
32926         * gst/ffmpegcolorspace/gstffmpegcolorspace.c (gst_ffmpegcolorspace_chain): Ditto
32927
32928 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
32929
32930         * gst-libs/gst/colorbalance/colorbalance.vcproj:
32931         * gst-libs/gst/idct/idct.vcproj:
32932         * gst-libs/gst/media-info/media-info.vcproj:
32933         * gst-libs/gst/mixer/mixer.vcproj:
32934         * gst-libs/gst/navigation/navigation.vcproj:
32935         * gst-libs/gst/play/play.vcproj:
32936         * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
32937         * gst-libs/gst/resample/resample.vcproj:
32938         * gst-libs/gst/tuner/tuner.vcproj:
32939         * gst-libs/gst/video/video.vcproj:
32940         * gst-libs/gst/xoverlay/xoverlay.vcproj:
32941           more plugins supported under windows
32942
32943 2004-07-25 Iain <iain@prettypeople.org>
32944
32945         * gst/wavparse/gstwavparse.c (gst_wavparse_fmt): Set the caps on the
32946         pad now rather than when the pad is created because state changes wipe
32947         explicit caps (fixes #148043).
32948
32949 2004-07-25  Sebastien Cote  <sc5@hermes.usherb.ca>
32950
32951         reviewed by Benjamin Otte  <otte@gnome.org>
32952
32953         * ext/mad/gstmad.c:
32954           fix mad plugin crashing on Sun (fixes #148289)
32955
32956 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
32957
32958         * gst/avi/avi.def:
32959         * gst/avi/avi.vcproj:
32960         * gst/matroska/matroska.def:
32961         * gst/matroska/matroska.vcproj:
32962           remove unused .def files
32963
32964 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
32965
32966         * gst-libs/gst/audio/gstaudiofilter.c:
32967           Clean the local include
32968
32969 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
32970
32971         * win32/gst.sln:
32972         * gst-libs/gst/audio/audio.def:
32973         * gst-libs/gst/audio/audio.vcproj:
32974         * gst-libs/gst/audio/audiofilter.vcproj:
32975         * gst-libs/gst/audio/riff.def:
32976         * gst-libs/gst/audio/riff.vcproj:
32977         * gst-libs/gst/gst-libs.def:
32978         * gst-libs/gst/gst-libs.vcproj:
32979         * gst/avi/avi.vcproj:
32980         * gst/avi/avi.vcproj:
32981           Copy the files where needed after building, cleaner projects
32982
32983 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
32984
32985         * gst/matroska/ebml-write.c:
32986           Fix some 64 bits constants to be glib friendly
32987
32988 2004-07-24  Steve Lhomme  <steve.lhomme@free.fr>
32989
32990         * win32/gst.sln:
32991         * gst-libs/gst/gst-libs.def:
32992         * gst-libs/gst/gst-libs.vcproj:
32993         * gst/matroska/matroska.def:
32994         * gst/matroska/matroska.vcproj:
32995           Add the preliminary canvas to build plugins on Win32
32996
32997 2004-07-23  Benjamin Otte  <otte@gnome.org>
32998
32999         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
33000           don't enfore negotiation from source side, it breaks
33001           sinesrc ! audioconvert ! osssink
33002
33003 2004-07-22  David Schleef  <ds@schleef.org>
33004
33005         * gst/typefind/gsttypefindfunctions.c: (plugin_init): Add typefind
33006         for ELF files, since they can easily be recognized as audio/mpeg.
33007         (bug #147441)
33008
33009 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
33010
33011         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
33012         (gst_videoscale_planar411), (gst_videoscale_scale_nearest_32bit),
33013         (gst_videoscale_scale_nearest_24bit),
33014         (gst_videoscale_scale_nearest_16bit):
33015           fix 16bit and 24bit for stride (24bit might need testing)
33016           don't pretend we do more than one algorithm
33017
33018 2004-07-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
33019
33020         * configure.ac:
33021         * gst/Makefile.am:
33022         * gst/multifilesink/Makefile.am:
33023         * gst/multifilesink/gstmultifilesink.c:
33024         (gst_multifilesink_get_formats),
33025         (gst_multifilesink_get_query_types), (_do_init),
33026         (gst_multifilesink_base_init), (gst_multifilesink_class_init),
33027         (gst_multifilesink_init), (gst_multifilesink_dispose),
33028         (gst_multifilesink_set_location), (gst_multifilesink_set_property),
33029         (gst_multifilesink_get_property), (gst_multifilesink_open_file),
33030         (gst_multifilesink_close_file), (gst_multifilesink_next_file),
33031         (gst_multifilesink_pad_query), (gst_multifilesink_handle_event),
33032         (gst_multifilesink_chain), (gst_multifilesink_change_state),
33033         (gst_multifilesink_uri_get_type),
33034         (gst_multifilesink_uri_get_protocols),
33035         (gst_multifilesink_uri_get_uri), (gst_multifilesink_uri_set_uri),
33036         (gst_multifilesink_uri_handler_init), (plugin_init):
33037         * gst/multifilesink/gstmultifilesink.h:
33038         * testsuite/Makefile.am:
33039         * testsuite/multifilesink/Makefile.am:
33040         * testsuite/multifilesink/fakesrc_test.c: (gst_newmedia_base_init),
33041         (gst_newmedia_class_init), (gst_newmedia_init),
33042         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
33043         (newfile_signal), (test_signal), (main):
33044         multifilesink plugin for creating new files every time a new media
33045         discontinuity event occurs
33046
33047 2004-07-22  Wim Taymans  <wim@fluendo.com>
33048
33049         * gst/alpha/Makefile.am:
33050         * gst/alpha/gstalphacolor.c: (gst_alpha_color_get_type),
33051         (gst_alpha_color_base_init), (gst_alpha_color_class_init),
33052         (gst_alpha_color_init), (gst_alpha_color_set_property),
33053         (gst_alpha_color_get_property), (gst_alpha_color_sink_link),
33054         (transform), (gst_alpha_color_chain),
33055         (gst_alpha_color_change_state), (plugin_init):
33056         Stupid plugin to to RGBA to AYUV conversion because none of
33057         the colorspace plugins can handle that yet.
33058
33059 2004-07-22  Wim Taymans  <wim@fluendo.com>
33060
33061         * examples/seeking/seek.c: (update_scale), (main):
33062         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
33063         (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
33064         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
33065         (gst_decode_bin_init), (gst_decode_bin_dispose),
33066         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
33067         (no_more_pads), (close_link), (type_found),
33068         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
33069         (plugin_init):
33070         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
33071         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
33072         (gst_play_base_bin_dispose), (queue_overrun),
33073         (gen_preroll_element), (remove_prerolls), (unknown_type),
33074         (no_more_pads), (new_stream), (setup_source),
33075         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
33076         (play_base_eos), (gst_play_base_bin_change_state),
33077         (gst_play_base_bin_add_element),
33078         (gst_play_base_bin_remove_element),
33079         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
33080         (gst_play_base_bin_unlink_stream),
33081         (gst_play_base_bin_get_streaminfo):
33082         * gst/playback/gstplaybin.c: (gen_video_element),
33083         (gen_audio_element):
33084         * gst/playback/gststreaminfo.h:
33085         More playback updates, attempt to fix things after the state change
33086         breakage.
33087
33088 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
33089
33090         * gst/videoscale/videoscale.c: (gst_videoscale_planar411),
33091         (gst_videoscale_scale_nearest_16bit):
33092           comment algorithm
33093
33094 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
33095
33096         * gst/videotestsrc/gstvideotestsrc.c:
33097         (gst_videotestsrc_class_init), (gst_videotestsrc_src_link),
33098         (gst_videotestsrc_init), (gst_videotestsrc_get),
33099         (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
33100         (gst_videotestsrc_get_property):
33101         * gst/videotestsrc/gstvideotestsrc.h:
33102         * gst/videotestsrc/videotestsrc.c:
33103         * gst/videotestsrc/videotestsrc.h:
33104           cleanup and commenting
33105
33106 2004-07-21  Wim Taymans  <wim@fluendo.com>
33107
33108         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
33109         (gst_ogg_demux_get_formats), (gst_ogg_demux_src_query),
33110         (gst_ogg_demux_src_event), (gst_ogg_demux_src_convert),
33111         (gst_ogg_demux_handle_event), (gst_ogg_demux_seek_before),
33112         (_find_chain_get_unknown_part), (_find_streams_check),
33113         (gst_ogg_demux_push), (gst_ogg_pad_push):
33114         * ext/theora/theoradec.c: (theora_get_formats),
33115         (theora_dec_src_convert), (theora_dec_sink_convert),
33116         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
33117         (theora_dec_chain):
33118         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
33119         (vorbis_dec_convert), (vorbis_dec_src_query),
33120         (vorbis_dec_src_event), (vorbis_dec_event):
33121         More seeking fixes, oggdemux now supports seeking to time and
33122         uses the downstream element to convert granulepos to time.
33123         Seeking in theora-only ogg files now works.
33124
33125 2004-07-21  Wim Taymans  <wim@fluendo.com>
33126
33127         * ext/theora/theoradec.c: (gst_theora_dec_init),
33128         (theora_get_formats), (theora_get_event_masks),
33129         (theora_get_query_types), (theora_dec_src_convert),
33130         (theora_dec_sink_convert), (theora_dec_src_query),
33131         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
33132         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
33133         (vorbis_get_event_masks), (vorbis_get_query_types),
33134         (gst_vorbis_dec_init), (vorbis_dec_convert),
33135         (vorbis_dec_src_query), (vorbis_dec_src_event), (vorbis_dec_event):
33136         Added query/convert/formats functions to vorbis and theora decoders
33137         so that the outside world can use them too. Fixed seeking on an
33138         ogg/theora/vorbis file by disabling the seeking seeking on the
33139         theora srcpad.
33140
33141 2004-07-21  Julien MOUTTE  <julien@moutte.net>
33142
33143         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
33144         (gst_ximagesink_renegotiate_size), (gst_ximagesink_sink_link),
33145         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id): Optimize
33146         images creation for both elements. We don't create the image on caps
33147         nego or renego, we just destroy the internal one if present if it does
33148         not match the needs. The chain function takes care of creating a new
33149         image when needed.
33150         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
33151         (gst_xvimagesink_xwindow_decorate), (gst_xvimagesink_sink_link),
33152         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
33153         (gst_xvimagesink_set_xwindow_id): Additionally xvimage now contains
33154         the image format information. The buffer pool checks for the context
33155         image format and discard images with different formats.
33156         * sys/xvimage/xvimagesink.h: Adding im_format in the xvimage structure.
33157
33158 2004-07-21  Thomas Vander Stichele  <thomas at apestaart dot org>
33159
33160         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
33161         (gst_ffmpegcolorspace_chain):
33162           no point in doing any chaining if the pad we want to push from
33163           isn't usable.
33164
33165 2004-07-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
33166
33167         * gst-libs/gst/riff/riff-media.c:
33168         (gst_riff_create_audio_caps_with_data):
33169           Fix double end-to-native symbol conversion (#148021).
33170
33171 2004-07-20  David Schleef  <ds@schleef.org>
33172
33173         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
33174         Don't use an Atom that doesn't exist.
33175
33176 2004-07-20  Wim Taymans  <wim@fluendo.com>
33177
33178         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
33179         (gst_multifdsink_add), (gst_multifdsink_get_stats),
33180         (gst_multifdsink_client_remove),
33181         (gst_multifdsink_handle_client_write),
33182         (gst_multifdsink_queue_buffer):
33183         * gst/tcp/gstmultifdsink.h:
33184         More multifdsink stats. Avoid deadlock by releasing locks
33185         before sending out a signal.
33186
33187 2004-07-20  Thomas Vander Stichele  <thomas at apestaart dot org>
33188
33189         * po/LINGUAS:
33190         * po/hu.po:
33191           added Hungarian translation (Laszlo Dvornik)
33192
33193 2004-07-20  Wim Taymans  <wim@fluendo.com>
33194
33195         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
33196         (gst_multifdsink_add), (gst_multifdsink_client_remove),
33197         (gst_multifdsink_handle_client_write),
33198         (gst_multifdsink_queue_buffer):
33199         * gst/tcp/gsttcp-marshal.list:
33200         Fixed the stupid marshal definition.
33201
33202 2004-07-20  Wim Taymans  <wim@fluendo.com>
33203
33204         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
33205         (gst_multifdsink_init), (gst_multifdsink_add),
33206         (gst_multifdsink_client_remove),
33207         (gst_multifdsink_handle_client_write),
33208         (gst_multifdsink_queue_buffer), (gst_multifdsink_chain),
33209         (gst_multifdsink_set_property), (gst_multifdsink_get_property),
33210         (gst_multifdsink_init_send):
33211         * gst/tcp/gstmultifdsink.h:
33212         Added more stats, added timeout for a client, fixed some typos
33213         and added some comments.
33214
33215 2004-07-20  Wim Taymans  <wim@fluendo.com>
33216
33217         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
33218         (gst_multifdsink_add), (gst_multifdsink_get_stats),
33219         (gst_multifdsink_client_remove),
33220         (gst_multifdsink_handle_client_write):
33221         * gst/tcp/gstmultifdsink.h:
33222         * gst/tcp/gsttcp-marshal.list:
33223         Added get_stats method that returns a GValueArray of
33224         stats values.
33225
33226 2004-07-19  Benjamin Otte  <otte@gnome.org>
33227
33228         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
33229           make sure longname, description and author are valid UTF-8
33230
33231 2004-07-19  Thomas Vander Stichele  <thomas at apestaart dot org>
33232
33233         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state),
33234         (gst_ximagesink_set_property):
33235         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state),
33236         (gst_xvimagesink_set_property):
33237           make sure SYNCHRONOUS is respected after getting the X context
33238
33239 2004-07-18  Thomas Vander Stichele  <thomas at apestaart dot org>
33240
33241         * gst/matroska/matroska-demux.c:
33242         (gst_matroska_demux_handle_src_event),
33243         (gst_matroska_demux_parse_blockgroup):
33244         * gst/matroska/matroska-ids.h:
33245           add BlockReference tag and ignore it to clear out log.
33246           ignore NAVIGATION events to clear out log.
33247
33248 2004-07-18  Thomas Vander Stichele  <thomas at apestaart dot org>
33249
33250         * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
33251         (gst_matroska_demux_add_stream):
33252         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init):
33253           add debug categories
33254
33255 2004-07-16  Wim Taymans  <wim@fluendo.com>
33256
33257         * ext/libpng/Makefile.am:
33258         * ext/libpng/gstpng.c: (plugin_init):
33259         * ext/libpng/gstpngdec.c: (user_error_fn), (user_warning_fn),
33260         (gst_pngdec_get_type), (gst_pngdec_base_init),
33261         (gst_pngdec_class_init), (gst_pngdec_sinklink), (gst_pngdec_init),
33262         (gst_pngdec_src_getcaps), (user_read_data), (gst_pngdec_chain):
33263         * ext/libpng/gstpngdec.h:
33264         Added png decoder.
33265
33266 2004-07-16  Julien MOUTTE  <julien@moutte.net>
33267
33268         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
33269         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
33270         (gst_ximagesink_ximage_destroy), (gst_ximagesink_sink_link),
33271         (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
33272         (gst_ximagesink_buffer_alloc):
33273         * sys/ximage/ximagesink.h:
33274         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
33275         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
33276         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
33277         (gst_xvimagesink_buffer_alloc):
33278         * sys/xvimage/xvimagesink.h: Getting the 2 video sinks synchronized
33279         again. Using internal data pointer of the x(v)image to store image's
33280         data to be coherent with the buffer alloc mechanism. Investigated the
33281         image destruction code to be sure that everything gets freed correctly.
33282
33283 2004-07-16  Wim Taymans  <wim@fluendo.com>
33284
33285         * gst-libs/gst/riff/riff-read.c:
33286         (gst_riff_read_strf_vids_with_data),
33287         (gst_riff_read_strf_auds_with_data):
33288         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
33289         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
33290         Make sure we don't create 0 sized subbuffers in riff-read.
33291         Signal the no more pads signal after reading the avi header.
33292
33293 2004-07-16  Wim Taymans  <wim@fluendo.com>
33294
33295         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
33296         (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
33297         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
33298         (gst_decode_bin_init), (gst_decode_bin_dispose),
33299         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
33300         (no_more_pads), (close_link), (type_found),
33301         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
33302         (gst_decode_bin_change_state), (plugin_init):
33303         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
33304         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
33305         (gst_play_base_bin_dispose), (queue_overrun),
33306         (gen_preroll_element), (remove_prerolls), (unknown_type),
33307         (no_more_pads), (new_stream), (setup_source),
33308         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
33309         (play_base_eos), (gst_play_base_bin_change_state),
33310         (gst_play_base_bin_add_element),
33311         (gst_play_base_bin_remove_element),
33312         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
33313         (gst_play_base_bin_unlink_stream),
33314         (gst_play_base_bin_get_streaminfo):
33315         * gst/playback/gstplaybasebin.h:
33316         Better error recovery. Added configurable preroll queue size. Faster
33317         detection of no-more-pads.
33318
33319 2004-07-16  Wim Taymans  <wim@fluendo.com>
33320
33321         * gst-libs/gst/video/video.h:
33322         Added 32 bits RGBA. Not sure if we should use another mime-type
33323         for alpha rgb. Currently the presence of the alpha_mask property
33324         signals an alpha channel.
33325
33326 2004-07-16  Wim Taymans  <wim@fluendo.com>
33327
33328         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
33329         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
33330         FPS seems to be 0.0 to MAX everywhere else.
33331
33332 2004-07-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
33333
33334         * gst-libs/gst/riff/riff-media.c:
33335         (gst_riff_create_video_caps_with_data):
33336           mp42/mp43 (no caps) exist too.
33337         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
33338           Set pixel_width/height; we've got them in-caps.
33339         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
33340         * gst/wavparse/gstwavparse.c: (plugin_init):
33341           Both are valid primary.
33342         * sys/oss/gstossmixer.c:
33343           Remove i18n hack and enable translations.
33344
33345 2004-07-15  Benjamin Otte  <otte@gnome.org>
33346
33347         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
33348         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
33349           fix for non-shm xv. Original patch by Tim Ringenbach (fixes #147248)
33350
33351 2004-07-15  Benjamin Otte  <otte@gnome.org>
33352
33353         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
33354         (gst_alsa_sw_params_dump), (gst_alsa_hw_params_dump),
33355         (gst_alsa_close_audio):
33356           disable some of the debugging code for now. Writing debugging to a
33357           buffer is broken in current alsalib releases.
33358
33359 2004-07-12  Benjamin Otte  <otte@gnome.org>
33360
33361         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer):
33362           use bufferpools
33363
33364 2004-07-14  Thomas Vander Stichele  <thomas at apestaart dot org>
33365
33366         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
33367         (theora_dec_src_query), (theora_dec_event):
33368         * ext/theora/theoraenc.c: (gst_theora_enc_class_init):
33369           add debugging categories.  Remove \n's.
33370
33371 2004-07-13  Johan Dahlin  <johan@gnome.org>
33372
33373         * gst/playback/gstplaybin.c (gst_play_bin_set_property)
33374         (gst_play_bin_get_property): Impl.
33375
33376 2004-07-13  Wim Taymans  <wim@fluendo.com>
33377
33378         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_seek_before):
33379         When trying to find the stream length, seek back N pages
33380         instead of just one, where N is the number of streams in
33381         the current chain.
33382
33383 2004-07-13  Wim Taymans  <wim@fluendo.com>
33384
33385         * gst-libs/gst/riff/riff-media.c:
33386         (gst_riff_create_audio_caps_with_data),
33387         (gst_riff_create_audio_caps),
33388         (gst_riff_create_audio_template_caps):
33389         * gst-libs/gst/riff/riff-media.h:
33390         * gst-libs/gst/riff/riff-read.c:
33391         (gst_riff_read_strf_vids_with_data),
33392         (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_auds):
33393         * gst-libs/gst/riff/riff-read.h:
33394         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
33395         (gst_avi_demux_add_stream):
33396         Set codec_data on caps for avidemuxer.
33397
33398 2004-07-12  David Schleef  <ds@schleef.org>
33399
33400         * configure.ac: Fix test for Objective C
33401
33402 2004-07-12  Jan Schmidt  <thaytan@mad.scientist.com>
33403         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_get_capslist),
33404         (gst_gdk_pixbuf_chain):
33405           Add svg and pcx to template caps, and ensure that getcaps returns a
33406           subset of the template caps.
33407           Copy each row manually for output, as gdkpixbuf may pad the
33408           rowstride to a 32-bit word boundary.
33409
33410 2004-07-12  Wim Taymans  <wim@fluendo.com>
33411
33412         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
33413         (gst_riff_create_video_template_caps):
33414         Fix the template caps to include some more media types.
33415
33416 2004-07-12  Wim Taymans  <wim@fluendo.com>
33417
33418         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
33419         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
33420         (compare_ranks), (print_feature), (gst_decode_bin_init),
33421         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
33422         (try_to_link_1), (new_pad), (close_link), (type_found),
33423         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
33424         (gst_decode_bin_change_state), (plugin_init):
33425         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
33426         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
33427         (gst_play_base_bin_dispose), (queue_overrun),
33428         (gen_preroll_element), (remove_prerolls), (no_more_pads),
33429         (new_stream), (setup_source), (gst_play_base_bin_set_property),
33430         (gst_play_base_bin_get_property), (play_base_eos),
33431         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
33432         (gst_play_base_bin_remove_element),
33433         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
33434         (gst_play_base_bin_unlink_stream),
33435         (gst_play_base_bin_get_streaminfo):
33436         * gst/playback/gstplaybasebin.h:
33437         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
33438         (gst_play_bin_class_init), (gst_play_bin_init),
33439         (gst_play_bin_dispose), (gst_play_bin_set_property),
33440         (gst_play_bin_get_property), (gen_video_element),
33441         (gen_audio_element), (remove_sinks), (setup_sinks),
33442         (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
33443         (gst_play_bin_send_event), (gst_play_bin_get_formats),
33444         (gst_play_bin_convert), (gst_play_bin_get_query_types),
33445         (gst_play_bin_query), (plugin_init):
33446         * gst/playback/test4.c: (main):
33447         More fixes on reusing of the element.
33448
33449 2004-07-11  Benjamin Otte  <otte@gnome.org>
33450
33451         * ext/mad/gstmad.c: (normal_seek):
33452           allow seeking for other methods than just SET
33453
33454 2004-07-11  Andy Wingo  <wingo@pobox.com>
33455
33456         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_link): For
33457         float, "any" caps -> buffer_frames=[0,MAX].
33458
33459         * gst/interleave/interleave.c (interleave_getcaps): Seems the core
33460         doesn't intersect our caps with the template any more. Do it
33461         ourselves.
33462         (interleave_buffered_loop): Use g_newa instead of malloc/free.
33463
33464 2004-07-09  Wim Taymans  <wim@fluendo.com>
33465
33466         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
33467         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
33468         (compare_ranks), (print_feature), (gst_decode_bin_init),
33469         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
33470         (try_to_link_1), (new_pad), (close_link), (type_found),
33471         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
33472         (gst_decode_bin_change_state), (plugin_init):
33473         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
33474         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
33475         (gst_play_base_bin_dispose), (queue_overrun),
33476         (gen_preroll_element), (remove_prerolls), (no_more_pads),
33477         (new_stream), (setup_source), (gst_play_base_bin_set_property),
33478         (gst_play_base_bin_get_property), (play_base_eos),
33479         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
33480         (gst_play_base_bin_remove_element),
33481         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
33482         (gst_play_base_bin_unlink_stream),
33483         (gst_play_base_bin_get_streaminfo):
33484         * gst/playback/gstplaybasebin.h:
33485         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
33486         (gst_play_bin_class_init), (gst_play_bin_init),
33487         (gst_play_bin_dispose), (gst_play_bin_set_property),
33488         (gst_play_bin_get_property), (gen_video_element),
33489         (gen_audio_element), (remove_sinks), (setup_sinks),
33490         (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
33491         (gst_play_bin_send_event), (gst_play_bin_get_formats),
33492         (gst_play_bin_convert), (gst_play_bin_get_query_types),
33493         (gst_play_bin_query), (plugin_init):
33494         * gst/playback/test4.c: (main):
33495         Work on object reuse and seeking.
33496
33497 2004-07-09  Wim Taymans  <wim@fluendo.com>
33498
33499         * examples/seeking/seek.c: (iterate):
33500         Don't consume all CPU in the idle loop.
33501
33502 2004-07-09  Wim Taymans  <wim@fluendo.com>
33503
33504         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_new_output_pad),
33505         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_process_private):
33506         Add pad to element *after* setting the pad functions so that
33507         the scheduler can use the correct ones.
33508
33509 2004-07-09  Wim Taymans  <wim@fluendo.com>
33510
33511         * ext/theora/theoradec.c: (theora_dec_from_granulepos),
33512         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_chain):
33513         Sync to keyframe after seek
33514
33515 2004-07-09  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
33516
33517         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
33518         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
33519         (gst_alsa_sink_loop), (gst_alsa_sink_change_state):
33520         * ext/alsa/gstalsasrc.c: (gst_alsa_src_change_state):
33521         * ext/libvisual/visual.c: (gst_visual_change_state):
33522         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_change_state):
33523         * ext/theora/theoradec.c: (theora_dec_change_state):
33524         * ext/theora/theoraenc.c: (theora_enc_change_state):
33525         * ext/vorbis/vorbisdec.c: (vorbis_dec_change_state):
33526         * gst-libs/gst/navigation/navigation.c:
33527         * gst/adder/gstadder.c: (gst_adder_change_state):
33528         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
33529         (gst_audio_convert_get_buffer):
33530         * gst/multipart/multipartdemux.c:
33531         (gst_multipart_demux_change_state):
33532         * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
33533         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
33534         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
33535         * gst/videoscale/gstvideoscale.c:
33536         (gst_videoscale_handle_src_event):
33537         * gst/volume/gstvolume.c: (volume_chain_int16):
33538           don't assert in state change, this should be done by the base
33539           GstElement class.
33540           various debugging fixes.
33541
33542 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
33543
33544         * configure.ac:
33545         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
33546         (gst_play_dispose), (gst_play_set_location),
33547         (gst_play_set_data_src), (gst_play_set_video_sink),
33548         (gst_play_set_audio_sink), (gst_play_set_visualization),
33549         (gst_play_connect_visualization), (gst_play_get_sink_element),
33550         (gst_play_get_all_by_interface):
33551         * gst-libs/gst/play/play.h:
33552           add new method to get elements implementing an interface.
33553           add various error logging
33554
33555 2004-07-08  Wim Taymans  <wim@fluendo.com>
33556
33557         * examples/seeking/seek.c: (make_dv_pipeline), (make_avi_pipeline),
33558         (make_mpeg_pipeline), (make_mpegnt_pipeline),
33559         (make_playerbin_pipeline), (query_durations_elems),
33560         (query_durations_pads), (query_positions_elems),
33561         (query_positions_pads), (update_scale), (iterate), (stop_seek),
33562         (main):
33563         Added playbin seeking example.
33564
33565 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
33566
33567         * gst-libs/gst/play/play.c: (gst_play_set_location),
33568         (gst_play_set_data_src), (gst_play_set_video_sink),
33569         (gst_play_set_audio_sink), (gst_play_set_visualization),
33570         (gst_play_connect_visualization), (gst_play_get_framerate):
33571           use a macro to look up elements from hash table
33572
33573 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
33574
33575         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
33576         (gst_play_get_length_callback), (gst_play_set_location),
33577         (gst_play_seek_to_time), (gst_play_set_data_src),
33578         (gst_play_set_video_sink), (gst_play_set_audio_sink),
33579         (gst_play_set_visualization), (gst_play_connect_visualization),
33580         (gst_play_get_sink_element):
33581         - add debugging info
33582         - fix looking up sink elements by iterating over complete caps
33583         - put everything except for source and autoplugger in a complete bin
33584
33585 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
33586
33587         * ext/alsa/gstalsa.c: (gst_alsa_drain_audio):
33588         * ext/alsa/gstalsasink.c: (gst_alsa_sink_flush_one_pad),
33589         (gst_alsa_sink_check_event), (gst_alsa_sink_mmap),
33590         (gst_alsa_sink_write), (gst_alsa_sink_loop):
33591         * ext/alsa/gstalsasink.h:
33592         - add debugging info
33593         - clean up schizophrenia of data/buffer/event
33594         - fix double event unref error
33595
33596 2004-07-08  Wim Taymans  <wim@fluendo.com>
33597
33598         * gst/playback/Makefile.am:
33599         Add headers to noinst
33600
33601 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
33602
33603         * tools/gst-launch-ext-m.m:
33604         * tools/gst-launch-ext.1.in:
33605           convert to the third millenium
33606
33607 2004-07-07  David Schleef  <ds@schleef.org>
33608
33609         * sys/dxr3/Makefile.am: noinst_SOURCES should be nodist_SOURCES
33610
33611 2004-07-07  Wim Taymans  <wim@fluendo.com>
33612
33613         * gst/playback/Makefile.am:
33614         * gst/playback/README:
33615         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
33616         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
33617         (compare_ranks), (print_feature), (gst_decode_bin_init),
33618         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
33619         (try_to_link_1), (new_pad), (close_link), (type_found),
33620         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
33621         (plugin_init):
33622         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
33623         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
33624         (gst_play_base_bin_dispose), (rebuild_pipeline), (queue_overrun),
33625         (gen_preroll_element), (no_more_pads), (new_stream),
33626         (setup_source), (gst_play_base_bin_set_property),
33627         (gst_play_base_bin_get_property), (gst_play_base_bin_change_state),
33628         (gst_play_base_bin_add_element),
33629         (gst_play_base_bin_remove_element),
33630         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
33631         (gst_play_base_bin_unlink_stream),
33632         (gst_play_base_bin_get_streaminfo):
33633         * gst/playback/gstplaybasebin.h:
33634         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
33635         (gst_play_bin_class_init), (gst_play_bin_init),
33636         (gst_play_bin_dispose), (gst_play_bin_set_property),
33637         (gst_play_bin_get_property), (gen_video_element),
33638         (gen_audio_element), (setup_sinks), (gst_play_bin_change_state),
33639         (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
33640         (gst_play_bin_get_formats), (gst_play_bin_convert),
33641         (gst_play_bin_get_query_types), (gst_play_bin_query),
33642         (plugin_init):
33643         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
33644         (gst_stream_info_get_type), (gst_stream_info_class_init),
33645         (gst_stream_info_init), (gst_stream_info_new),
33646         (gst_stream_info_dispose), (gst_stream_info_set_property),
33647         (gst_stream_info_get_property):
33648         * gst/playback/gststreaminfo.h:
33649         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
33650         (main):
33651         * gst/playback/test2.c: (main):
33652         * gst/playback/test3.c: (update_scale), (main):
33653         More playbin fixes. Added README. Do better element filtering.
33654         Added base class to preroll media. Added test apps.
33655
33656 2004-07-07  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
33657
33658         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_flush_decoder):
33659         * ext/mpeg2dec/gstmpeg2dec.h:
33660           various debugging improvements.  Reset stream to next picture
33661           instead of sequence header, otherwise seeks cannot work.
33662
33663 2004-07-07  Wim Taymans  <wim@fluendo.com>
33664
33665         * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
33666         (gst_video_box_class_init), (gst_video_box_set_property),
33667         (gst_video_box_i420), (gst_video_box_ayuv), (gst_video_box_chain):
33668         Use pad_alloc where possible.
33669
33670 2004-07-07  Wim Taymans  <wim@fluendo.com>
33671
33672         * sys/oss/gstosselement.c: (gst_osselement_reset),
33673         (gst_osselement_parse_caps):
33674         * sys/oss/gstosselement.h:
33675         * sys/oss/gstosssrc.c: (gst_osssrc_get):
33676         Fix offset on osssrc.
33677
33678 2004-07-07  Wim Taymans  <wim@fluendo.com>
33679
33680         * ext/theora/theora.c: (plugin_init):
33681         * ext/theora/theoradec.c: (theora_dec_from_granulepos),
33682         (theora_dec_src_query), (theora_dec_chain):
33683         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
33684         (theora_enc_sink_link), (theora_buffer_from_packet),
33685         (theora_push_packet), (theora_enc_chain):
33686         Fix theora granulepos calculation.
33687         Fix overflow in duration/position calculation.
33688         Bump rank to PRIMARY for theoradec.
33689         Use granulepos of last packet to calculate position.
33690         Set keyframe flag on buffers when needed.
33691
33692 2004-07-06  David Schleef  <ds@schleef.org>
33693
33694         * gst/playback/Makefile.am: 'test' in bin_PROGRAMS?  Are you
33695         serious?  (Fixed, obviously.)
33696
33697 2004-07-06  Thomas Vander Stichele  <thomas at apestaart dot org>
33698
33699         * po/LINGUAS:
33700         * po/cs.po:
33701           added Czech translation (Miloslav Trmac)
33702
33703 2004-07-05  Wim Taymans  <wim@fluendo.com>
33704
33705         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
33706         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
33707         (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
33708         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
33709         (close_link), (type_found), (gst_decode_bin_set_property),
33710         (gst_decode_bin_get_property), (gst_decode_bin_get_event_masks),
33711         (gst_decode_bin_send_event), (gst_decode_bin_get_formats),
33712         (gst_decode_bin_convert), (gst_decode_bin_get_query_types),
33713         (gst_decode_bin_query), (plugin_init):
33714         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
33715         (gst_play_bin_class_init), (gst_play_bin_init),
33716         (gst_play_bin_dispose), (rebuild_pipeline), (get_audio_element),
33717         (get_video_element), (new_pad), (setup_source),
33718         (gst_play_bin_set_property), (gst_play_bin_get_property),
33719         (gst_play_bin_change_state), (gst_play_bin_add_element),
33720         (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
33721         (gst_play_bin_send_event), (gst_play_bin_get_formats),
33722         (gst_play_bin_convert), (gst_play_bin_get_query_types),
33723         (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
33724         * gst/playback/test.c: (main):
33725         More fixes, cleaned up playbin, make it use decodebin. Added
33726         threaded property to playbin.
33727
33728 2004-07-05  Wim Taymans  <wim@fluendo.com>
33729
33730         * configure.ac:
33731         * gst/playback/Makefile.am:
33732         * gst/playback/decodetest.c: (main):
33733         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
33734         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
33735         (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
33736         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
33737         (close_link), (type_found), (gst_decode_bin_set_property),
33738         (gst_decode_bin_get_property), (gst_decode_bin_change_state),
33739         (gst_decode_bin_get_event_masks), (gst_decode_bin_send_event),
33740         (gst_decode_bin_get_formats), (gst_decode_bin_convert),
33741         (gst_decode_bin_get_query_types), (gst_decode_bin_query),
33742         (plugin_init):
33743         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
33744         (gst_play_bin_class_init), (gst_play_bin_init),
33745         (gst_play_bin_dispose), (gen_default_output), (rebuild_pipeline),
33746         (collect_sink_pads), (find_compatibles), (close_pad_link),
33747         (try_to_link_1), (new_pad), (close_link), (type_found),
33748         (setup_source), (gst_play_bin_set_property),
33749         (gst_play_bin_get_property), (gst_play_bin_factory_filter),
33750         (compare_ranks), (gst_play_bin_collect_factories),
33751         (gst_play_bin_change_state), (gst_play_bin_add_element),
33752         (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
33753         (gst_play_bin_send_event), (gst_play_bin_get_formats),
33754         (gst_play_bin_convert), (gst_play_bin_get_query_types),
33755         (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
33756         * gst/playback/test.c: (main):
33757         Added some playback helper elements and some test apps, very alpha
33758         still.
33759
33760 2004-07-04  Benjamin Otte  <otte@gnome.org>
33761
33762         * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
33763           only restart audio when we indeed have an xrun to fix repeated
33764           xruns. Fix suggested by Giuliano Pochini.
33765
33766 2004-07-03  David Schleef  <ds@schleef.org>
33767
33768         * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper): Disable
33769         call to gst_debug_log() if debugging is disabled (bug #145118)
33770
33771 2004-07-03  Benjamin Otte  <otte@gnome.org>
33772
33773         * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
33774           use our own functions for restarting the alsa device.
33775         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
33776           I should apply patches myself - use MIN for the third argument, not
33777           the second, this fixes seeking
33778
33779 2004-07-02  David Schleef  <ds@schleef.org>
33780
33781         * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
33782         (gst_flacdec_write):  Actually, GST_PAD_CAPS() has nothing to
33783         do with the logic.
33784
33785 2004-07-02  David Schleef  <ds@schleef.org>
33786
33787         * ext/flac/gstflacdec.c: (gst_flacdec_write):  Set duration on
33788         output buffers.  Fix logic mistake.  (bug #144866)
33789
33790 2004-07-02  David Schleef  <ds@schleef.org>
33791
33792         * gst-libs/gst/xoverlay/Makefile.am: xoverlay no longer depends
33793         on X.  (bug #144753)
33794
33795 2004-07-02  David Schleef  <ds@schleef.org>
33796
33797         * gst/wavenc/gstwavenc.c: (gst_wavenc_setup),
33798         (gst_wavenc_stop_file): Switch to GST_WRITE_UINT32_LE macros
33799         (bug #144624)
33800         * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
33801         (gst_osselement_rate_probe_check): Add another workaround for
33802         buggy drivers (bug #145336)
33803
33804 2004-07-02  David Schleef  <ds@schleef.org>
33805
33806         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_handle_client_write):
33807         Most systems don't have MSG_NOSIGNAL.
33808
33809 2004-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
33810
33811         * Makefile.am:
33812         * gst-libs/gst/colorbalance/Makefile.am:
33813         * gst-libs/gst/mixer/Makefile.am:
33814         * gst-libs/gst/play/Makefile.am:
33815         * gst-libs/gst/tuner/Makefile.am:
33816           (hopefully) fix both install and dist and make error message useful.
33817           needs testing across automakes.
33818
33819 2004-07-02  Benjamin Otte  <otte@gnome.org>
33820
33821         * ext/ogg/gstogg.c: (plugin_init):
33822           we require bytestream now
33823         * ext/ogg/gstoggdemux.c:
33824           huge diff to implement chain setup in a fast and generic way. This
33825           improves tag reading and startup of huge files (read: Theora videos)
33826           quite a bit. It probably contains bugs, too, so please test.
33827           Seeking is not improved to the fast method.
33828
33829 2004-06-29  Wim Taymans  <wim@fluendo.com>
33830
33831         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
33832         * ext/ogg/gstoggmux.c:
33833         Fix memleak in oggdemux when running unconnected pads.
33834         doc update in mux, start working on keyframe mode.
33835
33836 2004-06-29  Benjamin Otte  <otte@gnome.org>
33837
33838         * sys/oss/gstosssink.c:
33839         * sys/oss/gstosssrc.c:
33840           advertise correct template caps - we indeed do non-native endianness
33841           and 8bit audio has no endianness
33842         * sys/ximage/ximagesink.c: (gst_ximagesink_getcaps):
33843         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps):
33844           avoid (wrong) duplications in getcaps function and return
33845           template caps
33846
33847 2004-06-29  Wim Taymans  <wim@fluendo.com>
33848
33849         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
33850         (gst_multifdsink_class_init), (gst_multifdsink_add),
33851         (gst_multifdsink_remove), (gst_multifdsink_clear),
33852         (gst_multifdsink_client_remove),
33853         (gst_multifdsink_handle_client_read),
33854         (gst_multifdsink_client_queue_data),
33855         (gst_multifdsink_client_queue_caps),
33856         (gst_multifdsink_client_queue_buffer),
33857         (gst_multifdsink_handle_client_write),
33858         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
33859         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
33860         (gst_multifdsink_init_send), (gst_multifdsink_close):
33861         Fix wrong GList iteration that could crash the server when
33862         more then 2 clients disconnect at the same time. Read all the
33863         pending commands in one batch to recover from command storms under
33864         very heavy load.
33865
33866 2004-06-28  Wim Taymans  <wim@fluendo.com>
33867
33868         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
33869         (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
33870         (gst_videomixer_pad_set_property),
33871         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
33872         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
33873         (gst_videomixer_class_init), (gst_videomixer_init),
33874         (gst_videomixer_request_new_pad), (gst_videomixer_blend_ayuv_i420),
33875         (pad_zorder_compare), (gst_videomixer_sort_pads),
33876         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
33877         (gst_videomixer_fill_queues), (gst_videomixer_blend_buffers),
33878         (gst_videomixer_update_queues), (gst_videomixer_loop),
33879         (plugin_init):
33880         Avoid divide by zero, choose masterpad as the pad with the highest
33881         framerate.
33882
33883 2004-06-27  Julien Moutte  <julien@moutte.net>
33884
33885         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
33886         (gst_ximagesink_xwindow_new):
33887         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
33888         (gst_xvimagesink_xwindow_new): I prefer locking the mutex in the
33889         function directly. We might want to call it from somewhere else one day.
33890
33891 2004-06-27  Julien Moutte  <julien@moutte.net>
33892
33893         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
33894         (gst_ximagesink_xwindow_new):
33895         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
33896         (gst_xvimagesink_xwindow_new): Trying to fix the random behaviour of
33897         window decorations.
33898
33899 2004-06-27  Wim Taymans  <wim@fluendo.com>
33900
33901         * ext/dv/gstdvdec.c: (gst_dvdec_class_init), (gst_dvdec_init),
33902         (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
33903         (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state),
33904         (gst_dvdec_set_property), (gst_dvdec_get_property):
33905         * ext/dv/gstdvdec.h:
33906         Implement drop_factor property to lower the framerate with
33907         a factor.
33908
33909 2004-06-27  Thomas Vander Stichele  <thomas at apestaart dot org>
33910
33911         * gst-libs/gst/colorbalance/Makefile.am:
33912         * gst-libs/gst/mixer/Makefile.am:
33913         * gst-libs/gst/play/Makefile.am:
33914         * gst-libs/gst/tuner/Makefile.am:
33915           unbreak Company's fix that didn't install the -enum.h files
33916
33917 2004-06-27  Wim Taymans  <wim@fluendo.com>
33918
33919         * ext/dv/gstdvdec.c: (gst_dvdec_push), (gst_dvdec_loop),
33920         (gst_dvdec_change_state):
33921         * ext/dv/gstdvdec.h:
33922         Fix timestamp, duration and offset of the buffers.
33923
33924 2004-06-27  Wim Taymans  <wim@fluendo.com>
33925
33926         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
33927         (gst_multifdsink_class_init), (gst_multifdsink_add),
33928         (gst_multifdsink_remove), (gst_multifdsink_clear),
33929         (gst_multifdsink_client_remove),
33930         (gst_multifdsink_handle_client_read),
33931         (gst_multifdsink_client_queue_data),
33932         (gst_multifdsink_client_queue_caps),
33933         (gst_multifdsink_client_queue_buffer),
33934         (gst_multifdsink_handle_client_write),
33935         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
33936         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
33937         (gst_multifdsink_init_send), (gst_multifdsink_close):
33938         * gst/tcp/gstmultifdsink.h:
33939         * gst/tcp/gsttcpserversink.c:
33940         (gst_tcpserversink_handle_server_read),
33941         (gst_tcpserversink_handle_select), (gst_tcpserversink_close):
33942         More multifdsink fixes, more recovery policy fixes.
33943         Removed stupid g_print
33944
33945 2004-06-26  Wim Taymans  <wim@fluendo.com>
33946
33947         * gst/tcp/Makefile.am:
33948         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
33949         (gst_multifdsink_get_type), (gst_multifdsink_base_init),
33950         (gst_multifdsink_class_init), (gst_multifdsink_init),
33951         (gst_multifdsink_debug_fdset), (gst_multifdsink_client_remove),
33952         (gst_multifdsink_handle_client_read),
33953         (gst_multifdsink_client_queue_data),
33954         (gst_multifdsink_client_queue_caps),
33955         (gst_multifdsink_client_queue_buffer),
33956         (gst_multifdsink_handle_client_write),
33957         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
33958         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
33959         (gst_multifdsink_chain), (gst_multifdsink_set_property),
33960         (gst_multifdsink_get_property), (gst_multifdsink_init_send),
33961         (gst_multifdsink_close), (gst_multifdsink_change_state):
33962         * gst/tcp/gstmultifdsink.h:
33963         * gst/tcp/gsttcpplugin.c: (plugin_init):
33964         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_get_type),
33965         (gst_tcpserversink_class_init), (gst_tcpserversink_init),
33966         (gst_tcpserversink_handle_server_read),
33967         (gst_tcpserversink_handle_select),
33968         (gst_tcpserversink_set_property), (gst_tcpserversink_get_property),
33969         (gst_tcpserversink_init_send), (gst_tcpserversink_close):
33970         * gst/tcp/gsttcpserversink.h:
33971         Added multifdsink, made tcpserversink a subclass of fdsink, removed
33972         one of the locks, added recovery policy to multifdsink.
33973
33974 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
33975
33976         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
33977           fix decision for when getting frames with same timestamp
33978         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
33979         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
33980         (gst_v4lsrc_get_property):
33981         * sys/v4l/gstv4lsrc.h:
33982           add latency offset property
33983
33984 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
33985
33986         * gst/videorate/gstvideorate.c: (gst_videorate_chain),
33987         (plugin_init):
33988           fix debugging. add category.
33989
33990 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
33991
33992         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
33993           fix wrong offsets
33994
33995 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
33996
33997         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
33998         (gst_alsa_src_get_time), (gst_alsa_src_loop),
33999         (gst_alsa_src_change_state):
34000           return a time that is in sync with the element's processing
34001
34002 2004-06-25  Wim Taymans  <wim@fluendo.com>
34003
34004         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
34005         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
34006         (gst_tcpserversink_client_remove),
34007         (gst_tcpserversink_handle_client_read),
34008         (gst_tcpserversink_client_queue_data),
34009         (gst_tcpserversink_client_queue_caps),
34010         (gst_tcpserversink_client_queue_buffer),
34011         (gst_tcpserversink_handle_client_write),
34012         (gst_tcpserversink_queue_buffer),
34013         (gst_tcpserversink_handle_clients), (gst_tcpserversink_thread),
34014         (gst_tcpserversink_chain), (gst_tcpserversink_set_property),
34015         (gst_tcpserversink_get_property), (gst_tcpserversink_init_send),
34016         (gst_tcpserversink_close):
34017         * gst/tcp/gsttcpserversink.h:
34018         Serversink rewrite. Really do non blocking writes to clients and
34019         maintain an internal queue to handle slower clients while not
34020         disturbing fast clients.
34021
34022 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
34023
34024         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
34025           better debug, don't override OFFSET and OFFSET_END
34026
34027 2004-06-25  Iain <iain@prettypeople.org>
34028
34029         * gst-libs/gst/media-info/media-info-priv.c (gmi_set_mime): Add
34030         name=source for the wavparse pipeline.
34031
34032 2004-06-24  Johan Dahlin  <johan@gnome.org>
34033
34034         * ext/theora/theoraenc.c (theora_enc_chain): Call
34035         gst_pad_try_set_caps instead of gst_pad_set_explicit_caps so the
34036         streamheader caps are set correctly.
34037
34038 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
34039
34040         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
34041         (gst_vorbisenc_setup), (gst_vorbisenc_set_property):
34042           respect minimum bitrate; same could be done for max bitrate
34043
34044 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
34045
34046         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
34047         (gst_vorbisenc_setup):
34048           fix sample rate range
34049
34050 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
34051
34052         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_class_init),
34053         (gst_oggvorbisenc_setup):
34054         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
34055         (gst_vorbisenc_setup):
34056           resolve ambiguities in code and description
34057
34058 2004-06-24  Wim Taymans  <wim@fluendo.com>
34059
34060         * ext/alsa/gstalsa.c: (gst_alsa_start), (gst_alsa_xrun_recovery):
34061         * ext/alsa/gstalsa.h:
34062         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
34063         (gst_alsa_src_update_avail), (gst_alsa_src_loop):
34064         Use alsa trigger_tstamp to get the timestamp of the first
34065         sample in the buffer for more precise sync. Some cleanups.
34066
34067 2004-06-24  Wim Taymans  <wim@fluendo.com>
34068
34069         * gst/audiorate/gstaudiorate.c: (gst_audiorate_link),
34070         (gst_audiorate_init), (gst_audiorate_chain),
34071         (gst_audiorate_set_property), (gst_audiorate_get_property):
34072         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
34073         (gst_videorate_chain):
34074         Added some logging, fixed an overflow bug in videorate.
34075
34076 2004-06-24  Benjamin Otte  <otte@gnome.org>
34077
34078         * ext/kio/Makefile.am:
34079           fix for builddir != srcdir and distcheck
34080
34081 2004-06-24  Benjamin Otte  <otte@gnome.org>
34082
34083         * gst-libs/gst/colorbalance/Makefile.am:
34084         * gst-libs/gst/mixer/Makefile.am:
34085         * gst-libs/gst/play/Makefile.am:
34086         * gst-libs/gst/tuner/Makefile.am:
34087         * gst/tcp/Makefile.am:
34088         * sys/dxr3/Makefile.am:
34089           don't include -enumtypes.[ch] or -marshal.[ch] files in the disted
34090           tarball.
34091           Also add all *.list files that were missing.
34092         * Makefile.am:
34093           add a distcheck hook to ensure the above doesn't happen again.
34094
34095 2004-06-23  David I. Lehn  <dlehn@users.sourceforge.net>
34096
34097         * ext/Makefile.am: s/DTS_DIR=dvdread/DTS_DIR=dts/
34098
34099 2004-06-23  Colin Walters  <walters@redhat.com>
34100
34101         * m4/Makefile.am: Distribute gst-fionread.m4.
34102
34103 2004-06-23  Thomas Vander Stichele  <thomas at apestaart dot org>
34104
34105         * configure.ac: back to dev
34106
34107 2004-06-23  Wim Taymans  <wim@fluendo.com>
34108
34109         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
34110         (gst_alsa_xrun_recovery):
34111         * ext/alsa/gstalsa.h:
34112         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
34113         (gst_alsa_sink_loop), (gst_alsa_sink_get_time):
34114         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
34115         (gst_alsa_src_get_time), (gst_alsa_src_update_avail),
34116         (gst_alsa_src_loop):
34117         Add clock to alsasrc. Take new capture timestamp when
34118         restarting after an overrun. Split up some functions between
34119         alsasrc and alsasink.
34120
34121 === release 0.8.2 ===
34122
34123 2004-06-23  Thomas Vander Stichele  <thomas at apestaart dot org>
34124
34125         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
34126         (gst_alsa_change_state), (gst_alsa_update_avail),
34127         (gst_alsa_xrun_recovery):
34128         * ext/alsa/gstalsa.h:
34129         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
34130           merge back changes from release
34131
34132 2004-06-23  Wim Taymans  <wim@fluendo.com>
34133
34134         * gst/audiorate/gstaudiorate.c: (gst_audiorate_class_init),
34135         (gst_audiorate_init), (gst_audiorate_chain),
34136         (gst_audiorate_set_property), (gst_audiorate_get_property):
34137         Implement sample dropping and notify
34138
34139 2004-06-22  Wim Taymans  <wim@fluendo.com>
34140
34141         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
34142         (theora_enc_sink_link), (theora_buffer_from_packet),
34143         (theora_push_packet), (theora_enc_chain):
34144         Some cleanups, make sure the timestamps are correct.
34145
34146 2004-06-22  Wim Taymans  <wim@fluendo.com>
34147
34148         * ext/alsa/gstalsa.c: (gst_alsa_get_time), (gst_alsa_clock_update),
34149         (gst_alsa_change_state), (gst_alsa_update_avail),
34150         (gst_alsa_xrun_recovery):
34151         * ext/alsa/gstalsa.h:
34152         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
34153         Cleanups, take queued samples into account when reporting
34154         the time.
34155
34156 2004-06-22  Wim Taymans  <wim@fluendo.com>
34157
34158         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
34159         (gst_videorate_init):
34160         Initialize the property as well.
34161
34162 2004-06-22  Wim Taymans  <wim@fluendo.com>
34163
34164         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
34165         (gst_videorate_init), (gst_videorate_chain),
34166         (gst_videorate_set_property), (gst_videorate_get_property):
34167         Add property to make videorate silent.
34168         Add property to prefer new frames over old ones.
34169
34170 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
34171
34172         * sys/osxvideo/Makefile.am:
34173         Workaround so that the osxvideo .so file gets linked with the
34174         Cocoa, OpenGL and QuickTime frameworks
34175
34176 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
34177
34178         * sys/osxaudio/Makefile.am:
34179         Workaround so that the osxaudio .so file gets linked with the
34180         CoreAudio framework
34181
34182 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
34183
34184         * configure.ac:
34185         Whoops, my fault...fixed build issues
34186
34187 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
34188
34189         * configure.ac:
34190         Add objective-c support if running in Darwin/Mac OS X
34191         * sys/Makefile.am:
34192         * sys/osxvideo:
34193         * sys/osxvideo/Makefile.am:
34194         * sys/osxvideo/osxvideosink.h:
34195         * sys/osxvideo/osxvideosink.m:
34196         * sys/osxvideo/cocoawindow.h:
34197         * sys/osxvideo/cocoawindow.m:
34198         Add osxvideosink, a cocoa-based osx video sink
34199
34200
34201 2004-06-19  Jan Schmidt  <thaytan@mad.scientist.com>
34202         * ext/dvdnav/gst-dvd:
34203         Grab the gconf key from the right spot
34204         * gst/debug/gstnavseek.c: (gst_navseek_init),
34205         (gst_navseek_segseek), (gst_navseek_handle_src_event),
34206         (gst_navseek_chain):
34207         * gst/debug/gstnavseek.h:
34208           Add 's', 'e' and 'l' keypresses to navseek to define the start,end
34209           and loop parameters of a segment seek.
34210         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
34211         (gst_videotestsrc_get_event_masks),
34212         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
34213         * gst/videotestsrc/gstvideotestsrc.h:
34214           Add seeking support to videotestsrc
34215           Initialise the timestamp_offset variable.
34216
34217 2004-06-18  Wim Taymans  <wim@fluendo.com>
34218
34219         * ext/sidplay/gstsiddec.cc:
34220         Fix negotiation and set correct end offset.
34221
34222 2004-06-18  Thomas Vander Stichele  <thomas at apestaart dot org>
34223
34224         * configure.ac: branch and prerelease
34225
34226 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
34227
34228         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
34229         (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_get),
34230         (gst_tcpclientsrc_init_receive):
34231         * gst/tcp/gsttcpclientsrc.h:
34232           read caps when connecting to server for GDP so we set them correctly
34233
34234 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
34235
34236         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
34237           notify drops and duplicates
34238         * gst/videoscale/videoscale.c: (videoscale_get_structure):
34239           no good reason to limit ourselves to 100x100
34240
34241 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
34242
34243         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
34244         (gst_v4lsrc_open), (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
34245         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
34246         (gst_v4lsrc_get_property):
34247         * sys/v4l/gstv4lsrc.h:
34248         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
34249         (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
34250         (gst_v4l_set_audio):
34251         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame),
34252         (gst_v4lsrc_try_capture):
34253         * sys/v4l/v4lsrc_calls.h:
34254           change try_palette to more general try_capture
34255           add autoprobe option so we can turn off autoprobing
34256           various fixes
34257
34258 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
34259
34260         * configure.ac:
34261           add videorate
34262         * sys/ximage/ximagesink.c: (gst_ximagesink_finalize),
34263         (gst_ximagesink_class_init):
34264         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_finalize),
34265         (gst_xvimagesink_class_init):
34266           run them as finalize, not dispose, since dispose can be invoked
34267           multiple times
34268
34269 2004-06-17  Wim Taymans  <wim@fluendo.com>
34270
34271         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
34272         (gst_alsa_get_time), (gst_alsa_xrun_recovery):
34273         * ext/alsa/gstalsa.h:
34274         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
34275         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init), (gst_alsa_src_loop),
34276         (gst_alsa_src_change_state):
34277         * ext/alsa/gstalsasrc.h:
34278         Make the xrun code timestamp and offset the buffers correctly.
34279         moved the clock to the base class, use alsa methods to get time.
34280         Do correct timestamping on outgoing buffers.
34281
34282 2004-06-17  Wim Taymans  <wim@fluendo.com>
34283
34284         * gst/audiorate/Makefile.am:
34285         * gst/audiorate/gstaudiorate.c: (gst_audiorate_get_type),
34286         (gst_audiorate_base_init), (gst_audiorate_class_init),
34287         (gst_audiorate_link), (gst_audiorate_init), (gst_audiorate_chain),
34288         (gst_audiorate_set_property), (gst_audiorate_get_property),
34289         (gst_audiorate_change_state), (plugin_init):
34290         Added an audiorate converter that fills in gaps.
34291
34292 2004-06-17  Johan Dahlin  <johan@gnome.org>
34293
34294         * ext/tcp/*: Revert Zaheer changes, to make things actually work again.
34295
34296 2004-06-16  Wim Taymans  <wim@fluendo.com>
34297
34298         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get):
34299         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
34300         (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
34301         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
34302         (gst_v4lsrc_get_property):
34303         * sys/v4l/gstv4lsrc.h:
34304         Added a copy mode to v4lsrc where it will output a copied version
34305         of its internal hardware buffer.
34306         Fix the wrong FLAG_SET usage. The flags are integers, not bits, you
34307         can't | them.
34308
34309 2004-06-16  Wim Taymans  <wim@fluendo.com>
34310
34311         * sys/oss/gstosssrc.c: (gst_osssrc_get):
34312         Timestamp fixes.
34313
34314 2004-06-16  Wim Taymans  <wim@fluendo.com>
34315
34316         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
34317         (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
34318         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
34319         (gst_v4lsrc_get_property):
34320         * sys/v4l/gstv4lsrc.h:
34321         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
34322         Added a sync mode enum property to control v4lsrc timestamp method
34323         Removed the use-fixed-fps property and moved functionality in
34324         the enum.
34325         Don't error on an error value from v4l-conf, it might not always
34326         be a real error.
34327
34328 2004-06-16  Wim Taymans  <wim@fluendo.com>
34329
34330         * gst/videorate/Makefile.am:
34331         * gst/videorate/gstvideorate.c: (gst_videorate_get_type),
34332         (gst_videorate_base_init), (gst_videorate_class_init),
34333         (gst_videorate_getcaps), (gst_videorate_link),
34334         (gst_videorate_init), (gst_videorate_chain),
34335         (gst_videorate_set_property), (gst_videorate_get_property),
34336         (gst_videorate_change_state), (plugin_init):
34337         Added a video timestamp corrector.
34338
34339 2004-06-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
34340
34341         fixed a potential leak with previous commit
34342
34343         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
34344
34345 2004-06-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
34346
34347         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
34348         Added missing refcount, fixes bug #144425
34349         Cheers Tim for finding the bug
34350
34351 2004-06-15  Thomas Vander Stichele  <thomas at apestaart dot org>
34352
34353         * sys/v4l/gstv4l.c: (plugin_init):
34354         * sys/v4l/gstv4lcolorbalance.c:
34355         * sys/v4l/gstv4lcolorbalance.h:
34356         * sys/v4l/gstv4lelement.c:
34357         * sys/v4l/gstv4lelement.h:
34358         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
34359         * sys/v4l/gstv4lmjpegsink.h:
34360         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
34361         * sys/v4l/gstv4lmjpegsrc.h:
34362         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
34363         (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
34364         (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
34365         * sys/v4l/gstv4lsrc.h:
34366         * sys/v4l/gstv4ltuner.c:
34367         * sys/v4l/gstv4ltuner.h:
34368         * sys/v4l/gstv4lxoverlay.c:
34369         * sys/v4l/gstv4lxoverlay.h:
34370         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
34371         (gst_v4l_set_window), (gst_v4l_enable_overlay):
34372         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
34373         (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
34374         (gst_v4l_set_audio):
34375         * sys/v4l/v4l_calls.h:
34376         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
34377         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_sync_frame),
34378         (gst_v4lmjpegsink_set_buffer), (gst_v4lmjpegsink_set_playback),
34379         (gst_v4lmjpegsink_playback_init),
34380         (gst_v4lmjpegsink_playback_start), (gst_v4lmjpegsink_get_buffer),
34381         (gst_v4lmjpegsink_play_frame), (gst_v4lmjpegsink_wait_frame),
34382         (gst_v4lmjpegsink_playback_stop),
34383         (gst_v4lmjpegsink_playback_deinit):
34384         * sys/v4l/v4lmjpegsink_calls.h:
34385         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
34386         (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_buffer),
34387         (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
34388         (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_capture_start),
34389         (gst_v4lmjpegsrc_grab_frame), (gst_v4lmjpegsrc_requeue_frame),
34390         (gst_v4lmjpegsrc_capture_stop), (gst_v4lmjpegsrc_capture_deinit):
34391         * sys/v4l/v4lmjpegsrc_calls.h:
34392         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
34393         (gst_v4lsrc_sync_frame), (gst_v4lsrc_set_capture),
34394         (gst_v4lsrc_capture_init), (gst_v4lsrc_capture_start),
34395         (gst_v4lsrc_grab_frame), (gst_v4lsrc_requeue_frame),
34396         (gst_v4lsrc_capture_stop), (gst_v4lsrc_capture_deinit),
34397         (gst_v4lsrc_try_palette):
34398         * sys/v4l/v4lsrc_calls.h:
34399           bunch of paranoia cleanups
34400
34401 2004-06-14  David Schleef  <ds@schleef.org>
34402
34403         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_init),
34404         (cdparanoia_get), (cdparanoia_open), (cdparanoia_change_state):
34405         Send discont events and change timestamps appropriately when
34406         we get a seek event.  (bug #144240)
34407         * ext/cdparanoia/gstcdparanoia.h:
34408
34409 2004-06-14  Benjamin Otte  <otte@gnome.org>
34410
34411         * ext/alsa/gstalsa.c: Use snd_pcm_hw_params_set_rate _near instead of
34412           snd_pcm_hw_params_set_rate  since the latter fails for no good
34413           reason on some setups.
34414
34415 2004-06-14  David Schleef  <ds@schleef.org>
34416
34417         * gst/volume/demo.c: (value_changed_callback): exp10() is not
34418         standard.  Thank you for playing.
34419
34420 2004-06-14  Wim Taymans  <wim@fluendo.com>
34421
34422         * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
34423         Patch 1.3 broke the ordering of the colorspace info and
34424         made the plugin basically work by coincidence, reordered
34425         the info.
34426
34427 2004-06-14  Thomas Vander Stichele  <thomas at apestaart dot org>
34428
34429         * ext/lame/gstlame.c:
34430         * ext/mad/gstmad.c:
34431           sync caps.  Make sure mad can only output a list of rates, not
34432           a full range.  In the future, have three caps lists for each of the
34433           mpeg versions.  Change mpegversion to a double as well.
34434
34435 2004-06-14  Thomas Vander Stichele  <thomas at apestaart dot org>
34436
34437         * gst/volume/.cvsignore:
34438         * gst/volume/Makefile.am:
34439         * gst/volume/demo.c: (value_changed_callback), (idler),
34440         (setup_gui), (main):
34441           added small demo app
34442
34443 2004-06-13  Jan Schmidt  <thaytan@mad.scientist.com>
34444         * ext/esd/esdsink.c: (gst_esdsink_change_state):
34445         * ext/esd/esdsink.h:
34446         Close the esd connection on pause, because esd will just wait -
34447         blocking all other esd clients indefinitely.
34448
34449 2004-06-12  Christophe Fergeau  <teuf@gnome.org>
34450
34451         * gst/tags/gstvorbistag.c: replaced a g_warning which I added in my
34452           previous commit with GST_DEBUG
34453
34454 2004-06-12  Thomas Vander Stichele  <thomas at apestaart dot org>
34455
34456         * configure.ac:
34457           add a header check for a dvdread header in dvdnav.  Fixes #133002
34458
34459 2004-06-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
34460
34461         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
34462         * gst/tcp/gsttcpclientsink.h:
34463         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
34464         * gst/tcp/gsttcpclientsrc.h:
34465         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init),
34466         (gst_tcpserversink_handle_server_read),
34467         (gst_tcpserversink_init_send):
34468         * gst/tcp/gsttcpserversink.h:
34469         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
34470         * gst/tcp/gsttcpserversrc.h:
34471         Modified the tcp plugins so they are portable (IPv4,IPv6, any future
34472         version of IP)
34473
34474 2004-06-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
34475
34476         * configure.ac:
34477         Added ogg library so that OSX detects libtheora properly
34478
34479 2004-06-11  Wim Taymans  <wim@fluendo.com>
34480
34481         * ext/theora/theoradec.c: (theora_dec_chain),
34482         (theora_dec_change_state):
34483         Don't try to decode frames before we received a keyframe.
34484
34485 2004-06-11  Wim Taymans  <wim@fluendo.com>
34486
34487         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
34488         (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
34489         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
34490         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
34491         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
34492         Added property to set the maximum delay of a page.
34493
34494 2004-06-10  Wim Taymans  <wim@fluendo.com>
34495
34496         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
34497         (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
34498         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
34499         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
34500         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
34501         Added max-delay property to control the maximum amount
34502         of data to put in one page.
34503
34504 2004-06-10  Wim Taymans  <wim@fluendo.com>
34505
34506         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
34507         (gst_theora_enc_init), (theora_enc_sink_link),
34508         (theora_buffer_from_packet), (theora_enc_set_property),
34509         (theora_enc_get_property):
34510         Set duration on encoded buffer, added some more properties
34511
34512 2004-06-10  Wim Taymans  <wim@fluendo.com>
34513
34514         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
34515         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
34516         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
34517         * ext/theora/theoraenc.c: (theora_enc_chain):
34518         Fix refcounting bugs
34519
34520 2004-06-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34521
34522         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
34523         (gst_asf_demux_loop), (gst_asf_demux_process_file),
34524         (gst_asf_demux_process_data), (gst_asf_demux_handle_data),
34525         (gst_asf_demux_process_object), (gst_asf_demux_get_stream),
34526         (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event),
34527         (gst_asf_demux_handle_src_event), (gst_asf_demux_handle_src_query),
34528         (gst_asf_demux_change_state):
34529         * gst/asfdemux/gstasfdemux.h:
34530           You know Chimaira? "I - HATE - EVERYTHING". Yeah, that's what this
34531           feels like. I think we should set a new requirement for demuxers
34532           from now on to implement sane loop functions, data loops, query
34533           and seek functions before first commit into CVS. And this commit
34534           fixes all of the above.
34535
34536 2004-06-10  Christophe Fergeau  <teuf@gnome.org>
34537
34538         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add): make sure parsed
34539           vorbis comments are properly encoded in UTF-8 before adding them
34540           to a GstTagList
34541
34542 2004-06-09  Benjamin Otte  <otte@gnome.org>
34543
34544         * ext/alsa/gstalsa.c: (add_channels):
34545           handle min <= max correctly
34546         * ext/alsa/gstalsa.c: (gst_alsa_fixate_to_mimetype),
34547         (gst_alsa_fixate_field_nearest_int), (gst_alsa_fixate):
34548           add fixation functions so we fixate correctly. No preferring of alaw
34549           anymore because it's the first structure.
34550         * ext/alsa/gstalsa.h:
34551         * ext/alsa/gstalsa.c: (gst_alsa_sw_params_dump),
34552         (gst_alsa_hw_params_dump):
34553           add functions to ease debugging in alsalib
34554         * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
34555         (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
34556         (gst_alsa_start_audio):
34557           only specify hw params if we really setup a format (fixes #134007 -
34558           or at least works around it)
34559
34560 2004-06-09  Wim Taymans  <wim@fluendo.com>
34561
34562         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
34563         (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
34564         (gst_ogg_mux_push_page), (gst_ogg_mux_get_headers),
34565         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_send_headers),
34566         (gst_ogg_mux_loop):
34567         Use stream caps to setup the initial pages in the ogg stream.
34568         Correctly set the streamheader caps on the srcpad.
34569
34570 2004-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
34571
34572         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
34573         (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
34574         (gst_v4lsrc_getcaps):
34575         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
34576         (gst_v4l_get_picture), (gst_v4l_get_audio), (gst_v4l_set_audio):
34577           add querying of fps lists for webcams.  Negotiating to a framerate
34578           now works.
34579
34580 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
34581
34582         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
34583         (theora_push_buffer), (theora_push_packet),
34584         (theora_set_header_on_caps), (theora_enc_chain):
34585           mark buffers and put on streamheader, raw theora streaming
34586           now works too, whee
34587
34588 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
34589
34590         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
34591         (gst_tcp_gdp_read_caps):
34592           do a looping read for caps and GDP headers too
34593
34594 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
34595
34596         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
34597         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get):
34598           return EOS instead of NULL in _get
34599
34600 2004-06-08  Wim Taymans  <wim@fluendo.com>
34601
34602         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
34603         (gst_tcp_gdp_read_caps), (gst_tcp_gdp_write_header),
34604         (gst_tcp_gdp_write_caps):
34605         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
34606         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
34607         (gst_tcpserversrc_gdp_read_header), (gst_tcpserversrc_get):
34608         Memory leak fixes
34609
34610 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
34611
34612         * ext/vorbis/Makefile.am:
34613         * ext/vorbis/vorbis.c: (plugin_init):
34614         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_base_init),
34615         (gst_vorbis_parse_class_init), (gst_vorbis_parse_init),
34616         (vorbis_parse_set_header_on_caps), (vorbis_parse_chain),
34617         (vorbis_parse_change_state):
34618         * ext/vorbis/vorbisparse.h:
34619           adding a vorbisparse element that marks the buffers, streaming
34620           raw vorbis using GDP now works, whee
34621
34622 2004-06-08  Wim Taymans  <wim@fluendo.com>
34623
34624         * ext/jpeg/Makefile.am:
34625         * ext/jpeg/README:
34626         * ext/jpeg/gstjpeg.c: (plugin_init):
34627         * ext/jpeg/gstsmokedec.c: (gst_smokedec_get_type),
34628         (gst_smokedec_base_init), (gst_smokedec_class_init),
34629         (gst_smokedec_init), (gst_smokedec_link), (gst_smokedec_chain):
34630         * ext/jpeg/gstsmokedec.h:
34631         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_get_type),
34632         (gst_smokeenc_base_init), (gst_smokeenc_class_init),
34633         (gst_smokeenc_init), (gst_smokeenc_getcaps), (gst_smokeenc_link),
34634         (gst_smokeenc_resync), (gst_smokeenc_chain),
34635         (gst_smokeenc_set_property), (gst_smokeenc_get_property):
34636         * ext/jpeg/gstsmokeenc.h:
34637         * ext/jpeg/smokecodec.c: (smokecodec_init_destination),
34638         (smokecodec_flush_destination), (smokecodec_term_destination),
34639         (smokecodec_init_source), (smokecodec_fill_input_buffer),
34640         (smokecodec_skip_input_data), (smokecodec_resync_to_restart),
34641         (smokecodec_term_source), (smokecodec_encode_new),
34642         (smokecodec_decode_new), (smokecodec_info_free),
34643         (smokecodec_set_quality), (smokecodec_get_quality),
34644         (smokecodec_set_threshold), (smokecodec_get_threshold),
34645         (smokecodec_set_bitrate), (smokecodec_get_bitrate),
34646         (find_best_size), (abs_diff), (put), (smokecodec_encode),
34647         (smokecodec_parse_header), (smokecodec_decode):
34648         * ext/jpeg/smokecodec.h:
34649         Added a new simple jpeg based codec
34650
34651 2004-06-08  Wim Taymans  <wim@fluendo.com>
34652
34653         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
34654         (gst_multipart_mux_loop):
34655         Fix memory leak
34656
34657 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
34658
34659         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
34660         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_client_remove),
34661         (gst_tcpserversink_handle_client_read), (gst_tcp_buffer_write),
34662         (gst_tcpserversink_handle_client_write), (gst_tcpserversink_chain),
34663         (gst_tcpserversink_init_send), (gst_tcpserversink_close):
34664         * gst/tcp/gsttcpserversink.h:
34665           take streamheader into account
34666
34667 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
34668
34669         * gst/level/Makefile.am:
34670         * gst/level/gstlevel.c: (gst_level_class_init):
34671           clean up marshal generation
34672
34673 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
34674
34675         * gst/tcp/Makefile.am:
34676         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_get_type),
34677         (gst_tcpclientsink_class_init), (gst_tcpclientsink_init),
34678         (gst_tcpclientsink_set_property), (gst_tcpclientsink_get_property):
34679         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
34680         (gst_tcpclientsrc_init), (gst_tcpclientsrc_set_property),
34681         (gst_tcpclientsrc_get_property):
34682         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
34683         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
34684         (gst_tcpserversink_handle_client_read),
34685         (gst_tcpserversink_handle_client_write),
34686         (gst_tcpserversink_set_property), (gst_tcpserversink_get_property):
34687         * gst/tcp/gsttcpserversink.h:
34688           add signals client-added and client-removed
34689         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
34690         (gst_tcpserversrc_init), (gst_tcpserversrc_set_property),
34691         (gst_tcpserversrc_get_property):
34692         uniformized, change default protocol to NONE
34693         * gst/tcp/gsttcp-marshal.list: added
34694 2004-06-07  Benjamin Otte  <otte@gnome.org>
34695
34696         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
34697           handle discont events if they happen before caps nego
34698
34699 2004-06-07  Wim Taymans  <wim@fluendo.com>
34700
34701         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
34702         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
34703         (gst_multipart_demux_plugin_init):
34704         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
34705         (gst_multipart_mux_init), (gst_multipart_mux_loop),
34706         (gst_multipart_mux_change_state):
34707         Small updates, fix a memleak
34708
34709 2004-06-07  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
34710
34711         * configure.ac: OSS portability
34712         * ext/arts/gst_arts.c: idem
34713         * sys/oss/gstosselement.c: idem
34714         * sys/oss/gstossmixer.c: idem
34715         * sys/oss/gstosssink.c: idem
34716         * sys/oss/gstosssrc.c: idem
34717         * sys/oss/oss_probe.c: idem
34718           - check for soundcard.h in different places for some BSD
34719
34720 2004-06-07  Jan Schmidt <thaytan@mad.scientist.com>
34721
34722         * AUTHORS:
34723         Add me to the authors file
34724         * configure.ac:
34725         Increase the libdv requirement to >= version 0.100
34726         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
34727         (gst_dvdec_src_query), (gst_dvdec_handle_sink_event),
34728         (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state):
34729         * ext/dv/gstdvdec.h:
34730         Add support for the new_media flag when sending DISCONT events
34731         Make the querying work when video pad is not linked
34732
34733 2004-06-07  Tim-Philipp Müller  <t.i.m@zen.co.uk>
34734
34735         reviewed by Benjamin Otte  <otte@gnome.org>
34736
34737         * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init):
34738           create a NULL-initialized array of pads, so we don't think they
34739           exist already. (fixes #143130)
34740
34741 2004-06-07  Benjamin Otte  <otte@gnome.org>
34742
34743         * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init),
34744         (mixmatrix_resize), (gst_mixmatrix_set_all_caps),
34745         (gst_mixmatrix_request_new_pad), (gst_mixmatrix_loop):
34746           don't use // coments
34747
34748 2004-06-07  Benjamin Otte  <otte@gnome.org>
34749
34750         * ext/alsa/gstalsa.c: (gst_alsa_samples_to_timestamp):
34751           cast to GstClockTime to get higher granularity
34752         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
34753           use gst_element_set_time_delay to get the exact time
34754         * ext/mad/gstmad.c: (gst_mad_chain):
34755           use the negotiated rate instead of the current frame's rate which
34756           might be wrong because of bit errors. This avoids emitting totally
34757           bogus timestamps and screwing sync.
34758         (fixes #143454)
34759
34760 2004-06-07  Tim-Philipp Müller  <t.i.m@zen.co.uk>
34761
34762         reviewed by Benjamin Otte  <otte@gnome.org>
34763
34764         * gst/adder/gstadder.c: (gst_adder_loop):
34765           properly error out when no negotiation has happened yet. (fixes
34766           #143032)
34767
34768 2004-06-06  Benjamin Otte  <otte@gnome.org>
34769
34770         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
34771           forward correctly transformed offset in discont events. Based on
34772           patch by Arwed v. Merkatz. (fixes #142851)
34773
34774 2004-06-06  David Schleef  <ds@schleef.org>
34775
34776         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: that's
34777         G_HAVE_GNUC_VARARGS, not G_HAVE_GNU_VARARGS.  Should fix compile
34778         problems on several systems.
34779
34780 2004-06-06  Benjamin Otte  <otte@gnome.org>
34781
34782         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
34783           use explicit caps on the srcpad
34784         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
34785           properly error out if caps couldn't be set (fixes #142764)
34786
34787 2004-06-06  Benjamin Otte  <otte@gnome.org>
34788
34789         * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
34790         (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
34791         (gst_alsa_start_audio):
34792           - don't call set_periods_integer anymore, it breaks the
34793           configuration randomly
34794           - call snd_pcm_hw_params_set_access directly instead of using masks
34795           - don't fail if the sw_params can't be set, just use the default
34796           params and hope it works. Alsalib has weird issues when you touch
34797           sw_params and does no proper error reporting about what failed.
34798         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
34799         (gst_alsa_close_audio):
34800           make our alsa debugging go via gst debugging and not conditionally
34801           defined
34802         * ext/alsa/gstalsa.h:
34803           add ALSA_DEBUG_FLUSH macro
34804         * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper),
34805         (plugin_init):
34806           wrap alsa errors to be printed via the gst debugging system and not
34807           spammed to stderr
34808
34809 2004-06-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
34810
34811         * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
34812         (gst_qtdemux_handle_src_query), (gst_qtdemux_handle_src_event),
34813         (gst_qtdemux_handle_sink_event), (gst_qtdemux_change_state),
34814         (gst_qtdemux_loop_header), (qtdemux_dump_mvhd),
34815         (qtdemux_parse_trak):
34816         * gst/qtdemux/qtdemux.h:
34817           Bitch. Also known as seeking, querying & co.
34818         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
34819         (gst_osssink_change_state):
34820         * sys/oss/gstosssink.h:
34821           Resyncing is for weenies, this hack is no longer needed and was
34822           broken anyway (since it - unintendedly - always leaves resync to
34823           TRUE).
34824
34825 2004-06-05  Andrew Turner <zxombie@hotpop.com>
34826
34827         * gst/tcp/gsttcp.c: portability (Solaris 10/FreeBSD)
34828         * gst/tcp/gsttcpclientsrc.h: idem
34829           - define MSG_NOSIGNAL if not done
34830           - include unistd.h for off_t
34831           (fixes #143749)
34832
34833 2004-06-05  Benjamin Otte  <otte@gnome.org>
34834
34835         * configure.ac:
34836         * ext/kio/Makefile.am:
34837           check for qt's moc preprocessor explicitly and use it
34838
34839 2004-06-03  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
34840
34841         * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
34842           don't get a signal for EPIPE on socket writes
34843           (somebody check if this works on other platforms)
34844
34845 2004-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
34846
34847         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
34848         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
34849           check error condition on available samples correctly
34850
34851 2004-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
34852
34853         * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_time):
34854           avoid a segfault
34855         * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
34856         (gst_tcp_gdp_read_header), (gst_tcp_gdp_read_caps):
34857         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
34858         (gst_tcpserversrc_gdp_read_header):
34859          use ssize_t over size_t since the former is signed and thus the
34860          check for error codes can work
34861
34862 2004-06-02  Wim Taymans  <wim@fluendo.com>
34863
34864         reviewed by: Johan
34865
34866         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
34867         (gst_multipart_mux_loop):
34868         Oops
34869
34870 2004-06-02  Wim Taymans  <wim@fluendo.com>
34871
34872         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
34873         (gst_multipart_mux_init), (gst_multipart_mux_loop),
34874         (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
34875         (gst_multipart_mux_change_state):
34876         Added configurable boundary specifier, added the value as a
34877         caps field as well.
34878
34879 2004-06-02  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
34880
34881         * gst/tcp/gsttcp.c:
34882         * gst/tcp/gsttcpclientsrc.c:
34883         * gst/tcp/gsttcpclientsrc.h:
34884         * gst/tcp/gsttcpserversrc.c:
34885           - portability fix, to compile on OSX
34886             (fixes #143146)
34887
34888         * sys/osxaudio/gstosxaudioelement.c:
34889         * sys/osxaudio/gstosxaudiosink.c:
34890         * sys/osxaudio/gstosxaudiosrc.c:
34891           - compilation warnings on OSX
34892             (fixes #143153)
34893
34894 2004-06-02  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
34895
34896         * ext/vorbis/vorbisdec.c : sign warning fixes
34897
34898         * gst-libs/gst/mixer/mixertrack.c :
34899           do no use defines which are glib 2.4 specific
34900
34901 2004-06-01  Christophe Fergeau  <teuf@gnome.org>
34902
34903         * ext/flac/gstflactag.c: strip ending framing bit from vorbiscomment
34904           buffer since libflac doesn't expect it (reports a sync error when
34905           it encounters that)
34906
34907
34908 2004-06-01  Owen Fraser-Green  <owen@discobabe.net>
34909
34910         * gst-libs/gst/mixer/mixertrack.h: Changed struct syntax
34911         * gst-libs/gst/mixer/mixertrack.c:
34912         (gst_mixer_track_get_property), (get_mixer_track_init),
34913         (get_mixer_track_get_property): Added property accessors
34914         * gst-libs/gst/mixer/mixeroptions.h: Changed struct syntax
34915         * gst-libs/gst/mixer/mixeroptions.c:
34916         (gst_mixer_options_get_values): Added
34917         * gst-libs/gst/mixer/mixer.h: Changed GstMixerClass syntax
34918         * gst-libs/gst/mixer/mixer.c: Fixed comment
34919
34920
34921 2004-06-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
34922
34923         * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
34924           improve error messages on open
34925
34926
34927 2004-06-01  Thomas Vander Stichele  <thomas at apestaart dot org>
34928
34929         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
34930           check if v4l-conf is in path
34931
34932 2004-06-01  Thomas Vander Stichele  <thomas at apestaart dot org>
34933
34934         * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
34935           change assert to a more readable error message
34936
34937 2004-05-31  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
34938
34939         * gst-libs/gst/tuner/tunerchannel.h:
34940           - add a freq_multiplicator field to make the conversion
34941             between internal frequency unit and Hz
34942         * sys/v4l/gstv4lelement.c:
34943         * sys/v4l2/gstv4l2element.c:
34944           - change default video device to /dev/video0
34945         * sys/v4l/v4l_calls.c:
34946         * sys/v4l2/v4l2_calls.c:
34947           - we only expose frequency to the user in Hz instead of
34948             bastard v4lX unit (either 62.5kHz or 62.5Hz)
34949
34950 2004-05-31  Jan Schmidt  <thaytan@mad.scientist.com>
34951         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
34952           Initialise b_o_s and e_o_s variables
34953         * gst-libs/gst/riff/riff-media.c:
34954         (gst_riff_create_video_caps_with_data):
34955           Add some unusual fourcc's from mplayer avi's
34956         * gst/multipart/multipartmux.c: (gst_multipart_mux_plugin_init):
34957           Make the muxer have rank GST_RANK_NONE, so it doesn't mess up
34958           autoplugging.
34959
34960 2004-05-28  Wim Taymans  <wim@fluendo.com>
34961
34962         * configure.ac:
34963         * gst/alpha/Makefile.am:
34964         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
34965         (gst_alpha_get_type), (gst_alpha_base_init),
34966         (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
34967         (gst_alpha_get_property), (gst_alpha_sink_link), (gst_alpha_add),
34968         (gst_alpha_chroma_key), (gst_alpha_chain),
34969         (gst_alpha_change_state), (plugin_init):
34970         A plugin to add an alpha channel to I420 video. Can optionally do
34971         chroma keying.
34972         * gst/multipart/Makefile.am:
34973         * gst/multipart/multipart.c: (plugin_init):
34974         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
34975         (gst_multipart_demux_class_init), (gst_multipart_demux_init),
34976         (gst_multipart_demux_finalize), (gst_multipart_demux_handle_event),
34977         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
34978         (gst_multipart_demux_change_state),
34979         (gst_multipart_demux_plugin_init):
34980         * gst/multipart/multipartmux.c: (gst_multipart_mux_get_type),
34981         (gst_multipart_mux_base_init), (gst_multipart_mux_class_init),
34982         (gst_multipart_mux_get_sink_event_masks), (gst_multipart_mux_init),
34983         (gst_multipart_mux_sinkconnect), (gst_multipart_mux_pad_link),
34984         (gst_multipart_mux_pad_unlink),
34985         (gst_multipart_mux_request_new_pad),
34986         (gst_multipart_mux_handle_src_event),
34987         (gst_multipart_mux_next_buffer), (gst_multipart_mux_compare_pads),
34988         (gst_multipart_mux_queue_pads), (gst_multipart_mux_loop),
34989         (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
34990         (gst_multipart_mux_change_state), (gst_multipart_mux_plugin_init):
34991         A Multipart demuxer/muxer. Not sure if it violates specs. Used to
34992         send multipart jpeg images to a browser.
34993         * gst/videobox/Makefile.am:
34994         * gst/videobox/README:
34995         * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
34996         (gst_video_box_get_type), (gst_video_box_base_init),
34997         (gst_video_box_class_init), (gst_video_box_init),
34998         (gst_video_box_set_property), (gst_video_box_get_property),
34999         (gst_video_box_sink_link), (gst_video_box_i420),
35000         (gst_video_box_ayuv), (gst_video_box_chain),
35001         (gst_video_box_change_state), (plugin_init):
35002         Crops or adds borders around an image. can do alpha channel
35003         borders as well.
35004         * gst/videomixer/Makefile.am:
35005         * gst/videomixer/README:
35006         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
35007         (gst_videomixer_pad_base_init), (gst_videomixer_pad_class_init),
35008         (gst_videomixer_pad_get_sink_event_masks),
35009         (gst_videomixer_pad_get_property),
35010         (gst_videomixer_pad_set_property),
35011         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_link),
35012         (gst_videomixer_pad_unlink), (gst_videomixer_pad_init),
35013         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
35014         (gst_videomixer_base_init), (gst_videomixer_class_init),
35015         (gst_videomixer_init), (gst_videomixer_request_new_pad),
35016         (gst_videomixer_handle_src_event),
35017         (gst_videomixer_blend_ayuv_i420), (gst_videomixer_fill_checker),
35018         (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
35019         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
35020         (gst_videomixer_loop), (gst_videomixer_get_property),
35021         (gst_videomixer_set_property), (gst_videomixer_change_state),
35022         (plugin_init):
35023         Generic video mixer plugin, can handle multiple inputs all with
35024         different framerates and video sizes. Is fully alpha channel
35025         aware.
35026
35027 2004-05-27  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35028
35029         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
35030           Select first track as master track. Not sure how else to handle
35031           that...
35032         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer):
35033           Discard discont events. Should fix #142962.
35034
35035 2004-05-26  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35036
35037         * ext/alsa/Makefile.am:
35038         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init),
35039         (gst_alsa_mixer_build_list), (gst_alsa_mixer_get_volume),
35040         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
35041         (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
35042         (gst_alsa_mixer_get_option):
35043         * ext/alsa/gstalsamixer.h:
35044         * ext/alsa/gstalsamixeroptions.c:
35045         (gst_alsa_mixer_options_get_type),
35046         (gst_alsa_mixer_options_class_init), (gst_alsa_mixer_options_init),
35047         (gst_alsa_mixer_options_new):
35048         * ext/alsa/gstalsamixeroptions.h:
35049         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
35050         * ext/alsa/gstalsamixertrack.h:
35051           Add enumerations (as GstMixerOptions). Make correct distinction
35052           between input/output tracks. Add capture/playback private flag.
35053           Use flag to decide on whether to set capture or playback volumes
35054           or switches. Use playback and record switches.
35055         * gst-libs/gst/mixer/Makefile.am:
35056         * gst-libs/gst/mixer/mixer-marshal.list:
35057         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init),
35058         (gst_mixer_set_option), (gst_mixer_get_option),
35059         (gst_mixer_mute_toggled), (gst_mixer_record_toggled),
35060         (gst_mixer_volume_changed), (gst_mixer_option_changed):
35061         * gst-libs/gst/mixer/mixer.h:
35062         * gst-libs/gst/mixer/mixeroptions.c: (gst_mixer_options_get_type),
35063         (gst_mixer_options_class_init), (gst_mixer_options_init),
35064         (gst_mixer_options_dispose):
35065         * gst-libs/gst/mixer/mixeroptions.h:
35066           Add GstMixerOptions.
35067         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
35068           Rename Audio Mixer to OSS Mixer (similar to Alsa Mixer). Fix
35069           broken device detection on computers with multiple OSS sound
35070           cards.
35071
35072 2004-05-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35073
35074         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
35075           fixate nicely even when the peer is not negotiating
35076
35077 2004-05-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35078
35079         * gst/audioconvert/gstaudioconvert.c:
35080         (gst_audio_convert_parse_caps):
35081           make sure we don't allow depth > width
35082         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
35083           fixate endianness to G_BYTE_ORDER as default
35084         * gst/audioscale/gstaudioscale.c:
35085           we don't handle another endianness as host-endianness
35086
35087 2004-05-25  David Schleef  <ds@schleef.org>
35088
35089         * gst/ffmpegcolorspace/mem.c:  malloc() is in stdlib.h, not malloc.h
35090
35091 2004-05-24  Benjamin Otte  <otte@gnome.org>
35092
35093         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_sinkconnect),
35094         (gst_oggvorbisenc_setup):
35095           properly fail when we can't setup the vorbis encoder due to
35096           unsupported settings
35097         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sinkconnect),
35098         (gst_vorbisenc_setup):
35099           same
35100         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
35101           fix case where warnings occured when one pad was unlinked while the
35102           other's link function was called
35103
35104 2004-05-24  Thomas Vander Stichele  <thomas at apestaart dot org>
35105
35106         * gst/tcp/Makefile.am:
35107           use GST_ENABLE_NEW
35108
35109 2004-05-24  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35110
35111         * gst-libs/gst/resample/private.h:
35112           don't use optimizations that are #if 0'ed
35113
35114 2004-05-24  Wim Taymans  <wim@fluendo.com>
35115
35116         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
35117         Fix potential division by zero error and hopefully get
35118         the position query right to get correct timestamps on avi
35119         audio.
35120
35121 2004-05-24  Wim Taymans  <wim@fluendo.com>
35122
35123         * gst/videoscale/videoscale.c: (gst_videoscale_scale_nearest),
35124         (gst_videoscale_scale_nearest_str2),
35125         (gst_videoscale_scale_nearest_str4),
35126         (gst_videoscale_scale_nearest_32bit),
35127         (gst_videoscale_scale_nearest_24bit),
35128         (gst_videoscale_scale_nearest_16bit):
35129         Fix the scaling algorithm and avoid a buffer overflow.
35130         removed the while loop in the scaling function as it
35131         was used for point sampling only.
35132
35133 2004-05-24  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35134
35135         * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
35136         (gst_id3_tag_class_init), (gst_id3_tag_init),
35137         (gst_id3_tag_set_property), (gst_id3_tag_get_tag_to_render),
35138         (gst_id3_tag_handle_event), (gst_id3_tag_do_caps_nego),
35139         (gst_id3_tag_send_tag_event):
35140           lots of fixes to make id3mux work and id3demux work correctly
35141
35142 2004-05-24  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35143
35144         * ext/Makefile.am:
35145           add rules to build shout2send (was removed by accident
35146           when this module was no more marked experimental/broken)
35147
35148 2004-05-24  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
35149
35150         * ext/shout2/gstshout2.c:
35151         * ext/shout2/gstshout2.h:
35152           adding a "connection problem" signal to shout2send
35153           (fixes #142954)
35154
35155 2004-05-21  Thomas Vander Stichele  <thomas at apestaart dot org>
35156
35157         * ext/kio/kioreceiver.cpp:
35158         * ext/kio/kioreceiver.h:
35159           fix sign comparison issues
35160
35161 2004-05-21  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35162
35163         * gst/cdxaparse/gstcdxaparse.c:
35164         * gst/cdxaparse/gstcdxaparse.h:
35165           some renaming
35166           add some checks/sanity
35167           prepare for seek addition
35168
35169         * sys/sunaudio/gstsunaudio.c:
35170           remove exported dupe init function
35171
35172 2004-05-21  Jan Schmidt  <thaytan@mad.scientist.com>
35173
35174         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_get_formats),
35175         (gst_dvdec_src_convert), (gst_dvdec_sink_convert):
35176           Fix format conversion and position querying.
35177         * gst/debug/progressreport.c: (gst_progressreport_report):
35178           Don't output a bogus total value that we didn't query.
35179         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
35180           Always set XV_AUTOPAINT_COLORKEY to true. Fixes xvimagesink showing
35181           only a blank window after xine has been used.
35182
35183 2004-05-21  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
35184
35185         * m4/as-arts.m4:
35186           sync with upstream version to fix test on FC2
35187           readd with -ko to preserve Id header
35188
35189 2004-05-20  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35190
35191         * configure.ac:
35192           test for FIONREAD ioctl in sys/filio.h for Solaris compat.
35193         * gst/tcp/gsttcpclientsrc.c: idem
35194         * gst/tcp/gsttcpserversink.c: idem
35195         * gst/tcp/gsttcpserversrc.c: idem
35196         * m4/gst-fionread.m4: idem
35197
35198         * sys/sunaudio/gstsunaudio.c: change category to Sink/Audio
35199
35200         * configure.ac: enable speex plugin for speex 1.1.5+
35201         * ext/speex/gstspeexenc.c: fix cast warning
35202
35203         * ext/esd/README: fix typo
35204
35205 2004-05-20  David Schleef  <ds@schleef.org>
35206
35207         * configure.ac: Minor cosmetic change to convince the buildbot to
35208         reautogen.
35209         * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_class_init),
35210         (gst_sunaudiosink_init), (gst_sunaudiosink_getcaps),
35211         (gst_sunaudiosink_pad_link), (gst_sunaudiosink_chain),
35212         (gst_sunaudiosink_setparams), (gst_sunaudiosink_open),
35213         (gst_sunaudiosink_close), (gst_sunaudiosink_change_state),
35214         (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property):
35215         More hacking.  Plays audio now.
35216
35217 2004-05-20  David Schleef  <ds@schleef.org>
35218
35219         * configure.ac:
35220         * sys/Makefile.am:
35221
35222 2004-05-20  David Schleef  <ds@schleef.org>
35223
35224         * sys/osxaudio/Makefile.am:  New OS X audio plugin by Zaheer Abbas Merali
35225         * sys/osxaudio/gstosxaudio.c:
35226         * sys/osxaudio/gstosxaudioelement.c:
35227         * sys/osxaudio/gstosxaudioelement.h:
35228         * sys/osxaudio/gstosxaudiosink.c:
35229         * sys/osxaudio/gstosxaudiosink.h:
35230         * sys/osxaudio/gstosxaudiosrc.c:
35231         * sys/osxaudio/gstosxaudiosrc.h:
35232
35233 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
35234
35235         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps),
35236         (gst_vorbisenc_chain):
35237           put the codec headers on the caps as streamheader as well as
35238           pushing them out
35239
35240 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
35241
35242         * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
35243         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
35244         (gst_vorbisenc_push_packet), (gst_vorbisenc_chain):
35245         split up push_packet into two functions
35246
35247 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
35248
35249         * gst/tcp/.cvsignore:
35250           ignore enums
35251         * gst/tcp/Makefile.am:
35252         * gst/tcp/README:
35253         * gst/tcp/gsttcp.c:
35254         * gst/tcp/gsttcp.h:
35255         * gst/tcp/gsttcpclientsink.c:
35256         * gst/tcp/gsttcpclientsink.h:
35257         * gst/tcp/gsttcpclientsrc.c:
35258         * gst/tcp/gsttcpclientsrc.h:
35259         * gst/tcp/gsttcpplugin.c:
35260         * gst/tcp/gsttcpserversink.c:
35261         * gst/tcp/gsttcpserversink.h:
35262         * gst/tcp/gsttcpserversrc.c:
35263         * gst/tcp/gsttcpserversrc.h:
35264           add new tcp elements
35265
35266 2004-05-19  Wim Taymans  <wim@fluendo.com>
35267
35268         * gst/law/mulaw-conversion.c: (mulaw_encode):
35269         Fix overflow bug in ulaw encoding.
35270
35271 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35272
35273         * ext/mad/gstmad.c: (gst_mad_handle_event):
35274           don't unref the event twice
35275
35276 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35277
35278         * configure.ac:
35279           remove -Wno-sign-compare
35280
35281 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35282
35283         * configure.ac:
35284           remove -DG_DISABLE_DEPRECATED. It's not usable without workarounds
35285           if you want to work against glib 2.2 and 2.4
35286
35287 2004-05-19  Thomas Vander Stichele  <thomas at apestaart dot org>
35288
35289         * gst/tcp/Makefile.am:
35290         * gst/tcp/gsttcp.c:
35291         * gst/tcp/gsttcp.h:
35292         * gst/tcp/gsttcpsink.h:
35293         * gst/tcp/gsttcpsrc.h:
35294           gsttcp -> gsttcpplugin + CVS surgery in preparation for tcp merge
35295
35296 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35297
35298         * gst/debug/tests.c: (md5_get_value):
35299           fix segfault on gst-inspect
35300
35301 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35302
35303         * gst/debug/testplugin.c:
35304         * gst/debug/tests.c:
35305         * gst/debug/tests.h:
35306           add new extensible and configurable testing element. Current tests
35307           include buffer count, stream length, timestamp/duration matching and
35308           md5.
35309         * gst/debug/Makefile.am:
35310         * gst/debug/gstdebug.c: (plugin_init):
35311           add infrastructure for new element
35312
35313 2004-05-19  Johan Dahlin  <johan@gnome.org>
35314
35315         * ext/dv/gstdvdec.c (gst_dvdec_quality_get_type): Add proper
35316         ending of the array. Fixes gst-inspect segfault on ppc.
35317
35318 2004-05-19  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35319
35320         * ext/dirac/gstdiracdec.cc : change category to Codec/Decoder/Video
35321
35322         * m4/a52.m4 : don't fix a test that should fail with current a52dec lib
35323
35324 2004-05-18  David Schleef  <ds@schleef.org>
35325
35326         * gst/ffmpegcolorspace/imgconvert.c: (img_convert): Fixes for
35327         warnings (bugs, actually) noticed by gcc but not forte.
35328
35329 2004-05-18  David Schleef  <ds@schleef.org>
35330
35331         * sys/sunaudio/Makefile.am:
35332         * sys/sunaudio/gstsunaudio.c: New sunaudiosink
35333
35334 2004-05-18  David Schleef  <ds@schleef.org>
35335
35336         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
35337         (gst_qtdemux_loop_header):  Patch from dcm@acm.org (David Moore)
35338         to allow qtdemux to use non-seekable streams. (bug #142272)
35339
35340 2004-05-18  David Schleef  <ds@schleef.org>
35341
35342         * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16),
35343         (gst_resample_sinc_ft_float): Remove use of static temporary
35344         buffer.  This code was obviously not supposed to last long, but
35345         it's stuck in our ABI, so it required a little hack to make it
35346         ABI-compatible.  Fixes #142585.
35347         * gst-libs/gst/resample/resample.h: same.
35348
35349 2004-05-18  David Schleef  <ds@schleef.org>
35350
35351         * configure.ac: Add sunaudio
35352         * examples/Makefile.am: make gstplay depend on gconf
35353         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Remove c99-isms
35354         * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette),
35355         (convert_table_lookup), (img_convert): remove c99-isms
35356         * gst/ffmpegcolorspace/imgconvert_template.h: make a constant
35357           unsigned, to fix a warning on Solaris
35358         * gst/mpeg1sys/systems.c: bcopy->memcpy
35359         * gst/rtjpeg/RTjpeg.c: (RTjpeg_yuvrgb8): bcopy->memcpy
35360         * sys/Makefile.am: Add sunaudio
35361
35362 2004-05-18  Wim Taymans  <wim@fluendo.com>
35363
35364         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_init),
35365         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
35366         (gst_ogg_mux_next_buffer), (gst_ogg_mux_push_page),
35367         (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
35368         (gst_ogg_mux_loop):
35369         Fix an ugly memleak where the muxer didn't flush enough ogg
35370         pages. This also resulted in badly muxed ogg files.
35371
35372 2004-05-18  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35373
35374         * gst/asfdemux/asfheaders.c :
35375         * gst/asfdemux/asfheaders.h :
35376         * gst/asfdemux/gstasfdemux.c :
35377           - fix ASF_OBJ_PADDING guid
35378           - add 3 new object guids (language list, metadata,
35379             extended stream properties)
35380           - add a function to parse extended header objects
35381
35382 2004-05-18  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35383
35384         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
35385           remove leftover debugging g_print
35386
35387 2004-05-17  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35388
35389         * ext/mad/gstmad.c: (gst_mad_handle_event):
35390           Fix for when the first format in a discont event is not a
35391           byte-based one. Should fix #137710.
35392
35393 2004-05-18  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35394
35395         * m4/a52.m4 : fix compilation with -Wall -Werror
35396         * m4/libfame.m4 : idem
35397         * m4/libmikmod.m4 : idem
35398
35399 2004-05-17  Benjamin Otte  <otte@gnome.org>
35400
35401         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
35402           signal the new tags before giving up the reference
35403
35404 2004-05-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35405
35406         * ext/shout2/gstshout2.c:
35407           use application/ogg instead of application/x-ogg (patch by Patrick
35408           Guimond, fixes #142432)
35409         * sys/oss/gstosselement.c: (gst_osselement_reset),
35410         (gst_osselement_sync_parms):
35411           don't set fragment size unless specified (fixes #142493)
35412
35413 2004-05-17  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35414
35415         * configure.ac : fix compilation of v4l2src with "-Wall -Werror"
35416           fixes #142664
35417
35418 2004-05-17  Benjamin Otte  <otte@gnome.org>
35419
35420         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
35421           compute offsets correctly for internal buffers so timestamps are set
35422           correctly when we can't seek. Also handle cases where there are no
35423           offsets. (based on a patch by David Moore, fixes #142507)
35424
35425 2004-05-17  Benjamin Otte  <otte@gnome.org>
35426
35427         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
35428           use correct variable when determining amount of data to skip so we
35429           don't skip into the void and segfault
35430
35431 2004-05-16  Benjamin Otte  <otte@gnome.org>
35432
35433         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
35434           Hi, I'm a memleak
35435
35436 2004-05-16  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35437
35438         * gst/asfdemux/gstasfdemux.c:
35439           - fix a mem leak and always propagate tags
35440           - add WMV3 to known video codecs (but no decoder yet)
35441           - replace "surplus data" at end of audio header for what
35442             it is : codec specific data
35443           - fix a typo
35444
35445 2004-05-16  Arwed v. Merkatz  <v.merkatz@gmx.net>
35446
35447         reviewed by: Ronald Bultje  <rbultje@ronald.bitfreak.net>
35448
35449         * gst-libs/gst/audio/audioclock.c:
35450           Fix wrong return type (#142205).
35451
35452 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35453
35454         * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_init):
35455           Ignore CRCs by default (fixes #142566).
35456
35457 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35458
35459         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
35460         (gst_alsa_mixer_close), (gst_alsa_mixer_supported),
35461         (gst_alsa_mixer_build_list), (gst_alsa_mixer_free_list),
35462         (gst_alsa_mixer_change_state), (gst_alsa_mixer_list_tracks),
35463         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
35464         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record):
35465           Fix for cases where we fail to attach to a mixer.
35466
35467 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35468
35469         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
35470           Don't touch events after not owning them anymore.
35471         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
35472         (gst_wavparse_fmt), (gst_wavparse_other),
35473         (gst_wavparse_handle_seek), (gst_wavparse_loop),
35474         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
35475         (gst_wavparse_srcpad_event):
35476         * gst/wavparse/gstwavparse.h:
35477           Add seeking, fix querying.
35478
35479 2004-05-16  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35480
35481         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
35482           - process comments even if they don't end with \0\0
35483             g_convert would ignore them if present and works well without them
35484
35485 2004-05-16  Benjamin Otte  <otte@gnome.org>
35486
35487         * ext/alsa/gstalsa.c: (gst_alsa_caps), (gst_alsa_get_caps):
35488           simplify caps
35489
35490 2004-05-16  Benjamin Otte  <otte@gnome.org>
35491
35492         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
35493           don't write to memory we might not write to - g_convert does that
35494           for us anyway (fixes #142613)
35495         (gst_asf_demux_audio_caps):
35496           comment out gst_util_dump_mem
35497
35498 2004-05-16  Benjamin Otte  <otte@gnome.org>
35499
35500         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
35501           compute correct expected timestamps after seek (broken since
35502           last commit)
35503         * ext/gdk_pixbuf/pixbufscale.c: (pixbufscale_init):
35504           rename element and debugging category to gdkpixbufscale
35505
35506 2004-05-16  Benjamin Otte  <otte@gnome.org>
35507
35508         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
35509           add error checking to snd_pcm_delay and remove duplicate call to
35510           snd_pcm_delay that caused issues (see inline code comments)
35511         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
35512           make more readable and fix return value when snd_pcm_delay fails
35513         (fixes #142586)
35514
35515 2004-05-15  Jan Schmidt  <thaytan@mad.scientisti.com>
35516         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_method_get_type),
35517         (gst_pixbufscale_get_type), (gst_pixbufscale_base_init),
35518         (gst_pixbufscale_class_init), (gst_pixbufscale_getcaps),
35519         (gst_pixbufscale_link), (gst_pixbufscale_init),
35520         (gst_pixbufscale_handle_src_event), (pixbufscale_scale),
35521         (gst_pixbufscale_chain), (gst_pixbufscale_set_property),
35522         (gst_pixbufscale_get_property), (pixbufscale_init):
35523         * ext/gdk_pixbuf/pixbufscale.h:
35524         Add these files I forgot earlier
35525
35526 2004-05-15  Jan Schmidt  <thaytan@mad.scientist.com>
35527         * ext/gdk_pixbuf/Makefile.am:
35528         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
35529         * ext/gdk_pixbuf/gstgdkpixbuf.h:
35530         Add new pixbufscale element to scale RGB video
35531         using gdk_pixbuf, because gdk_pixbuf does BILINEAR
35532         and HYPER interpolation correctly.
35533         * ext/theora/theoraenc.c: (theora_enc_chain),
35534         Discard buffer and return if explicit caps could not be set
35535         (theora_enc_get_property):
35536         Make _get return kbps for the bitrate consistent with
35537         the _set function.
35538
35539
35540 2004-05-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35541
35542         * ext/libvisual/visual.c: (gst_visual_chain):
35543           add missing visual_audio_analyze
35544
35545 2004-05-14  David Schleef  <ds@schleef.org>
35546
35547         * ext/esd/esdsink.c: (gst_esdsink_chain): Fix crash when ESD
35548         is killed while we're playing.
35549         * gst/qtdemux/qtdemux.c: (qtdemux_parse): call
35550         gst_element_no_more_pads().
35551
35552 2004-05-14  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35553
35554         * gst-libs/gst/riff/riff-read.c :
35555           - fix INFO tag extraction in RIFF/AVI files
35556             because gst_event_unref (event) also freed taglist
35557           - avoid a mem leak
35558
35559 2004-05-13  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35560
35561         * ext/mad/gstid3tag.c : move from "Codec/(Dem/M)uxer" to "Codec/(Dem/M)uxer/Audio"
35562         * gst/wavenc/gstwavenc.c : move from "Codec/Encoder/Audio" to "Codec/Muxer/Audio"
35563
35564         * gst/auparse/gstauparse.c :
35565           - add code (commented for now) to support audio/x-adpcm on src pad
35566             (we have no decoder for those layout yet)
35567
35568         * gst/cdxaparse/gstcdxaparse.c :
35569         * gst/cdxaparse/gstcdxaparse.h :
35570           - partial rewrite using RiffRead (ripped iain's wavparse code)
35571
35572         * gst/rtp/gstrtpL16enc.c : typo
35573         * gst/rtp/gstrtpgsmenc.c : typo
35574
35575 2004-05-13  Benjamin Otte  <otte@gnome.org>
35576
35577         * configure.ac:
35578           check for exact version of libvisual, it's not supposed to be
35579           API/ABI stable yet
35580
35581 2004-05-13  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35582
35583         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
35584           signal no-more-pads
35585
35586 2004-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
35587
35588         * ext/dv/gstdvdec.c: (gst_dvdec_src_convert)
35589         Report which format was used for GST_FORMAT_DEFAULT
35590         * gst/debug/Makefile.am:
35591         * gst/debug/gstdebug.c: (plugin_init):
35592         * gst/debug/progressreport.c: (gst_progressreport_base_init),
35593         (gst_progressreport_class_init), (gst_progressreport_init),
35594         (gst_progressreport_report), (gst_progressreport_set_property),
35595         (gst_progressreport_get_property), (gst_progressreport_chain),
35596         (gst_progressreport_plugin_init):
35597         Add progressreport element for testing.
35598
35599 2004-05-13  Thomas Vander Stichele  <thomas at apestaart dot org>
35600
35601         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_change_state):
35602         * sys/v4l/gstv4lsrc.h:
35603         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
35604         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
35605         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init),
35606         (gst_v4lsrc_grab_frame):
35607           add more debugging
35608           send a discont at start
35609
35610 2004-05-12  Colin Walters  <walters@redhat.com>
35611
35612         * gst/asfdemux/gstasfdemux.c (gst_asf_demux_process_segment): Avoid
35613         inflooping if we can't find a chunk.  Or in other words, don't blow
35614         chunks if we don't have a chunk to blow.
35615
35616 2004-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
35617         * ext/audiofile/gstafsrc.c: (gst_afsrc_get):
35618         Remove old debug output
35619         * ext/dv/gstdvdec.c: (gst_dvdec_quality_get_type),
35620         (gst_dvdec_class_init), (gst_dvdec_loop), (gst_dvdec_change_state),
35621         (gst_dvdec_set_property), (gst_dvdec_get_property):
35622         Change the quality setting to an enum, so it works from gst-launch
35623         Don't renegotiate a non-linked pad. Allows audio only decoding.
35624         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_getcaps),
35625         (gst_deinterlace_link), (gst_deinterlace_init):
35626         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
35627         (gst_videodrop_link):
35628         Some caps negotiation fixes
35629
35630 2004-05-12  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35631
35632         * ext/tarkin/gsttarkin.c :
35633           - Change RANK from NONE to PRIMARY
35634         * ext/gdk_pixbuf/gstgdkpixbuf.c :
35635           - Change RANK from NONE to MARGINAL
35636         * ext/divx/gstdivxenc.c :
35637           - Change RANK from PRIMARY to NONE (encoder/spider issue)
35638
35639 2004-05-12  Thomas Vander Stichele  <thomas at apestaart dot org>
35640
35641         * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
35642         (gst_vorbisenc_push_packet):
35643           copy a function that was added between 1.0 and 1.0.1 until we
35644           depend on worthwhile features of post-1.0
35645
35646 2004-05-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35647
35648         * configure.ac:
35649           enable shout2 by default
35650         * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
35651         (gst_shout2send_base_init), (gst_shout2send_init),
35652         (gst_shout2send_connect), (gst_shout2send_change_state):
35653         * ext/shout2/gstshout2.h:
35654           make this work again. Based on a patch by Zaheer Abbas Merali (fixes
35655           #142262)
35656         * ext/theora/theora.c: (plugin_init):
35657           don't set rank on encoders
35658
35659 2004-05-11  Jeremy Simon  <jesimon@libertysurf.fr>
35660
35661         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
35662           Use codec_data property instead of flag1 and flag2 for wma
35663
35664 2004-05-11  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35665
35666         * gst/cdxaparse/gstcdxaparse.c :
35667           - Add mpegversion to CAPS to make it link
35668           - Rank is as GST_RANK_SECONDARY instead of NONE
35669         * gst/auparse/gstauparse.c :
35670           - Document all audio encoding we can encounter from Solaris 9
35671             headers and libsndfile information.
35672           - Increase max. rate from 48000 to 192000 (to match other elements)
35673           - Don't try to play junk data between header and samples
35674
35675 2004-05-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35676
35677         * ext/libvisual/visual.c: (gst_visual_getcaps):
35678           use the right caps depending on endianness (I hope)
35679         * ext/ogg/gstoggmux.c: (gst_ogg_mux_plugin_init):
35680           use GST_RANK_NONE for all non-decoding elements or spider gets
35681           mighty confused
35682
35683 2004-05-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35684
35685         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
35686           Fix some odd cases and fix BE metadata parsing of unicode16 text.
35687
35688 2004-05-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35689
35690         * gst/switch/gstswitch.c: (gst_switch_release_pad),
35691         (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
35692         (gst_switch_loop), (gst_switch_get_type):
35693           whoever that was: DO NOT IMPORT PRIVATE SYMBOLS THAT ARE NOT IN
35694           HEADERS. Had to be said.
35695
35696 2004-05-10  David Schleef  <ds@schleef.org>
35697
35698         * configure.ac: Add prototype Dirac support.
35699         * ext/Makefile.am:
35700         * ext/dirac/Makefile.am:
35701         * ext/dirac/gstdirac.cc:
35702         * ext/dirac/gstdiracdec.cc:
35703
35704 2004-05-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35705
35706         * gst/auparse/gstauparse.c: (gst_auparse_class_init),
35707         (gst_auparse_init), (gst_auparse_chain),
35708         (gst_auparse_change_state):
35709           Hack around spider. Remove me some day please.
35710
35711 2004-05-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35712
35713         * gst/auparse/gstauparse.c: (gst_auparse_chain):
35714           Fix for some uninitialized variables in previous patch, also
35715           makes it work. Fixes #142286 while we're at it.
35716
35717 2004-05-11  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35718
35719         * gst/auparse/gstauparse.c:
35720                 fixes a-law, adds mu-law, linear pcm (8,16,24,32), ieee (32, 64)
35721                 only unsupported formats are ADPCM/CCITT G.72x
35722                 reviewed by Ronald
35723         * gst-libs/gst/audio/audio.h: adds 24bit depth to PCM (x-raw-int)
35724
35725 2004-05-10  Wim Taymans  <wim@fluendo.com>
35726
35727         * ext/vorbis/Makefile.am:
35728         * ext/vorbis/README:
35729         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_formats),
35730         (oggvorbisenc_get_type), (vorbis_caps_factory), (raw_caps_factory),
35731         (gst_oggvorbisenc_base_init), (gst_oggvorbisenc_class_init),
35732         (gst_oggvorbisenc_sinkconnect), (gst_oggvorbisenc_convert_src),
35733         (gst_oggvorbisenc_convert_sink),
35734         (gst_oggvorbisenc_get_query_types), (gst_oggvorbisenc_src_query),
35735         (gst_oggvorbisenc_init), (gst_oggvorbisenc_get_tag_value),
35736         (gst_oggvorbisenc_metadata_set1), (gst_oggvorbisenc_set_metadata),
35737         (get_constraints_string), (update_start_message),
35738         (gst_oggvorbisenc_setup), (gst_oggvorbisenc_write_page),
35739         (gst_oggvorbisenc_chain), (gst_oggvorbisenc_get_property),
35740         (gst_oggvorbisenc_set_property), (gst_oggvorbisenc_change_state):
35741         * ext/vorbis/oggvorbisenc.h:
35742         * ext/vorbis/vorbis.c: (plugin_init):
35743         * ext/vorbis/vorbisenc.c: (vorbis_caps_factory),
35744         (raw_caps_factory), (gst_vorbisenc_class_init),
35745         (gst_vorbisenc_init), (gst_vorbisenc_setup),
35746         (gst_vorbisenc_push_packet), (gst_vorbisenc_chain),
35747         (gst_vorbisenc_get_property), (gst_vorbisenc_set_property):
35748         * ext/vorbis/vorbisenc.h:
35749         Added a raw vorbis encoder to be used with the oggmuxer.
35750         We still need the old encoder for some gnome applications,
35751         read the README to find out how that works.
35752         The raw encoder is called "rawvorbisenc" until 0.9.
35753
35754 2004-05-10  Wim Taymans  <wim@fluendo.com>
35755
35756         * ext/ogg/gstogg.c: (plugin_init):
35757         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init),
35758         (gst_ogg_print):
35759         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type),
35760         (gst_ogg_mux_base_init), (gst_ogg_mux_class_init),
35761         (gst_ogg_mux_get_sink_event_masks), (gst_ogg_mux_init),
35762         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_pad_link),
35763         (gst_ogg_mux_pad_unlink), (gst_ogg_mux_request_new_pad),
35764         (gst_ogg_mux_handle_src_event), (gst_ogg_mux_next_buffer),
35765         (gst_ogg_mux_push_page), (gst_ogg_mux_compare_pads),
35766         (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop),
35767         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property),
35768         (gst_ogg_mux_change_state), (gst_ogg_mux_plugin_init):
35769         Added an ogg muxer.
35770         Small typo fixes in the demuxer.
35771
35772 2004-05-10  Wim Taymans  <wim@fluendo.com>
35773
35774         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
35775         (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
35776         (theora_enc_change_state), (theora_enc_set_property),
35777         (theora_enc_get_property):
35778         Mark the last packet with an EOS flag which is not really needed
35779         in gstreamer.
35780         Do some better video framerate initialisation.
35781         Update the buffer timestamp.
35782
35783 2004-05-10  Jan Schmidt  <thaytan@mad.scientist.com>
35784
35785         * ext/dv/gstdvdec.c: (gst_dvdec_change_state):
35786         Return the result of the parent state change call
35787
35788 2004-05-10  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
35789
35790         * gst/law/alaw.c : alawdec should be registered with type ALAWDEC, not ALAWENC
35791         * gst/law/alaw-decode.c : put audio/x-alaw on pads, instead of audio/x-mulaw
35792         * gst/law/alaw-encode.c : (idem)
35793         * ext/a52dec/gsta52dec.c : mark audio/a52, audio/ac3 as deprecated in a comment
35794         * gst/ac3parse/gstac3parse.c : audio/ac3 => audio/x-ac3
35795         * gst/realmedia/rmdemux.c : audio/a52 => audio/x-ac3
35796
35797 2004-05-09  Benjamin Otte  <otte@gnome.org>
35798
35799         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
35800           don't use a fixed buffer size when writing variable length data to
35801           it. Fixes memory corruption and makes alsasrc work
35802
35803 2004-05-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35804
35805         * ext/gnomevfs/gstgnomevfssink.c:
35806         (_gst_boolean_allow_overwrite_accumulator),
35807         (gst_gnomevfssink_class_init), (gst_gnomevfssink_open_file):
35808           Run glib's default signal handler (??) in RUN_CLEANUP rather than
35809           RUN_LAST, and don't use that to set the accumulator value because
35810           then it's always FALSE.
35811
35812 2004-05-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35813
35814         * gst-libs/gst/riff/riff-media.c:
35815         (gst_riff_create_video_caps_with_data),
35816         (gst_riff_create_audio_caps),
35817         (gst_riff_create_audio_template_caps):
35818         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
35819           Fix for unaligned RIFF files (i.e. where all the chunks together
35820           in a LIST chunk are not of the same size as the size given in
35821           the LIST chunk header). Fixes several odd WAVE files. Also fix
35822           ADPCM (block_align property) in audio, so that wavparse based
35823           on this works now as it used to stand-alone.
35824
35825 2004-05-09  Edward Hervey  <bilboed@bilboed.com>
35826
35827         reviewed by Benjamin Otte  <otte@gnome.org>
35828
35829         * ext/a52dec/gsta52dec.c:
35830         * ext/divx/gstdivxdec.c:
35831         * ext/divx/gstdivxenc.c:
35832         * ext/dts/gstdtsdec.c: (gst_dtsdec_base_init):
35833         * ext/faac/gstfaac.c: (gst_faac_base_init):
35834         * ext/faad/gstfaad.c: (gst_faad_base_init):
35835         * ext/ivorbis/vorbisfile.c:
35836         * ext/lame/gstlame.c:
35837         * ext/libfame/gstlibfame.c:
35838         * ext/mpeg2enc/gstmpeg2enc.cc:
35839         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_base_init):
35840         * ext/sidplay/gstsiddec.cc:
35841         * ext/speex/gstspeexdec.c:
35842         * ext/speex/gstspeexenc.c:
35843         * ext/xvid/gstxviddec.c:
35844         * ext/xvid/gstxvidenc.c:
35845           correct klasses. Mostly s,Codec/(Audio|Video),\1/Codec,
35846           (fixes #142193)
35847
35848 2004-05-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35849
35850         * ext/alsa/gstalsa.c: (device_list),
35851         (gst_alsa_class_probe_devices):
35852         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
35853           Fix alsa oddness in mixer after the combination of using mixer
35854           in source/sink elements and using hw:x,y instead of just hw:x.
35855
35856 2004-05-09  Benjamin Otte  <otte@gnome.org>
35857
35858         * gst/wavparse/gstwavparse.c: (gst_wavparse_destroy_sourcepad),
35859         (gst_wavparse_create_sourcepad):
35860           make PAUSED=>READY=>PAUSED=READY work by not destroying NULL
35861           sourcepads
35862
35863 2004-05-09  Benjamin Otte  <otte@gnome.org>
35864
35865         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
35866           allow discont events before caps nego
35867
35868 2004-05-08  Benjamin Otte  <otte@gnome.org>
35869
35870         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
35871           don't leak events
35872
35873 2004-05-08  Benjamin Otte  <otte@gnome.org>
35874
35875         * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
35876         (gst_level_change_state), (gst_level_init):
35877         * gst/level/gstlevel.h:
35878           figure out if we're initialized directly instead of keeping a
35879           variable that's wrong in 90% of cases
35880           don't initialize pads and then leak them and use a new unitialized
35881           pad. (fixes #142084)
35882           these were bugs so n00bish I didn't find them for an hour :/
35883
35884 2004-05-08 Iain <iain@prettypeople.org>
35885
35886         * gst/wavparse/gstwavparse.[ch]: Rewrote to use RiffRead instead.
35887         * gst-libs/gst/riff/riff-read.c (gst_riff_read_peek_head): Unstatic it
35888         (gst_riff_read_element_data): Ditto, and added a got_bytes argument to
35889         return the length that was read.
35890         (gst_riff_read_strf_auds): Allow fmt tags as well.
35891
35892 2004-05-07  David Schleef  <ds@schleef.org>
35893
35894         * ext/faad/gstfaad.c: (gst_faad_sinkconnect): HACK to correct
35895         signed char assumption in faad.h.
35896
35897 2004-05-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35898
35899         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps):
35900           Missing break, detected by Daniel Gazard <daniel.gazard@free.fr>.
35901
35902 2004-05-07  Colin Walters  <walters@redhat.com>
35903
35904         * gst/volume/gstvolume.c (gst_volume_dispose): Unref dpman.
35905         * ext/flac/gstflacdec.c (gst_flacdec_dispose): Add dispose
35906         function.
35907         * gst/audioscale/gstaudioscale.c (gst_audioscale_dispose):
35908         Add dispose function.
35909
35910 2004-05-08  Jan Schmidt  <thaytan@mad.scientist.com>
35911         * ext/dv/gstdvdec.c: (gst_dvdec_video_link):
35912           Fix caps nego and pad templates. RGB mode caps should
35913           work now.
35914         * ext/dvdnav/gst-dvd:
35915           Move mpeg2dec inside the thread because otherwise the
35916           queue rejects cap changes mid-stream
35917         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
35918         (gst_mpeg2dec_flush_decoder):
35919           For mpeg2dec > 0.4.0, call the flush function instead of
35920           manually extracting all in-flight frames.
35921         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_factory),
35922         (gst_dv1394src_init), (gst_dv1394src_iso_receive):
35923           Change mime type video/dv go video/x-dv to match the
35924           rest of gst-plugins
35925
35926 2004-05-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
35927
35928         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
35929         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_type),
35930         (gst_alsa_sink_class_init):
35931         * ext/alsa/gstalsasink.h:
35932         * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_type),
35933         (gst_alsa_src_class_init):
35934         * ext/alsa/gstalsasrc.h:
35935           Make alsasink/src a subclass of alsamixer so that mixer stuff
35936           shows up in gst-rec. Needs some finetuning.
35937
35938 2004-05-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
35939
35940         * ext/lame/gstlame.c: (gst_lame_chain):
35941           simplify
35942         * ext/mad/gstmad.c: (gst_mad_handle_event):
35943           fix event leak
35944         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
35945           be able to detect mp3 files < 4096 bytes
35946
35947 2004-05-06  Wim Taymans  <wim@fluendo.com>
35948
35949         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
35950         (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
35951         (theora_enc_set_property), (theora_enc_get_property):
35952         Also encode the first frame, cleanup some code.
35953
35954 2004-05-06  Wim Taymans  <wim@fluendo.com>
35955
35956         * ext/mpeg2enc/gstmpeg2enc.cc:
35957         Forward events first before deciding that negotiation was
35958         not performed.
35959
35960 2004-05-06  Wim Taymans  <wim@fluendo.com>
35961
35962         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
35963         First process the events before deciding that negotiation
35964         was not performed.
35965
35966 2004-05-06  Wim Taymans  <wim@fluendo.com>
35967
35968         * ext/theora/Makefile.am:
35969         * ext/theora/theora.c: (plugin_init):
35970         * ext/theora/theoradec.c: (theora_dec_change_state):
35971         * ext/theora/theoraenc.c: (gst_theora_enc_base_init),
35972         (gst_theora_enc_class_init), (gst_theora_enc_init),
35973         (theora_enc_sink_link), (theora_enc_event), (theora_push_packet),
35974         (theora_enc_chain), (theora_enc_change_state),
35975         (theora_enc_set_property), (theora_enc_get_property):
35976         Added a theora encoder, grouped the encoder and decoder into the
35977         same plugin.
35978
35979 2004-05-05  Thomas Vander Stichele  <thomas at apestaart dot org>
35980
35981         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
35982         (gst_jpegenc_chain):
35983         fix DURATION on outgoing buffers
35984         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
35985         debug using time formats
35986         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
35987         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
35988         (gst_xvimagesink_sink_link):
35989         windows with width/height 0 generate X errors, so don't allow them
35990
35991 2004-05-05  Wim Taymans  <wim@fluendo.com>
35992
35993         * ext/mpeg2dec/gstmpeg2dec.c: (src_templ),
35994         (gst_mpeg2dec_base_init), (gst_mpeg2dec_init),
35995         (gst_mpeg2dec_negotiate_format):
35996         * ext/mpeg2dec/gstmpeg2dec.h:
35997           removed the static pad template so that we can add the
35998           more accurate framerate value to the caps.
35999
36000
36001 2004-05-04  Benjamin Otte  <otte@gnome.org>
36002
36003         * configure.ac:
36004           check for kdemacros.h, too (should fix #141821)
36005         * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
36006           don't crash if no header was sent, but nicely error out (fixes part
36007           of #141554)
36008
36009 2004-05-04  Wim Taymans  <wim@fluendo.com>
36010
36011         * ext/mpeg2enc/gstmpeg2enc.cc: (gst_mpeg2enc_dispose): call the
36012         parent dispose function to avoid segfault on destroy.
36013
36014 2004-05-04  Thomas Vander Stichele  <thomas at apestaart dot org>
36015
36016         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
36017         (plugin_init):
36018         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
36019         (gst_xvimagesink_sink_link):
36020         clean up debugging caps
36021         also recreate xvimage when format has changed
36022
36023 2004-05-04  Benjamin Otte  <otte@gnome.org>
36024
36025         * ext/libvisual/Makefile.am:
36026         * ext/libvisual/visual.c: (gst_visual_class_init),
36027         (gst_visual_init), (gst_visual_dispose), (gst_visual_getcaps),
36028         (gst_visual_srclink), (gst_visual_chain),
36029         (gst_visual_change_state), (plugin_init):
36030           use a GstAdapter to correctly adapt buffer sizes - allows using a
36031           framerate
36032
36033 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
36034
36035         * sys/v4l/gstv4lelement.h:
36036         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
36037         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps), (gst_v4lsrc_getcaps),
36038         (gst_v4lsrc_buffer_free):
36039         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities):
36040         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
36041         (gst_v4lsrc_sync_frame), (gst_v4lsrc_grab_frame),
36042         (gst_v4lsrc_requeue_frame):
36043         move some debugging categories around
36044         query for fps index and set accordingly if found
36045
36046 2004-05-03  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
36047
36048         * ext/lame/gstlame.c:
36049         correct defaults that lame_init puts out of range
36050
36051 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
36052
36053         * ext/divx/gstdivxenc.c: (gst_divxenc_get_type),
36054         (gst_divxenc_class_init):
36055         fix range since -1 is the default
36056         * gst/mpeg1sys/gstmpeg1systemencode.c:
36057         (gst_mpeg1_system_encode_get_type), (gst_system_encode_multiplex):
36058         * gst/rtjpeg/gstrtjpegdec.c: (gst_rtjpegdec_get_type),
36059         (gst_rtjpegdec_chain):
36060         * gst/rtjpeg/gstrtjpegenc.c: (gst_rtjpegenc_get_type),
36061         (gst_rtjpegenc_chain):
36062         * sys/qcam/gstqcamsrc.c: (gst_autoexp_mode_get_type),
36063         (gst_qcamsrc_get_type), (gst_qcamsrc_change_state):
36064         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_get_type):
36065         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_type):
36066         * sys/v4l/gstv4lsrc.c:
36067         * sys/v4l/v4l_calls.c: (gst_v4l_open):
36068         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
36069         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
36070         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init):
36071         * sys/vcd/vcdsrc.c: (vcdsrc_get_type), (vcdsrc_get):
36072           remove gst_info calls
36073
36074 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
36075
36076         * Makefile.am:
36077         * po/af.po:
36078         * po/az.po:
36079         * po/en_GB.po:
36080         * po/nl.po:
36081         * po/sr.po:
36082         * po/sv.po:
36083           Updated translations
36084
36085 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
36086
36087         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
36088           refactor/comment code
36089
36090 2004-05-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36091
36092         * gst/asfdemux/Makefile.am:
36093         * gst/asfdemux/asfheaders.c:
36094         * gst/asfdemux/asfheaders.h:
36095         * gst/asfdemux/gstasf.c: (plugin_init):
36096         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_get_type),
36097         (gst_asf_demux_base_init), (gst_asf_demux_process_comment),
36098         (gst_asf_demux_setup_pad):
36099         * gst/asfdemux/gstasfdemux.h:
36100         * gst/asfdemux/gstasfmux.c:
36101         * gst/asfdemux/gstasfmux.h:
36102           Add tagging support to demuxer, split out registration in its own
36103           file instead of in demux (hacky), and prevent having some tables
36104           in our memory multiple times (in asfheaders.h).
36105
36106 2004-05-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36107
36108         * gst/matroska/matroska-demux.c:
36109         (gst_matroska_demux_parse_metadata):
36110         * gst/matroska/matroska-ids.h:
36111           Basic tag reading support.
36112
36113 2004-04-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36114
36115         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
36116           Really detect ac-3 audio.
36117         * gst/typefind/gsttypefindfunctions.c: (matroska_type_find):
36118           really detect matroska files (off-by-1).
36119
36120 2004-04-30  David Schleef  <ds@schleef.org>
36121
36122         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
36123         (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_type_get),
36124         (qtdemux_dump_stsz), (qtdemux_dump_stco), (qtdemux_dump_co64),
36125         (qtdemux_dump_unknown), (qtdemux_parse_tree), (qtdemux_parse_udta),
36126         (qtdemux_tag_add), (get_size), (gst_qtdemux_handle_esds): More qtdemux
36127         hackage -- parse a lot more atoms, extract a few tags.  One might even
36128         mistake this for tag support.  Maybe it is.
36129         * gst/qtdemux/qtdemux.h:
36130
36131 2004-04-30  Colin Walters  <walters@verbum.org>
36132
36133         * ext/alsa/gstalsasink.c (gst_alsa_sink_mmap): Plug a memleak.
36134
36135 2004-04-30  Thomas Vander Stichele  <thomas at apestaart dot org>
36136
36137         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
36138         (gst_ffmpegcolorspace_getcaps):
36139           remove broken nego fix
36140
36141 2004-04-30  Benjamin Otte  <otte@gnome.org>
36142
36143         * configure.ac:
36144         * ext/Makefile.am:
36145         * ext/libvisual/Makefile.am:
36146         * ext/libvisual/visual.c:
36147           add initial support for libvisual (http://libvisual.sourceforge.net)
36148           libvisual is still quite alpha, so expect crashes in there :)
36149
36150 2004-04-29  David Schleef  <ds@schleef.org>
36151
36152         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream), (qtdemux_parse),
36153         (qtdemux_parse_trak), (get_size), (gst_qtdemux_handle_esds): Hacked
36154         up qtdemux to make it spit out codec_data.  Do _not_ look at this
36155         code; you will no longer respect me.
36156
36157 2004-04-29  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
36158
36159         * ext/alsa/gstalsa.c : (gst_alsa_class_probe_devices)
36160         * ext/alsa/gstalsa.h :
36161         change alsa pcm device discovery to find more than 1 device
36162         per card. code review by Ronald.
36163
36164 2004-04-29  David Schleef  <ds@schleef.org>
36165
36166         * sys/oss/gstosselement.c: (gst_osselement_rate_probe_check):
36167         Add a check for a driver bug on FreeBSD.  (bug #140565)
36168
36169 2004-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
36170
36171         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_get_type):
36172         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
36173         (gst_jpegenc_getcaps):
36174           move format setting to inner loop
36175         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
36176         (gst_ffmpegcolorspace_getcaps):
36177           use GST_PAD_CAPS if available so that we use already negotiated
36178           caps
36179         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
36180         (qtdemux_parse_moov), (qtdemux_parse):
36181           extra debugging
36182         * sys/qcam/qcam-Linux.c: (qc_lock_wait), (qc_unlock):
36183         * sys/qcam/qcam-os.c: (qc_lock_wait), (qc_unlock):
36184           move hardcoded path to DEFINE
36185
36186 2004-04-28  David Schleef  <ds@schleef.org>
36187
36188         * gst/speed/gstspeed.c: (speed_parse_caps):  Fix caps parsing.
36189         (bug #140064)
36190
36191 2004-04-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36192
36193         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
36194           Don't probe for playback device if we're a source element. Fixes
36195           #139658.
36196
36197 2004-04-29  Benjamin Otte  <otte@gnome.org>
36198
36199         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
36200         (gst_id3_tag_chain):
36201           rewrite buffer offset
36202
36203 2004-04-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36204
36205         * configure.ac:
36206         * ext/Makefile.am:
36207         * ext/dts/Makefile.am:
36208         * ext/dts/gstdtsdec.c: (gst_dtsdec_get_type),
36209         (gst_dtsdec_base_init), (gst_dtsdec_class_init), (gst_dtsdec_init),
36210         (gst_dtsdec_channels), (gst_dtsdec_renegotiate),
36211         (gst_dtsdec_handle_event), (gst_dtsdec_update_streaminfo),
36212         (gst_dtsdec_loop), (gst_dtsdec_change_state),
36213         (gst_dtsdec_set_property), (gst_dtsdec_get_property),
36214         (plugin_init):
36215         * ext/dts/gstdtsdec.h:
36216           New DTS decoder.
36217         * ext/faad/gstfaad.c: (gst_faad_sinkconnect),
36218         (gst_faad_srcconnect):
36219           Add ESDS atom handling (.m4a).
36220
36221 2004-04-27  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36222
36223         * ext/divx/gstdivxdec.c: (plugin_init):
36224           Remove comment that makes no sense.
36225         * ext/mad/gstid3tag.c: (gst_id3_tag_set_property):
36226           Fix for obvious typo that resulted in warnings during gst-register.
36227         * ext/xvid/gstxviddec.c: (gst_xviddec_src_link),
36228         (gst_xviddec_sink_link):
36229           Fix caps negotiation a bit better.
36230         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
36231           We call this 'codec_data', not 'esds'.
36232
36233 2004-04-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36234
36235         * gst/monoscope/gstmonoscope.c:
36236           make sure we only provide 256x128
36237         * gst/monoscope/monoscope.c: (monoscope_init):
36238           assert size of 256x128
36239
36240 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
36241
36242         * Makefile.am:
36243         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_fixate),
36244         (gst_v4lsrc_getcaps), (gst_v4lsrc_buffer_free):
36245           fixate to max width and height of device
36246
36247 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
36248
36249         * Makefile.am:
36250         * sys/v4l/gstv4l.c:
36251         * sys/v4l/gstv4lsrc.c:
36252         * sys/v4l/v4l_calls.c:
36253         * sys/v4l/v4lsrc_calls.c:
36254           fix for qc-usb driver which fakes having more than one buffer
36255           by handing the same buffer twice, which confused GStreamer's/v4lsrc
36256           buffer_free override
36257           add debugging
36258
36259 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
36260
36261         * Makefile.am:
36262         * gst/videotestsrc/gstvideotestsrc.c:
36263         (gst_videotestsrc_class_init), (gst_videotestsrc_change_state),
36264         (gst_videotestsrc_init), (gst_videotestsrc_get),
36265         (gst_videotestsrc_set_property), (gst_videotestsrc_get_property):
36266         * gst/videotestsrc/gstvideotestsrc.h:
36267           add num-buffers property
36268
36269         2004-04-26  Benjamin Otte  <otte@gnome.org>
36270
36271         * ext/mad/gstid3tag.c: (plugin_init):
36272           set id3mux rank to NONE so it doesn't confuse spider
36273           require audio/mpeg,mpegversion=1 in id3mux
36274
36275 2004-04-26  Benjamin Otte  <otte@gnome.org>
36276
36277         * configure.ac:
36278           detect faad correctly as non-working if it's indeed non-working
36279
36280 2004-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
36281
36282         * Makefile.am:
36283         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
36284         (gst_jpegenc_class_init), (gst_jpegenc_getcaps):
36285         fix _getcaps so it only negotiates to its supported format
36286
36287 2004-04-25  Benjamin Otte  <otte@gnome.org>
36288
36289         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
36290           fix memleak
36291
36292 2004-04-23  Benjamin Otte  <otte@gnome.org>
36293
36294         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
36295           audio/x-raw-int with height rules! not. Now it's depth.
36296
36297 2004-04-22  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36298
36299         * gst/wavparse/gstwavparse.c: (gst_wavparse_create_sourcepad),
36300         (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
36301         (gst_wavparse_loop):
36302           Missing variable initialization. Add handling of DVI ADPCM. Fix
36303           mis-parsing of LIST chunks. This works around a bug where we mis-
36304           parse non-aligning LIST chunks (so LIST chunks where the contents
36305           don't align with the actual LIST size). The correct fix is to use
36306           rifflib, I'm not going to fix wavparse - too much work. All this
36307           fixes #104878.
36308
36309 2004-04-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
36310
36311         reviewed by Benjamin Otte  <otte@gnome.org>
36312
36313         * ext/shout/gstshout.c: (gst_icecastsend_change_state):
36314           fix shoutcast not working (fixes #140844)
36315
36316 2004-04-22  Benjamin Otte  <otte@gnome.org>
36317
36318         * ext/hermes/gsthermescolorspace.c:
36319         (gst_hermes_colorspace_caps_remove_format_info):
36320         * gst/colorspace/gstcolorspace.c:
36321         (gst_colorspace_caps_remove_format_info):
36322         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
36323         (gst_ffmpegcolorspace_caps_remove_format_info):
36324           s/gst_caps_simplify/gst_caps_do_simplify/
36325
36326 2004-04-22  Benjamin Otte  <otte@gnome.org>
36327
36328         * gst-libs/gst/riff/riff-media.c:
36329         (gst_riff_create_video_caps_with_data):
36330           mpegversion is an int
36331         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init):
36332           don't try to create pad templates with NULL caps, use any caps
36333           instead.
36334
36335 2004-04-20  David Schleef  <ds@schleef.org>
36336
36337         * ext/sdl/Makefile.am: Link against libgstinterfaces, not
36338         libgstxoverlay.  jmmv@menta.net (Julio M. Merino Vidal)
36339         (bug #140384)
36340
36341 2004-04-20  Daniel Gazard  <daniel.gazard@epita.fr>
36342
36343         reviewed by David Schleef
36344
36345         * ext/mad/gstid3tag.c: Add stdlib.h
36346         * gst/rtp/gstrtpgsmenc.c: same
36347         * gst/tags/gstid3tag.c: same
36348         * gst/udp/gstudpsrc.c: (gst_udpsrc_get): Fix GST_DISABLE_LOADSAVE
36349         * gst/tcp/gsttcpsink.c: (gst_tcpsink_sink_link): Adjust
36350         GST_DISABLE_LOADSAVE use.
36351         * gst/udp/gstudpsink.c: (gst_udpsink_sink_link): Likewise.
36352         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get): Likewise.
36353         * ext/gnomevfs/gstgnomevfssrc.c: Include <stdlib.h> (needed by
36354         atol(3)).
36355         * sys/oss/gstosselement.h: Include <sys/types.h> (needed for dev_t).
36356         * gst/tags/gstvorbistag.c: Include <stdlib.h> (needed by
36357         strtoul(3)).
36358         * gst/rtp/gstrtpL16enc.c: Include <stdlib.h> (needed by random(3)).
36359         * ext/mad/Makefile.am: (libgstmad_la_CFLAGS): Add $(MAD_CFLAGS)
36360         $(ID3_CFLAGS).
36361         * ext/libfame/Makefile.am: (libgstlibfame_la_CFLAGS): Add
36362         $(LIBFAME_CFLAGS).
36363
36364 2004-04-20  David Schleef  <ds@schleef.org>
36365
36366         * gst/realmedia/rmdemux.c:  This was supposed to part of the
36367         last checkin.  Same idea.
36368
36369 2004-04-20  Daniel Gazard  <daniel.gazard@epita.fr>
36370
36371         reviewed by David Schleef
36372
36373         * configure.ac: bump required gstreamer version to 0.8.1.1
36374         because of following changes [--ds]
36375
36376         * gst-libs/gst/riff/riff-read.c:  Include gst/gstutils.h.
36377         (gst_riff_peek_head, gst_riff_peek_list, gst_riff_read_list)
36378         (gst_riff_read_header):  Use GST_READ_UINT*
36379         macros to access possibly unaligned memory.
36380
36381         * gst/typefind/gsttypefindfunctions.c: Include gst/gstutils.h.
36382         (mp3_type_find):  Use GST_READ_UINT*
36383         macros to access possibly unaligned memory.
36384         (mp3_type_find, mpeg1_parse_header, qt_type_find)
36385         (speex_type_find): Likewise
36386
36387         * gst/tags/gstvorbistag.c: (ADVANCE): Likewise
36388
36389         * gst/qtdemux/qtdemux.c: Include stdlib.h (needed by realloc).
36390         (QTDEMUX_GUINT32_GET, QTDEMUX_GUINT16_GET, QTDEMUX_FP32_GET)
36391         (QTDEMUX_FP16_GET, QTDEMUX_FOURCC_GET)
36392         (gst_qtdemux_loop_header, gst_qtdemux_loop_header)
36393         (qtdemux_node_dump_foreach, qtdemux_tree_get_child_by_type)
36394         (qtdemux_tree_get_sibling_by_type):  Use GST_READ_UINT*
36395         macros to access possibly unaligned memory.
36396
36397         * gst/mpegstream/gstmpegpacketize.c: (parse_generic, parse_chunk):
36398         Likewise.
36399
36400         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead)
36401         (gst_mpeg_demux_parse_packet, gst_mpeg_demux_parse_pes): Likewise.
36402
36403         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
36404         Likewise.
36405
36406         * gst/mpeg2sub/gstmpeg2subt.c: (GST_BUFFER_DATA)
36407         (gst_mpeg2subt_chain_subtitle): Likewise.
36408
36409         * gst/mpeg1videoparse/gstmp1videoparse.c: (mp1videoparse_parse_seq)
36410         (gst_mp1videoparse_time_code, gst_mp1videoparse_real_chain):
36411         Likewise.
36412
36413         * gst/mpeg1sys/buffer.c: (mpeg1mux_buffer_update_audio_info):
36414         Likewise.
36415
36416         * gst/cdxaparse/gstcdxaparse.c: (gst_bytestream_peek_bytes):
36417         Likewise.
36418
36419         * gst/asfdemux/gstasfdemux.c: (_read_var_length, _read_uint):
36420         Likewise.
36421
36422 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
36423
36424         * configure.ac:
36425           update required version of GStreamer because of GST_TIME_FORMAT
36426
36427 2004-04-20  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36428
36429         * ext/mad/gstid3tag.c: (gst_id3_tag_init):
36430           remove leftover g_print
36431         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
36432           don't try setting only a subset of the caps. We don't want to kill
36433           autoplugging on purpose
36434
36435 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
36436
36437         * sys/ximage/ximagesink.c: (plugin_init):
36438         * sys/xvimage/xvimagesink.c: (plugin_init):
36439           add debugging categories
36440
36441 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
36442
36443         * po/en_GB.po:
36444         * po/LINGUAS:
36445           Adding en_GB translation (Gareth Owen)
36446
36447 2004-04-20  David Schleef  <ds@schleef.org>
36448
36449         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
36450         (qtdemux_parse), (qtdemux_type_get), (qtdemux_dump_mvhd),
36451         (qtdemux_dump_tkhd), (qtdemux_dump_stsd), (qtdemux_dump_unknown),
36452         (qtdemux_parse_trak), (qtdemux_video_caps), (qtdemux_audio_caps):
36453         A number of new features and hacks to extract the esds atom and
36454         put it into the caps.  (bug #137724)
36455
36456 2004-04-19  David Schleef  <ds@schleef.org>
36457
36458         * gconf/Makefile.am: Fix for non-GNU make
36459         * gst-libs/gst/Makefile.am: Change directory order to handle
36460         GstPlay linking with gstinterfaces
36461         * gst-libs/gst/audio/make_filter: make use of tr portable
36462         * gst-libs/gst/play/Makefile.am: Add intended \
36463         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
36464         (gst_xwin_set_clips): Switch to ISO variadic macro. Use a
36465         function prototype instead of void *.
36466         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Switch to ISO variadic
36467         macro.
36468         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
36469         (gst_ffmpegcolorspace_chain): wrap NULL in GST_ELEMENT_ERROR call
36470         * gst/videofilter/make_filter: make use of tr portable
36471         * pkgconfig/Makefile.am: Remove GNU extension in Makefile target
36472
36473 2004-04-19  Thomas Vander Stichele  <thomas at apestaart dot org>
36474
36475         * po/LINGUAS:
36476         * po/uk.po:
36477           Added Ukrainian translation (Maxim V. Dziumanenko)
36478
36479 2004-04-18  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36480
36481         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_getcaps),
36482         (gst_gsmdec_link), (gst_gsmdec_chain):
36483           Fix capsnego, simplify chain function slightly.
36484         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
36485           Add GSM.
36486
36487 2004-04-18  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36488
36489         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
36490         (gst_wavparse_destroy_sourcepad), (gst_wavparse_create_sourcepad),
36491         (gst_wavparse_parse_fmt), (gst_wavparse_change_state):
36492           Hack to make wavparse work with spider (always -> sometimes pad).
36493           Fixes #135862 && #140411.
36494
36495 2004-04-18  Benjamin Otte  <otte@gnome.org>
36496
36497         * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
36498         (gst_osselement_rate_probe_check),
36499         (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate):
36500           get rid of \n in debug output
36501
36502 2004-04-17  Iain <iain@prettypeople.org>
36503
36504         * gst/wavparse/gstwavparse.c (gst_wavparse_loop): Allow all events,
36505         not just EOS.
36506
36507 2004-04-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36508
36509         * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
36510         (gst_id3_tag_class_init), (gst_id3_tag_get_caps),
36511         (gst_id3_tag_add_src_pad), (gst_id3_tag_init),
36512         (gst_id3_tag_set_property), (gst_id3_tag_do_caps_nego),
36513         (gst_id3_tag_src_link), (gst_id3_tag_chain),
36514         (gst_id3_tag_change_state), (plugin_init):
36515           deprecate id3tag element and replace with id3demux/id3mux.
36516           great side effect: this ugly file is now even uglier, yay!
36517         * ext/mad/gstmad.h:
36518           remove non-available function
36519           update for new get_type
36520
36521 2004-04-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36522
36523         * configure.ac:
36524           require mpeg2dec >= 0.4.0
36525
36526 2004-04-17  Benjamin Otte  <otte@gnome.org>
36527
36528         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
36529         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
36530         (gst_xvimagesink_set_xwindow_id):
36531           call GST_ELEMENT_ERROR whenever get_xcontext fails. Includes
36532           assorted cleanup fixes.
36533
36534 2004-04-16  David Schleef  <ds@schleef.org>
36535
36536         * sys/ximage/ximagesink.h: Compile fix for FreeBSD. (bug #140268)
36537         * sys/xvimage/xvimagesink.h: same
36538
36539 2004-04-16  Thomas Vander Stichele  <thomas at apestaart dot org>
36540
36541         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
36542           Fix GST_ELEMENT_ERROR with (NULL)
36543
36544 2004-04-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36545
36546         * gst-libs/gst/riff/riff-media.c:
36547         (gst_riff_create_video_caps_with_data):
36548           Add div[3456] as fourccs for DivX 3 (fixes #140137).
36549
36550 2004-04-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36551
36552         * gst-libs/gst/riff/riff-media.c:
36553         (gst_riff_create_video_caps_with_data),
36554         (gst_riff_create_video_caps), (gst_riff_create_audio_caps),
36555         (gst_riff_create_video_template_caps),
36556         (gst_riff_create_audio_template_caps):
36557         * gst-libs/gst/riff/riff-media.h:
36558         * gst-libs/gst/riff/riff-read.c:
36559         (gst_riff_read_strf_vids_with_data), (gst_riff_read_strf_vids):
36560         * gst-libs/gst/riff/riff-read.h:
36561         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
36562           Add MS RLE support. I added some functions to read out strf chunks
36563           into strf chunks and the data behind it. This is usually color
36564           palettes (as in RLE, but also in 8-bit RGB). Also use those during
36565           caps creation. Lastly, add ADPCM (similar to wavparse - which
36566           should eventually be rifflib based).
36567         * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
36568         (gst_matroska_demux_init), (gst_matroska_demux_reset):
36569         * gst/matroska/matroska-demux.h:
36570           Remove placeholders for some prehistoric tagging system. Didn't add
36571           support for any tag system really anyway.
36572         * gst/qtdemux/qtdemux.c:
36573           Add support for audio/x-m4a (MPEG-4) through spider.
36574         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
36575         (gst_wavparse_loop):
36576           ADPCM support (#135862). Increase max. buffer size because we
36577           cannot split buffers for ADPCM (screws references) and I've seen
36578           files with 2048 byte chunks. 4096 seems safe for now.
36579
36580 2004-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
36581
36582         * configure.ac: bump nano to 1
36583
36584 === release 0.8.1 ===
36585
36586 2004-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
36587
36588         * configure.ac: releasing 0.8.1, "Comforting Sounds"
36589
36590 2004-04-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36591
36592         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
36593           Fix typo in divxversion (3 instead of 4 for "DIVX" fourcc).
36594           Fixes #140058
36595
36596 2004-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
36597
36598         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_plugin_init):
36599           lower rank of dvddemux so that it's not used for mpeg playback.
36600
36601 2004-04-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36602
36603         * configure.ac:
36604           save libs correctly when checking mad
36605
36606 2004-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
36607
36608         * ext/mad/gstid3tag.c: (plugin_init):
36609           lower rank of id3tag as proposed by Benjamin.  Fixes #139926.
36610
36611 2004-04-13  David Schleef  <ds@schleef.org>
36612
36613         * common/m4/gst-feature.m4: Call -config scripts with
36614         --plugin-libs if it is supported.
36615         * gst/avi/gstavimux.c: (gst_avimux_vidsinkconnect): sequences of
36616         JPEG images are image/jpeg.
36617         * gst/debug/Makefile.am:
36618         * gst/debug/negotiation.c: (gst_negotiation_class_init),
36619         (gst_negotiation_getcaps), (gst_negotiation_pad_link),
36620         (gst_negotiation_update_caps), (gst_negotiation_get_property),
36621         (gst_negotiation_plugin_init): Add a property that acts like
36622         filter caps.
36623         * testsuite/gst-lint:  Move license checking to be a standard
36624         test.
36625
36626 2004-04-13  David Schleef  <ds@schleef.org>
36627
36628         * gst/avi/gstavidemux.c: (gst_avi_demux_reset): Fix memleak.
36629         patch from Sebastien Cote (bug #139958)
36630
36631 2004-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
36632
36633         * examples/gstplay/Makefile.am:
36634         * examples/gstplay/player.c: (main):
36635           make the commandline player example use gconf settings
36636
36637 2004-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
36638
36639         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
36640         (gst_cacasink_sinkconnect), (gst_cacasink_init),
36641         (gst_cacasink_chain), (gst_cacasink_open), (gst_cacasink_close):
36642           init/end library during state transition, not object
36643           creation/disposal.  get rid of custom dispose handler.
36644
36645
36646 2004-04-12  Christian Schaller <Uraeus@gnome.org>
36647
36648         * sys/oss/gstosselement.c: s/lstat/stat/ from freeBSD, since it can
36649         be a symlink
36650
36651 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36652
36653         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_data):
36654           Handle JUNK chunks inside data section. Prevents warnings.
36655
36656 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36657
36658         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
36659         (gst_riff_create_video_template_caps):
36660           Add MS video v1.
36661         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
36662         (gst_avi_demux_stream_data):
36663           Add support for "rec-list" chunks.
36664
36665 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36666
36667         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
36668           Fix another codecname mismatch.
36669
36670 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36671
36672         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
36673           Fix divx caps mismatch and move from video/x-jpeg to image/jpeg
36674           so that MJPEG plays back.
36675
36676 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36677
36678         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
36679         (gst_mp1videoparse_real_chain), (gst_mp1videoparse_change_state):
36680         * gst/mpeg1videoparse/gstmp1videoparse.h:
36681           Fix for some slight mis-cuts in buffer parsing, and for some
36682           potential overflows or faults-causers. Adds disconts. Also fixes
36683           #139105 while we're at it.
36684
36685 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36686
36687         * configure.ac:
36688         * sys/v4l2/gstv4l2element.h:
36689           Workaround for missing struct v4l2_buffer declaration in Suse 9
36690           and Mandrake 10 linux/videodev2.h header file (#135919).
36691
36692 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36693
36694         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
36695           Bail out if no filename was given.
36696
36697 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36698
36699         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps),
36700         (gst_v4l2_fourcc_from_structure):
36701           Add Y41B/Y42B YUV formats (see #125732), fix Y41P (was typo'ed to
36702           Y41B somewhere).
36703
36704 2004-04-09  Benjamin Otte  <otte@gnome.org>
36705
36706         * ext/gnomevfs/gstgnomevfssink.c:
36707         (_gst_boolean_allow_overwrite_accumulator),
36708         (gst_gnomevfssink_class_init):
36709           fix erase signal - if any handler returns false the file will not be
36710           overwritten. If no handler is connected, the file will not be
36711           overwritten either.
36712           renamed signal to "allow-overwrite"
36713         * ext/mad/gstid3tag.c: (tag_list_to_id3_tag_foreach):
36714           free string when adding it to ID3 failed
36715         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
36716           unref event when done
36717         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
36718           free caps
36719         * gst/typefind/gsttypefindfunctions.c:
36720         (mpeg_video_stream_type_find):
36721           fix invalid read
36722
36723 2004-04-08  David Schleef  <ds@schleef.org>
36724
36725         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
36726         (gst_ffmpegcolorspace_register): Change rank to PRIMARY.
36727
36728 2004-04-08  David Schleef  <ds@schleef.org>
36729
36730         * gst/colorspace/gstcolorspace.c: Don't advertise a conversion
36731         we don't support (bug #139532)
36732
36733 2004-04-07  Thomas Vander Stichele  <thomas at apestaart dot org>
36734
36735         * ext/mad/gstmad.c: (gst_mad_handle_event),
36736         (gst_mad_check_caps_reset), (gst_mad_chain),
36737         (gst_mad_change_state):
36738           only set explicit caps if they haven't been set before for
36739           this stream.  MPEG-audio sample rate/channels aren't allowed
36740           to change in-stream.
36741           Fixes #139382
36742
36743 2004-04-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
36744
36745         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_base_init),
36746         (_gst_boolean_did_something_accumulator),
36747         (gst_gnomevfssink_class_init), (gst_gnomevfssink_dispose),
36748         (gst_gnomevfssink_init), (gst_gnomevfssink_set_property),
36749         (gst_gnomevfssink_get_property), (gst_gnomevfssink_open_file),
36750         (gst_gnomevfssink_close_file), (gst_gnomevfssink_chain),
36751         (gst_gnomevfssink_change_state):
36752           Fix erase signal. Don't erase by default. Remove handoff signal.
36753           Remove erase property. Don't segfault. General cleanup.
36754
36755 2004-04-07  Benjamin Otte  <otte@gnome.org>
36756
36757         * gst-libs/gst/gconf/test-gconf.c: (main):
36758           add missing gst_init
36759
36760 2004-04-07  Benjamin Otte  <otte@gnome.org>
36761
36762         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
36763           free the mutexes, too
36764
36765 2004-04-07  Benjamin Otte  <otte@gnome.org>
36766
36767         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
36768           actually free the URI string
36769         * ext/mad/gstid3tag.c: (gst_id3_tag_src_event):
36770           compute offset correctly when passing discont events
36771         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
36772           don't leak discont events
36773         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
36774           add some missing breaks so caps aren't copied randomly
36775         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream):
36776           if we realloc memory, we better use it
36777
36778 2004-04-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36779
36780         * ext/mad/gstmad.c: (normal_seek):
36781           fix GST_FORMAT_TIME usage
36782
36783 2004-04-05  David Schleef  <ds@schleef.org>
36784
36785         * ext/kio/kiosrc.cpp:  Undefine KDE_DEPRECATED so we can use
36786         a deprecated function (hack!)
36787
36788 2004-04-05  Benjamin Otte  <otte@gnome.org>
36789
36790         * ext/esd/esdmon.c: (gst_esdmon_get):
36791           fix nonterminated vararg and memleak
36792
36793 2004-04-05  Benjamin Otte  <otte@gnome.org>
36794
36795         * ext/ladspa/gstladspa.c: (gst_ladspa_class_init),
36796         (gst_ladspa_init), (gst_ladspa_force_src_caps),
36797         (gst_ladspa_set_property), (gst_ladspa_get_property),
36798         (gst_ladspa_instantiate), (gst_ladspa_activate),
36799         (gst_ladspa_deactivate), (gst_ladspa_loop), (gst_ladspa_chain):
36800           clean up debugging
36801
36802 2004-04-05  Stefan Kost <kost@imn.htwk-leipzig.de>
36803
36804         reviewed by Benjamin Otte  <otte@gnome.org>
36805
36806         * ext/ladspa/gstladspa.c: (gst_ladspa_class_init):
36807           check for broken LADSPA parameters (fixes #138635)
36808
36809 2004-04-05  Benjamin Otte  <otte@gnome.org>
36810
36811         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps):
36812           advertise buffer-frames correctly on sinkpads
36813
36814 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
36815
36816         * ext/mad/gstmad.c: (gst_mad_get_type), (gst_mad_layer_get_type),
36817         (gst_mad_mode_get_type), (gst_mad_emphasis_get_type),
36818         (gst_mad_get_event_masks), (gst_mad_get_query_types), (index_seek),
36819         (normal_seek), (gst_mad_src_event), (gst_mad_handle_event),
36820         (gst_mad_check_caps_reset), (gst_mad_chain):
36821         add more debugging, only reset caps when we're not in error state
36822
36823 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
36824
36825         * ext/mad/gstmad.c: add debugging category, comment + cleanups
36826
36827 2004-04-05  Julio M. Merino Vidal  <jmmv@menta.net>
36828
36829         reviewed by Benjamin Otte  <otte@gnome.org>
36830
36831         * configure.ac:
36832           fix == in test(1) operator
36833
36834 2004-04-05  Julio M. Merino Vidal  <jmmv@menta.net>
36835
36836         reviewed by Benjamin Otte  <otte@gnome.org>
36837
36838         * configure.ac:
36839           fix --export-symblos-regex to a working regex.
36840
36841 2004-04-04  Benjamin Otte  <otte@gnome.org>
36842
36843         * sys/oss/.cvsignore:
36844           add for oss_probe
36845
36846 2004-04-03  Tim-Phillip Müller <t.i.m@zen.co.uk>
36847
36848         reviewed by Benjamin Otte  <otte@gnome.org>
36849
36850         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
36851           add missing 'new_media' argument (fixes #138168)
36852         * gst/matroska/matroska-demux.c:
36853         (gst_matroska_demux_handle_seek_event):
36854           add vararg terminator (fixes #138169)
36855
36856 2004-04-02  David Schleef  <ds@schleef.org>
36857
36858         * ext/gdk_pixbuf/Makefile.am:  Make sure gstgdkanimation.h is
36859         disted (bug #138914)
36860
36861 2004-04-01  Benjamin Otte  <otte@gnome.org>
36862
36863         * ext/alsa/gstalsa.c: (gst_alsa_change_state),
36864         (gst_alsa_close_audio):
36865           handle case better where a soundcard can't pause
36866         * ext/ogg/gstoggdemux.c:
36867           don't crash when we get events but don't have pads yet
36868
36869 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
36870
36871         * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
36872           throw an error if we couldn't probe any caps.
36873
36874 2004-04-01  Jan Schmidt  <thaytan@mad.scientist.com>
36875
36876         * ext/dvdnav/gst-dvd:
36877         Add a really simple sample DVD player
36878
36879 2004-04-01  Jan Schmidt  <thaytan@mad.scientist.com>
36880
36881         * ext/a52dec/gsta52dec.c: (gst_a52dec_get_type), (gst_a52dec_init),
36882         (gst_a52dec_push), (gst_a52dec_handle_event),
36883         (gst_a52dec_update_streaminfo), (gst_a52dec_loop),
36884         (gst_a52dec_change_state):
36885         * ext/a52dec/gsta52dec.h:
36886           Use a debug category, Output timestamps correctly
36887           Emit tag info, Handle events, tell liba52dec about cpu
36888           capabilities so it can use MMX etc.
36889         * ext/dv/gstdvdec.c: (gst_dvdec_loop), (gst_dvdec_change_state):
36890           Fix a crasher accessing invalid memory
36891         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init),
36892         (dvdnavsrc_update_highlight), (dvdnavsrc_loop),
36893         (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
36894         (dvdnavsrc_event), (dvdnavsrc_get_formats), (dvdnavsrc_convert),
36895         (dvdnavsrc_query):
36896           Some support for byte-format seeking.
36897           Small fixes for still frames and menu button overlays
36898         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
36899         (gst_mpeg2dec_alloc_buffer):
36900           Use a debug category. Adjust the report level of several items to
36901           LOG. Call mpeg2_custom_fbuf to mark our buffers as 'custom buffers'
36902           so it doesn't lose the GstBuffer pointer
36903         * gst/debug/Makefile.am:
36904         * gst/debug/gstdebug.c: (plugin_init):
36905         * gst/debug/gstnavseek.c: (gst_navseek_get_type),
36906         (gst_navseek_base_init), (gst_navseek_class_init),
36907         (gst_navseek_init), (gst_navseek_seek),
36908         (gst_navseek_handle_src_event), (gst_navseek_set_property),
36909         (gst_navseek_get_property), (gst_navseek_chain),
36910         (gst_navseek_plugin_init):
36911         * gst/debug/gstnavseek.h:
36912           Add the navseek debug element for seeking back and forth in a
36913           video stream using arrow keys.
36914         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_get_type),
36915         (gst_mpeg2subt_base_init), (gst_mpeg2subt_class_init),
36916         (gst_mpeg2subt_init), (gst_mpeg2subt_finalize),
36917         (gst_mpeg2subt_getcaps_video), (gst_mpeg2subt_link_video),
36918         (gst_mpeg2subt_handle_video), (gst_mpeg2subt_src_event),
36919         (gst_mpeg2subt_parse_header), (gst_get_nibble),
36920         (gst_setup_palette), (gst_get_rle_code), (gst_draw_rle_line),
36921         (gst_merge_uv_data), (gst_mpeg2subt_merge_title),
36922         (gst_update_still_frame), (gst_mpeg2subt_handle_subtitle),
36923         (gst_mpeg2subt_handle_dvd_event), (gst_mpeg2subt_loop):
36924         * gst/mpeg2sub/gstmpeg2subt.h:
36925           Pretty much a complete rewrite. Now a loopbased element. May still
36926           require work to properly synchronise subtitle buffers.
36927         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private),
36928         (gst_dvd_demux_send_subbuffer):
36929         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_subbuffer):
36930           Don't attempt to create subbuffers of size 0
36931           Reduce a couple of error outputs to warnings.
36932         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect),
36933         (gst_y4mencode_chain):
36934         Output the y4m frame header correctly.
36935
36936 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
36937
36938         * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
36939           throw errors instead of allowing SIGFPE
36940
36941 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
36942
36943         * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_string),
36944         (gst_gconf_render_bin_from_key):
36945           leak plugging and style fixing
36946
36947 2004-03-31  David Schleef  <ds@schleef.org>
36948
36949         * gst/audioscale/gstaudioscale.c: (gst_audioscale_expand_value),
36950         (gst_audioscale_getcaps): Fix getcaps to expand and union lists.
36951         (bug #138225)
36952         * gst/debug/Makefile.am:
36953         * gst/debug/breakmydata.c: (gst_break_my_data_plugin_init):
36954         * gst/debug/gstdebug.c: (plugin_init):  Merge elements into one
36955         plugin.
36956         * gst/debug/negotiation.c: (gst_gst_negotiation_get_type),
36957         (gst_negotiation_base_init), (gst_negotiation_class_init),
36958         (gst_negotiation_init), (gst_negotiation_getcaps),
36959         (gst_negotiation_pad_link), (gst_negotiation_chain),
36960         (gst_negotiation_set_property), (gst_negotiation_get_property),
36961         (gst_negotiation_plugin_init):  New element to talk about random
36962         negotiation things happening in a pipeline.
36963
36964 2004-03-31  Thomas Vander Stichele  <thomas at apestaart dot org>
36965
36966         * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
36967           fix integer addition with help of Stefan Kost
36968
36969 2004-03-31  Thomas Vander Stichele  <thomas at apestaart dot org>
36970
36971         * po/nl.po: updated Dutch translation (Elros Cyriatan)
36972
36973 2004-03-30  David Schleef  <ds@schleef.org>
36974
36975         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer),
36976         (gst_mpeg2dec_negotiate_format):  Handle Y42B-format MPEG
36977         video, patch from Matthew.Spencer@eu.sony.com (Matthew Spencer)
36978         (bug #137504)
36979         * ext/mpeg2dec/gstmpeg2dec.h:
36980
36981 2004-03-30  David Schleef  <ds@schleef.org>
36982
36983         * ext/gdk_pixbuf/Makefile.am: Remove spurious rules. (bug #136527)
36984
36985 2004-03-30  David Schleef  <ds@schleef.org>
36986
36987         * tools/gst-launch-ext-m.m:  Applied patch from gnome@flyn.org (W.
36988         Michael Petullo) to handle .mov
36989
36990 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36991
36992         * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
36993         (gst_osselement_rate_check_rate):
36994           probe caps correctly for sound cards that only support one format
36995
36996 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
36997
36998         * ext/kio/kiosrc.cpp: (process_events):
36999           update handling event processing if inside KDE - untested
37000
37001 2004-03-29  David Schleef  <ds@schleef.org>
37002
37003         * ext/hermes/gsthermescolorspace.c: (plugin_init): decrease rank
37004         by 2 to not interfere with other colorspaces.
37005         * ext/pango/gsttextoverlay.c: (plugin_init): change rank to NONE
37006         * gst/colorspace/gstcolorspace.c: (plugin_init): decrease rank by
37007         one to not interfere with ffmpeg_colorspace.
37008
37009 2004-03-29  David Schleef  <ds@schleef.org>
37010
37011         * ext/alsa/gstalsa.c: (gst_alsa_fixate): Don't fixate fields that
37012         aren't in the caps.
37013         * gst/sine/gstsinesrc.c: change rate caps to [1,MAX]
37014         * gst/videocrop/gstvideocrop.c: (plugin_init): Change rank to NONE.
37015
37016 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
37017
37018         * gst-libs/gst/riff/riff-media.c:
37019           fail on error, don't try to set stuff on NULL caps
37020
37021 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
37022
37023         * configure.ac:
37024         * ext/Makefile.am:
37025         * ext/kio/Makefile.am:
37026         * ext/kio/kioreceiver.cpp:
37027         * ext/kio/kioreceiver.h:
37028         * ext/kio/kiosrc.cpp:
37029         * ext/kio/kiosrc.h:
37030           add experimental kiosrc plugin
37031         * ext/alsa/gstalsaplugin.c: (plugin_init):
37032           initialize debugging category only when we're sure registering the
37033           plugins worked.
37034
37035 2004-03-29  Thomas Vander Stichele  <thomas at apestaart dot org>
37036
37037         * examples/gstplay/player.c: (main):
37038         * gst-libs/gst/play/play.c: (gst_play_class_init),
37039         (gst_play_set_location), (gst_play_set_data_src),
37040         (gst_play_set_video_sink), (gst_play_set_audio_sink),
37041         (gst_play_set_visualization), (gst_play_connect_visualization):
37042           check return values of element_set_state and return FALSE where
37043           failed
37044
37045 2004-03-29  Benjamin Otte  <otte@gnome.org>
37046
37047         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
37048           try harder to check if an event is really a discont
37049
37050 2004-03-29  Thomas Vander Stichele  <thomas at apestaart dot org>
37051
37052         * po/LINGUAS: adding Azerbaijani (M??tin ??mirov)
37053         * po/az.po:
37054
37055 2004-03-28  Benjamin Otte  <otte@gnome.org>
37056
37057         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
37058         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
37059         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
37060           get rid of non-standard "..." ranges in case statements.
37061
37062 2004-03-27  Martin Soto  <martinsoto@users.sourceforge.net>
37063
37064         * gst/mpegstream/gstmpegdemux.c:
37065         * gst/mpegstream/gstmpegdemux.h: Complete overhaul. All DVD
37066         specific functionality split to the new dvddemux element.
37067         * gst/mpegstream/gstdvddemux.c:
37068         * gst/mpegstream/gstdvddemux.h: New demultiplexer for DVD (VOB)
37069         streams, derived from mpegdemux.
37070         * gst/mpegstream/gstmpegparse.c: Discontinuity handling cleaned
37071         up. SCR based timestamp rewriting can be turned off (will probably
37072         completely disappear soon).
37073         * ext/dvdnav/dvdnavsrc.c: Changes resulting from a few months
37074         hacking. General cleanup. All printf statements replaced by
37075         debugging messages. Almost complete libdvdnav support.
37076         (dvdnavsrc_class_init): Got rid of unnecessary signals (replaced
37077         by events. New properties for audio and subpicture languages.
37078         (dvdnavsrc_update_highlight): Now uses events.
37079         (dvdnavsrc_user_op): Cleaned up.
37080         (dvdnavsrc_get): Renamed to dvdnavsrc_loop (element is now loop
37081         based). Lots of cleanup, and propper support for most libdvdnav
37082         events.
37083         (dvdnavsrc_make_dvd_event): New function.
37084         (dvdnavsrc_make_dvd_nav_packet_event): New function.
37085         (dvdnavsrc_make_clut_change_event): New function.
37086
37087 2004-03-26  Benjamin Otte  <otte@gnome.org>
37088
37089         * gst/typefind/gsttypefindfunctions.c: (theora_type_find):
37090           fix bug where typefinding would claim it's theora whenever less then
37091           7 bytes of data were available
37092
37093 2004-03-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37094
37095         * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link),
37096         (gst_alawdec_base_init), (gst_alawdec_class_init),
37097         (gst_alawdec_init), (gst_alawdec_chain):
37098         * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link),
37099         (gst_alawenc_base_init), (gst_alawenc_class_init),
37100         (gst_alawenc_init), (gst_alawenc_chain):
37101         * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link),
37102         (gst_mulawdec_base_init), (gst_mulawdec_class_init),
37103         (gst_mulawdec_init), (gst_mulawdec_chain):
37104         * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link),
37105         (gst_mulawenc_base_init), (gst_mulawenc_class_init),
37106         (gst_mulawenc_init), (gst_mulawenc_chain):
37107           Fix capsnego in all four, remove the unused property functions and
37108           simplify the chain functions slightly. I guess we could use macros
37109           or something similar for those, since the code is so similar, but
37110           I'm currently too lazy...
37111
37112 2004-03-24  David Schleef  <ds@schleef.org>
37113
37114         * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
37115         (gst_osselement_close_audio), (gst_osselement_probe_caps),
37116         (gst_osselement_get_format_structure),
37117         (gst_osselement_rate_probe_check), (gst_osselement_rate_add_range),
37118         (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate),
37119         (gst_osselement_rate_int_compare): Add code to handle rate probing
37120         (bug #120883)
37121         * sys/oss/gstosselement.h: same
37122         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_getcaps):
37123         Use rate probing provided by osselement.
37124         * sys/oss/gstosssrc.c: (gst_osssrc_init), (gst_osssrc_getcaps): same
37125
37126 2004-03-24  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37127
37128         * ext/xvid/gstxvidenc.c: (gst_xvidenc_set_property),
37129         (gst_xvidenc_get_property):
37130           ulong/int mess-up.
37131
37132 2004-03-24  David Schleef  <ds@schleef.org>
37133
37134         * ext/speex/gstspeexdec.c: (gst_speexdec_base_init),
37135         (gst_speexdec_init):
37136         * ext/speex/gstspeexenc.c: (gst_speexenc_base_init),
37137         (gst_speexenc_init):  Create the pad template correctly (from
37138         the static pad template, not a NULL pointer.)
37139
37140 2004-03-25  Benjamin Otte  <otte@gnome.org>
37141
37142         * gst/debug/Makefile.am:
37143         * gst/debug/breakmydata.c:
37144           add element that quasi-randomly changes bytes in the stream.
37145           Intended use is robustness checking of demuxers and decoders in
37146           media tests.
37147
37148 2004-03-24  Benjamin Otte  <otte@gnome.org>
37149
37150         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
37151         (gst_alsa_probe_hw_params):
37152         * ext/alsa/gstalsa.h:
37153           debugging output fixes
37154
37155 2004-03-24  Benjamin Otte  <otte@gnome.org>
37156
37157         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_set_property):
37158           don't g_return_if_fail if element is PLAYING, fail silently as every
37159           other element.
37160         * gst/effectv/gstquark.c: (gst_quarktv_chain):
37161           only fix needed for cast lvalue issues in gst-plugins
37162         * gst/volenv/gstvolenv.c: (gst_volenv_init):
37163           add proxy_getcaps
37164
37165 2004-03-24  Benjamin Otte  <otte@gnome.org>
37166
37167         * gst/level/gstlevel.c: (gst_level_init):
37168           add proxying getcaps function, so level doesn't advertise impossible
37169           caps
37170
37171 2004-03-24  David Schleef  <ds@schleef.org>
37172
37173         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
37174         (gst_qtdemux_loop_header), (qtdemux_parse_moov), (qtdemux_parse),
37175         (qtdemux_node_dump_foreach), (qtdemux_dump_mvhd),
37176         (qtdemux_dump_tkhd), (qtdemux_dump_elst), (qtdemux_dump_mdhd),
37177         (qtdemux_dump_hdlr), (qtdemux_dump_vmhd), (qtdemux_dump_dref),
37178         (qtdemux_dump_stsd), (qtdemux_dump_stts), (qtdemux_dump_stss),
37179         (qtdemux_dump_stsc), (qtdemux_dump_stsz), (qtdemux_dump_stco),
37180         (qtdemux_dump_co64), (qtdemux_dump_dcom), (qtdemux_dump_cmvd),
37181         (qtdemux_parse_tree), (qtdemux_parse_trak):  Fix debugging
37182         messages.  Divide the chunk size by the compression ratio
37183         (needed for MACE audio)
37184
37185 2004-03-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37186
37187         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
37188           Fix buffer overflow read error.
37189
37190 2004-03-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37191
37192         * ext/alsa/gstalsa.h:
37193           Remove unused entry.
37194         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
37195           Add cinepak.
37196         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
37197         (gst_videodrop_link), (gst_videodrop_chain):
37198           Fix, sort of. Was horribly broken with new capsnego. Bah...
37199
37200 2004-03-23  Jeremy Simon  <jesimon@libertysurf.fr>
37201
37202         * gst/typefind/gsttypefindfunctions.c: (ape_type_find),
37203         (plugin_init):
37204         Add a monkeysaudio typefind function
37205
37206 2004-03-23  Johan Dahlin  <johan@gnome.org>
37207
37208         * gst-libs/gst/play/play.c (gst_play_audio_fixate)
37209         (gst_play_video_fixate): Check so the structure has the field
37210         before trying to fixate them, this makes it possible to have
37211         fakesinks for video and audio output without printing errors on
37212         the output console.
37213
37214 2004-03-22  David Schleef  <ds@schleef.org>
37215
37216         * sys/oss/Makefile.am:
37217         * sys/oss/oss_probe.c: (main), (probe_check), (add_range),
37218         (check_rate), (add_rate):  Rate probing test app.
37219
37220 2004-03-21  Benjamin Otte  <otte@gnome.org>
37221
37222         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
37223         (_fixate_caps_to_int), (gst_audio_convert_fixate):
37224           add a fixation function that pretty much does the right thing (fixes
37225           #137556)
37226
37227 2004-03-20  David I. Lehn  <dlehn@users.sourceforge.net>
37228
37229         * configure.ac: GST_PACKAGE default: s/GStreamer/GStreamer Plugins/
37230
37231 2004-03-20  Tim-Phillip Müller <t.i.m@zen.co.uk>
37232
37233         reviewed by: Benjamin Otte  <otte@gnome.org>
37234
37235         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
37236           terminate gst_event_new_discontinuous correctly (fixes parts of
37237           #137711)
37238
37239 2004-03-19  David Schleef  <ds@schleef.org>
37240
37241         * gst-libs/gst/Makefile.am:  Enable xoverlay unconditionally,
37242         since it doesn't depend on X, and it's part of our ABI.
37243
37244 2004-03-19  Iain <iain@prettypeople.org>
37245
37246         * gst/interleave/deinterleave.c (deinterleave_sink_link): Use the
37247         is_int in the structure, not the local variable.
37248
37249 2004-03-19  David Schleef  <ds@schleef.org>
37250
37251         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_change_state),
37252         (gst_rfbsrc_init), (gst_rfbsrc_getcaps), (gst_rfbsrc_fixate),
37253         (gst_rfbsrc_link), (gst_rfbsrc_paint_rect), (gst_rfbsrc_get):
37254         Improvements in caps negotiation.
37255
37256 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
37257
37258         * po/LINGUAS:
37259         * po/af.po:
37260           adding Afrikaans (Petri Jooste)
37261
37262 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
37263
37264         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
37265         (gst_ffmpegcolorspace_chain):
37266         throw error instead of g_critical (#137588)
37267
37268 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
37269
37270         * Makefile.am:
37271         * configure.ac:
37272           dist common and m4 correctly
37273         * po/sv.po:
37274
37275 2004-03-17  David Schleef  <ds@schleef.org>
37276
37277         * pkgconfig/gstreamer-media-info.pc.in:  Add Version.
37278         (bug #137348)
37279
37280 2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
37281
37282         * po/LINGUAS:
37283         * po/sv.po:
37284           adding Swedish translation (Christian Rose)
37285
37286 2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
37287
37288         * Makefile.am: use release.mak
37289
37290 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
37291
37292         * common/ChangeLog:
37293         * common/gst-autogen.sh:
37294           add some explanation about the version detection
37295         * configure.ac:
37296           fix X check
37297
37298 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
37299
37300         * configure.ac: bump nano to 1
37301
37302 === release 0.8.0 ===
37303
37304 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
37305
37306         * configure.ac: release 0.8.0, "Pharmaceutical Itch"
37307
37308 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
37309
37310         * configure.ac:
37311           update libtool version
37312         * gst-libs/gst/media-info/Makefile.am:
37313           actually use libtool version
37314
37315 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
37316
37317         * configure.ac: fix speex detection to work with 1.0 but not 1.1
37318
37319 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
37320
37321         * configure.ac:
37322         * gst-plugins.spec.in:
37323         * pkgconfig/Makefile.am:
37324         * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
37325         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
37326         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
37327         * pkgconfig/gstreamer-libs.pc.in:
37328         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
37329         * pkgconfig/gstreamer-play-uninstalled.pc.in:
37330         * pkgconfig/gstreamer-plugins-uninstalled.pc.in:
37331         * pkgconfig/gstreamer-plugins.pc.in:
37332           remove @VERSION@ from some of the pc files since core and plugins
37333           are decoupled.
37334           created gstreamer-plugins.pc as it's a better name, but keeping
37335           -libs around for now to get fixes upstream done first.
37336
37337 2004-03-15  Julien MOUTTE <julien@moutte.net>
37338
37339         * gst-libs/gst/play/play.c: (gst_play_get_framerate),
37340         (gst_play_get_sink_element): First draft of gst_play_get_framerate.
37341         * gst-libs/gst/play/play.h:
37342
37343 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
37344
37345         * *.c, *.cc: don't mix tabs and spaces
37346
37347 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
37348
37349         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
37350           use the new ffmpegcolorspace
37351         * gst-plugins.spec.in:
37352           package new colorspace and media-info
37353         * configure.ac:
37354         * pkgconfig/Makefile.am:
37355           fix some more disting issues
37356         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
37357         * pkgconfig/gstreamer-media-info.pc.in:
37358           generate media-info pc files
37359
37360 2004-03-15  Johan Dahlin  <johan@gnome.org>
37361
37362         * *.h: Revert indenting
37363
37364 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
37365
37366         * configure.ac:
37367           adding ffmpegcolorspace element
37368         * gst/ffmpegcolorspace/Makefile.am:
37369         * gst/ffmpegcolorspace/avcodec.h:
37370         * gst/ffmpegcolorspace/common.h:
37371         * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
37372         * gst/ffmpegcolorspace/dsputil.h:
37373         * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
37374         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
37375         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_pix_fmt_to_caps),
37376         (gst_ffmpeg_caps_to_pix_fmt):
37377         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
37378         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
37379         (gst_ffmpegcolorspace_caps_remove_format_info),
37380         (gst_ffmpegcolorspace_getcaps), (gst_ffmpegcolorspace_pad_link),
37381         (gst_ffmpegcolorspace_get_type), (gst_ffmpegcolorspace_base_init),
37382         (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_init),
37383         (gst_ffmpegcolorspace_chain), (gst_ffmpegcolorspace_change_state),
37384         (gst_ffmpegcolorspace_set_property),
37385         (gst_ffmpegcolorspace_get_property),
37386         (gst_ffmpegcolorspace_register):
37387         * gst/ffmpegcolorspace/imgconvert.c:
37388         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
37389         (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
37390         (avpicture_get_size), (avcodec_get_pix_fmt_loss),
37391         (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
37392         (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
37393         (yuv422_to_yuv420p), (yuv422_to_yuv422p), (yuv422p_to_yuv422),
37394         (C_JPEG_TO_CCIR), (img_convert_init), (img_apply_table),
37395         (shrink41), (shrink21), (shrink12), (shrink22), (shrink44),
37396         (grow21_line), (grow41_line), (grow21), (grow22), (grow41),
37397         (grow44), (conv411), (gif_clut_index), (build_rgb_palette),
37398         (bitcopy_n), (mono_to_gray), (monowhite_to_gray),
37399         (monoblack_to_gray), (gray_to_mono), (gray_to_monowhite),
37400         (gray_to_monoblack), (avpicture_alloc), (avpicture_free),
37401         (is_yuv_planar), (img_convert), (get_alpha_info_pal8),
37402         (img_get_alpha_info), (deinterlace_line),
37403         (deinterlace_line_inplace), (deinterlace_bottom_field),
37404         (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
37405         * gst/ffmpegcolorspace/imgconvert_template.h:
37406         * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
37407         * gst/ffmpegcolorspace/mmx.h:
37408         * gst/ffmpegcolorspace/utils.c: (avcodec_init):
37409           adding ffmpegcolorspace element supplied by Ronald after cleaning
37410           up and pulling in the right bits of upstream source.
37411           I'm sure a better C/compiler wizard could do some cleaning up (for
37412           example use GLIB's malloc stuff), but as a first pass this
37413           works very well
37414
37415 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
37416
37417         * ext/alsa/gstalsa.h:
37418           I assume Ronald forgot to commit the change to have cardname
37419           as a struct member.  Expect some public spanking at the next
37420           opportunity.
37421
37422 2004-03-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37423
37424         * ext/alsa/gstalsa.c: (gst_alsa_get_property),
37425         (gst_alsa_open_audio), (gst_alsa_close_audio):
37426         * ext/alsa/gstalsa.c:
37427           Don't open the device if we're a mixer (= padless).
37428         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_class_init),
37429         (gst_alsa_mixer_init), (gst_alsa_mixer_open),
37430         (gst_alsa_mixer_close), (gst_alsa_mixer_change_state):
37431           Open mixer during state change rather than during object
37432           initialization. Also, get a device name. Currently in a somewhat
37433           hackish fashion, but I didn't really find something better.
37434
37435 2004-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
37436
37437         * *.c, *.h: run gst-indent
37438
37439 2004-03-14  Benjamin Otte  <otte@gnome.org>
37440
37441         * gst/modplug/gstmodplug.cc:
37442         * gst/modplug/gstmodplug.h:
37443           set correct timestamps on outgoing buffers
37444
37445 2004-03-14  Benjamin Otte  <otte@gnome.org>
37446
37447         * gst/modplug/gstmodplug.cc:
37448           handle events - don't do crap when a discont arrives that's not
37449           necessary
37450           This allows correct loading and playback of mods in Rhythmbox
37451
37452 2004-03-14  Benjamin Otte  <otte@gnome.org>
37453
37454         * configure.ac:
37455         * gst-libs/gst/gconf/Makefile.am:
37456         * pkgconfig/Makefile.am:
37457           move gstreamer-gconf pkgconfig files to pkgconfig/ dir. Make sure
37458           they get rebuilt properly
37459         * configure.ac:
37460           when checking for vorbis, try pkgconfig first.
37461         * gst/modplug/gstmodplug.cc:
37462           add fixate function
37463
37464 2004-03-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37465
37466         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
37467           Fix for obvious mistake, where we first shift the offset and then
37468           read a samplesize element assuming the old offset. Note that this
37469           part still has something weird, i.e. my movies containing those
37470           don't actually play well, but at least there's something that looks
37471           like sound now.
37472
37473 2004-03-14  Jan Schmidt  <thaytan@mad.scientist.com>
37474         * gst/typefind/gsttypefindfunctions.c: (speex_type_find),
37475         (plugin_init):
37476         Add a typefind function for speex format
37477
37478 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37479
37480         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps),
37481         (gst_asf_demux_setup_pad):
37482           Use 25fps as our "fake" fps value (marked for fixage in 0.9.x)
37483           instead of 0. Reason is simple: some elements have a fps range
37484           of 1-max instead of 0-max. So now ASF video actually works.
37485
37486 2004-03-13  Thomas Vander Stichele  <thomas at apestaart dot org>
37487
37488         * po/LINGUAS:
37489         * po/sr.po:
37490           adding serbian as a language
37491
37492 2004-03-13  Benjamin Otte  <otte@gnome.org>
37493
37494         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
37495           return taglist correctly from _get function, don't gst_pad_push it.
37496           (fixes #137042)
37497
37498 2004-03-13  Jan Schmidt  <thaytan@mad.scientist.com>
37499         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
37500
37501 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37502
37503         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_free_list):
37504         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init),
37505         (gst_alsa_mixer_track_new):
37506         * ext/alsa/gstalsamixertrack.h:
37507           Fix ancient leftovers... MixerTrack is a GObject.
37508
37509 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37510
37511         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
37512         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
37513           Don't block during probing...
37514
37515 2004-03-12  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37516
37517         * ext/alsa/gstalsa.c: (gst_alsa_get_type), (gst_alsa_class_init),
37518         (gst_alsa_get_property), (gst_alsa_probe_get_properties),
37519         (gst_alsa_class_probe_devices), (gst_alsa_class_list_devices),
37520         (gst_alsa_probe_probe_property), (gst_alsa_probe_needs_probe),
37521         (gst_alsa_probe_get_values), (gst_alsa_probe_interface_init),
37522         (gst_alsa_open_audio), (gst_alsa_close_audio):
37523         * ext/alsa/gstalsa.h:
37524           Add propertyprobe interface implementation, add some device-name
37525           property, all this so that it looks good in gnome-volume-control.
37526
37527 2004-03-12  David Schleef  <ds@schleef.org>
37528
37529         * configure.ac: the Hermes library controls hermescolorspace, not
37530         colorspace.
37531         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
37532         (gst_mpeg2dec_init): minor pet peeve: disable code with #ifdef,
37533         not /* */
37534         * ext/sdl/sdlvideosink.c: Change XID to unsigned long.
37535         * ext/sdl/sdlvideosink.h: ditto.
37536         * gst/colorspace/gstcolorspace.c: Fix old comments about Hermes
37537
37538 2004-03-12  Benjamin Otte  <otte@gnome.org>
37539
37540         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_set_xwindow_id),
37541         (gst_x_overlay_got_xwindow_id):
37542         * gst-libs/gst/xoverlay/xoverlay.h:
37543           replace XID with unsigned long to get rid of the xlibs dependency in
37544           XOverlay (fixes #137004)
37545
37546 2004-03-13  Jan Schmidt  <thaytan@mad.scientist.com>
37547         * gst/effectv/gstaging.c: (gst_agingtv_base_init),
37548         (gst_agingtv_setup):
37549         * gst/effectv/gstdice.c: (gst_dicetv_get_type),
37550         (gst_dicetv_base_init), (gst_dicetv_class_init),
37551         (gst_dicetv_setup), (gst_dicetv_init), (gst_dicetv_draw):
37552         * gst/effectv/gstedge.c: (gst_edgetv_get_type),
37553         (gst_edgetv_base_init), (gst_edgetv_class_init), (gst_edgetv_init),
37554         (gst_edgetv_setup), (gst_edgetv_rgb32):
37555         * gst/effectv/gsteffectv.c:
37556         * gst/effectv/gstquark.c: (gst_quarktv_link), (gst_quarktv_init),
37557         (gst_quarktv_set_property):
37558         * gst/effectv/gstrev.c: (gst_revtv_get_type),
37559         (gst_revtv_base_init), (gst_revtv_class_init), (gst_revtv_init),
37560         (gst_revtv_setup), (gst_revtv_rgb32):
37561         * gst/effectv/gstshagadelic.c: (gst_shagadelictv_get_type),
37562         (gst_shagadelictv_base_init), (gst_shagadelictv_class_init),
37563         (gst_shagadelictv_init), (gst_shagadelictv_setup),
37564         (gst_shagadelictv_rgb32):
37565         * gst/effectv/gstvertigo.c: (gst_vertigotv_get_type),
37566         (gst_vertigotv_base_init), (gst_vertigotv_class_init),
37567         (gst_vertigotv_setup), (gst_vertigotv_init), (gst_vertigotv_rgb32):
37568         * gst/effectv/gstwarp.c:
37569         Port everything that can be ported to videofilter and fix up the caps.
37570         Can someone with a big-endian machine please check these?
37571
37572 2004-03-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37573
37574         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_get_time),
37575         (gst_osssink_chain), (gst_osssink_change_state):
37576           Latest fixes for A/V sync, audio playback and such. This is about
37577           all... MPEG playback issues are mostly related to the async build-
37578           up of MPEG files, I cannot fix that. Use basicgthread to solve it.
37579
37580 2004-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
37581
37582         patch from: Stephane Loeuillet
37583
37584         * configure.ac:
37585           use pkg-config for some libraries, falling back to the old .m4 way
37586           (fixes #131270)
37587         * m4/libdv.m4:
37588           removed
37589
37590 2004-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
37591
37592         * configure.ac:
37593         * tools/Makefile.am:
37594         * tools/Makefile.in:
37595         * tools/gst-launch-ext-m.m:
37596         * tools/gst-launch-ext.1.in:
37597         * tools/gst-visualise-m.m:
37598         * tools/gst-visualise.1:
37599         * tools/gst-visualise.1.in:
37600           reorganizing generation of script tools
37601
37602 2004-03-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37603
37604         * ext/divx/gstdivxdec.c:
37605           Downgrade priority. We prefer ffdec_mpeg4.
37606         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps), (gst_faad_srcconnect),
37607         (gst_faad_chain), (gst_faad_change_state):
37608           Fix capsnego. Doesn't work for some sounds because we don't have
37609           a 5:1 to stereo element.
37610         * ext/xvid/gstxvid.c: (plugin_init):
37611           Add priority.
37612         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
37613         (gst_osssink_change_state):
37614           Add discont handling.
37615
37616 2004-03-09  Colin Walters  <walters@verbum.org>
37617
37618         * gst/audioconvert/gstaudioconvert.c: Fix typo in width 8
37619         conversion.
37620
37621 2004-03-09  Benjamin Otte  <otte@gnome.org>
37622
37623         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
37624           the signals take 2 arguments
37625
37626 2004-03-09  David Schleef  <ds@schleef.org>
37627
37628         * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad),
37629         (gst_alsa_fixate): Add fixate function.  (bug #136686)
37630         * ext/alsa/gstalsa.h:
37631         * ext/alsa/gstalsasink.c: (gst_alsa_sink_init):
37632
37633 2004-03-09  Benjamin Otte  <otte@gnome.org>
37634
37635         * ext/mikmod/gstmikmod.c: (gst_mikmod_init), (gst_mikmod_loop),
37636         (gst_mikmod_change_state):
37637         * ext/mikmod/gstmikmod.h:
37638           make mikmod's loop function not loop infinitely and call
37639           gst_element_yield anymore
37640         * gst/modplug/gstmodplug.cc:
37641           fix pad negotiation (fixes #136590)
37642
37643 2004-03-09  David Schleef  <ds@schleef.org>
37644
37645         * ext/lcs/Makefile.am:  Fix so that the lcs colorspace plugin
37646         doesn't conflict with the internal colorspace plugin.
37647         * gst-libs/gst/audio/make_filter:  Use `` instead of $() to
37648         satisfy the crappy-ass shell shipped by a certain vendor.
37649         * gst/videofilter/make_filter: same (bug #135299)
37650
37651 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
37652
37653         * configure.ac: bump nano to 1
37654
37655 === release 0.7.6 ===
37656
37657 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
37658
37659         * configure.in: releasing 0.7.6, "There"
37660
37661 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
37662
37663         * pkgconfig/gstreamer-play-uninstalled.pc.in:
37664         * pkgconfig/gstreamer-play.pc.in:
37665           synchronize the two
37666
37667 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
37668
37669         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_base_init),
37670         (cdparanoia_open), (cdparanoia_event):
37671           fix/add error handling
37672         * po/POTFILES.in:
37673           add cdparanoia source
37674         * tools/Makefile.am:
37675           make scripts executable
37676
37677 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
37678
37679         * configure.ac:
37680         * ext/vorbis/Makefile.am:
37681         * sys/Makefile.am:
37682           remove id3types, vorbisfile and xvideosink from the build (#133783)
37683
37684 2004-03-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37685
37686         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
37687           Fix metadata read crash (#136537).
37688
37689 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
37690
37691         * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
37692         * gst-libs/gst/media-info/media-info.c: (gst_media_info_read):
37693           adding mime types, fixing the one-stop function
37694
37695 2004-03-08  Christian Schaller <Uraeus@gnome.org>
37696
37697         * ext/nas/nassink.c and /ext/nas/nassink.h:
37698         More NAS love from Arwed von Merkatz
37699         So lets all sing 'Can you feel the NAS tonight'
37700
37701 2004-03-08  Christian Schaller <Uraeus@gnome.org>
37702
37703         * tools/gst-launch-ext.in:
37704         Replace vorbisfile with oggdemux/vorbisdec/audioconvert
37705
37706 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
37707
37708         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
37709         (gst_mpeg2dec_init):
37710         remove the user_data pad for now, because it is being used in
37711         fixating causing MPEG playback to fixate on 1000 Hz for playback.
37712         If someone knows how to fix this properly, please do.
37713
37714 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
37715
37716         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
37717         (gst_osssink_get_time):
37718         add a warning, IMO this won't get triggered anymore, remove later
37719
37720 2004-03-07  David Schleef  <ds@schleef.org>
37721
37722         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):  Added Cinepak
37723         format (bug #136470)
37724
37725 2004-03-07  Thomas Vander Stichele  <thomas at apestaart dot org>
37726
37727         * gst-libs/Makefile.am:
37728         * gst-libs/gst/media-info/Makefile.am:
37729         * gst-libs/gst/media-info/media-info-priv.c: (found_tag_callback),
37730         (error_callback), (gst_media_info_error_create),
37731         (gst_media_info_error_element), (gmip_init), (gmip_reset),
37732         (gmi_clear_decoder), (gmip_find_type_pre), (gmip_find_type):
37733         * gst-libs/gst/media-info/media-info-priv.h:
37734         * gst-libs/gst/media-info/media-info-test.c: (main):
37735         * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
37736         (gst_media_info_class_init), (gst_media_info_instance_init),
37737         (gst_media_info_set_source), (gst_media_info_read_with_idler),
37738         (gst_media_info_read_idler), (gst_media_info_read):
37739         * gst-libs/gst/media-info/media-info.h:
37740         fixed, should work now
37741
37742 2004-03-07  Christian Schaller <Uraeus@gnome.org>
37743
37744         * ext/nas/nassink.c:
37745         A bunch of NAS fixes from Arwed von Merkatz
37746
37747 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37748
37749         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
37750         (qtdemux_parse_trak):
37751           Fix crash (j might be greater than n_samples, in which case we're
37752           writing outside the allocated space for the array) and memleak.
37753
37754 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37755
37756         * sys/oss/gstosssink.c: (gst_osssink_chain):
37757           And another caller that couldn't handle delay < 0 (unsigned
37758           integer overflow). Video now continues playing on an audio
37759           buffer underrun, and the clock continues working. Audio still
37760           stalls.
37761
37762 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37763
37764         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
37765         (gst_osssink_get_time):
37766           get_delay() may return values lower than 0. In those cases, we
37767           should not actually cast to *unsigned* int64, that will break
37768           stuff horribly. In my case, it screwed up A/V sync in movies
37769           in totem rather badly.
37770
37771 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
37772
37773         * ext/faac/gstfaac.c: (gst_faac_chain):
37774         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
37775         * ext/libpng/gstpngenc.c: (user_write_data):
37776         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
37777         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
37778         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
37779         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
37780         Fix several misuse of gst_buffer_merge (it doesn't take ownership
37781         of any buffer), should fix some leaks. I hope I didn't unref buffers
37782         that shouldn't be...
37783
37784 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
37785
37786         * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
37787         (deep_notify_callback), (tag_flag_score), (found_tag_callback),
37788         (error_callback), (gmi_reset), (gmi_seek_to_track),
37789         (gmi_get_decoder), (gmi_set_mime), (gmip_find_type_pre),
37790         (gmip_find_type_post), (gmip_find_stream_post),
37791         (gmip_find_track_streaminfo_post):
37792         * gst-libs/gst/media-info/media-info-priv.h:
37793         * gst-libs/gst/media-info/media-info-test.c: (print_tag),
37794         (info_print), (main):
37795         * gst-libs/gst/media-info/media-info.c:
37796         (gst_media_info_error_create), (gst_media_info_error_element),
37797         (gst_media_info_instance_init), (gst_media_info_get_property),
37798         (gst_media_info_new), (gst_media_info_set_source),
37799         (gst_media_info_read_idler), (gst_media_info_read):
37800         * gst-libs/gst/media-info/media-info.h:
37801           first pass at making this work again.  This seems to work on
37802           tagged ogg/vorbis and mp3 files.
37803
37804 2004-03-06  Benjamin Otte  <otte@gnome.org>
37805
37806         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
37807           fix huge leak: gst_buffer_merge doesn't unref the first argument
37808           itself.
37809
37810 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
37811
37812         * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_update_info):
37813           report layer/mode/emphasis
37814
37815 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
37816
37817         * ext/mad/gstmad.c: (gst_mad_chain): fixed caps leak
37818
37819 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
37820
37821         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
37822           signal serial
37823
37824 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
37825
37826         * ext/vorbis/vorbis.c: (plugin_init):
37827         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
37828         (gst_vorbis_dec_init), (vorbis_dec_event):
37829         add debug category
37830         make vorbisdec handle _BYTE and _TIME queries
37831
37832 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
37833
37834         * ext/mad/gstmad.c: (gst_mad_chain): send the average bitrate read
37835           from the xing header
37836
37837 2004-03-06  Benjamin Otte  <otte@gnome.org>
37838
37839         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps),
37840         (gst_audio_convert_link), (gst_audio_convert_change_state),
37841         (gst_audio_convert_buffer_from_default_format):
37842           do conversions from/to float correctly, fix some caps nego errors,
37843           export correct supported caps in template and getcaps, use correct
37844           caps in try_set_caps functions
37845
37846 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
37847
37848         For some reason, I only committed a ChangeLog entry yesterday and
37849         not the corresponding code...
37850         * ext/mad/gstmad.c: Fix detection of Xing headers
37851         * gst/tags/gstid3tag.c: Changes to support TLEN tags
37852
37853 2004-03-06  Benjamin Otte  <otte@gnome.org>
37854
37855         * ext/ogg/gstoggdemux.c: (gst_ogg_get_pad_by_pad),
37856         (gst_ogg_demux_src_query):
37857           make sure to handle the case where there's no current chain
37858           gracefully.
37859
37860 2004-03-05  David Schleef  <ds@schleef.org>
37861
37862         * ext/aalib/gstaasink.c: (gst_aasink_fixate), (gst_aasink_init):
37863         Add fixate function. (bug #131128)
37864         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
37865         (gst_sdlvideosink_fixate):  Add fixate function.
37866         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
37867         Fix attempt to print a non-pointer using GST_PTR_FORMAT.
37868         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt):
37869         Fix missing break that was causing ulaw to be interpreted as
37870         raw int.
37871
37872 2004-03-05  David Schleef  <ds@schleef.org>
37873
37874         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
37875         Fix code that ignores return value of gst_buffer_merge().
37876         (bug #114560)
37877         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_descramble_segment):
37878         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice): same
37879         * testsuite/gst-lint:  Check for above.
37880
37881 2004-03-05  David Schleef  <ds@schleef.org>
37882
37883         * gst/udp/gstudpsrc.c: (gst_udpsrc_get):  Check for unfixed
37884         caps and throw an element error.  (bug #136334)
37885
37886 2004-03-05  David Schleef  <ds@schleef.org>
37887
37888         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_srcgetcaps),
37889         (gst_faad_chain): Fix negotiation.
37890         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_handle_src_event): Add
37891         key and button events.
37892         * gst-libs/gst/floatcast/floatcast.h: Fix a minor bug in this
37893         dung heap of code.
37894         * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in: gstgconf
37895         depends on gconf
37896         * gst-libs/gst/gconf/gstreamer-gconf.pc.in: same
37897         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
37898         (gst_play_video_fixate), (gst_play_audio_fixate): Add a fixate
37899         function to encourage better negotiation, particularly between
37900         audioconvert and osssink.
37901         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
37902         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):  Make some debugging
37903         more important.
37904         * gst/typefind/gsttypefindfunctions.c:  Fix mistake in flash
37905         typefinding.
37906         * gst/vbidec/vbiscreen.c:  Add glib header
37907         * pkgconfig/gstreamer-play.pc.in:  Depends on gst-interfaces.
37908
37909 2004-03-06  Christophe Fergeau  <teuf@users.sourceforge.net>
37910
37911         * ext/mad/gstmad.c: Fix detection of Xing headers
37912         * gst/tags/gstid3tag.c: Changes to support TLEN tags
37913
37914 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
37915
37916         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
37917         (gst_wavparse_pad_convert), (gst_wavparse_pad_query):
37918           debug updates
37919
37920 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
37921
37922         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
37923         * ext/mad/gstmad.c: (gst_mad_init), (is_xhead),
37924         (mpg123_parse_xing_header), (gst_mad_chain): parse Xing header in vbr
37925         files, and report the parsed length as a GST_TAG_DURATION tag.
37926         * gst/tags/gstid3tag.c: support TLEN (duration) tag
37927
37928 2004-03-05  Benjamin Otte  <otte@gnome.org>
37929
37930         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_channels):
37931           convert channels correctly. convert correctly to unsigned.
37932
37933 2004-03-05  Julien MOUTTE <julien@moutte.net>
37934
37935         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state): Check if
37936         we have a window before clearing it.
37937
37938 2004-03-05  Julien MOUTTE <julien@moutte.net>
37939
37940         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state): Check if we
37941         have a window before clearing it.
37942
37943 2004-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
37944
37945         * gconf/gstreamer.schemas.in:
37946         * gst-libs/gst/gconf/Makefile.am:
37947           version installation path the same way as for 0.6
37948         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
37949         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
37950         * pkgconfig/gstreamer-play-uninstalled.pc.in:
37951           remove comment that was fixed
37952
37953 2004-03-05  David Schleef  <ds@schleef.org>
37954
37955         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_src_formats),
37956         (gst_qtdemux_src_convert), (gst_qtdemux_get_src_query_types),
37957         (gst_qtdemux_get_event_mask), (gst_qtdemux_handle_src_query),
37958         (gst_qtdemux_handle_src_event), (gst_qtdemux_add_stream):
37959         Add prototype code for handling seeking and querying.
37960
37961 2004-03-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
37962
37963         * examples/gstplay/player.c: (main):
37964           Initialize variables to NULL. Prevents a segfault because the
37965           (uninitialized) variable is not NULL, resulting in a crash on
37966           trying to reach error->message.
37967
37968 2004-03-05  Benjamin Otte  <otte@gnome.org>
37969
37970         * gst/audioconvert/gstaudioconvert.c:
37971         (gst_audio_convert_buffer_to_default_format):
37972         make float=>int conversion work correctly even in cornercases.
37973
37974 2004-03-04  David I. Lehn  <dlehn@users.sourceforge.net>
37975
37976         * debian/README.Debian:
37977         * debian/build-deps:
37978         * debian/changelog:
37979         * debian/control:
37980         * debian/control.in:
37981         * debian/copyright:
37982         * debian/gstreamer-a52dec.files:
37983         * debian/gstreamer-aa.files:
37984         * debian/gstreamer-alsa.files:
37985         * debian/gstreamer-alsa.manpages:
37986         * debian/gstreamer-arts.files:
37987         * debian/gstreamer-artsd.files:
37988         * debian/gstreamer-audiofile.files:
37989         * debian/gstreamer-avifile.files:
37990         * debian/gstreamer-cdparanoia.files:
37991         * debian/gstreamer-colorspace.files:
37992         * debian/gstreamer-doc.files:
37993         * debian/gstreamer-dv.files:
37994         * debian/gstreamer-dvd.files:
37995         * debian/gstreamer-esd.files:
37996         * debian/gstreamer-festival.files:
37997         * debian/gstreamer-flac.files:
37998         * debian/gstreamer-gconf.conffiles:
37999         * debian/gstreamer-gconf.files:
38000         * debian/gstreamer-gconf.postinst:
38001         * debian/gstreamer-gnomevfs.files:
38002         * debian/gstreamer-gsm.files:
38003         * debian/gstreamer-http.files:
38004         * debian/gstreamer-jack.files:
38005         * debian/gstreamer-jpeg.files:
38006         * debian/gstreamer-mad.files:
38007         * debian/gstreamer-mikmod.files:
38008         * debian/gstreamer-misc.files:
38009         * debian/gstreamer-mpeg2dec.files:
38010         * debian/gstreamer-oss.files:
38011         * debian/gstreamer-plugin-apps.files:
38012         * debian/gstreamer-plugin-apps.manpages:
38013         * debian/gstreamer-plugin-libs-dev.files:
38014         * debian/gstreamer-plugin-libs.files:
38015         * debian/gstreamer-plugin-template.postinst:
38016         * debian/gstreamer-plugin-template.postrm:
38017         * debian/gstreamer-sdl.files:
38018         * debian/gstreamer-sid.files:
38019         * debian/gstreamer-vorbis.files:
38020         * debian/gstreamer-x.files:
38021         * debian/mk.control:
38022         * debian/rules:
38023         Debian package info not maintained here.
38024
38025 2004-03-04  Thomas Vander Stichele  <thomas at apestaart dot org>
38026
38027         * ext/aalib/gstaasink.c: (gst_aasink_class_init):
38028         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init):
38029         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init):
38030         * ext/divx/gstdivxenc.c: (gst_divxenc_class_init):
38031         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init):
38032         * ext/gsm/gstgsmenc.c: (gst_gsmenc_class_init):
38033         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init):
38034         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init):
38035         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init):
38036         * ext/xvid/gstxvidenc.c: (gst_xvidenc_class_init):
38037         * gst-libs/gst/colorbalance/colorbalance.c:
38038         (gst_color_balance_class_init):
38039         * gst-libs/gst/colorbalance/colorbalancechannel.c:
38040         (gst_color_balance_channel_class_init):
38041         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
38042         * gst-libs/gst/play/play.c: (gst_play_class_init):
38043         * gst-libs/gst/propertyprobe/propertyprobe.c:
38044         (gst_property_probe_iface_init):
38045         * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init):
38046         * gst-libs/gst/tuner/tunerchannel.c:
38047         (gst_tuner_channel_class_init):
38048         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init):
38049         * gst/cutter/gstcutter.c: (gst_cutter_class_init):
38050         * gst/effectv/gstvertigo.c: (gst_vertigotv_class_init):
38051         * sys/cdrom/gstcdplayer.c: (cdplayer_class_init):
38052         * sys/dxr3/dxr3spusink.c: (dxr3spusink_class_init):
38053         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
38054         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
38055         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init):
38056         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init):
38057           fix signals to use - instead of _
38058         * ext/libcaca/gstcacasink.h:
38059         * ext/sdl/sdlvideosink.h:
38060           fix header rename
38061
38062 2004-03-04  David Schleef  <ds@schleef.org>
38063
38064         * testsuite/gst-lint:  Add a check for bad signal names.
38065
38066 2004-03-04  Stefan Kost <kost@imn.htwk-leipzig.de>
38067
38068         reviewed by David Schleef
38069
38070         * gst/videofilter/gstgamma.c: (gst_gamma_rgb32): Fix typo that
38071         modified the alpha channel and caused a warning. (bug #136192)
38072
38073 2004-04-03  Christian Schaller <Uraeus@gnome.org>
38074
38075         * gst-plugins.spec.in:
38076         Change names of plugins to actually be correct. Try to keep things
38077         alphabetical to avoid getting beat up by Thomas
38078
38079 2004-03-03  Julien MOUTTE <julien@moutte.net>
38080
38081         * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_default_video_sink):
38082         Using ximagesink as a default if no gconf key found. We should
38083         probably consider using alsasink instead of osssink for the audio
38084         part.
38085
38086 2004-03-02  Thomas Vander Stichele  <thomas at apestaart dot org>
38087
38088         * configure.ac:
38089           fix --with-plugins, don't think it ever worked before
38090         * gst-plugins.spec.in:
38091           even more updates
38092
38093 2004-03-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38094
38095         * ext/sdl/sdlvideosink.h:
38096         * sys/ximage/ximagesink.h:
38097         * sys/xvideo/xvideosink.h:
38098         * sys/xvimage/xvimagesink.h:
38099           Fix for move of gstvideosink.h -> videosink.h.
38100
38101 2004-03-02  Thomas Vander Stichele  <thomas at apestaart dot org>
38102
38103         * gst-libs/gst/xwindowlistener/Makefile.am:
38104           this is a plugin library, not a library
38105
38106 2004-03-01  David Schleef  <ds@schleef.org>
38107
38108         * AUTHORS:  Added some names.  Add yourself if you're still
38109         missing.
38110
38111 2004-03-01  David Schleef  <ds@schleef.org>
38112
38113         * MAINTAINERS: Add
38114
38115 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
38116
38117         * gst-plugins.spec.in: clean up spec file
38118
38119 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
38120
38121         * gst-libs/gst/video/Makefile.am:
38122         * gst-libs/gst/video/gstvideosink.c:
38123         * gst-libs/gst/video/gstvideosink.h:
38124           rename gstvideosink.h to videosink.h to match other headers
38125         * gst/mixmatrix/Makefile.am:
38126           fix plugin filename
38127         * gst/tags/Makefile.am: fix plugin filename
38128
38129 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
38130
38131         * gst/tags/Makefile.am: fix plugin filename
38132
38133 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
38134
38135         * examples/gstplay/player.c: (got_time_tick), (main):
38136           add error handler
38137           display time_tick more readably
38138         * gst/mixmatrix/Makefile.am:
38139           fix plugin file name
38140
38141 2004-02-29  Christophe Fergeau  <teuf@gnome.org>
38142
38143         * sys/oss/gstosselement.c: (gst_osselement_probe),
38144         (device_combination_append), (gst_osselement_class_probe_devices):
38145         * sys/oss/gstosselement.h:
38146           Reworked enumeration of oss dsps and mixers so that gst-mixer works
38147           on my system using alsa oss emulation, fixes bug #135597
38148
38149 2004-02-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
38150
38151         * gst/videodrop/gstvideodrop.c: (gst_videodrop_init),
38152         (gst_videodrop_chain), (gst_videodrop_change_state):
38153         * gst/videodrop/gstvideodrop.h:
38154           Work based on timestamp of input data, not based on the expected
38155           framerate from the input. The consequence is that this element now
38156           not only scales framerates, but also functions as a framerate
38157           corrector or framerate stabilizer/constantizer.
38158
38159 2004-02-27  David Schleef  <ds@schleef.org>
38160
38161         patches from jmmv@menta.net (Julio M. Merino Vidal)
38162
38163         * gst/interleave/deinterleave.c: (deinterleave_chain): Fix
38164         GST_ELEMENT_ERROR call (bug #135634)
38165         * gst/interleave/interleave.c: (interleave_buffered_loop),
38166         (interleave_bytestream_loop): Don't use alloca() (bug #135640)
38167         * sys/cdrom/gstcdplayer_ioctl_bsd.h: Fix ioctls on NetBSD (bug #135645)
38168         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
38169         (gst_osssink_chain): Fix ioctls on NetBSD. (bug #135644)
38170         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_sync_next_frame),
38171         (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
38172         (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_requeue_frame):
38173         Fix GST_ELEMENT_ERROR call.
38174         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_palette): Fix
38175         GST_ELEMENT_ERROR call.
38176
38177 2004-02-27  Benjamin Otte  <otte@gnome.org>
38178
38179         * gst-libs/gst/audio/audio.h:
38180           add macro to make sure header isn't included twice
38181         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
38182           don't use gst_buffer_free
38183         * gst/playondemand/filter.func:
38184           don't use gst_data_free. Free data only once.
38185
38186 2004-02-26  David Schleef  <ds@schleef.org>
38187
38188         * gst-libs/gst/colorbalance/Makefile.am:
38189         * gst-libs/gst/mixer/Makefile.am:
38190         * gst-libs/gst/tuner/Makefile.am:
38191         * gst/level/Makefile.am: -marshal.[ch] and -enum.[ch] files
38192         should not be disted, -marshal.h files should not be installed,
38193         and -enum.h files _should_ be installed.  Fix to make this the
38194         case.
38195
38196 === release 0.7.5 ===
38197
38198 2004-02-26  Thomas Vander Stichele  <thomas at apestaart dot org>
38199
38200         * configure.ac: release 0.7.5, "Under The Sea"
38201
38202 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
38203
38204         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
38205         (gst_audio_convert_change_state), (gst_audio_convert_get_buffer):
38206         * gst/videoscale/gstvideoscale.c:
38207         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
38208           assorted debug/warning fixes
38209
38210 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
38211
38212         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
38213         (gst_videoscale_init), (gst_videoscale_chain),
38214         (gst_videoscale_set_property), (plugin_init):
38215         * gst/videoscale/gstvideoscale.h:
38216         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
38217         (gst_videoscale_scale_rgb), (gst_videoscale_planar411),
38218         (gst_videoscale_planar400), (gst_videoscale_packed422),
38219         (gst_videoscale_packed422rev), (gst_videoscale_32bit),
38220         (gst_videoscale_24bit), (gst_videoscale_16bit),
38221         (gst_videoscale_bilinear), (gst_videoscale_bicubic),
38222         (gst_videoscale_scale_plane_slow),
38223         (gst_videoscale_scale_point_sample),
38224         (gst_videoscale_scale_nearest),
38225         (gst_videoscale_scale_nearest_str2),
38226         (gst_videoscale_scale_nearest_str4),
38227         (gst_videoscale_scale_nearest_32bit),
38228         (gst_videoscale_scale_nearest_24bit),
38229         (gst_videoscale_scale_nearest_16bit):
38230         add debugging category and use it properly
38231         fix use of GST_PTR_FORMAT
38232
38233 2004-02-25  Andy Wingo  <wingo@pobox.com>
38234
38235         * gst/interleave/interleave.c (interleave_buffered_loop): Always
38236         push only when channel->buffer is NULL. Prevents segfaults doing
38237         the state change after a nonlocal exit, like a scheme exception.
38238
38239         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
38240         Handle the case where the intersected caps is empty.
38241
38242 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
38243
38244         * gst/law/mulaw-decode.c: (mulawdec_link):
38245         * gst/law/mulaw.c: (plugin_init):
38246           fix mulawdec so it actually works again
38247
38248 2004-02-24  Arwed v. Merkatz  <v.merkatz@gmx.net>
38249
38250         reviewed by: David Schleef  <ds@schleef.org>
38251
38252         * gst/videofilter/gstgamma.c: (gst_gamma_class_init),
38253         (gst_gamma_init), (gst_gamma_set_property),
38254         (gst_gamma_get_property), (gst_gamma_calculate_tables),
38255         (gst_gamma_rgb24), (gst_gamma_rgb32):  Adds gamma correction
38256         for RGB, with separate r g and b correction factors. (#131167)
38257
38258 2004-02-24  Thomas Vander Stichele  <thomas at apestaart dot org>
38259
38260         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
38261           only signal tags for bitrate if they're > 0 (#134894)
38262
38263 2004-02-24  David Schleef  <ds@schleef.org>
38264
38265         * gst/qtdemux/qtdemux.c: (plugin_init), (gst_qtdemux_loop_header),
38266         (qtdemux_parse_moov), (qtdemux_parse), (qtdemux_node_dump_foreach),
38267         (qtdemux_dump_mvhd), (qtdemux_dump_tkhd), (qtdemux_dump_elst),
38268         (qtdemux_dump_mdhd), (qtdemux_dump_hdlr), (qtdemux_dump_vmhd),
38269         (qtdemux_dump_dref), (qtdemux_dump_stsd), (qtdemux_dump_stts),
38270         (qtdemux_dump_stss), (qtdemux_dump_stsc), (qtdemux_dump_stsz),
38271         (qtdemux_dump_stco), (qtdemux_dump_co64), (qtdemux_dump_dcom),
38272         (qtdemux_dump_cmvd), (qtdemux_parse_tree), (qtdemux_parse_trak):
38273         Cleanups.  Convert g_prints to GST_LOGs.  Add qtdemux debug
38274         category.  Attempt to fix timestamp calculation.
38275
38276 2004-02-24  Johan Dahlin  <johan@gnome.org>
38277
38278         * gst-libs/gst/gconf/gconf.c: Add \n to g_print error messages
38279
38280 2004-02-23  Thomas Vander Stichele  <thomas at apestaart dot org>
38281
38282         * configure.ac:
38283         * gconf/Makefile.am:
38284         * gconf/gstreamer.schemas:
38285         * gst-libs/gst/gconf/Makefile.am:
38286         * gst-libs/gst/gconf/gconf.c:
38287           version gconf schemas and install locations
38288
38289 2004-02-23  Benjamin Otte  <otte@gnome.org>
38290
38291         * ext/xine/xineinput.c: (gst_xine_input_dispose):
38292         (gst_xine_input_subclass_init):
38293           call parent dispose.
38294           change pad template for CD reader correctly
38295         * ext/xine/Makefile.am:
38296         * ext/xine/gstxine.h:
38297         * ext/xine/xine.c: (plugin_init):
38298         * ext/xine/xineaudiosink.c:
38299           wrap audio sinks, too
38300         * gst-libs/gst/resample/private.h:
38301         * gst-libs/gst/resample/resample.c: (gst_resample_init),
38302         (gst_resample_reinit), (gst_resample_scale),
38303         (gst_resample_nearest_s16), (gst_resample_bilinear_s16),
38304         (gst_resample_sinc_slow_s16), (gst_resample_sinc_s16),
38305         (gst_resample_sinc_ft_s16), (gst_resample_nearest_float),
38306         (gst_resample_bilinear_float), (gst_resample_sinc_slow_float),
38307         (gst_resample_sinc_float), (gst_resample_sinc_ft_float):
38308         * gst-libs/gst/resample/resample.h:
38309         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
38310         (gst_audioscale_class_init), (gst_audioscale_link),
38311         (gst_audioscale_get_buffer), (gst_audioscale_init),
38312         (gst_audioscale_chain), (gst_audioscale_set_property),
38313         (gst_audioscale_get_property):
38314         * gst/audioscale/gstaudioscale.h:
38315           s/resample_*/gst_resample_*/i to not clobber namespaces
38316
38317 2004-02-23  Julien MOUTTE  <julien@moutte.net>
38318
38319         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
38320         (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
38321         (gst_riff_create_video_template_caps),
38322         (gst_riff_create_audio_template_caps),
38323         (gst_riff_create_iavs_template_caps):
38324         * gst-libs/gst/riff/riff-media.h:
38325         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
38326         (gst_asf_demux_audio_caps), (gst_asf_demux_add_audio_stream),
38327         (gst_asf_demux_video_caps), (gst_asf_demux_add_video_stream):
38328         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
38329         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
38330         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
38331         (gst_matroska_demux_plugin_init): First batch implementing audio and
38332         video codec tags in demuxers.
38333
38334 2004-02-22  Benjamin Otte  <otte@gnome.org>
38335
38336         * ext/xine/Makefile.am:
38337         * ext/xine/gstxine.h:
38338         * ext/xine/xine.c: (plugin_init):
38339         * ext/xine/xineinput.c:
38340           add input plugin wrapper. Playback from files, http, mms and cdda
38341           works.
38342         * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
38343           remove leftover G_GNUC_UNUSED
38344         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_stream),
38345         (gst_asf_demux_identify_guid):
38346           improve debugging output
38347
38348 2004-02-22  Benjamin Otte  <otte@gnome.org>
38349
38350         reported by: Padraig O'Briain <padraig.obriain@sun.com>
38351
38352         * autogen.sh:
38353           replace test -e with test -x for mkinstalldirs to be more portable.
38354           (fixes #134816)
38355
38356 2004-02-22  Benjamin Otte  <otte@gnome.org>
38357
38358         reported by: Stefan Kost <kost@imn.htwk-leipzig.de>
38359
38360         * gst/audioconvert/gstaudioconvert.c: (plugin_init):
38361           set rank to PRIMARY
38362         * gst/volume/gstvolume.c: (plugin_init):
38363           set rank to NONE
38364         fixes #134960
38365
38366 2004-02-22   Julio M. Merino Vidal <jmmv@menta.net>
38367
38368         reviewed by Benjamin Otte  <otte@gnome.org>
38369
38370         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
38371           escape NULL strings in GST_ELEMENT_ERROR properly (fixes #135116)
38372
38373 2004-02-22  Benjamin Otte  <otte@gnome.org>
38374
38375         * configure.ac:
38376           export [_]*{gst,Gst,GST}.* symbols from plugins
38377
38378 2004-02-22  Christophe Fergeau <teuf@gnome.org>
38379
38380         reviewed by: Benjamin Otte  <otte@gnome.org>
38381
38382         * ext/lame/gstlame.c: (add_one_tag):
38383         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
38384         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value),
38385         (gst_vorbisenc_metadata_set1):
38386         * gst/tags/gstid3tag.c:
38387         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add):
38388           apply fixes from bugs #135042 (lame can't write tags) and #133817
38389           (add GST_ALBUM_VOLUME_{COUNT,NUMBER} tags)
38390
38391 2004-02-22 Ramon Garcia <ramon_garcia_f@yahoo.com>
38392
38393         * configure.ac: Export only gst_plugin_desc from plugins.
38394          Note that this change only makes any effect with Linux using libtool
38395          1.5.2 or higher. Otherwise it is silently ignored, but it would build
38396          fine. And don't try to have several versions of libtool in different
38397          directories.
38398
38399 2004-02-20  Andy Wingo  <wingo@pobox.com>
38400
38401         * gst/intfloat/, gst/oneton: Removed, replaced by audioconvert and
38402         interleave respectively.
38403
38404         * gst/interleave/deinterleave.c: New plugin: deinterleave
38405         (replaces on oneton).
38406         * gst/interleave/interleave.c: New plugin: interleave.
38407         * gst/interleave/plugin.h: Support file.
38408         * gst/interleave/plugin.c: Support file.
38409
38410         * configure.ac: Remove intfloat and oneton, add interleave.
38411
38412         * ext/sndfile/gstsf.c: Handle events better.
38413
38414         * gst/audioconvert/gstaudioconvert.c: Change to support int2float
38415         and float2int operation. int2float has scheduling problems as
38416         noted in in2float_chain.
38417
38418 2004-02-20  Benjamin Otte  <otte@gnome.org>
38419
38420         * ext/xine/Makefile.am:
38421         * ext/xine/gstxine.h:
38422         * ext/xine/xine.c:
38423         * ext/xine/xineaudiodec.c:
38424         * ext/xine/xinecaps.c:
38425           add first version of xine plugin wrapper. Currently only wraps the
38426           QDM2 win32 DLL, and even that only in proof-of-concept quality.
38427         * configure.ac:
38428         * ext/Makefile.am:
38429           add xine plugin wrapper, disabled by default. Use --enable-xine to
38430           build. Note that it'll segfault on gst-register if you don't remove
38431           the goom and tvtime post plugins from xine.
38432         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
38433         (qtdemux_parse), (qtdemux_parse_trak), (qtdemux_audio_caps):
38434           add extradata parsing for QDM2.
38435           change around debugging prints.
38436
38437 2004-02-19  Benjamin Otte  <otte@gnome.org>
38438
38439         * ext/lame/gstlame.c: (gst_lame_chain):
38440         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
38441           use gst_tag_list_insert when you want to insert tags
38442
38443 2004-02-18  David Schleef  <ds@schleef.org>
38444
38445         * configure.ac:  Move massink to gst-rotten
38446         * ext/Makefile.am:
38447         * ext/mas/Makefile.am:
38448         * ext/mas/massink.c:
38449         * ext/mas/massink.h:
38450
38451 2004-02-18  David Schleef  <ds@schleef.org>
38452
38453         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init): Disable gdk_pixbuf
38454         typefinding, since it seems to be worse than nothing.
38455         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):  Add ftyp
38456         atom to recognize .mp4 and .m4a files as video/quicktime.
38457
38458 2004-02-18  David Schleef  <ds@schleef.org>
38459
38460         * gst/sine/demo-dparams.c: (quit_live),
38461         (dynparm_log_value_changed), (dynparm_value_changed), (main):
38462         Use double dparams, not float.
38463         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
38464         (gst_sinesrc_init): Change sync default to FALSE, since multiple
38465         sync'd elements don't really work correctly.
38466         * gst/volume/gstvolume.c: (volume_class_init), (volume_init),
38467         (volume_update_volume), (volume_get_property):  Change dparam
38468         to double.
38469
38470 2004-02-18  Julien MOUTTE  <julien@moutte.net>
38471
38472         * sys/ximage/ximagesink.c:
38473         (gst_ximagesink_xwindow_update_geometry),
38474         (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
38475         (gst_ximagesink_change_state), (gst_ximagesink_expose),
38476         (gst_ximagesink_init): Rework the way software video scaling works. So
38477         now we check on each chain call if the video frames are feeling the
38478         window. If not we try to renegotiate caps. On failure we memorize that
38479         and we won't try again for that PLAYING sessions.
38480         * sys/ximage/ximagesink.h: Adding a boolean to store the caps renego
38481         failure.
38482         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): initialize the
38483         synchronous flag.
38484
38485 2004-02-18  Thomas Vander Stichele  <thomas at apestaart dot org>
38486
38487         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
38488           break up _link so we can give a better debug message for errors
38489
38490 2004-02-18  Thomas Vander Stichele  <thomas at apestaart dot org>
38491
38492         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
38493           set up debug category
38494
38495 2004-02-18  Julien MOUTTE <julien@moutte.net>
38496
38497         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
38498         (gst_ximagesink_handle_xevents), (gst_ximagesink_expose): Reorganizing
38499         the way renegotiation work. The event handling function is not taking
38500         care of external windows and renegotiate method check for pad flags
38501         NEGOTIATING. Should fix : #133209
38502
38503 2004-02-17  Julien MOUTTE  <julien@moutte.net>
38504
38505         * sys/ximage/ximagesink.c: (gst_ximagesink_expose): Checking if the
38506         pad is negotiating before trying renegotiation.
38507
38508 2004-02-17  Thomas Vander Stichele  <thomas at apestaart dot org>
38509
38510         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
38511           pass on all possible mime types as typefind hints
38512
38513 2004-02-17  Julien MOUTTE <julien@moutte.net>
38514
38515         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
38516         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new): Fix a
38517         possible SHM leak if we crash. All other apps using XShm are doing
38518         that.
38519
38520 2004-02-17  Julien MOUTTE  <julien@moutte.net>
38521
38522         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
38523         (gst_ximagesink_expose): Renegotiate size on expose.
38524         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_expose): Update window
38525         size on expose.
38526
38527 2004-02-16  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38528
38529         * testsuite/alsa/sinesrc.c:
38530           cosmetic fix to fix compile issue with gcc 2.95.4
38531
38532 2004-02-16  Julien MOUTTE <julien@moutte.net>
38533
38534         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
38535         (gst_alsa_timestamp_to_bytes): Alsa should trigger an error if it
38536         failed opening the audio device.
38537         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
38538         (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
38539         (gst_ximagesink_xwindow_new), (gst_ximagesink_xwindow_destroy),
38540         (gst_ximagesink_xwindow_resize), (gst_ximagesink_xwindow_clear),
38541         (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
38542         (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
38543         (gst_ximagesink_change_state), (gst_ximagesink_chain),
38544         (gst_ximagesink_set_xwindow_id): Clearing window in READY TO PAUSED.
38545         Removing some useless g_return_if_fail like wingo suggested.
38546         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
38547         (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xvimage_put),
38548         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
38549         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_xwindow_clear),
38550         (gst_xvimagesink_update_colorbalance),
38551         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_xcontext_get),
38552         (gst_xvimagesink_xcontext_clear),
38553         (gst_xvimagesink_get_fourcc_from_caps),
38554         (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
38555         (gst_xvimagesink_set_xwindow_id),
38556         (gst_xvimagesink_colorbalance_list_channels),
38557         (gst_xvimagesink_colorbalance_set_value),
38558         (gst_xvimagesink_colorbalance_get_value): Clearing window in READY TO
38559         PAUSED. Removing some useless g_return_if_fail like wingo suggested.
38560
38561 2004-02-16  Thomas Vander Stichele  <thomas at apestaart dot org>
38562
38563         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
38564           throw error when not negotiated instead of asserting
38565
38566 2004-02-15  Julien MOUTTE  <julien@moutte.net>
38567
38568         * gst/switch/gstswitch.c: (gst_switch_loop): More fixes for
38569         correct data refcounting.
38570
38571 2004-02-15  Julien MOUTTE  <julien@moutte.net>
38572
38573         * gst/switch/gstswitch.c: (gst_switch_change_state),
38574         (gst_switch_class_init): Cleaning the sinkpads correctly on state
38575         change, mostly the EOS flag.
38576
38577 2004-02-15  Julien MOUTTE  <julien@moutte.net>
38578
38579         * examples/gstplay/player.c: (got_eos), (main): Adding some
38580         output for debugging.
38581         * gst-libs/gst/play/play.c: (gst_play_state_change): Stop our
38582         timeouts if we go to any state different from PLAYING.
38583         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek): Fix some
38584         more EOS bugs in riff lib.
38585
38586 2004-02-14  Julien MOUTTE  <julien@moutte.net>
38587
38588         * gst-libs/gst/play/play.c: (gst_play_connect_visualization): Disable
38589         visualization until i find a way to fix switch correctly.
38590         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head): Fix a bug when
38591         EOS arrives.
38592         * gst/switch/gstswitch.c: (gst_switch_release_pad),
38593         (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
38594         (gst_switch_loop), (gst_switch_dispose), (gst_switch_class_init):
38595         Reworked switch to get a more correct behaviour with events and refing
38596         of data stored in sinkpads.
38597         * gst/switch/gstswitch.h: Adding an eos flag for every sinkpad so that
38598         we don't pull from a pad in EOS.
38599
38600 2004-02-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38601
38602         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
38603           remove v1 tag even if we can't read it (makes sure we don't detect
38604           it again)
38605
38606 2004-02-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38607
38608         * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait),
38609         (gst_alsa_xrun_recovery):
38610         * ext/alsa/gstalsa.h:
38611           try xrun recovery when wait failed. Make xrun recovery function
38612           return TRUE/FALSE to indicate success. (might fix #134354)
38613
38614 2004-02-13  David Schleef  <ds@schleef.org>
38615
38616         * gst/sine/demo-dparams.c: (dynparm_log_value_changed),
38617         (dynparm_value_changed), (main): Convert from float to double.
38618         * gst/sine/gstsinesrc.c: (gst_sinesrc_init): same.
38619
38620 2004-02-13  David Schleef  <ds@schleef.org>
38621
38622         * gst/silence/gstsilence.c: (gst_silence_class_init),
38623         (gst_silence_set_clock), (gst_silence_get),
38624         (gst_silence_set_property), (gst_silence_get_property):
38625         * gst/silence/gstsilence.h: Add sync property.
38626         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
38627         (gst_sinesrc_init), (gst_sinesrc_set_clock), (gst_sinesrc_get),
38628         (gst_sinesrc_set_property), (gst_sinesrc_get_property):
38629         * gst/sine/gstsinesrc.h: Add sync property.
38630
38631 2004-02-13  David Schleef  <ds@schleef.org>
38632
38633         * gst/intfloat/gstint2float.c: (conv_f32_s16),
38634         (gst_int2float_chain_gint16):  Change stdint usage to glib types.
38635
38636 2004-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
38637
38638         * configure.ac:
38639         * ext/Makefile.am:
38640         * gst-libs/ext/Makefile.am:
38641           move ffmpeg plugin to gst-ffmpeg module
38642
38643 2004-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
38644
38645         * configure.ac: use GST_ARCH to detect architecture
38646
38647 2004-02-12  Julien MOUTTE  <julien@moutte.net>
38648
38649         * gst/vbidec/vbiscreen.c: Fixing thomasvs fixes. Missing header.
38650
38651 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
38652
38653         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
38654           classify LADSPA plugins based on number of src/sink pads
38655           (#133663, Stefan Kost)
38656         * gst/sine/gstsinesrc.c: (gst_sinesrc_init):
38657           fix dparams registration
38658           (#133528, Stefan Kost)
38659         * gst/vbidec/vbiscreen.c: (vbiscreen_set_current_cell):
38660           fix use of isprint and use g_ascii_isprint instead
38661           (#133316, Stefan Kost)
38662
38663 2004-02-11  David Schleef  <ds@schleef.org>
38664
38665         Convert a few inner loops to use liboil.  This is currently
38666         optional, and is only enabled if liboil is present (duh!).
38667         * configure.ac: Check for liboil-0.1
38668         * gst/intfloat/Makefile.am:
38669         * gst/intfloat/gstint2float.c: (conv_f32_s16), (scalarmult_f32),
38670         (gst_int2float_chain_gint16):
38671         * gst/videofilter/Makefile.am:
38672         * gst/videofilter/gstvideobalance.c: (gst_videobalance_class_init),
38673         (tablelookup_u8), (gst_videobalance_planar411):
38674         * gst/videotestsrc/Makefile.am:
38675         * gst/videotestsrc/gstvideotestsrc.c: (plugin_init):
38676         * gst/videotestsrc/videotestsrc.c: (splat_u8), (paint_hline_YUY2),
38677         (paint_hline_IYU2), (paint_hline_str4), (paint_hline_str3),
38678         (paint_hline_RGB565), (paint_hline_xRGB1555):
38679
38680 2004-02-11  David Schleef  <ds@schleef.org>
38681
38682         * ext/lcs/gstcolorspace.c: (colorspace_find_lcs_format),
38683         (gst_colorspace_caps_get_fourcc), (colorspace_setup_converter),
38684         (gst_colorspace_getcaps), (gst_colorspace_link),
38685         (gst_colorspace_base_init), (gst_colorspace_init),
38686         (gst_colorspace_chain), (gst_colorspace_change_state),
38687         (plugin_init): Merge Ronald's patch (bug #117897) and update
38688         for new caps and negotiation.  Seems to work, although it
38689         shows off bugs in lcs.
38690
38691 2004-02-11  David Schleef  <ds@schleef.org>
38692
38693         * ext/alsa/Makefile.am: Fix linking against libgstinterfaces.
38694         (bug #133886)  Noticed by bugs@leroutier.net (Stephane LOEUILLET)
38695
38696 2004-02-11  David Schleef  <ds@schleef.org>
38697
38698         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_class_init),
38699         (gst_rfbsrc_change_state), (gst_rfbsrc_init),
38700         (gst_rfbsrc_set_property), (gst_rfbsrc_get_property):
38701         Add server and port properties
38702
38703 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
38704
38705         * m4/a52.m4:
38706         * m4/aalib.m4:
38707         * m4/as-ffmpeg.m4:
38708         * m4/as-liblame.m4:
38709         * m4/as-slurp-ffmpeg.m4:
38710         * m4/check-libheader.m4:
38711         * m4/esd.m4:
38712         * m4/freetype2.m4:
38713         * m4/gconf-2.m4:
38714         * m4/glib.m4:
38715         * m4/gst-alsa.m4:
38716         * m4/gst-artsc.m4:
38717         * m4/gst-ivorbis.m4:
38718         * m4/gst-matroska.m4:
38719         * m4/gst-sdl.m4:
38720         * m4/gst-shout2.m4:
38721         * m4/gst-sid.m4:
38722         * m4/gtk.m4:
38723         * m4/libdv.m4:
38724         * m4/libfame.m4:
38725         * m4/libmikmod.m4:
38726         * m4/ogg.m4:
38727         * m4/vorbis.m4:
38728           fix underquotedness of macros (#133800)
38729         * m4/as-avifile.m4:
38730         * m4/xmms.m4:
38731           removed because no longer used
38732
38733 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
38734
38735         * configure.ac:
38736           require gettext 0.11.5 so ulonglong.m4 gets checked out and copied
38737           by autopoint (fixes #132996)
38738
38739 2004-02-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38740
38741         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_base_init):
38742         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_base_init):
38743         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_base_init):
38744         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_base_init):
38745           fix memleaks
38746
38747 2004-02-11  David Schleef  <ds@schleef.org>
38748
38749         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
38750         (gst_gdk_pixbuf_chain): Fix logic bug causing spurious errors.
38751         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_base_init),
38752         (gst_jpegdec_init), (gst_jpegdec_chain): Fix negotiation.
38753         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_base_init),
38754         (gst_jpegenc_class_init), (gst_jpegenc_init),
38755         (gst_jpegenc_getcaps), (gst_jpegenc_link), (gst_jpegenc_resync),
38756         (gst_jpegenc_chain), (gst_jpegenc_set_property),
38757         (gst_jpegenc_get_property):  Fix negotiation.  Add some properties.
38758         * ext/jpeg/gstjpegenc.h: Fix negotiation.
38759
38760 2004-02-10  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38761
38762         * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
38763         (gst_mikmod_srcfixate), (gst_mikmod_srclink), (gst_mikmod_loop):
38764         * ext/mikmod/gstmikmod.h:
38765           fix caps negotiation in mikmod
38766         * ext/ogg/gstoggdemux.c: (gst_ogg_print):
38767           output debug information
38768
38769 2004-02-08  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38770
38771         * gst-libs/gst/colorbalance/Makefile.am:
38772         * gst-libs/gst/navigation/Makefile.am:
38773         * gst-libs/gst/xoverlay/Makefile.am:
38774           remove unused GST_OPT_CFLAGS from Makefiles
38775           include X_CFLAGS and X_LIBS in xoverlay. (#131948)
38776
38777 2004-02-07  David Schleef  <ds@schleef.org>
38778
38779         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_handle_event): Don't
38780         push events to pads that haven't been created (#133508)
38781
38782 2004-02-07  Jan Schmidt  <thaytan@mad.scientist.com>
38783
38784         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
38785         (gst_dvdec_sink_convert), (gst_dvdec_handle_sink_event),
38786         (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
38787         (gst_dvdec_loop), (gst_dvdec_change_state):
38788         Second attempt at committing a working dvdec element.
38789
38790 2004-02-06  David Schleef  <ds@schleef.org>
38791
38792         Build fixes for OS X: (see #129600)
38793         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_strh),
38794         (gst_riff_read_strf_vids), (gst_riff_read_strf_auds),
38795         (gst_riff_read_strf_iavs):
38796         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
38797         (gst_avi_demux_stream_odml):
38798         * gst/playondemand/Makefile.am:
38799         * gst/rtp/rtp-packet.c:
38800
38801 2004-02-05  David Schleef  <ds@schleef.org>
38802
38803         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_loop): Revert
38804         last change, because it Just Doesn't Compile.
38805
38806 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38807
38808         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
38809           skip undecodable id3v2 tag instead of keeping it
38810
38811 2004-02-05  David Schleef  <ds@schleef.org>
38812
38813         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
38814         Unref leaked buffer.  (Noticed by Ronald)
38815
38816 2004-02-05  David I. Lehn  <dlehn@users.sourceforge.net>
38817
38818         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
38819         Sync requires with other checks.  >= vs =.
38820
38821 2004-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
38822
38823         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
38824         (gst_dvdec_video_link), (gst_dvdec_loop):
38825         * ext/dv/gstdvdec.h:
38826           rework the caps negotiation so that dvdec works again instead
38827           of just segfaulting.
38828
38829 === release 0.7.4 ===
38830
38831 2004-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
38832
38833         * NEWS: GStreamer Plugins 0.7.4 "For Great Justice" released
38834         * configure.ac: changed for release
38835
38836 2004-02-05  Thomas Vander Stichele  <thomas at apestaart dot org>
38837
38838         * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in:
38839         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
38840         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
38841         * pkgconfig/gstreamer-play-uninstalled.pc.in:
38842           reworked patch by David Lehn to fix libdir and includedir for
38843           uninstalled libraries
38844           removed play and gconf from gstreamer-libs since they have their
38845           own pkgconfig files
38846
38847 2004-02-04  David Schleef  <ds@schleef.org>
38848
38849         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt): Fix a caps
38850         memleak.
38851
38852 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38853
38854         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
38855           use correct GST_TAG_ENCODER tag
38856
38857 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38858
38859         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
38860           be sure to stop the clock when going to paused
38861         * sys/oss/gstosssink.c: (gst_osssink_change_state):
38862           reset number of transmitted when going to ready.
38863         fixes #132935
38864
38865 2004-02-05  Charles Schmidt <cschmidt2@emich.edu>
38866
38867         reviewed by Benjamin Otte
38868
38869         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
38870           extract track count (fixes #133410)
38871
38872 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38873
38874         * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
38875           that should be !=, not == (fixes #132519)
38876
38877 2004-02-04  David Schleef  <ds@schleef.org>
38878
38879         Make sure set_explicit_caps() is called before adding pad.
38880         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
38881         * gst/id3/gstid3types.c: (gst_id3types_loop):
38882         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
38883         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
38884
38885 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
38886
38887         * configure.ac:
38888           bump nano to 2, first prerelease
38889           put back AM_PROG_LIBTOOL
38890
38891 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
38892
38893         * testsuite/alsa/Makefile.am:
38894           these are user test apps, not automatic testsuite tests
38895
38896 2004-02-04  David Schleef  <ds@schleef.org>
38897
38898         Convert GST_DEBUG_CAPS() to GST_DEBUG():
38899         * gst/mpeg1videoparse/gstmp1videoparse.c:
38900         (mp1videoparse_parse_seq):
38901         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
38902         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
38903         * sys/xvideo/gstxwindow.c: (_gst_xwindow_new):
38904         * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
38905         (gst_xvideosink_getcaps):
38906         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
38907         * testsuite/gst-lint: more tests
38908
38909 2004-02-04  David Schleef  <ds@schleef.org>
38910
38911         Replace use of GST_PAD_FORMATS_FUNCTION() and similar macros
38912         with the code that they would expand to.
38913         * ext/flac/gstflacdec.c: (gst_flacdec_get_src_formats),
38914         (gst_flacdec_get_src_query_types),
38915         (gst_flacdec_get_src_event_masks):
38916         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_formats),
38917         (gst_gnomevfssrc_get_query_types),
38918         (gst_gnomevfssrc_get_event_mask):
38919
38920 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38921
38922         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
38923         (gst_sinesrc_dispose):
38924           fix memleak by properly disposing sinesrc
38925
38926 2004-02-04  Julien MOUTTE  <julien@moutte.net>
38927
38928         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_expose):
38929         * gst-libs/gst/xoverlay/xoverlay.h: Adding the _expose method to tell
38930         an overlay to redraw the image because it has been exposed.
38931         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy),
38932         (gst_ximagesink_ximage_put), (gst_ximagesink_expose),
38933         (gst_ximagesink_xoverlay_init), (gst_ximagesink_init):
38934         * sys/ximage/ximagesink.h: Implement expose method from XOverlay
38935         interface
38936         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_destroy),
38937         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_expose),
38938         (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_init):
38939         * sys/xvimage/xvimagesink.h: Implement expose method from XOverlay
38940         interface
38941
38942 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38943
38944         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
38945           more memleak fixage
38946
38947 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38948
38949         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
38950         * gst/typefind/gsttypefindfunctions.c:
38951           fix memleaks shown by gst-typefind
38952
38953 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
38954
38955         * common/glib-gen.mak:
38956           add hack rule to touch .Plo files
38957         * gst-libs/gst/colorbalance/Makefile.am:
38958         * gst-libs/gst/mixer/Makefile.am:
38959         * gst-libs/gst/play/Makefile.am:
38960         * gst-libs/gst/tuner/Makefile.am:
38961           remove glib_root variable
38962
38963 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38964
38965         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream):
38966           set explicit caps before adding the element, so the autopluggers can
38967           plug correctly.
38968         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
38969         (mpeg2_sys_type_find), (mpeg1_sys_type_find),
38970         (mpeg_video_type_find), (mpeg_video_stream_type_find),
38971         (dv_type_find):
38972           fix memleaks in typefind functions. gst_type_find_suggest takes a const
38973           argument.
38974
38975 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
38976
38977         * gst-libs/gst/colorbalance/Makefile.am:
38978         * gst-libs/gst/colorbalance/colorbalance-marshal.list:
38979         * gst-libs/gst/colorbalance/colorbalance.c:
38980         * gst-libs/gst/colorbalance/colorbalance.h:
38981         * gst-libs/gst/colorbalance/colorbalancemarshal.list:
38982         * gst-libs/gst/mixer/Makefile.am:
38983         * gst-libs/gst/mixer/mixer-marshal.list:
38984         * gst-libs/gst/mixer/mixer.c:
38985         * gst-libs/gst/mixer/mixer.h:
38986         * gst-libs/gst/mixer/mixermarshal.list:
38987         * gst-libs/gst/play/Makefile.am:
38988         * gst-libs/gst/play/play.h:
38989         * gst-libs/gst/tuner/Makefile.am:
38990         * gst-libs/gst/tuner/tuner-marshal.list:
38991         * gst-libs/gst/tuner/tuner.c:
38992         * gst-libs/gst/tuner/tuner.h:
38993         * gst-libs/gst/tuner/tunermarshal.list:
38994           use new glib-gen.mak snippet to clean up Makefile.am
38995           fix various bugs in Makefile.am's
38996
38997 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
38998
38999         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
39000           handle chain parsing correctly in the multichain case
39001         * ext/theora/theoradec.c: (gst_theora_dec_init), (_theora_ilog),
39002         (theora_dec_from_granulepos), (theora_dec_to_granulepos),
39003         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
39004         (theora_dec_chain):
39005           handle events and queries correctly
39006
39007 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
39008
39009         * .cvsignore:
39010         Ignore generated file _stdint.h.
39011
39012 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
39013
39014         * gst-libs/gst/colorbalance/Makefile.am:
39015         * gst-libs/gst/colorbalance/colorbalance.h:
39016         * gst-libs/gst/mixer/Makefile.am:
39017         * gst-libs/gst/mixer/mixer.h:
39018         * gst-libs/gst/play/Makefile.am:
39019         * gst-libs/gst/play/play.h:
39020         * gst-libs/gst/tuner/Makefile.am:
39021         * gst-libs/gst/tuner/tuner.h:
39022         Generate enum type code with glib-mkenums.
39023         * gst-libs/gst/colorbalance/.cvsignore:
39024         * gst-libs/gst/mixer/.cvsignore:
39025         * gst-libs/gst/play/.cvsignore:
39026         * gst-libs/gst/tuner/.cvsignore:
39027         Ignore generated files.
39028
39029 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
39030
39031         * gst-libs/gst/audio/.cvsignore:
39032         Ignore generated file.
39033         * gst-libs/gst/audio/Makefile.am:
39034         Do not install example filter.
39035
39036 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
39037
39038         * examples/switch/.cvsignore:
39039         Ignore generated file.
39040
39041 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39042
39043         * common/m4/ax_create_stdint_h.m4:
39044         * configure.ac:
39045           add AX_CREATE_STDINT_H to get correct type definitions for a52dec in
39046           _stdint.h.
39047         * Makefile.am:
39048           remove generated _stdint.h in DISTCLEANFILES
39049         * ext/a52dec/gsta52dec.c:
39050           include _stdint.h for a52dec. (should fix #133064)
39051
39052 2004-02-02  Jeremy Simon  <jesimon@libertysurf.fr>
39053
39054         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add),
39055         (gst_tag_to_vorbis_comments):
39056         Add replaygain support to vorbistag
39057
39058 2004-02-02  Jeremy Simon  <jesimon@libertysurf.fr>
39059         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
39060         (gst_ffmpeg_caps_to_extradata):
39061           Fix SVQ3 caps flag properties
39062           Use glib macro for bytes swap
39063
39064 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
39065
39066         * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
39067         * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
39068         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
39069         * ext/sndfile/gstsf.c: (plugin_init):
39070         * gst/avi/gstavi.c: (plugin_init):
39071         * sys/dxr3/dxr3init.c: (plugin_init):
39072         * sys/oss/gstossaudio.c: (plugin_init):
39073         * sys/v4l/gstv4l.c: (plugin_init):
39074         * sys/v4l2/gstv4l2.c: (plugin_init):
39075           remove textdomain calls
39076         * po/nl.po:
39077           update Dutch translation
39078
39079 2004-02-02  Julien MOUTTE  <julien@moutte.net>
39080
39081         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
39082         (gst_play_set_audio_sink): Moving volume in the audio thread for
39083         instantaneous volume change. Maybe i will add another volume in front
39084         of visualization later, not sure yet though.
39085
39086 2004-02-02  Julien MOUTTE  <julien@moutte.net>
39087
39088         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
39089         (gst_ximagesink_handle_xevents): Better X events handling, only take
39090         the latest events for configure and motion.
39091         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents): same.
39092
39093 2004-02-02  Jon Trowbridge  <trow@gnu.org>
39094
39095         reviewed by: David Schleef  <ds@schleef.org>
39096
39097         Fix memory leaks:
39098         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_register):
39099         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_register):
39100
39101 2004-02-02  David Schleef  <ds@schleef.org>
39102
39103         code cleanup.  Change bzero() to memset().  Remove duplicate ; at ends
39104         of lines.
39105         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_event):
39106         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
39107         * ext/xvid/gstxviddec.c: (gst_xviddec_src_link):
39108         * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
39109         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
39110         * gst/effectv/gstedge.c: (gst_edgetv_sinkconnect):
39111         * gst/effectv/gstvertigo.c: (gst_vertigotv_sinkconnect):
39112         * gst/intfloat/float22int.c: (gst_float2_2_int_getcaps),
39113         (gst_float2_2_int_link):
39114         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
39115         * gst/rtjpeg/RTjpeg.c: (RTjpeg_init_mcompress):
39116         * gst/tcp/gsttcpsink.c: (gst_tcpsink_init_send):
39117         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_init_receive):
39118         * gst/udp/gstudpsink.c: (gst_udpsink_init_send):
39119         * gst/udp/gstudpsrc.c: (gst_udpsrc_init_receive):
39120         * sys/v4l/gstv4lelement.c: (gst_v4lelement_init):
39121         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture):
39122         * testsuite/gst-lint: Add tests for bzero and ;;
39123
39124 2004-02-02  David Schleef  <ds@schleef.org>
39125
39126         * gst/debug/efence.c: Add fallback if MAP_ANONYMOUS isn't defined.
39127
39128 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
39129
39130         * ext/aalib/gstaasink.c: (gst_aasink_open):
39131         * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
39132         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
39133         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
39134         * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
39135         (gst_afsink_close_file):
39136         * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
39137         (gst_afsrc_close_file):
39138         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
39139         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
39140         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
39141         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
39142         * ext/esd/esdmon.c: (gst_esdmon_get):
39143         * ext/esd/esdsink.c: (gst_esdsink_chain), (gst_esdsink_open_audio):
39144         * ext/faac/gstfaac.c: (gst_faac_chain):
39145         * ext/faad/gstfaad.c: (gst_faad_chain):
39146         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
39147         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
39148         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
39149         * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
39150         (gst_flacdec_loop):
39151         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
39152         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
39153         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
39154         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
39155         (gst_gnomevfssink_close_file):
39156         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
39157         (gst_gnomevfssrc_open_file):
39158         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
39159         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
39160         * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
39161         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
39162         (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
39163         * ext/mad/gstmad.c: (gst_mad_chain):
39164         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
39165         * ext/mpeg2dec/gstmpeg2dec.c:
39166         * ext/mpeg2enc/gstmpeg2enc.cc:
39167         * ext/mplex/gstmplex.cc:
39168         * ext/mplex/gstmplexibitstream.cc:
39169         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
39170         (gst_ogg_demux_push):
39171         * ext/raw1394/gstdv1394src.c:
39172         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
39173         (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
39174         * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
39175         (gst_sf_loop):
39176         * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
39177         * ext/swfdec/gstswfdec.c: (gst_swfdec_loop):
39178         * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
39179         * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
39180         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
39181         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
39182         * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
39183         * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
39184         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
39185         (gst_riff_read_element_data), (gst_riff_read_seek),
39186         (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
39187         * gst/adder/gstadder.c: (gst_adder_loop):
39188         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
39189         (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
39190         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
39191         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
39192         * gst/avi/gstavimux.c: (gst_avimux_stop_file):
39193         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
39194         * gst/goom/gstgoom.c: (gst_goom_chain):
39195         * gst/id3/gstid3types.c: (gst_id3types_loop):
39196         * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
39197         * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
39198         * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
39199         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
39200         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
39201         (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
39202         (gst_ebml_read_float), (gst_ebml_read_header):
39203         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
39204         (gst_matroska_demux_parse_blockgroup):
39205         * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
39206         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
39207         * gst/oneton/gstoneton.c: (gst_oneton_chain):
39208         * gst/silence/gstsilence.c: (gst_silence_get):
39209         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
39210         * gst/smpte/gstsmpte.c: (gst_smpte_loop):
39211         * gst/speed/gstspeed.c: (speed_loop):
39212         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
39213         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
39214         * gst/volenv/gstvolenv.c: (gst_volenv_chain):
39215         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
39216         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
39217         (gst_wavparse_loop):
39218         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
39219         (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
39220         (dxr3audiosink_close):
39221         * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
39222         * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
39223         (dxr3videosink_close), (dxr3videosink_write_data):
39224         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
39225         * sys/oss/gstosssink.c: (gst_osssink_chain):
39226         * sys/oss/gstosssrc.c: (gst_osssrc_get):
39227         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
39228         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
39229         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
39230         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
39231         (gst_v4l_set_window), (gst_v4l_enable_overlay):
39232         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
39233         (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
39234         (gst_v4l_get_frequency), (gst_v4l_set_frequency),
39235         (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
39236         (gst_v4l_set_audio):
39237         * sys/v4l/v4l_calls.h:
39238         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
39239         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
39240         (gst_v4lmjpegsink_playback_init),
39241         (gst_v4lmjpegsink_playback_start):
39242         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame):
39243         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
39244         (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
39245         (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
39246         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
39247         * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
39248         (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
39249         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
39250         (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
39251         (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
39252         (gst_v4l2_get_output), (gst_v4l2_set_output),
39253         (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
39254         (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
39255         (gst_v4l2_set_attribute):
39256         * sys/v4l2/v4l2_calls.h:
39257         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
39258         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
39259         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
39260         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
39261         (gst_v4l2src_capture_stop):
39262         * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
39263         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
39264         (gst_ximagesink_chain):
39265         * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
39266         (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
39267         (gst_xvideosink_xwindow_new):
39268         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
39269         (gst_xvimagesink_chain):
39270
39271 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
39272
39273         * gst/volume/gstvolume.c: (gst_volume_set_volume),
39274         (gst_volume_get_volume), (volume_class_init), (volume_init),
39275         (volume_chain_int16), (volume_update_volume):
39276         * gst/volume/gstvolume.h:
39277           make code more readable by removing magic numbers
39278           make mixer interface export 0-100 range
39279           make it internally map to 0.0-1.0 range so users don't distort
39280           output by putting the sliders at full volume
39281
39282 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
39283
39284         * gst-libs/gst/play/play.c: (gst_play_tick_callback),
39285         (gst_play_state_change), (gst_play_seek_to_time):
39286         block the tick callback for 0.5 secs after doing a seek
39287
39288 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
39289
39290         * gst-libs/gst/play/play.c: (gst_play_new):
39291           check for GError
39292
39293 2004-02-01  Julien MOUTTE  <julien@moutte.net>
39294
39295         * gst-libs/gst/play/play.c: (gst_play_seek_to_time),
39296         (gst_play_new): Accepting NULL GError, blocking time tick while seeking.
39297         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
39298         (gst_ximagesink_chain), (gst_ximagesink_init): s/sinkconnect/sink_link
39299         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
39300         (gst_xvimagesink_chain), (gst_xvimagesink_init): s/sinkconnect/sink_link
39301
39302 2004-02-01  Thomas Vander Stichele  <thomas at apestaart dot org>
39303
39304         * configure.ac:
39305         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
39306           check for a function added in vorbis 1.1
39307
39308 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39309
39310         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
39311         (gst_alsa_drain_audio), (gst_alsa_stop_audio):
39312           really start/stop clock only on PLAYING <=> PAUSED
39313         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
39314           remove \n from debugging lines
39315         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
39316           make it work when seeking does not
39317         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
39318           reset on DISCONT
39319
39320 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39321
39322         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start):
39323           start clock on PAUSED=>PLAYING, not later
39324         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
39325           extract correct time for different discont formats
39326         (gst_alsa_sink_get_time):
39327           don't segfault when no format is negotiated yet, just return 0
39328         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
39329         (gst_ogg_demux_handle_event), (gst_ogg_demux_push),
39330         (gst_ogg_pad_push):
39331           handle flush and discont events correctly
39332         * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
39333           handle discont events correctly
39334
39335 2004-01-31  Thomas Vander Stichele  <thomas at apestaart dot org>
39336
39337         * gst-libs/gst/play/play.c: (gst_play_error_quark),
39338         (gst_play_error_create), (gst_play_error_plugin),
39339         (gst_play_pipeline_setup), (gst_play_init), (gst_play_new):
39340         * gst-libs/gst/play/play.h:
39341           add error handling during creation
39342         * examples/gstplay/player.c: (main):
39343           use new gst_play_new
39344
39345
39346 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39347
39348         * ext/theora/theoradec.c: (theora_dec_chain):
39349           make comments work
39350         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
39351         (vorbis_dec_src_event), (vorbis_dec_chain):
39352           add encoder tag, fix tag reading to be more error tolerant, change
39353           BITRATE to NOMINAL_BITRATE, add debugging, don't unref events after
39354           gst_pad_event_default.
39355         * gst/tags/gstvorbistag.c:
39356         (gst_tag_list_from_vorbiscomment_buffer):
39357           undefine function specific define at end of function
39358
39359 2004-01-31  Jeremy Simon  <jesimon@libertysurf.fr>
39360
39361         * ext/flac/gstflac.c: (plugin_init):
39362         * ext/flac/gstflacdec.c: (gst_flacdec_class_init):
39363         * ext/flac/gstflacdec.h:
39364         * ext/flac/gstflacenc.h:
39365           Fix typos
39366
39367 2004-01-30  David I. Lehn  <dlehn@users.sourceforge.net>
39368
39369         * examples/gstplay/player.c: s/gstplay.h/play.h/
39370
39371 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
39372
39373         * gst-libs/gst/play/Makefile.am:
39374         * gst-libs/gst/play/gstplay.c:
39375         * gst-libs/gst/play/gstplay.h:
39376         * gst-libs/gst/play/play.c:
39377           more surgery, operation complete
39378
39379 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
39380
39381         * gst-libs/gst/play/play.old.c:
39382         * gst-libs/gst/play/play.old.h:
39383           after CVS surgery by moving, remove
39384         * gst-libs/gst/play/playpipelines.c:
39385           remove
39386
39387         * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
39388           add negotiation error
39389
39390 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
39391
39392         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
39393         (gst_ogg_demux_push):
39394           add some seeking debug info
39395           send a flush when seeking
39396
39397 2004-01-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39398
39399         * configure.ac:
39400           use AC_C_INLINE
39401         * configure.ac:
39402         * ext/Makefile.am:
39403         * ext/theora/Makefile.am:
39404         * ext/theora/theoradec.c:
39405           add theora video decoder. Does just do simple decoding for now and
39406           has been tested against Theora cvs only. It only works when theora
39407           is compiled with --enable-static.
39408         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
39409           always reset packetno on DISCONT
39410
39411 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39412
39413         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
39414           Fix audio.
39415
39416 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39417
39418         * gst/mpegaudioparse/gstmpegaudioparse.c:
39419         (mp3_type_frame_length_from_header):
39420           Fix header parsing - stolen from ffmpeg (thank you! :) ).
39421
39422 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39423
39424         * ext/esd/esdsink.c: (gst_esdsink_init):
39425           Since we have static pad template caps, we don't need to negotiate;
39426           either the core errors out or we know the format.
39427
39428 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39429
39430         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
39431         (gst_riff_read_seek):
39432         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
39433         (gst_ebml_read_seek):
39434           Fix event handling.
39435
39436 2004-01-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39437
39438         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
39439           removee video/x-theora from vp3 decoder, it doesn't handle raw
39440           theora streams
39441         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
39442           fix bug with finalizing element that never went to PAUSED
39443         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
39444           length and position queries were swapped
39445         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
39446         (vorbis_dec_from_granulepos), (vorbis_dec_src_query),
39447         (vorbis_dec_src_event):
39448           implement querying time and bytes
39449
39450 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
39451
39452         * just about every source file:
39453           gst_element_error -> GST_ELEMENT_ERROR
39454
39455 2004-01-29  Julien MOUTTE  <julien@moutte.net>
39456
39457         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get): Fixing seeking
39458         emiting FLUSH and even before DISCONT.
39459         * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): Fix seeking to
39460         get the best instant seeking as possible yay!
39461
39462 2004-01-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39463
39464         * gst/mpeg1videoparse/gstmp1videoparse.c:
39465         (gst_mp1videoparse_real_chain):
39466           Committed wrong version last week... Grr... Didn't notice until now.
39467
39468 2004-01-29  Julien MOUTTE <julien@moutte.net>
39469
39470         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new):
39471         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new): Emit the
39472         have_xwindow_id signal in xwindow_create.
39473
39474 2004-01-29  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39475
39476         * ext/ogg/gstoggdemux.c:
39477           lots of changes - mainly support for chained bitstreams, seeking,
39478           querying and bugfixes of course
39479         * ext/vorbis/Makefile.am:
39480         * ext/vorbis/vorbisdec.c:
39481         * ext/vorbis/vorbisdec.h:
39482           add vorbisdec raw vorbis decoder
39483         * ext/vorbis/vorbis.c: (plugin_init):
39484           register vorbisdec as PRIMARY, vorbisfile as SECONDARY
39485         * gst/intfloat/Makefile.am:
39486         * gst/intfloat/float22int.c:
39487         * gst/intfloat/float22int.h:
39488         * gst/intfloat/gstintfloatconvert.c: (plugin_init):
39489           add float2intnew plugin. It converts multichannel interleaved float to
39490           multichannel interleaved int. The name should probably be changed.
39491         * gst/typefind/gsttypefindfunctions.c: (theora_type_find),
39492         (plugin_init):
39493           add typefinding for raw theora video so oggdemux can detect it.
39494
39495 2004-01-28  Julien MOUTTE  <julien@moutte.net>
39496
39497         * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): seek on video
39498         sink element first.
39499         * gst/videoscale/gstvideoscale.c:
39500         (gst_videoscale_handle_src_event): Fixing src event handler.
39501
39502 2004-01-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39503
39504         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
39505         (gst_v4lsrc_open), (gst_v4lsrc_close),
39506         (gst_v4lsrc_palette_to_caps), (gst_v4lsrc_srcconnect),
39507         (gst_v4lsrc_getcaps), (gst_v4lsrc_set_clock):
39508         * sys/v4l/gstv4lsrc.h:
39509         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_start),
39510         (gst_v4lsrc_grab_frame), (gst_v4lsrc_capture_stop):
39511           Implement resizing... Hack. But that's why v4l is b0rked...
39512
39513 2004-01-28  Julien MOUTTE <julien@moutte.net>
39514
39515         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
39516         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
39517         (gst_ximagesink_ximage_put), (gst_ximagesink_xwindow_new),
39518         (gst_ximagesink_xwindow_destroy):
39519         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
39520         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
39521         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
39522         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_get_xv_support),
39523         (gst_xvimagesink_xcontext_get): Removing some useless debugs messages,
39524         correctly cleaning the image created to check xshm calls on succes,
39525         added a lot of XSync calls in X11 functions, and fixed a segfault when
39526         no image format was defined before negotiation happened.
39527
39528 2004-01-28  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39529
39530         * ext/alsa/gstalsa.c: (gst_alsa_query_func):
39531           use gst_element_get_time to get correct time
39532
39533 2004-01-28  Julien MOUTTE  <julien@moutte.net>
39534
39535         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
39536         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_destroy),
39537         (gst_ximagesink_xcontext_get), (gst_ximagesink_class_init):
39538         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xerror),
39539         (gst_xvimagesink_check_xshm_calls),
39540         (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xcontext_get): Our
39541         X plugins are now able to detect that XShm calls will fail even if the
39542         server claims that it has XShm support (remote displays most of the
39543         time). We then log the error as a GST_DEBUG and set use_shm to FALSE
39544         so that we use non XShm functions. This feature is almost useless for
39545         xvimagesink as Xv is not supported on remote displays anyway, but
39546         it might happen than even on the local display XShm calls fail.
39547
39548 2004-01-27  David Schleef  <ds@schleef.org>
39549
39550         * ext/esd/esdsink.c: (gst_esdsink_class_init), (gst_esdsink_init),
39551         (gst_esdsink_link), (gst_esdsink_get_time), (gst_esdsink_chain),
39552         (gst_esdsink_change_state):  Fix sync issues in esdsink.  Also
39553         changed esdsink to only use 44100,16,2, since esd sucks at rate
39554         conversion and esdsink has had difficulty negotiating.
39555
39556 2004-01-27  Julien MOUTTE <julien@moutte.net>
39557
39558         * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback),
39559         (gst_play_seek_to_time): Fixing the way to get current position.
39560
39561 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39562
39563         * sys/oss/gstosssink.c: (gst_osssink_sink_query):
39564           use gst_element_get_time to get correct time
39565
39566 2004-01-27  Julien MOUTTE <julien@moutte.net>
39567
39568         * gst-libs/gst/play/gstplay.c: (gst_play_set_location): The easiest
39569         fix ever... Inverting 2 lines of code make spider autoplug correctly
39570         tagged mp3 !
39571
39572 2004-01-27  David Schleef  <ds@schleef.org>
39573
39574         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
39575         Use gst_pad_try_set_caps_nonfixed().
39576
39577 2004-01-27  David Schleef  <ds@schleef.org>
39578
39579         * gst/ac3parse/gstac3parse.c: update to checklist 5
39580         * gst/adder/gstadder.c: rewrite negotiation.  update to checklist 5
39581         * gst/audioconvert/gstaudioconvert.c: update to checklist 5
39582         * gst/audioscale/gstaudioscale.c: same
39583         * gst/auparse/gstauparse.c: same
39584         * gst/avi/gstavidemux.c: same
39585
39586 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39587
39588         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
39589           stop processing after EOS
39590
39591 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39592
39593         * gst/asfdemux/asfheaders.h:
39594         * gst/asfdemux/gstasfdemux.c:
39595         * gst/asfdemux/gstasfmux.c: (gst_asfmux_put_guid),
39596         (gst_asfmux_put_string), (gst_asfmux_put_wav_header),
39597         (gst_asfmux_put_vid_header), (gst_asfmux_put_bmp_header):
39598           lot's of fixes to make data extraction simpler and get the code
39599           architecture and compiler independant. Add debugging category
39600         * gst/goom/gstgoom.c: (gst_goom_change_state):
39601           reset channel count on PAUSED=>READY, not READY=>PAUSED
39602
39603 2004-01-26  Colin Walters  <walters@verbum.org>
39604
39605         * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_get): Remove ugly
39606         code to pull a bigger buffer in iradio mode.  This as a side effect
39607         makes typefinding work.
39608
39609 2004-01-26  Jeremy Simon  <jesimon@libertysurf.fr>
39610
39611         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
39612         Fix SVQ3 decoding on PPC
39613
39614 2004-01-26  Julien MOUTTE <julien@moutte.net>
39615
39616         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain): Dunno how
39617         that one managed to stay there... Fixed.
39618
39619 2004-01-26  Jeremy Simon  <jesimon@libertysurf.fr>
39620
39621         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
39622         (gst_ffmpeg_caps_to_extradata), (gst_ffmpeg_caps_to_pixfmt):
39623         * gst/qtdemux/qtdemux.c: (plugin_init), (qtdemux_parse_trak),
39624         (qtdemux_video_caps):
39625         * gst/qtdemux/qtdemux.h:
39626         Add SVQ3 specific flags to qtdemux and ffmpeg
39627
39628 2004-01-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39629
39630         * gst-libs/gst/audio/audio.h:
39631           remove buffer-frames from audio caps
39632         * gst/audioconvert/gstaudioconvert.c:
39633           fix plugin to really work.
39634
39635 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39636
39637         * gst-libs/gst/mixer/mixer.c:
39638         * gst-libs/gst/propertyprobe/propertyprobe.c:
39639         * gst-libs/gst/tuner/tuner.c: (gst_tuner_find_norm_by_name),
39640         (gst_tuner_find_channel_by_name):
39641         * gst-libs/gst/tuner/tuner.h:
39642           Add gtk-doc style comments. Also fix a function name.
39643
39644 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39645
39646         * ext/divx/gstdivxdec.c: (gst_divxdec_init),
39647         (gst_divxdec_negotiate):
39648           Fix for new capsnego - also fixes gst-player with divxdec.
39649
39650 2004-01-25  Julien MOUTTE  <julien@moutte.net>
39651
39652         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
39653         (gst_play_identity_handoff), (gst_play_set_location),
39654         (gst_play_set_visualization), (gst_play_connect_visualization): Another
39655         try in visualization implementation. Still have an issue with switch
39656         blocking when pulling from video_queue and only audio comes out of
39657         spider.
39658         * gst/switch/gstswitch.c: (gst_switch_release_pad),
39659         (gst_switch_poll_sinkpads), (gst_switch_class_init): Implementing pad
39660         release method. And check if the pad is usable before pulling.
39661
39662 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39663
39664         * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose),
39665         (gst_videobalance_init),
39666         (gst_videobalance_colorbalance_list_channels),
39667         (gst_videobalance_colorbalance_set_value),
39668         (gst_videobalance_colorbalance_get_value),
39669         (gst_videobalance_update_properties),
39670         (gst_videobalance_update_tables_planar411),
39671         (gst_videobalance_planar411):
39672         * gst/videofilter/gstvideobalance.h:
39673           Implement lookup-tables. +/- 10x faster.
39674
39675 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39676
39677         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
39678         (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
39679           The index reading was broken. The rest worked fine, but the whole
39680           goal of my rewrite was to make avidemux readable, and this was
39681           not at all readable. Please use typed variables.
39682
39683 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39684
39685         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
39686           Additional pad usability check.
39687         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
39688         (mp1videoparse_find_next_gop), (gst_mp1videoparse_time_code),
39689         (gst_mp1videoparse_real_chain):
39690           Fix MPEG video stream parsing. The original plugin had several
39691           issues, including not timestamping streams where the source was
39692           not timestamped (this happens with PTS values in mpeg system
39693           streams, but MPEG video is also a valid stream on its own so
39694           that needs timestamps too). We use the display time code for that
39695           for now. Also, if one incoming buffer contains multiple valid
39696           frames, we push them all on correctly now, including proper EOS
39697           handling. Lastly, several potential segfaults were fixed, and we
39698           properly sync on new sequence/gop headers to include them in next,
39699           not previous frames (since they're header for the next frame, not
39700           the previous). Also see #119206.
39701         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain),
39702         (bpf_from_header):
39703           Move caps setting so we only do it after finding several valid
39704           MPEG-1 fraes sequentially, not right after the first one (which
39705           might be coincidental).
39706         * gst/typefind/gsttypefindfunctions.c: (mpeg1_sys_type_find),
39707         (mpeg_video_type_find), (mpeg_video_stream_type_find),
39708         (plugin_init):
39709           Add unsynced MPEG video stream typefinding, and change some
39710           probability values so we detect streams rightly. The idea is as
39711           follows: I can have an unsynced system stream which contains
39712           video. In the current code, I would randomly get a type for either
39713           system or video stream type found, because the probabilities are
39714           being calculated rather randomly. I now use fixed values, so we
39715           always prefer system stream if that was found (and that is how it
39716           should be). If no system stream was found, we can still identity                the stream as video-only.
39717
39718 2004-01-23  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39719
39720         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
39721         (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
39722           don't write to buffer. Extract data without the need of
39723           __attribute__ ((packed))
39724
39725 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39726
39727         * gst/typefind/gsttypefindfunctions.c: (mpeg1_parse_header),
39728         (mpeg1_sys_type_find):
39729           Fix MPEG-1 stream typefinding.
39730
39731 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39732
39733         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
39734           Fix typefinding for MPEG-1 system streams, similar to MPEG-2.
39735
39736 2004-01-23  Thomas Vander Stichele  <thomas at apestaart dot org>
39737
39738         * ext/esd/esdsink.c: (gst_esdsink_open_audio):
39739         * ext/esd/gstesd.c: (plugin_init):
39740           private debugging, better error reporting
39741
39742 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39743
39744         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
39745         (gst_riff_read_init), (gst_riff_read_change_state):
39746         * gst-libs/gst/riff/riff-read.h:
39747           Remove stuff fromold metadata system.
39748
39749 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39750
39751         * ext/ogg/gstoggdemux.c:
39752           Fix wrong file comment.
39753         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
39754         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header):
39755           Add metadata reading properly.
39756
39757 2004-01-23  Thomas Vander Stichele  <thomas at apestaart dot org>
39758
39759         * ext/Makefile.am:
39760           Fix nas DIST_SUBDIRS
39761           Uraeus:
39762           Fix bug where make distcheck doesn't get run on adding stuff to
39763           the build.
39764
39765 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39766
39767         * ext/divx/gstdivxdec.c: (gst_divxdec_init), (gst_divxdec_setup):
39768         * ext/divx/gstdivxdec.h:
39769           Fix divx3 ("msmpeg4") playback using divxdec.
39770
39771 2004-01-23  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39772
39773         * gst/typefind/gsttypefindfunctions.c:
39774         (mp3_type_frame_length_from_header): fix bug in length computation
39775         (mp3_type_find): improve debugging output
39776
39777 2004-01-23  Julien MOUTTE  <julien@moutte.net>
39778
39779         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
39780         (gst_play_set_location), (gst_play_seek_to_time),
39781         (gst_play_set_audio_sink), (gst_play_set_visualization),
39782         (gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
39783         the pipeline from scratch. Visualization is back and switch went out as
39784         i realized it was not possible to use the way i wanted.
39785         * sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
39786         (gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
39787         clearing in state change from READY to NULL. So that one can clean the
39788         X ressources keeping the element.
39789         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
39790         (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
39791         (gst_xvimagesink_colorbalance_set_value),
39792         (gst_xvimagesink_colorbalance_get_value),
39793         (gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
39794         (gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
39795         change from READY to NULL and fixed some stupid bugs in colorbalance
39796         get/set values. Also added the following feature : when nobody tries to
39797         set some values to the colorbalance levels before the xcontext is
39798         grabbed, then when creating channels list from Xv attributes we set the
39799         internal values to the Xv defaults. This way we handle buggy Xv drivers
39800         that set default hue values far from the middle of the range (Thanks
39801         to Jon Trowbridge for pointing that issue).
39802         * sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
39803         colorbalance levels have been set before xcontext is grabbed.
39804
39805 2004-01-22  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39806
39807         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
39808           Fix the ossmixer case where we shouldn't open /dev/dsp* because
39809           it might block operations (which is bad for a mixer).
39810
39811 2004-01-22  Thomas Vander Stichele  <thomas at apestaart dot org>
39812
39813         * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
39814         (deep_notify_callback), (gmi_set_decoder), (gmi_clear_decoder),
39815         (gmip_find_type_pre):
39816         * gst-libs/gst/media-info/media-info-priv.h:
39817         * gst-libs/gst/media-info/media-info.c:
39818         (gst_media_info_instance_init), (gst_media_info_read_idler):
39819         add fakesink to get caps on decoder src pad again
39820         fix callback prototype to match new have_type signal signature
39821
39822 2004-01-22  Thomas Vander Stichele  <thomas at apestaart dot org>
39823
39824         * gst/adder/gstadder.c: (gst_adder_link):
39825           fix non-compile and cut-n-paste code
39826
39827 2004-01-21  David Schleef  <ds@schleef.org>
39828
39829         * ext/swfdec/gstswfdec.c: (gst_swfdec_video_getcaps),
39830         (gst_swfdec_video_link), (copy_image), (gst_swfdec_loop),
39831         (gst_swfdec_init), (gst_swfdec_change_state):
39832         * ext/swfdec/gstswfdec.h:
39833         Fix negotiation.
39834         * gst/adder/gstadder.c: (gst_adder_link), (gst_adder_init),
39835         (gst_adder_request_new_pad): Fix negotiation.
39836         * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_fixate):
39837         Add a fixate function.
39838         * gst/intfloat/gstfloat2int.c:
39839         * gst/intfloat/gstfloat2int.h:
39840         * gst/intfloat/gstint2float.c:
39841         * gst/intfloat/gstint2float.h:
39842         Completely rewrite the negotiation.  Doesn't quite work yet,
39843         due to some buffer-frames problem.
39844
39845 2004-01-21  Thomas Vander Stichele  <thomas at apestaart dot org>
39846
39847         * ext/gnomevfs/gstgnomevfssrc.c:
39848         * sys/v4l2/v4l2_calls.h:
39849           fix includes for distcheck
39850
39851 2004-01-21  Christian Schaller <uraeus@gnome.org>
39852
39853         * ext/nas/
39854         Add libnas (network audio system) plugin, patch from Arwed von Merkatz
39855         based on earlier patch from Laurent Vivier
39856
39857 2004-01-20  Jeremy Simon  <jesimon@libertysurf.fr>
39858
39859         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
39860         Fix wma caps property
39861         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
39862         Fix typo (flags1 and flags2)
39863
39864 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
39865
39866         * gst-libs/gst/media-info/media-info-priv.c:
39867         (deep_notify_callback), (gmi_seek_to_track), (gmi_get_decoder),
39868         (gmip_find_type_pre), (gmip_find_type), (gmip_find_stream_post),
39869         (gmip_find_stream), (gmip_find_track_metadata),
39870         (gmip_find_track_streaminfo_post), (gmip_find_track_streaminfo),
39871         (gmip_find_track_format):
39872         * gst-libs/gst/media-info/media-info-priv.h:
39873         * gst-libs/gst/media-info/media-info-test.c: (main):
39874         * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
39875         (gst_media_info_read_idler), (gst_media_info_read):
39876         * gst-libs/gst/media-info/media-info.h:
39877           register debugging category and use it for debugging
39878
39879 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
39880
39881         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_update_streaminfo),
39882         (gst_vorbisfile_new_link):
39883           signal streaminfo through tags
39884
39885 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39886
39887         * ext/mplex/gstmplex.cc:
39888         * ext/mplex/gstmplexibitstream.cc:
39889           g++ doesn't like NULL in our i18n/error macros, should be
39890           either (NULL) or ("").
39891
39892 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39893
39894         * sys/dxr3/dxr3audiosink.c:
39895         * sys/dxr3/dxr3init.c:
39896         * sys/dxr3/dxr3spusink.c: (dxr3spusink_close):
39897         * sys/dxr3/dxr3videosink.c: (dxr3videosink_close):
39898           Fix more error error error errors (missing includes here).
39899
39900 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39901
39902         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
39903           fix thomas' error errors.
39904
39905 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
39906
39907         * ext/mpeg2enc/gstmpeg2enc.cc:
39908           fix error errors.
39909
39910 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
39911
39912         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
39913         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
39914           Fix for new error system.
39915
39916 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
39917
39918         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
39919           fix for new error reporting
39920
39921 2004-01-20  David Schleef  <ds@schleef.org>
39922
39923         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
39924         (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
39925         (gst_ximagesink_set_xwindow_id): Change to using a framerate
39926         of [1,100] instead of [0,MAX], since 0 isn't handled correctly,
39927         and neither is 100+, most likely.
39928         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
39929         (gst_xvimagesink_getcaps): same
39930
39931 2004-01-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
39932
39933         * configure.ac:
39934           Up version requirement to 2.0.3 (not yet released) to avoid symbol
39935           clashes with ffmpeg.
39936
39937 2004-01-20  Julien MOUTTE  <julien@moutte.net>
39938
39939         * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
39940         (gst_switch_init): Fixed switch element : proxying link and setting
39941         caps from src to sink on request.
39942
39943 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
39944
39945         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
39946         * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
39947         (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
39948         fix element_error
39949
39950 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
39951
39952         * sys/v4l/v4l_calls.h:
39953         * sys/v4l2/v4l2_calls.h:
39954           element_error fixes
39955
39956 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
39957
39958         * gst-libs/gst/gst-i18n-plugin.h:
39959           add locale.h
39960           remove config.h inclusion
39961
39962 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
39963
39964         * autogen.sh:
39965           adding autopoint invocation
39966         * Makefile.am:
39967         * configure.ac:
39968         * gst-libs/gst/gettext.h:
39969           adding gettext bits
39970         * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
39971         * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
39972         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
39973         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
39974         (gst_gnomevfssink_close_file):
39975         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_open_file):
39976         * ext/sndfile/gstsf.c: (gst_sf_loop), (plugin_init):
39977         * gst-libs/gst/gst-i18n-plugin.h:
39978         * gst/avi/gstavi.c: (plugin_init):
39979         * sys/dxr3/dxr3init.c: (plugin_init):
39980         * sys/dxr3/dxr3videosink.c: (dxr3videosink_write_data):
39981         * sys/oss/gstossaudio.c: (plugin_init):
39982         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
39983         * sys/v4l/gstv4l.c: (plugin_init):
39984         * sys/v4l/v4l_calls.c: (gst_v4l_open):
39985         * sys/v4l2/gstv4l2.c: (plugin_init):
39986         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
39987         (gst_v4l2_fill_lists), (gst_v4l2_get_norm), (gst_v4l2_set_norm),
39988         (gst_v4l2_get_input), (gst_v4l2_set_input), (gst_v4l2_get_output),
39989         (gst_v4l2_set_output), (gst_v4l2_get_frequency),
39990         (gst_v4l2_set_frequency), (gst_v4l2_signal_strength),
39991         (gst_v4l2_get_attribute), (gst_v4l2_set_attribute):
39992           make sure locale and translation domain are set
39993           fix translated strings
39994         * po/.cvsignore:
39995         * po/LINGUAS:
39996         * po/Makevars:
39997         * po/POTFILES.in:
39998         * po/nl.po:
39999           put translation files into place
40000         * sys/xvideo/imagetest.c: (main):
40001         * ext/dv/demo-play.c: (main):
40002           fix unnecessary translations
40003
40004 2004-01-19  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
40005
40006         * ext/sndfile/gstsf.c:
40007         * gst/avi/gstavimux.c:
40008         * ext/audiofile/gstafsink.c:
40009         * ext/audiofile/gstafsrc.c:
40010         * ext/gnomevfs/gstgnomevfssink.c:
40011         * ext/gnomevfs/gstgnomevfssrc.c:
40012         * sys/oss/gstosselement.c:
40013         * sys/v4l/v4l_calls.h:
40014           fix i18n include
40015
40016 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
40017
40018         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
40019         (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
40020         (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
40021         (gst_v4l2_get_output), (gst_v4l2_set_output),
40022         (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
40023         (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
40024         (gst_v4l2_set_attribute):
40025         update to new error handling
40026
40027 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
40028
40029         * ext/sidplay/gstsiddec.cc:
40030         * gst/modplug/gstmodplug.cc:
40031           parenthese NULL because C++ seems angry about it
40032
40033 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
40034
40035         * gst-libs/gst/gst-i18n-plugin.h:
40036           add skeleton i18n stuff, but needs to be further implemented
40037
40038 2004-01-18  Thomas Vander Stichele  <thomas at apestaart dot org>
40039
40040         * examples/gstplay/player.c: (main):
40041         * ext/aalib/gstaasink.c: (gst_aasink_open):
40042         * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
40043         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
40044         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
40045         * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
40046         (gst_afsink_close_file):
40047         * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
40048         (gst_afsrc_close_file):
40049         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
40050         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
40051         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
40052         * ext/esd/esdmon.c: (gst_esdmon_get):
40053         * ext/esd/esdsink.c: (gst_esdsink_chain):
40054         * ext/faac/gstfaac.c: (gst_faac_chain):
40055         * ext/faad/gstfaad.c: (gst_faad_chain):
40056         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
40057         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
40058         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
40059         * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
40060         (gst_flacdec_loop):
40061         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
40062         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
40063         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
40064         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
40065         (gst_gnomevfssink_close_file):
40066         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
40067         (gst_gnomevfssrc_open_file):
40068         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
40069         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
40070         * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
40071         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
40072         (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
40073         * ext/mad/gstmad.c: (gst_mad_chain):
40074         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
40075         * ext/mpeg2dec/gstmpeg2dec.c:
40076         * ext/mpeg2enc/gstmpeg2enc.cc:
40077         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
40078         * ext/mplex/gstmplex.cc:
40079         * ext/mplex/gstmplexibitstream.cc:
40080         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
40081         (gst_ogg_demux_push), (gst_ogg_pad_push):
40082         * ext/raw1394/gstdv1394src.c:
40083         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
40084         (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
40085         * ext/sidplay/gstsiddec.cc:
40086         * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
40087         (gst_sf_loop):
40088         * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
40089         * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
40090         * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
40091         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
40092         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
40093         * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
40094         * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
40095         * gst-libs/gst/Makefile.am:
40096         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
40097         (gst_riff_read_element_data), (gst_riff_read_seek),
40098         (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
40099         * gst/adder/gstadder.c: (gst_adder_parse_caps), (gst_adder_loop):
40100         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
40101         (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
40102         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
40103         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
40104         * gst/avi/gstavimux.c: (gst_avimux_stop_file):
40105         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
40106         * gst/goom/gstgoom.c: (gst_goom_chain):
40107         * gst/id3/gstid3types.c: (gst_id3types_loop):
40108         * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
40109         * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
40110         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
40111         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
40112         (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
40113         (gst_ebml_read_float), (gst_ebml_read_header):
40114         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
40115         (gst_matroska_demux_parse_blockgroup):
40116         * gst/modplug/gstmodplug.cc:
40117         * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
40118         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
40119         * gst/oneton/gstoneton.c: (gst_oneton_chain):
40120         * gst/silence/gstsilence.c: (gst_silence_get):
40121         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
40122         * gst/smpte/gstsmpte.c: (gst_smpte_loop):
40123         * gst/speed/gstspeed.c: (speed_loop):
40124         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
40125         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
40126         * gst/volenv/gstvolenv.c: (gst_volenv_chain):
40127         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
40128         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
40129         (gst_wavparse_loop):
40130         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
40131         (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
40132         (dxr3audiosink_close):
40133         * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
40134         * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
40135         (dxr3videosink_close), (dxr3videosink_write_data):
40136         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
40137         * sys/oss/gstosselement.h:
40138         * sys/oss/gstosssink.c: (gst_osssink_get_type), (gst_osssink_init),
40139         (gst_osssink_chain):
40140         * sys/oss/gstosssrc.c: (gst_osssrc_get):
40141         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
40142         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
40143         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
40144         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_window),
40145         (gst_v4l_enable_overlay):
40146         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
40147         (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
40148         (gst_v4l_get_frequency), (gst_v4l_set_frequency),
40149         (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
40150         (gst_v4l_set_audio):
40151         * sys/v4l/v4l_calls.h:
40152         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
40153         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
40154         (gst_v4lmjpegsink_playback_init),
40155         (gst_v4lmjpegsink_playback_start):
40156         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
40157         (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_capture),
40158         (gst_v4lmjpegsrc_set_capture_m), (gst_v4lmjpegsrc_capture_init),
40159         (gst_v4lmjpegsrc_requeue_frame):
40160         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
40161         (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
40162         (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
40163         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
40164         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
40165         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
40166         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
40167         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
40168         (gst_v4l2src_capture_stop):
40169         * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
40170         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
40171         (gst_ximagesink_chain):
40172         * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
40173         (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
40174         (gst_xvideosink_xwindow_new):
40175         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
40176         (gst_xvimagesink_chain):
40177         use new error signal, function and categories
40178
40179 2004-01-18  Jeremy Simon <jesimon@libertysurf.fr>
40180
40181         * configure.ac:
40182         * ext/Makefile.am:
40183         * ext/musicbrainz/gsttrm.c:
40184         * ext/musicbrainz/gsttrm.h:
40185         * ext/musicbrainz/Makefile.am:
40186         Add a trm plugin
40187
40188 2004-01-18  Julien MOUTTE  <julien@moutte.net>
40189
40190         * sys/ximage/ximagesink.c: (gst_ximagesink_set_property),
40191         (gst_ximagesink_get_property), (gst_ximagesink_class_init): Adding
40192         synchronous property for debugging.
40193         * sys/ximage/ximagesink.h: Adding the synchronous boolean flag.
40194         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
40195         (gst_xvimagesink_set_property): Moving a pointer declaration to a
40196         smaller block, fixing indent.
40197
40198 2004-01-16  David Schleef  <ds@schleef.org>
40199
40200         * gst/videofilter/gstvideobalance.c: Fix regression; changing a
40201         property affects the video stream.
40202         * sys/xvimage/xvimagesink.c:
40203         * sys/xvimage/xvimagesink.h:
40204         Add synchronous property for debugging.  Should probably be
40205         disabled in non-CVS builds.  Make sure that the Xv attribute
40206         exists before we set it (crash!).  Fix a silly float bug that
40207         caused colorbalance to just not work.
40208
40209 2004-01-17  Christian Schaller <Uraeus@gnome.org>
40210
40211         * tools/gst-launch-ext.in - update for new plugins
40212
40213 2004-01-16  David Schleef  <ds@schleef.org>
40214
40215         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect): Fix use of
40216         already-freed caps.
40217
40218 2994-01-16  Christian Schaller <Uraeus@gnome.org>
40219
40220         * Update spec for new colorspace plugin and libcaca plugin
40221         * Fix compilation of libcaca plugin (clock -> id)
40222
40223 2004-01-16  Julien MOUTTE <julien@moutte.net>
40224
40225         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_update_colorbalance),
40226         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
40227         (gst_xvimagesink_set_xwindow_id),
40228         (gst_xvimagesink_colorbalance_set_value),
40229         (gst_xvimagesink_colorbalance_get_value),
40230         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
40231         (gst_xvimagesink_init), (gst_xvimagesink_class_init): Implementing
40232         correct colorbalance properties. They can now be set when the element
40233         is still in NULL state. The values will be committed to the Xv Port
40234         when xcontext is initialized.
40235         * sys/xvimage/xvimagesink.h: Added hue, saturation, contrast,
40236         brightness int values in the GstXvImagesink structure.
40237
40238 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40239
40240         * gst-libs/gst/Makefile.am:
40241           restructure so having local patches works easier.
40242
40243 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40244
40245         * ext/mpeg2enc/Makefile.am:
40246         * ext/mpeg2enc/gstmpeg2enc.cc:
40247         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
40248           Bugfix with respect to EOS handling.
40249
40250 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40251
40252         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
40253           Link with right caps (else, it segfaults).
40254         * ext/mplex/gstmplexjob.cc:
40255           Fix for slight API change in 1.6.1.93 release of mjpegtools.
40256
40257 2004-01-15  David Schleef  <ds@schleef.org>
40258
40259         * gst-libs/gst/audio/Makefile.am:
40260         Add gstaudiofiltertemplate.c and building of gstaudiofilterexample.c
40261         from the template.
40262         * gst-libs/gst/audio/gstaudiofilter.c:
40263         * gst-libs/gst/audio/gstaudiofilter.h:
40264         Add bytes_per_sample and size and n_samples calculation.
40265         * gst-libs/gst/audio/gstaudiofilterexample.c:
40266         Remove, now autogenerated.
40267         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
40268         Moved from gstaudiofilterexample, object name changed, code added
40269         so that it actually works.
40270         * gst-libs/gst/audio/make_filter:
40271         Script to build an audiofilter subclass from the template.
40272         * gst/colorspace/Makefile.am:
40273         * gst/colorspace/yuv2yuv.c:
40274         Remove file, since it's GPL, and we don't use it.
40275
40276 2004-01-15  Julien MOUTTE  <julien@moutte.net>
40277
40278         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
40279         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Making both of
40280         them use the buffer free function to test how the buffer was allocated.
40281
40282 2004-01-15  David Schleef  <ds@schleef.org>
40283
40284         * ext/esd/esdsink.c: (gst_esdsink_class_init): Remove property
40285         that handles osssink fallback.
40286         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
40287         (gst_audio_convert_getcaps):
40288         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
40289         Add audio/x-qdm2 for QDM2 audio.
40290         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
40291         * gst/sine/gstsinesrc.h: Add example of how to implement tags.
40292         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
40293         Decrease minimum size to 16x16.
40294         * gst/wavparse/gstwavparse.c:
40295         Convert disabled pad template caps to new caps.
40296         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
40297         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
40298         (gst_xvimagesink_chain): Throw element error when display cannot
40299         be opened.  Increase minimum framerate to 1.0.  Check the data
40300         free function on a buffer to make sure it is the type we expect
40301         before manipulating it.
40302
40303 2004-01-15  Julien MOUTTE <julien@moutte.net>
40304
40305         * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
40306         (gst_videobalance_colorbalance_set_value): Implement passthru if
40307         settings are in the middle.
40308         * tools/gst-launch-ext.in: Stop using xvideosink, use ximagesink.
40309
40310 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40311
40312         * gst/videofilter/Makefile.am:
40313         * gst/volume/Makefile.am:
40314           Since we use videofilter symbols, link to it.
40315
40316 2004-01-15  Julien MOUTTE <julien@moutte.net>
40317
40318         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init): Setting
40319         mixer interface type to HARDWARE.
40320         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init): Adding a default
40321         type to SOFTWARE.
40322         * gst-libs/gst/mixer/mixer.h: Adding mixer interface type and macro.
40323         * gst-libs/gst/mixer/mixertrack.h: Adding mixertrack flag SOFTWARE.
40324         * gst/volume/gstvolume.c: (gst_volume_interface_supported),
40325         (gst_volume_interface_init), (gst_volume_list_tracks),
40326         (gst_volume_set_volume), (gst_volume_get_volume),
40327         (gst_volume_set_mute), (gst_volume_mixer_init),
40328         (gst_volume_dispose), (gst_volume_get_type), (volume_class_init),
40329         (volume_init): Implementing mixer interface.
40330         * gst/volume/gstvolume.h: Adding tracklist for mixer interface.
40331         * sys/oss/gstosselement.c: (gst_osselement_get_type),
40332         (gst_osselement_change_state): Removing some trailing commas in
40333         structures.
40334         * sys/oss/gstossmixer.c: (gst_ossmixer_interface_init): Setting mixer
40335         interface type to HARDWARE.
40336         * sys/v4l/gstv4lcolorbalance.c:
40337         (gst_v4l_color_balance_interface_init): Setting colorbalance interface
40338         type to HARDWARE.
40339         * sys/v4l2/gstv4l2colorbalance.c:
40340         (gst_v4l2_color_balance_interface_init): Setting colorbalance
40341         interface type to HARDWARE.
40342         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): use exactly the
40343         same code than ximagesink for event handling.
40344
40345 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40346
40347         * ext/snapshot/Makefile.am:
40348         * ext/snapshot/gstsnapshot.c: (gst_snapshot_sinkconnect),
40349         (gst_snapshot_chain):
40350         * ext/snapshot/gstsnapshot.h:
40351           This has to be a joke... Snapshot should be connected to a tee,
40352           colorspace element before it and EOS after that, where the other
40353           src of the tee receives normal data.
40354           The current way is *wrong*.
40355
40356 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40357
40358         * ext/hermes/gsthermescolorspace.c:
40359           Fix another compile error. Same as below.
40360
40361 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40362
40363         * gst/colorspace/gstcolorspace.c:
40364         * gst/colorspace/yuv2yuv.c: (gst_colorspace_yuy2_to_i420),
40365         (gst_colorspace_i420_to_yv12):
40366           Fix compiling... Didn't test if it actually works.
40367
40368 2004-01-15  David Schleef  <ds@schleef.org>
40369
40370         * configure.ac:
40371         * gst/colorspace/Makefile.am:
40372         * gst/colorspace/gstcolorspace.c:
40373         * gst/colorspace/gstcolorspace.h:
40374         * gst/colorspace/yuv2rgb.c:
40375         * gst/colorspace/yuv2rgb.h:
40376         Duplicate the ext/hermes colorspace plugin, and remove Hermes
40377         code and GPL code.  Fix for new caps negotiation.  Rewrite
40378         much of the format handling code, and some of the conversion
40379         code.  Basically, rewrote almost everything.  This element
40380         handles I420, YV12 to RGB conversions.
40381         * ext/hermes/Makefile.am:
40382         * ext/hermes/gsthermescolorspace.c:
40383         Rename colorspace to hermescolorspace.  Fix negotiation issues.
40384         Remove non-Hermes related code.  This element handles lots of
40385         RGB to RGB conversions, but no YUV.
40386         * ext/hermes/gstcolorspace.c:
40387         * ext/hermes/gstcolorspace.h:
40388         * ext/hermes/rgb2yuv.c:
40389         * ext/hermes/yuv2rgb.c:
40390         * ext/hermes/yuv2rgb.h:
40391         * ext/hermes/yuv2rgb_mmx16.s:
40392         * ext/hermes/yuv2yuv.c:
40393         * ext/hermes/yuv2yuv.h:
40394         Remove old code.
40395
40396 2004-01-14  Colin Walters  <walters@verbum.org>
40397
40398         * ext/mad/gstid3tag.c (gst_id3_tag_chain): Don't nego caps if
40399         they've already been.
40400
40401 2004-01-15  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40402
40403         * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
40404           assume tag mode when pad is not connected
40405
40406 2004-01-15  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40407
40408         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
40409           Don't update the time of the clock
40410         (gst_alsa_sink_loop):
40411           sync to the clock given to alsasink, not the own clock
40412         * sys/oss/gstosssink.c: (gst_osssink_chain):
40413           sync to the clock
40414         (gst_osssink_change_state):
40415           activate the clock
40416         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
40417         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
40418           remove bogus code that made DISCONT events unhandled
40419         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
40420           explicitly case to double in _set_simple. (fixes 2nd warning in bug
40421           #131502)
40422         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_read_object_header),
40423         (gst_asf_demux_handle_sink_event), (gst_asf_demux_audio_caps),
40424         (gst_asf_demux_add_audio_stream), (gst_asf_demux_video_caps):
40425           convert g_warning because of wrong asf data to GST_WARNINGs (fixes
40426           2nd warning in bug #131502)
40427
40428 2004-01-14  Julien MOUTTE  <julien@moutte.net>
40429
40430         * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
40431         (gst_videobalance_colorbalance_set_value),
40432         (gst_videobalance_colorbalance_get_value): Fixing videobalance ranges
40433         for colorbalance interface implementation.
40434         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
40435         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
40436         (gst_ximagesink_dispose), (gst_ximagesink_init),
40437         (gst_ximagesink_class_init): Adding DISPLAY property.
40438         * sys/ximage/ximagesink.h: Adding display_name to store display.
40439         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
40440         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
40441         (gst_xvimagesink_dispose), (gst_xvimagesink_init),
40442         (gst_xvimagesink_class_init): Adding DISPLAY property and colorbalance
40443         properties (they still need polishing though for gst-launch use : no
40444         xcontext yet, i ll do that tomorrow).
40445         * sys/xvimage/xvimagesink.h: Adding display_name to store display.
40446
40447 2004-01-14  Julien MOUTTE  <julien@moutte.net>
40448
40449         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
40450         (gst_play_set_location), (gst_play_set_visualization): Preparing
40451         switch integration, adding videobalance in the pipeline.
40452
40453 2004-01-14  Julien MOUTTE <julien@moutte.net>
40454
40455         * gst-libs/gst/colorbalance/colorbalance.c:
40456         (gst_color_balance_class_init): Adding a default type.
40457         * gst-libs/gst/colorbalance/colorbalance.h: Adding a macro to access
40458         the type.
40459         * gst/videofilter/gstvideobalance.c: (gst_videobalance_get_type),
40460         (gst_videobalance_dispose), (gst_videobalance_class_init),
40461         (gst_videobalance_init), (gst_videobalance_interface_supported),
40462         (gst_videobalance_interface_init),
40463         (gst_videobalance_colorbalance_list_channels),
40464         (gst_videobalance_colorbalance_set_value),
40465         (gst_videobalance_colorbalance_get_value),
40466         (gst_videobalance_colorbalance_init): Implementing colorbalance
40467         interface.
40468         * gst/videofilter/gstvideobalance.h: Adding colorbalance channels
40469         list.
40470         * sys/ximage/ximagesink.c: (gst_ximagesink_set_xwindow_id): Fixing a
40471         bug which was triggering a BadAccess X error when setting an overlay
40472         before pad was really negotiated.
40473         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_colorbalance_init):
40474         Using the colorbalance type macro.
40475
40476 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40477
40478         * ext/flac/gstflacenc.c: (gst_flacenc_set_metadata),
40479         (gst_flacenc_chain):
40480           handle tags correctly
40481         * gst/tags/gstid3tag.c: (gst_tag_list_new_from_id3v1):
40482           extract ID3v1 tags correctly
40483
40484 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40485
40486         * gst/typefind/gsttypefindfunctions.c: (matroska_type_find),
40487         (plugin_init):
40488           Improve matroska typefinding for odd-typed headers...
40489
40490 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40491
40492         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
40493           Fix for using incremental number on padnames.
40494
40495 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40496
40497         * ext/divx/gstdivxdec.c:
40498         * ext/divx/gstdivxenc.c:
40499           Set category to divx4linux instead of divx (too generic).
40500         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
40501         (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
40502         (gst_wavparse_loop), (gst_wavparse_change_state):
40503         * gst/wavparse/gstwavparse.h:
40504           fix parsing of WAV files with non-standard fmt-tag size and fix
40505           skipping of unrecognized chunks... Someone please fix this thing
40506           to use rifflib so all this is automated.
40507         * sys/v4l/Makefile.am:
40508         * sys/v4l2/Makefile.am:
40509           Add X_CFLAGS because we depend on X (for overlay).
40510
40511 2004-01-14  Jan Schmidt  <thaytan@mad.scientist.com>
40512
40513         * ext/mpeg2dec/gstmpeg2dec.c:
40514           Don't issue a timestamp unless we tagged the frame
40515           with a PTS.
40516
40517 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40518
40519         * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback):
40520           Query the audio element to get the time, not the clock. We're
40521           interested in the element's time here.
40522
40523 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40524
40525         * ext/aalib/gstaasink.c: (gst_aasink_chain):
40526         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
40527         * ext/esd/esdsink.c: (gst_esdsink_chain):
40528         * ext/libcaca/gstcacasink.c: (gst_cacasink_chain):
40529         * ext/mas/massink.c: (gst_massink_chain):
40530         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_chain):
40531         * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_index),
40532         (gst_matroska_demux_parse_metadata):
40533         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop),
40534         (gst_mpeg_parse_release_locks):
40535         * gst/tcp/gsttcpsink.c: (gst_tcpsink_chain):
40536         * gst/udp/gstudpsink.c: (gst_udpsink_chain):
40537         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
40538         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
40539         (gst_osssink_change_state):
40540         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
40541         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
40542         * sys/xvideo/xvideosink.c: (gst_xvideosink_chain),
40543         (gst_xvideosink_release_locks):
40544         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
40545           use element time.
40546         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_start),
40547         (gst_alsa_clock_stop):
40548         * gst-libs/gst/audio/audioclock.c: (gst_audio_clock_set_active),
40549         (gst_audio_clock_get_internal_time):
40550           simplify for use with new clocking code.
40551         * testsuite/alsa/Makefile.am:
40552         * testsuite/alsa/sinesrc.c: (sinesrc_init), (sinesrc_force_caps):
40553           fix testsuite for new caps system
40554
40555 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40556
40557         * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
40558         * ext/flac/gstflacenc.c: (add_one_tag):
40559           length is already host endian, no need to convert. Fixes playback of
40560           tagged files on PPC. (bug #128384)
40561
40562 2004-01-13  Julien MOUTTE <julien@moutte.net>
40563
40564         * gst-libs/gst/colorbalance/colorbalance.h: Adding a type to the
40565         colorbalance interface stating if it is hardware based or software
40566         based.
40567         * gst/videofilter/gstvideobalance.c: (gst_videobalance_planar411):
40568         Removing a trailing comma.
40569         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
40570         (gst_xvimagesink_colorbalance_init): Integrating a patch from Jon
40571         Trowbridge <trow@ximian.com> querying Xv adaptor for min/max value as
40572         the documentation seems to be wrong on the -1000 to 1000 interval.
40573
40574 2004-01-12  David Schleef  <ds@schleef.org>
40575
40576         * gst/debug/efence.c: (gst_efence_init), (gst_efence_chain),
40577         (gst_efence_buffer_alloc), (gst_fenced_buffer_new),
40578         (gst_fenced_buffer_default_free), (gst_fenced_buffer_default_copy):
40579         Fix negotiation.  Add a bufferalloc function for the sink pad,
40580         and generally clean up some of the code.
40581
40582 2004-01-12  Julien MOUTTE <julien@moutte.net>
40583
40584         * gst-libs/gst/colorbalance/colorbalancechannel.c:
40585         (gst_color_balance_channel_dispose): Adding safety check in dispose
40586         method.
40587         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
40588         (gst_xvimagesink_xcontext_clear),
40589         (gst_xvimagesink_interface_supported),
40590         (gst_xvimagesink_colorbalance_list_channels),
40591         (gst_xvimagesink_colorbalance_set_value),
40592         (gst_xvimagesink_colorbalance_get_value),
40593         (gst_xvimagesink_colorbalance_init), (gst_xvimagesink_get_type):
40594         Adding colorbalance interface support to set XV parameters such as
40595         HUE, BRIGHTNESS, CONTRAST, SATURATION.
40596         * sys/xvimage/xvimagesink.h: Adding the channels list for colorbalance
40597         interface.
40598
40599 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
40600
40601         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_get_type),
40602         (gst_audio_convert_class_init), (gst_audioconvert_getcaps),
40603         (gst_audio_convert_init), (gst_audio_convert_set_property),
40604         (gst_audio_convert_get_property), (gst_audio_convert_chain),
40605         (gst_audio_convert_link),
40606         (gst_audio_convert_buffer_to_default_format),
40607         (gst_audio_convert_buffer_from_default_format), (plugin_init):
40608           - implement _getcaps and use it
40609           - improve linking
40610           - remove float caps since no float conversion is actually done
40611           - remove properties and arguments that were to be used for rate
40612             conversion
40613
40614 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
40615
40616         * gst-libs/gst/audio/audio.c: (_gst_audio_structure_set_list),
40617         (gst_audio_structure_set_int):
40618         * gst-libs/gst/audio/audio.h:
40619           add helper functions for _getcaps matching the standard audio
40620           templates
40621
40622 2004-01-12  David Schleef  <ds@schleef.org>
40623
40624         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
40625         Test that pad is negotiated before getting its caps.
40626
40627 2004-01-12  Julien MOUTTE <julien@moutte.net>
40628
40629         * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element): When
40630         analyzing the pads of an element the bin is mostly in READY state so
40631         no caps were negotiated. This helper function needs to work with
40632         _get_caps directly then. I was not freeing them though, added that to
40633         fix the mem leak.
40634
40635 2004-01-12  Julien MOUTTE <julien@moutte.net>
40636
40637         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
40638         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Fixing the
40639         direct put buffers detection. I prefer checking GST_BUFFER_PRIVATE
40640         than the free_func.
40641
40642 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
40643
40644         * sys/oss/gstossaudio.c: (plugin_init):
40645         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
40646         * sys/oss/gstosselement.h:
40647           make an oss debugging category
40648           make failure more descriptive
40649
40650 2004-01-11  David Schleef  <ds@schleef.org>
40651
40652         * ext/ffmpeg/gstffmpeg.c:
40653         * ext/ffmpeg/gstffmpegcodecmap.c:
40654         * ext/ffmpeg/gstffmpegdec.c:
40655         * ext/ffmpeg/gstffmpegenc.c:
40656         * ext/ffmpeg/gstffmpegprotocol.c:
40657         * ext/gdk_pixbuf/gstgdkanimation.c:
40658         * ext/jpeg/gstjpeg.c:
40659         * ext/libpng/gstpng.c:
40660         * ext/mpeg2dec/perftest.c:
40661         * ext/speex/gstspeex.c:
40662         * gst-libs/gst/resample/dtos.c:
40663         * gst/intfloat/gstintfloatconvert.c:
40664         * gst/oneton/gstoneton.c:
40665         * gst/rtjpeg/RTjpeg.c:
40666         * gst/rtp/gstrtp.c:
40667         * sys/dxr3/dxr3init.c:
40668         * sys/glsink/gstgl_nvimage.c:
40669         * sys/glsink/gstgl_pdrimage.c:
40670         * sys/glsink/gstglsink.c:
40671         * testsuite/gst-lint:
40672         Make sure everybody wraps #include "config.h" in #ifdef HAVE_CONFIG_H
40673
40674 2004-01-11  David Schleef  <ds@schleef.org>
40675
40676         * ext/alsa/gstalsasrc.c: (gst_alsa_src_set_caps):
40677         * ext/faac/gstfaac.c: (gst_faac_sinkconnect):
40678         * ext/gdk_pixbuf/gstgdkanimation.c:
40679         (gst_gdk_animation_iter_create_pixbuf):
40680         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
40681         (gst_gdk_pixbuf_chain):
40682         * ext/gdk_pixbuf/gstgdkpixbuf.h:
40683         * ext/jack/gstjack.c: (gst_jack_change_state):
40684         * ext/xvid/gstxviddec.c: (gst_xviddec_sink_link):
40685         * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element):
40686         * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
40687         * gst/videofilter/gstvideofilter.c:
40688         (gst_videofilter_set_output_size):
40689         Remove all usage of gst_pad_get_caps(), and replace it with
40690         gst_pad_get_allowed_caps() or gst_pad_get_negotiated_cap().
40691
40692 2004-01-11  David Schleef  <ds@schleef.org>
40693
40694         * configure.ac:
40695         * ext/Makefile.am: Fixes to make ext/libcaca compile.
40696         * ext/divx/gstdivxdec.c:
40697         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
40698         (gst_gdk_pixbuf_init), (gst_gdk_pixbuf_chain): Make gdkpixbufdec
40699         handle images that span multiple buffers.  Now work with both
40700         filesrc ! gdkpixbufdec and qtdemux ! gdkpixbufdec.
40701         * ext/gdk_pixbuf/gstgdkpixbuf.h:
40702         * ext/libcaca/gstcacasink.h: Fixes needed due to recent
40703         video/video.h changes
40704         * ext/xvid/gstxvid.c: (gst_xvid_csp_to_caps): same
40705         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
40706         (gst_v4lmjpegsrc_buffer_free): Use buffer free function instead
40707         of GstData free function.
40708         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
40709         same.
40710
40711 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40712
40713         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_class_init),
40714         (gst_v4l2element_dispose), (gst_v4l2element_set_property),
40715         (gst_v4l2element_get_property):
40716         * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults), (gst_v4l2_open):
40717           add norm, channel and frequency properties.
40718         * sys/v4l2/gstv4l2tuner.c:
40719           fixes for tuner interface changes
40720         * sys/v4l2/gstv4l2element.h:
40721         * sys/v4l2/gstv4l2src.c:
40722         * sys/v4l2/gstv4l2src.h:
40723         * sys/v4l2/v4l2src_calls.c:
40724         * sys/v4l2/v4l2src_calls.h:
40725           rework v4l2src to work with saa1734 cards and allow mmaped buffers.
40726
40727 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40728
40729         * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init),
40730         (gst_tuner_find_norm_by_name), (gst_v4l2_find_channel_by_name),
40731         (gst_tuner_channel_changed), (gst_tuner_norm_changed),
40732         (gst_tuner_frequency_changed), (gst_tuner_signal_changed):
40733         * gst-libs/gst/tuner/tuner.h:
40734           GObjects aren't const.
40735           Add find_by_name functions.
40736           Add checks to _changed functions.
40737         * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_get_channel),
40738         (gst_v4l_tuner_get_norm):
40739           Fixes for above.
40740
40741 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40742
40743         * gst-libs/gst/video/video.h:
40744           Fix caps template names to be understandable.
40745           Prefix everything with GST_VIDEO.
40746         * ext/aalib/gstaasink.c:
40747         * ext/divx/gstdivxdec.c:
40748         * ext/divx/gstdivxenc.c:
40749         * ext/gdk_pixbuf/gstgdkpixbuf.c:
40750         * ext/hermes/gstcolorspace.c: (gst_colorspace_base_init):
40751         * ext/jpeg/gstjpegdec.c: (raw_caps_factory):
40752         * ext/jpeg/gstjpegenc.c: (raw_caps_factory):
40753         * ext/libcaca/gstcacasink.c:
40754         * ext/libpng/gstpngenc.c: (raw_caps_factory):
40755         * ext/snapshot/gstsnapshot.c:
40756         * ext/swfdec/gstswfdec.c:
40757         * ext/xvid/gstxviddec.c:
40758         * ext/xvid/gstxvidenc.c:
40759         * gst/chart/gstchart.c:
40760         * gst/deinterlace/gstdeinterlace.c:
40761         * gst/effectv/gsteffectv.c:
40762         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
40763         * gst/goom/gstgoom.c:
40764         * gst/median/gstmedian.c:
40765         * gst/monoscope/gstmonoscope.c: (gst_monoscope_init),
40766         (gst_monoscope_srcconnect), (gst_monoscope_chain):
40767         * gst/overlay/gstoverlay.c:
40768         * gst/smooth/gstsmooth.c:
40769         * gst/smpte/gstsmpte.c:
40770         * gst/synaesthesia/gstsynaesthesia.c:
40771         * gst/videocrop/gstvideocrop.c:
40772         * gst/videodrop/gstvideodrop.c:
40773         * gst/y4m/gsty4mencode.c:
40774         * sys/qcam/gstqcamsrc.c:
40775         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps):
40776           Make them work with new video.h file.
40777         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
40778         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
40779         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
40780         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
40781           Make it work with new buffer allocation system.
40782
40783 2004-01-11  Julien MOUTTE  <julien@moutte.net>
40784
40785         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain): Fixing the
40786         pad_alloc_buffer implementation to use ->srcpad
40787         * ext/hermes/gstcolorspace.c: (gst_colorspace_chain): Fixing the
40788         pad_alloc_buffer implementation to use ->srcpad
40789         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):  Fixing the
40790         pad_alloc_buffer implementation to use ->srcpad
40791         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
40792         (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
40793         (gst_ximagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
40794         a reference to everything we need.
40795         * sys/ximage/ximagesink.h: adding a reference to the sink in the image.
40796         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
40797         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
40798         (gst_xvimagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
40799         a reference to everything we need.
40800         * sys/xvimage/xvimagesink.h: adding a reference to the sink in the image
40801
40802 2004-01-11  David Schleef  <ds@schleef.org>
40803
40804         * ext/divx/gstdivxenc.c: remove bogus gst_caps_is_fixed() test
40805         * gst/debug/efence.c: (gst_efence_chain), (gst_fenced_buffer_new),
40806         (gst_fenced_buffer_default_copy): Fix for rename of buffer private
40807         structure members.
40808         * gst/effectv/gstwarp.c: (gst_warptv_setup): Don't reset the time
40809         value during a resize/renegotiation.
40810         * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain): use
40811         gst_pad_alloc_buffer();
40812         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
40813         (gst_v4lmjpegsrc_buffer_free): Fix for rename of buffer private
40814         structure members.
40815         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
40816         Fix for rename of buffer private structure members.
40817         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
40818         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
40819         Fix for rename of buffer private structure members.
40820         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
40821         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
40822         Fix for rename of buffer private structure members.
40823
40824 2004-01-11  Arwed v. Merkatz <v.merkatz@gmx.net>
40825
40826         reviewed by: David Schleef <ds@schleef.org>
40827
40828         * gst/videofilter/Makefile.am:
40829         * gst/videofilter/gstgamma.c: Gamma correction filter.  Modified
40830         from the patch by ds to fit in with recent make_filter changes.
40831
40832 2004-01-11  Julien MOUTTE  <julien@moutte.net>
40833
40834         * configure.ac: Adding examples/switch/Makefile
40835         * examples/Makefile.am: Adding examples/switch
40836         * examples/switch/Makefile.am: Adding switcher example.
40837         * examples/switch/switcher.c: (got_eos), (idle_iterate),
40838         (switch_timer), (main): Adding an example demonstrating switch usage
40839         with 2 videotestsrc showing different patterns.
40840         * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
40841         (gst_switch_init): Fixing switch with the new caps system.
40842
40843 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40844
40845         * gst-libs/gst/video/video.h:
40846           Fix 32bit caps. Issue remaining: The macro names are chosen poorly.
40847           They should probably be like
40848           GST_VIDEO_PAD_TEMPLATE_CAPS_{RGB,BGR,RGBx,BGRx}.
40849
40850 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40851
40852         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
40853         (qtdemux_parse_trak):
40854           fix audio chunk size/timestamp calculation
40855
40856 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
40857
40858         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
40859           fix SVQ3 caps
40860
40861 2004-01-11  Steve Baker  <steve@stevebaker.org>
40862
40863         * gst/effectv/gstaging.c: (gst_agingtv_get_type),
40864         (gst_agingtv_base_init), (gst_agingtv_class_init),
40865         (gst_agingtv_init), (gst_agingtv_setup), (gst_agingtv_rgb32),
40866         (gst_agingtv_set_property), (gst_agingtv_get_property):
40867         Port agingTV to videofilter
40868
40869 2004-01-09  Julien MOUTTE <julien@moutte.net>
40870
40871         * ext/hermes/gstcolorspace.c: (gst_colorspace_chain):
40872         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
40873
40874 2004-01-09  Julien MOUTTE <julien@moutte.net>
40875
40876         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain):
40877         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
40878         * gst-libs/gst/xoverlay/xoverlay.c:
40879         (gst_x_overlay_got_desired_size): Updating doc for the xid being 0.
40880         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
40881         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
40882         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
40883         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
40884         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
40885         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
40886         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init): Implementing
40887         the bufferalloc_function to replace bufferpools, fixing the XOverlay
40888         interface implementation to handle xid being 0 and fix some bugs
40889         triggered by Benjamin's testcase.
40890         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
40891         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
40892         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init): Implementing
40893         the bufferalloc_function to replace bufferpools, fixing the XOverlay
40894         interface implementation to handle xid being 0 and fix some bugs
40895         triggered by Benjamin's testcase.
40896
40897 2004-01-09  David Schleef  <ds@schleef.org>
40898
40899         * ext/librfb/gstrfbsrc.c:  Hacking.  Added actual decoding and
40900         mouse pointer events.  It works.
40901
40902 2004-01-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40903
40904         * ext/divx/gstdivxenc.c: (gst_divxenc_init):
40905           Use explicit caps - fix capsnego.
40906         * ext/xvid/gstxviddec.c:
40907         * ext/xvid/gstxvidenc.c:
40908           Remove macro-inside-macro which caused compile errors.
40909         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_header):
40910           Error out if it's not a RIFF file. Else we error out without
40911           gst_element_error() which is not good...
40912
40913 2004-01-08  David Schleef  <ds@schleef.org>
40914
40915         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
40916         Fix pad_link function to handle formats that ffmpeg returns
40917         as multiple caps structures.
40918         * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain):
40919         Only complain if source buffer is _smaller_ than expected.
40920         * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
40921         (gst_videoscale_handle_src_event): Resize navigation events
40922         when passing them upstream.
40923         * gst/videotestsrc/gstvideotestsrc.c:
40924         * gst/videotestsrc/gstvideotestsrc.h:
40925         * gst/videotestsrc/videotestsrc.c:
40926         * gst/videotestsrc/videotestsrc.h:
40927         Rewrite many of the buffer painting functions to handle odd
40928         sizes (for many formats, size%4!=0 or size%8!=0).  Most have
40929         been verified to work with my video card.
40930         * testsuite/gst-lint:  Add check for elements calling
40931         gst_pad_get_caps() instead of gst_pad_get_allowed_caps().
40932
40933 2004-01-08  David Schleef  <ds@schleef.org>
40934
40935         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
40936         (gst_videodrop_link), (gst_videodrop_init): Fix negotiation.
40937
40938 2004-01-08  Julien MOUTTE  <julien@moutte.net>
40939
40940         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents): A
40941         configure event is not emiting the desired size signal. That fixes
40942         aspect ratio issues with gst-player.
40943
40944 2004-01-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
40945
40946         * gst/median/gstmedian.c: (gst_median_link), (gst_median_init):
40947           Fix capsnego.
40948
40949 2004-01-08  Julien MOUTTE  <julien@moutte.net>
40950
40951         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_create): Using XOverlay
40952         public method to fire size signal.
40953
40954 2004-01-07  Julien MOUTTE  <julien@moutte.net>
40955
40956         * examples/gstplay/Makefile.am: Adding the interface library.
40957         * gst-libs/gst/play/Makefile.am: Adding the interface library.
40958         * gst-libs/gst/play/gstplay.c: (gst_play_set_video_sink): Connecting to         the XOverlay size signal instead of GstVideoSink.
40959         * gst-libs/gst/play/gstplay.h: Including the XOverlay interface to check
40960         GST_IS_X_OVERLAY before signal connect.
40961         * gst-libs/gst/video/gstvideosink.c: (gst_videosink_class_init):
40962         Removing the have_video_size signal.
40963         * gst-libs/gst/video/gstvideosink.h: Removing the have_video_size signal
40964         and associated public method.
40965         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
40966         (gst_ximagesink_sinkconnect): Using XOverlay public method to fire size
40967         signal.
40968         * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
40969         (gst_xvideosink_xwindow_new): Using XOverlay public method to fire size
40970         signal.
40971         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sinkconnect):
40972         Using XOverlay public method to fire size signal.
40973
40974 2004-01-07  David Schleef  <ds@schleef.org>
40975
40976         * gst/videofilter/Makefile.am:
40977         * gst/videofilter/gstvideotemplate.c:
40978         * gst/videofilter/make_filter:
40979         Create gstvideoexample.c in a srcdir!=builddir friendly way.
40980         Convert make_filter to /bin/sh script.
40981
40982 2004-01-07  Thomas Vander Stichele  <thomas at apestaart dot org>
40983
40984         * gst/modplug/gstmodplug.cc: fix element description
40985
40986 2004-01-07  Julien MOUTTE  <julien@moutte.net>
40987
40988         * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
40989         (got_video_size): Adding some new lines in g_print calls.
40990         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
40991         (gst_ximagesink_xwindow_destroy), (gst_ximagesink_xwindow_resize),
40992         (gst_ximagesink_handle_xevents), (gst_ximagesink_fixate),
40993         (gst_ximagesink_sinkconnect), (gst_ximagesink_change_state),
40994         (gst_ximagesink_chain), (gst_ximagesink_buffer_new),
40995         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size):
40996         Complete code review, reverting some stuff i disagree with, adding
40997         some fixes : time synchronization on invalid timestamps, renegotiation
40998         of private window.
40999         * sys/ximage/ximagesink.h:
41000         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_destroy),
41001         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_handle_xevents),
41002         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
41003         (gst_xvimagesink_fixate), (gst_xvimagesink_sinkconnect),
41004         (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
41005         (gst_xvimagesink_buffer_new),
41006         (gst_xvimagesink_navigation_send_event),
41007         (gst_xvimagesink_set_xwindow_id),
41008         (gst_xvimagesink_get_desired_size),
41009         (gst_xvimagesink_xoverlay_init): Complete code review, reverting some
41010         stuff i disagree with, adding some fixes : Renegotiation of private
41011         window, implementing get_desired_size.
41012
41013 2004-01-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41014
41015         * ext/audiofile/gstafsink.c: (gst_afsink_init), (gst_afsink_chain),
41016         (gst_afsink_handle_event):
41017         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init):
41018         * gst/avi/gstavimux.c: (gst_avimux_request_new_pad):
41019         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_init):
41020         * sys/dxr3/dxr3spusink.c: (dxr3spusink_init):
41021         * sys/dxr3/dxr3videosink.c: (dxr3videosink_init):
41022           Fix for instantiate-test (see core). Also remove dead code from
41023           jpegenc (which still needs fixing, but that's lower on my TODO
41024           list...).
41025         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
41026           Never return NULL as caps.
41027
41028 2004-01-07  David Schleef  <ds@schleef.org>
41029
41030         * configure.ac:
41031         * ext/Makefile.am:
41032         * ext/librfb/Makefile.am:
41033         * ext/librfb/gstrfbsrc.c:
41034         New source plugin based on librfb-0.1.  RFB (remote framebuffer)
41035         is the protocol used by VNC.
41036
41037 2004-01-07  David Schleef  <ds@schleef.org>
41038
41039         * gst/videofilter/gstvideotemplate.c:
41040         * gst/videofilter/gstvideotemplate.h:
41041         * gst/videofilter/make_filter:
41042         Merge videotemplate header into source file.
41043         * gst/effectv/Makefile.am:
41044         * gst/effectv/gsteffectv.c: (plugin_init):
41045         * gst/effectv/gstwarp.c:
41046         Make warpTV a subclass of videofilter.
41047
41048 2004-01-07  Benjamin Otte  <in7y118@public.uni-hamburg.de>
41049
41050         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
41051           Add guard against invalid utf-8 conversions in mad. Just in case.
41052
41053 2004-01-07  Benjamin Otte  <in7y118@public.uni-hamburg.de>
41054
41055         * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
41056           Fix for bug shown by poisoning
41057
41058 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41059
41060         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
41061         (gst_v4lmjpegsrc_buffer_free):
41062         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
41063         (gst_v4lsrc_srcconnect), (gst_v4lsrc_getcaps), (gst_v4lsrc_get),
41064         (gst_v4lsrc_buffer_free):
41065           Fix for removed bufferpools.
41066
41067 2004-01-07  Jan Schmidt  <thaytan@mad.scientist.com>
41068
41069         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
41070         Fix caps negotiation.
41071
41072         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
41073         (dvdnavsrc_update_buttoninfo), (dvdnavsrc_get),
41074         (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
41075         (dvdnavsrc_event):
41076         * ext/mpeg2dec/gstmpeg2dec.c:
41077         * gst-libs/gst/navigation/navigation.c:
41078         (gst_navigation_send_key_event), (gst_navigation_send_mouse_event):
41079         * gst-libs/gst/navigation/navigation.h:
41080         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_handle_src_event):
41081         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
41082         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
41083         Super-simple first version of mouse and keyboard events. Clicking
41084         on a DVD menu now works, although it may not take you where you
41085         expected.
41086
41087         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
41088         * gst/videotestsrc/gstvideotestsrc.c:
41089         (gst_videotestsrc_src_fixate):
41090         These fixate functions were broken - they never actually
41091         fixated :)
41092
41093 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41094
41095         * ext/shout/gstshout.c: (gst_icecastsend_base_init),
41096         (gst_icecastsend_init):
41097           fix for new caps system.
41098         * gst-libs/gst/mixer/mixertrack.h:
41099         * sys/oss/gstossmixer.c: (gst_ossmixer_build_list):
41100           Add 'master track' flag (for tools like ACME that only want to
41101           change the main volume).
41102
41103 2004-01-07  Jan Schmidt  <thaytan@mad.scientist.com>
41104
41105         * ext/xvid/gstxvid.c: (gst_xvid_structure_to_csp),
41106         (gst_xvid_csp_to_caps):
41107         * ext/xvid/gstxviddec.c: (gst_xviddec_src_getcaps):
41108         * ext/xvid/gstxvidenc.c:
41109         ifdef out ARGB type when it isn't available
41110         in xvidcore 1.0.0beta2
41111
41112 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41113
41114         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
41115           When we have received a new SCR right in the first buffer after
41116           a seek (so in the same cycle that handles the discont), we should
41117           handle the buffer instead of unreffing it, else we lose data.
41118
41119 2004-01-06  Iain <iain@prettypeople.org>
41120
41121         * gst/intfloat/gstint2float.c (gst_int2float_link): Set the
41122           buffer-frames caps too.
41123
41124         * gst/oneton/gstoneton.c (gst_oneton_sink_connect): Only create the new
41125           caps that we need, don't destroy them all and rebuild them. And when
41126           creating src pads, use the src pad template rather than the sink...
41127
41128 2004-01-05  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41129
41130         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
41131           Add pad to element *after* setting functions such as event handler.
41132           Without this, the scheduler (opt) will link pads, set the event
41133           handler from the default event function (dispatcher in gstpad.c)
41134           and *after* that, we will set our own event function, which will
41135           thus never be used (and thus mpegdemux doesn't handle events).
41136
41137 2004-01-04  David Schleef  <ds@schleef.org>
41138
41139         Fix the fixate functions to handle new prototype:
41140         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
41141         * gst/videotestsrc/gstvideotestsrc.c:
41142         (gst_videotestsrc_src_fixate):
41143         * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
41144         * sys/ximage/ximagesink.c: (gst_ximagesink_fixate):
41145         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
41146
41147 2004-01-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
41148
41149         * sys/ximage/ximagesink.h:
41150         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
41151         (gst_ximagesink_xwindow_destroy), (gst_ximagesink_sinkconnect),
41152         (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
41153         (gst_ximagesink_xoverlay_init):
41154           assorted fixes to make (re)embedding work
41155         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect),
41156         (gst_ximagesink_get_desired_size):
41157           implement desired size additions to XOverlay
41158
41159 2004-01-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
41160
41161         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init),
41162         (gst_x_overlay_got_xwindow_id), (gst_x_overlay_get_desired_size),
41163         (gst_x_overlay_got_desired_size):
41164         * gst-libs/gst/xoverlay/xoverlay.h:
41165           Add optional "desired size" signal and querying.
41166
41167 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41168
41169         * gst/matroska/matroska-demux.c:
41170         (gst_matroska_demux_parse_blockgroup):
41171           Fix EBML-laced block parsing. Diffs are relative to previous
41172           lace, not the first lace. Thanks to Mosu from the Matroska
41173           team for detecting this.
41174         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
41175         (gst_wavparse_parse_fmt), (gst_wavparse_getcaps),
41176         (gst_wavparse_handle_sink_event), (gst_wavparse_loop),
41177         (gst_wavparse_change_state):
41178         * gst/wavparse/gstwavparse.h:
41179           Quickfix for capsnego.
41180
41181 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41182
41183         * gst/wavenc/gstwavenc.c: (set_property), (gst_wavenc_init):
41184           Fix indenting, fix pad creation.
41185
41186 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41187
41188         * ext/xvid/gstxviddec.c: (gst_xviddec_init),
41189         (gst_xviddec_src_getcaps), (gst_xviddec_src_link),
41190         (gst_xviddec_sink_link):
41191           Implement src_getcaps() so proper size caps is negotiated.
41192
41193 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41194
41195         * ext/flac/gstflacdec.c: (gst_flacdec_loop):
41196           Finish flac decoder on EOS. See #116178.
41197
41198 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41199
41200         * gst/matroska/matroska-demux.c: (gst_matroska_demux_src_getcaps),
41201         (gst_matroska_demux_add_stream):
41202         * gst/matroska/matroska-ids.h:
41203           Add getcaps() function to fix capsnego...
41204
41205 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41206
41207         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
41208         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
41209         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
41210           Fix more integer overflows. Again, see #126967.
41211
41212 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41213
41214         * ext/mpeg2dec/gstmpeg2dec.c:
41215           Add support for mpeg2dec-0.4.0 (released two weeks ago). See
41216           #130416.
41217
41218 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41219
41220         * configure.ac:
41221         * ext/xvid/gstxvid.c: (gst_xvid_init), (gst_xvid_error),
41222         (gst_xvid_structure_to_csp), (gst_xvid_csp_to_caps):
41223         * ext/xvid/gstxvid.h:
41224         * ext/xvid/gstxviddec.c: (gst_xviddec_class_init),
41225         (gst_xviddec_init), (gst_xviddec_setup), (gst_xviddec_chain),
41226         (gst_xviddec_src_link), (gst_xviddec_sink_link),
41227         (gst_xviddec_change_state):
41228         * ext/xvid/gstxviddec.h:
41229         * ext/xvid/gstxvidenc.c: (gst_xvidenc_profile_get_type),
41230         (gst_xvidenc_base_init), (gst_xvidenc_class_init),
41231         (gst_xvidenc_init), (gst_xvidenc_setup), (gst_xvidenc_chain),
41232         (gst_xvidenc_link), (gst_xvidenc_set_property),
41233         (gst_xvidenc_get_property), (gst_xvidenc_change_state):
41234         * ext/xvid/gstxvidenc.h:
41235           Update xvid plugin to latest xvid (1.0.0-beta3) API.
41236
41237 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41238
41239         * gst/rtp/rtp-packet.c:
41240           Add sys/types.h include, since OS X doesn't define in_addr_t
41241           in netinet/in.h, like it does on Linux (see #129600).
41242
41243 2004-01-03  Thomas Canty <tommydal@optushome.com.au>
41244
41245         reviewed by: Ronald Bultje  <rbultje@ronald.bitfreak.net>
41246
41247         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_dispose):
41248           Correct logic of dispose function (see #129306).
41249
41250 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41251
41252         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_pes):
41253         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
41254         (gst_mpeg_parse_init):
41255         * gst/mpegstream/gstmpegparse.h:
41256           Remove clock (which was never provided, i.e. dead code), and
41257           also fix integer overflows at high PTS values (see #126967).
41258
41259 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41260
41261         * ext/flac/gstflacdec.c:
41262         * ext/libpng/gstpngenc.h:
41263         * ext/mikmod/gstmikmod.h:
41264           OS X fixes (see #126628).
41265
41266 2004-01-02  David Schleef  <ds@schleef.org>
41267
41268         * ext/alsa/gstalsasrc.c: (gst_alsa_src_pad_factory),
41269         (gst_alsa_src_base_init): Remove bogus "src" request pad.
41270         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_base_init),
41271         (gst_mpeg_parse_class_init): Move pad template registration
41272         to class_init, since the derived class (mpegdemux) doesn't
41273         want them.
41274
41275 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41276
41277         * sys/ximage/Makefile.am:
41278         * sys/xvideo/Makefile.am:
41279         * sys/xvimage/Makefile.am:
41280           Move interface libs from LDFLAGS to LIBADD, fix relocation errors
41281           after installation (see #127664).
41282
41283 2004-01-02  David Schleef  <ds@schleef.org>
41284
41285         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_init),
41286         (gst_ffmpegenc_connect):  Negotiation fixes.
41287         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_negotiate_format):
41288         Remove inappropriate gst_caps_free().
41289         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
41290         Reenable Ronald's internal resize code, since the core handles
41291         it correctly now.
41292
41293 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41294
41295         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
41296         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
41297         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init), (gst_v4lsrc_init):
41298           Fix pad template stuff.
41299
41300 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41301
41302         * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
41303         * gst/matroska/ebml-write.c: (gst_ebml_write_sint):
41304           fix signed integer reading/writing.
41305
41306 2004-01-02  Benjamin Otte  <in7y118@public.uni-hamburg.de>
41307
41308         * ext/alsa/README:
41309           Remove outdated document
41310
41311 2004-01-03  Jan Schmidt  <thaytan@mad.scientist.com>
41312
41313         * gst/cutter/gstcutter.c: (gst_cutter_init):
41314           src pad was being created twice - oops.
41315
41316 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41317
41318         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
41319           Comment out internal resize. It doesn't handle the resulting
41320           XEvent internally, does another try_set_caps() which leads to
41321           a really nice loop.
41322           Real fix will come when Julien and Dave are awake. ;).
41323
41324 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41325
41326         * ext/mpeg2enc/gstmpeg2enc.cc:
41327           fix const/nonconst compile issue.
41328
41329 2004-01-02  David Schleef  <ds@schleef.org>
41330
41331         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate),
41332         (gst_xvimagesink_sinkconnect), (gst_xvimagesink_init):
41333         Add fixate function and a check for bad formats.
41334
41335 2004-01-01  David Schleef  <ds@schleef.org>
41336
41337         Negotiation fixes:
41338         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
41339         (gst_audiofilter_init):
41340         * gst/debug/efence.c: (gst_efence_init):
41341         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
41342         (gst_deinterlace_init):
41343         * gst/volume/gstvolume.c: (volume_connect):
41344
41345 2004-01-01  David Schleef  <ds@schleef.org>
41346
41347         Convert elements to use gst_pad_use_explicit_caps() where
41348         appropriate:
41349         * ext/a52dec/gsta52dec.c: (gst_a52dec_init), (gst_a52dec_reneg):
41350         * ext/audiofile/gstafparse.c: (gst_afparse_init),
41351         (gst_afparse_open_file):
41352         * ext/audiofile/gstafsrc.c: (gst_afsrc_init),
41353         (gst_afsrc_open_file):
41354         * ext/esd/esdmon.c: (gst_esdmon_init), (gst_esdmon_get):
41355         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
41356         (gst_ffmpegdec_chain):
41357         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
41358         * ext/flac/gstflacdec.c: (gst_flacdec_init), (gst_flacdec_write):
41359         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init),
41360         (gst_gdk_pixbuf_chain):
41361         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init), (gst_jpegdec_link),
41362         (gst_jpegdec_chain):
41363         * ext/mad/gstmad.c: (gst_mad_init), (gst_mad_chain):
41364         * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
41365         (gst_mikmod_negotiate):
41366         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
41367         (gst_mpeg2dec_negotiate_format):
41368         * ext/mpeg2enc/gstmpeg2enc.cc:
41369         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
41370         * ext/speex/gstspeexdec.c: (gst_speexdec_init),
41371         (gst_speexdec_sinkconnect):
41372         * ext/swfdec/gstswfdec.c: (gst_swfdec_loop), (gst_swfdec_init):
41373         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_init),
41374         (gst_vorbisfile_new_link):
41375         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_init),
41376         (gst_ac3parse_chain):
41377         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_add_audio_stream),
41378         (gst_asf_demux_setup_pad):
41379         * gst/auparse/gstauparse.c: (gst_auparse_init),
41380         (gst_auparse_chain):
41381         * gst/id3/gstid3types.c: (gst_id3types_loop):
41382         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
41383         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
41384         (mp1videoparse_parse_seq):
41385         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_init),
41386         (bpf_from_header):
41387         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
41388         (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_lpcm_set_caps):
41389         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
41390         (gst_mpeg_parse_send_data):
41391         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
41392         (gst_qtdemux_add_stream):
41393         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
41394         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
41395         (gst_wavparse_parse_fmt):
41396
41397 2004-01-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41398
41399         * configure.ac:
41400           Fix configure check for mpeg2enc. We need 1.6.1.93 instead of
41401           1.6.1.92, since the pkg-config file of 1.6.1.92 is borked and
41402           it therefore uses the wrong include paths. Too bad... Note
41403           that 1.6.1.93 is not release yet. ;).
41404           Also add a check for mplex, which is now using the lib'ified
41405           mplex from mjpegtools, too.
41406         * ext/ffmpeg/gstffmpegcodecmap.c:
41407           Add codec_tag for 3ivx/xvid. For xvid, this should fix playback
41408           issues. I don't think ffmpeg handles 3ivx correctly, so this
41409           probably won't work. But it won't hurt either.
41410         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_connect),
41411         (gst_ffmpegdec_chain):
41412         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect),
41413         (gst_ffmpegenc_chain_audio):
41414           Fix memleak in audio encoding. Close codec if open fails, this
41415           calls the cleanup routines so we can re-use the context.
41416         * ext/mpeg2enc/gstmpeg2enc.cc:
41417           Fix pad template names/types, fix memory issue with getcaps().
41418         * ext/mpeg2enc/gstmpeg2encoder.cc:
41419         * ext/mpeg2enc/gstmpeg2encoder.hh:
41420           Fix compile issue with new caps system (const thingy).
41421         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
41422         * ext/mpeg2enc/gstmpeg2encpicturereader.hh:
41423           We read a first frame right on initing, so that we have a caps
41424           when we init the output. This caps is cached in padprivate and
41425           read as first frame.
41426         * ext/mplex/Makefile.am:
41427         * ext/mplex/gstmplex.cc:
41428         * ext/mplex/gstmplex.h:
41429         * ext/mplex/gstmplex.hh:
41430         * ext/mplex/gstmplexibitstream.cc:
41431         * ext/mplex/gstmplexibitstream.hh:
41432         * ext/mplex/gstmplexjob.cc:
41433         * ext/mplex/gstmplexjob.hh:
41434         * ext/mplex/gstmplexoutputstream.cc:
41435         * ext/mplex/gstmplexoutputstream.hh:
41436           We wrap mjpegtools mplex. So I rewrote the plugin. The old plugin
41437           had issues, didn't do capsnego, supported only a subset of the
41438           mplex features and required a mplex fork in our local CVS. Plus
41439           that it worked agaist a very old mplex version. Rewriting was
41440           faster than updating it.
41441         * gst-libs/ext/Makefile.am:
41442         * gst-libs/ext/mplex/INSTRUCT:
41443         * gst-libs/ext/mplex/Makefile.am:
41444         * gst-libs/ext/mplex/README:
41445         * gst-libs/ext/mplex/TODO:
41446         * gst-libs/ext/mplex/ac3strm_in.cc:
41447         * gst-libs/ext/mplex/audiostrm.hh:
41448         * gst-libs/ext/mplex/audiostrm_out.cc:
41449         * gst-libs/ext/mplex/aunit.hh:
41450         * gst-libs/ext/mplex/bits.cc:
41451         * gst-libs/ext/mplex/bits.hh:
41452         * gst-libs/ext/mplex/buffer.cc:
41453         * gst-libs/ext/mplex/buffer.hh:
41454         * gst-libs/ext/mplex/fastintfns.h:
41455         * gst-libs/ext/mplex/format_codes.h:
41456         * gst-libs/ext/mplex/inputstrm.cc:
41457         * gst-libs/ext/mplex/inputstrm.hh:
41458         * gst-libs/ext/mplex/lpcmstrm_in.cc:
41459         * gst-libs/ext/mplex/mjpeg_logging.cc:
41460         * gst-libs/ext/mplex/mjpeg_logging.h:
41461         * gst-libs/ext/mplex/mjpeg_types.h:
41462         * gst-libs/ext/mplex/mpastrm_in.cc:
41463         * gst-libs/ext/mplex/mpegconsts.cc:
41464         * gst-libs/ext/mplex/mpegconsts.h:
41465         * gst-libs/ext/mplex/mplexconsts.hh:
41466         * gst-libs/ext/mplex/multplex.cc:
41467         * gst-libs/ext/mplex/outputstream.hh:
41468         * gst-libs/ext/mplex/padstrm.cc:
41469         * gst-libs/ext/mplex/padstrm.hh:
41470         * gst-libs/ext/mplex/stillsstream.cc:
41471         * gst-libs/ext/mplex/stillsstream.hh:
41472         * gst-libs/ext/mplex/systems.cc:
41473         * gst-libs/ext/mplex/systems.hh:
41474         * gst-libs/ext/mplex/vector.cc:
41475         * gst-libs/ext/mplex/vector.hh:
41476         * gst-libs/ext/mplex/videostrm.hh:
41477         * gst-libs/ext/mplex/videostrm_in.cc:
41478         * gst-libs/ext/mplex/videostrm_out.cc:
41479         * gst-libs/ext/mplex/yuv4mpeg.cc:
41480         * gst-libs/ext/mplex/yuv4mpeg.h:
41481         * gst-libs/ext/mplex/yuv4mpeg_intern.h:
41482         * gst-libs/ext/mplex/yuv4mpeg_ratio.cc:
41483           We don't fork mjpegtools' mplex in our CVS anymore.
41484         * gst/avi/gstavidemux.c: (gst_avi_demux_src_getcaps),
41485         (gst_avi_demux_add_stream):
41486         * gst/avi/gstavidemux.h:
41487           Add getcaps() function for proper caps nego. This makes some
41488           parts of AVI playback/reading work.
41489         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
41490           Resize window on new capsnego. This is probably wrong, but
41491           I'm still committing it because with current capsnego, the
41492           first successfull capsnego is auto-fixated, therefore rounded
41493           down to the lowest values in the caps. this results in a 16x16
41494           XWindow that is not reized when real capsnego finishes.
41495           Dave, I see more cases of this, do you know a proper solution?
41496         * tools/gst-launch-ext.in:
41497           Fix MPEG-4 AAC (Apple iPod/iTunes) file commandline.
41498
41499 2003-12-31  David Schleef  <ds@schleef.org>
41500
41501         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get):
41502         * gst/udp/gstudpsrc.c: (gst_udpsrc_get):
41503           Change gst_pad_proxy_link() to gst_pad_try_set_caps()
41504
41505 2003-12-30  David Schleef  <ds@schleef.org>
41506
41507         * ext/ffmpeg/gstffmpegcolorspace.c:
41508         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
41509         (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_init),
41510         (gst_ffmpegcsp_chain): Negotiation fixes
41511         * ext/mad/gstmad.c: (gst_mad_chain): Negotiation fixes
41512         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
41513         (gst_audio_convert_link), (gst_audio_convert_channels):
41514         * gst/audioscale/gstaudioscale.c: (gst_audioscale_getcaps),
41515         (gst_audioscale_link), (gst_audioscale_get_buffer),
41516         (gst_audioscale_chain): Negotiation fixes
41517         * gst/audioscale/gstaudioscale.h:
41518         * gst/videofilter/gstvideofilter.c:
41519         (gst_videofilter_format_get_structure), (gst_videofilter_getcaps),
41520         (gst_videofilter_link), (gst_videofilter_init),
41521         (gst_videofilter_set_output_size), (gst_videofilter_setup),
41522         (gst_videofilter_find_format_by_structure):
41523         * gst/videofilter/gstvideofilter.h: Negotiation fixes
41524         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
41525         (gst_videoscale_link):
41526         * gst/videoscale/videoscale.c: (videoscale_get_structure),
41527         (videoscale_find_by_structure), (gst_videoscale_setup):
41528         * gst/videoscale/videoscale.h: Negotiation fixes
41529         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
41530         (gst_ximagesink_fixate), (gst_ximagesink_init): Add a fixate
41531         function, restrict resizing to a multiple of 4 (hack until
41532         everyone supports odd sizes correctly).
41533
41534 2003-12-29  Colin Walters  <walters@verbum.org>
41535
41536         * ext/esd/esdsink.c (gst_esdsink_link): Fix typo; get depth instead of
41537         signed.
41538
41539 2003-12-30  Jan Schmidt <thaytan@mad.scientist.com>
41540
41541         * ext/sndfile/gstsf.c: (gst_sf_loop):
41542           Fix warning about discarding const qualifier
41543
41544 2003-12-27  Jeremy Simon   <jesimon@libertysurf.fr>
41545
41546         * gst/cutter/gstcutter.c:
41547         * gst/videoscale/gstvideoscale.c:
41548         * gst/volenv/gstvolenv.c:
41549         * gst-libs/gst/audio/audio.c:
41550         * gst-libs/gst/video/video.c:
41551           Fix warnings
41552
41553 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
41554
41555         * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
41556           Don't send ALSA debugging to stderr.
41557         * ext/alsa/gstalsa.h:
41558           Use GST_WARNING instead of g_warning when ALSA functions fail.
41559
41560 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
41561
41562         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
41563           Free XVAdapterInfo correctly.
41564
41565 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
41566
41567         * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
41568         (gst_id3_tag_do_caps_nego), (gst_id3_tag_src_link):
41569           Make id3tag use correct caps nego.
41570
41571 2003-12-27  Amaury Jacquot <sxpert@esitcom.org>
41572
41573         * ext/ivorbis/vorbis.c:
41574         * ext/ivorbis/vorbisenc.h:
41575         * ext/ivorbis/vorbisfile.c:
41576           Modify so that it uses the new caps things
41577
41578 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
41579
41580         * testsuite/spider/spider1.c: (main):
41581         * testsuite/spider/spider2.c: (main):
41582         * testsuite/spider/spider3.c: (main):
41583           Make tests compile again. They probably don't work.
41584
41585 2003-12-24  Colin Walters  <walters@verbum.org>
41586
41587         * sys/oss/gstosssink.c (gst_osssink_sink_fixate): Return NULL if
41588         we can't fixate the caps anymore.
41589
41590 2003-12-23  David Schleef  <ds@schleef.org>
41591
41592         * gst/volume/gstvolume.c: (volume_init): Proxy getcaps.
41593         * sys/oss/gstosssink.c: (gst_osssink_init),
41594         (gst_osssink_sink_fixate): Add fixate function.
41595
41596 2003-12-24  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41597
41598         * ext/ffmpeg/gstffmpegcodecmap.c:
41599         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_getcaps),
41600         (gst_ffmpegcsp_srcconnect_func), (gst_ffmpegcsp_sinkconnect),
41601         (gst_ffmpegcsp_srcconnect), (gst_ffmpegcsp_get_type),
41602         (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
41603         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
41604         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
41605         (gst_ffmpegcsp_get_property), (gst_ffmpegcsp_register):
41606           fix typo in RGB masks, and move back to "old" colorspace
41607           capsnego code until whoever wrote this new crap has actually
41608           tested it so that it works.
41609           And yes, this works, keep it that way please.
41610
41611 2003-12-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41612
41613         * ext/divx/gstdivxdec.c: (gst_divxdec_base_init),
41614         (gst_divxdec_init), (gst_divxdec_negotiate):
41615         * ext/divx/gstdivxdec.h:
41616         * ext/divx/gstdivxenc.c: (gst_divxenc_base_init),
41617         (gst_divxenc_init):
41618         * ext/faac/gstfaac.c: (gst_faac_base_init), (gst_faac_init),
41619         (gst_faac_sinkconnect), (gst_faac_srcconnect):
41620         * ext/mpeg2enc/gstmpeg2enc.cc:
41621         * ext/mpeg2enc/gstmpeg2encoder.cc:
41622         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
41623         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_base_init),
41624         (dxr3audiosink_init), (dxr3audiosink_pcm_sinklink):
41625         * sys/dxr3/dxr3spusink.c: (dxr3spusink_base_init),
41626         (dxr3spusink_init):
41627         * sys/dxr3/dxr3videosink.c: (dxr3videosink_base_init),
41628         (dxr3videosink_init):
41629           Fix caps breakage after Dave's caps branch merge.
41630
41631 2003-12-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41632
41633         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
41634           Fix for 24bpp display.
41635
41636 2003-12-23  Colin Walters  <walters@verbum.org>
41637
41638         * ext/gnomevfs/gstgnomevfssink.c: Add ARG_HANDLE property that takes
41639         a GnomeVFSHandle directly.
41640
41641 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
41642
41643         * gst/volume/Makefile.am:
41644         * gst/volume/gstvolume.c: (volume_connect), (volume_parse_caps),
41645         (volume_base_init), (volume_init):
41646           Reenable volume element and fix to work with new caps stuff.
41647           Rhythmbox needs this.
41648
41649 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
41650
41651         * gst/qtdemux/qtdemux.c: (plugin_init):
41652           qtdemux requires bytestream
41653
41654 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
41655
41656         * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_link):
41657           Fix remaining caps handling errors due to CAPS merge.
41658
41659 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
41660
41661         * ext/faad/gstfaad.c: (gst_faad_base_init), (gst_faad_init),
41662         (gst_faad_sinkconnect), (gst_faad_srcgetcaps),
41663         (gst_faad_srcconnect):
41664           Port to new caps system.
41665
41666 2003-12-21  Julien MOUTTE  <julien@moutte.net>
41667
41668         * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
41669         (got_video_size), (main): using g_print instead of g_message.
41670         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup): Fixing EOS
41671         signal which was not emitted because of "switch" element added to the
41672         bin but not connected. (Removing from the bin temporarily)
41673
41674 2003-12-21  Julien MOUTTE  <julien@moutte.net>
41675
41676         * configure.ac: X_DISPLAY_MISSING is set to 1 if AC_PATH_XTRA fails to
41677         find X development files. I don't understand the previous tests and
41678         they fail on my debian/ppc unstable. This one works.
41679         * examples/gstplay/player.c: (main): Set the pipeline to READY before
41680         exiting.
41681         * gst-libs/gst/play/gstplay.c: (gst_play_get_length_callback),
41682         (gst_play_set_video_sink), (gst_play_set_audio_sink),
41683         (gst_play_set_visualization): Add some safety checks in set_ methods
41684         and state_change. This was throwing some ugly CRITICAL messages when
41685         pipeline was getting disposed and casts were failing.
41686
41687 2003-12-21  Ronald Bultje  <rbultje@ronald.bitfreak.net>
41688
41689         * configure.ac:
41690           Improve mpeg2enc detection. This is for distributions that do
41691           ship mjpegtools, but without mpeg2enc. Also does object check
41692           for might there ever be ABI incompatibility.
41693         * ext/mpeg2enc/gstmpeg2enc.cc:
41694           Add Andrew as second maintainer (he's helping me), and also add
41695           an error if no caps was set. This happens if I pull before capsnego
41696           and that's something I should solve sometime else.
41697         * gst/matroska/matroska-demux.c:
41698         (gst_matroska_demux_parse_blockgroup):
41699           Fix time parsing.
41700         * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link),
41701         (gst_matroska_mux_track_header):
41702           Add caps to templates.
41703         * gst/mpegaudioparse/gstmpegaudioparse.c: (mp3_sink_factory):
41704           Add mpegversion=1 to prevent confusion with MPEG/AAC.
41705         * gst/mpegstream/gstmpegdemux.c:
41706           Remove layer since it causes warnings about unfixed caps.
41707         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
41708           Fix obvious typo (we error out if caps were set, we should of
41709           course error out if *no* caps were set).
41710         * sys/oss/gstosselement.c: (gst_osselement_convert):
41711           Fix format conversion, we confused bits/bytes.
41712         * sys/oss/gstosselement.h:
41713           Improve documentation for 'bps'.
41714         * sys/v4l/TODO:
41715           Remove stuff about plugins that need removing - this was done
41716           ages ago.
41717         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init),
41718         (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query):
41719         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_src_convert),
41720         (gst_v4lsrc_src_query):
41721         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
41722         (gst_v4l2src_src_convert), (gst_v4l2src_src_query):
41723           Add get_query_types(), get_formats() and query() functions.
41724
41725 2003-12-21  Thomas Vander Stichele  <thomas at apestaart dot org>
41726
41727         * ChangeLog: moved to gstreamer/docs/random/old/ChangeLog.gst-plugins
41728           * moved CVS to freedesktop.org